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()
String
getHost()
List<HTTPHeader>
getHttpHeaders()
String
getPath()
IntOrString
getPort()
String
getScheme()
void
setAdditionalProperty(String name, Object value)
void
setHost(String host)
void
setHttpHeaders(List<HTTPHeader> httpHeaders)
void
setPath(String path)
void
setPort(IntOrString port)
void
setScheme(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)
-
-