Class HTTPPathMatch
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPPathMatch
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<HTTPPathMatchBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class HTTPPathMatch extends Object implements io.fabric8.kubernetes.api.builder.Editable<HTTPPathMatchBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
HTTPPathMatch describes how to select a HTTP route by matching the HTTP request path.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HTTPPathMatch()
No args constructor for use in serializationHTTPPathMatch(String type, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HTTPPathMatchBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getType()
Type specifies how to match against the path Value.String
getValue()
Value of the HTTP path to match against.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setType(String type)
Type specifies how to match against the path Value.void
setValue(String value)
Value of the HTTP path to match against.HTTPPathMatchBuilder
toBuilder()
-
-
-
Method Detail
-
getType
public String getType()
Type specifies how to match against the path Value.Support: Core (Exact, PathPrefix)
Support: Implementation-specific (RegularExpression)
-
setType
public void setType(String type)
Type specifies how to match against the path Value.Support: Core (Exact, PathPrefix)
Support: Implementation-specific (RegularExpression)
-
getValue
public String getValue()
Value of the HTTP path to match against.
-
setValue
public void setValue(String value)
Value of the HTTP path to match against.
-
edit
public HTTPPathMatchBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<HTTPPathMatchBuilder>
-
toBuilder
public HTTPPathMatchBuilder toBuilder()
-
-