kubernetes.client.models.v1_ip_block module

Kubernetes

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

The version of the OpenAPI document: release-1.36 Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.

class kubernetes.client.models.v1_ip_block.V1IPBlock(*, cidr: Annotated[str, Strict(strict=True)], _except: List[Annotated[str, Strict(strict=True)]] | None = None)

Bases: BaseModel

IPBlock describes a particular CIDR (Ex. “192.168.1.0/24”,”2001:db8::/64”) that is allowed to the pods matched by a NetworkPolicySpec’s podSelector. The except entry describes CIDRs that should not be included within this rule.

Attributes:
openapi_types (dict): The key is attribute name

and the value is attribute type.

attribute_map (dict): The key is attribute name

and the value is json key in definition.

attribute_map: ClassVar[Dict[str, str]] = {'_except': 'except', 'cidr': 'cidr'}
cidr: StrictStr
classmethod from_dict(obj: Dict[str, Any] | None) Self | None

Create an instance of V1IPBlock from a dict

classmethod from_json(json_str: str) Self | None

Create an instance of V1IPBlock from a JSON string

model_config = {'extra': 'forbid', 'protected_namespaces': (), 'validate_assignment': True, 'validate_by_alias': True, 'validate_by_name': True}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

openapi_types: ClassVar[Dict[str, str]] = {'_except': 'List[str]', 'cidr': 'str'}
to_dict(serialize: bool = False) Dict[str, Any]

Return all declared model fields using public or wire names.

to_json() str

Returns the JSON representation of the model using alias

to_str() str

Returns the string representation of the model

var_except: List[StrictStr] | None