kubernetes_asyncio.client.models.v1_http_ingress_path module

Kubernetes

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501

The version of the OpenAPI document: v1.34.3 Generated by: https://openapi-generator.tech

class kubernetes_asyncio.client.models.v1_http_ingress_path.V1HTTPIngressPath(backend=None, path=None, path_type=None, local_vars_configuration=None)

Bases: object

NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech

Do not edit the class manually.

attribute_map = {'backend': 'backend', 'path': 'path', 'path_type': 'pathType'}
property backend

Gets the backend of this V1HTTPIngressPath. # noqa: E501

Returns:

The backend of this V1HTTPIngressPath. # noqa: E501

Return type:

V1IngressBackend

openapi_types = {'backend': 'V1IngressBackend', 'path': 'str', 'path_type': 'str'}
property path

Gets the path of this V1HTTPIngressPath. # noqa: E501

path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional “path” part of a URL as defined by RFC 3986. Paths must begin with a ‘/’ and must be present when using PathType with value “Exact” or “Prefix”. # noqa: E501

Returns:

The path of this V1HTTPIngressPath. # noqa: E501

Return type:

str

property path_type

Gets the path_type of this V1HTTPIngressPath. # noqa: E501

pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by ‘/’. Matching is done on a path element by element basis. A path element refers is the list of labels in the path split by the ‘/’ separator. A request is a match for path p if every p is an element-wise prefix of p of the request path. Note that if the last element of the path is a substring of the last element in request path, it is not a match (e.g. /foo/bar matches /foo/bar/baz, but does not match /foo/barbaz). * ImplementationSpecific: Interpretation of the Path matching is up to the IngressClass. Implementations can treat this as a separate PathType or treat it identically to Prefix or Exact path types. Implementations are required to support all path types. # noqa: E501

Returns:

The path_type of this V1HTTPIngressPath. # noqa: E501

Return type:

str

to_dict(serialize=False)

Returns the model properties as a dict

to_str()

Returns the string representation of the model