Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.22 KB

File metadata and controls

28 lines (21 loc) · 1.22 KB

V1ClientIPConfig

ClientIPConfig represents the configurations of Client IP based session affinity.

Properties

Name Type Description Notes
timeout_seconds int timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == &quot;ClientIP&quot;. Default value is 10800(for 3 hours). [optional]

Example

from kubernetes.client.models.v1_client_ip_config import V1ClientIPConfig

# TODO update the JSON string below
json = "{}"
# create an instance of V1ClientIPConfig from a JSON string
v1_client_ip_config_instance = V1ClientIPConfig.from_json(json)
# print the JSON string representation of the object
print(V1ClientIPConfig.to_json())

# convert the object into a dict
v1_client_ip_config_dict = v1_client_ip_config_instance.to_dict()
# create an instance of V1ClientIPConfig from a dict
v1_client_ip_config_from_dict = V1ClientIPConfig.from_dict(v1_client_ip_config_dict)

[Back to Model list] [Back to API list] [Back to README]