Package io.fabric8.kubernetes.api.model
Class HTTPGetAction
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.HTTPGetAction
-
- All Implemented Interfaces:
KubernetesResource,Serializable
public class HTTPGetAction extends Object implements KubernetesResource
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HTTPGetAction()No args constructor for use in serializationHTTPGetAction(String host, List<HTTPHeader> httpHeaders, String path, IntOrString port, String scheme)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>getAdditionalProperties()StringgetHost()List<HTTPHeader>getHttpHeaders()StringgetPath()IntOrStringgetPort()StringgetScheme()voidsetAdditionalProperty(String name, Object value)voidsetHost(String host)voidsetHttpHeaders(List<HTTPHeader> httpHeaders)voidsetPath(String path)voidsetPort(IntOrString port)voidsetScheme(String scheme)
-
-
-
Constructor Detail
-
HTTPGetAction
public HTTPGetAction()
No args constructor for use in serialization
-
HTTPGetAction
public HTTPGetAction(String host, List<HTTPHeader> httpHeaders, String path, IntOrString port, String scheme)
- Parameters:
path-scheme-port-host-httpHeaders-
-
-
Method Detail
-
getHost
public String getHost()
-
setHost
public void setHost(String host)
-
getHttpHeaders
public List<HTTPHeader> getHttpHeaders()
-
setHttpHeaders
public void setHttpHeaders(List<HTTPHeader> httpHeaders)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getPort
public IntOrString getPort()
-
setPort
public void setPort(IntOrString port)
-
getScheme
public String getScheme()
-
setScheme
public void setScheme(String scheme)
-
-