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

V1FlowDistinguisherMethod

FlowDistinguisherMethod specifies the method of a flow distinguisher.

Properties

Name Type Description Notes
type str `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required.

Example

from kubernetes.client.models.v1_flow_distinguisher_method import V1FlowDistinguisherMethod

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

# convert the object into a dict
v1_flow_distinguisher_method_dict = v1_flow_distinguisher_method_instance.to_dict()
# create an instance of V1FlowDistinguisherMethod from a dict
v1_flow_distinguisher_method_from_dict = V1FlowDistinguisherMethod.from_dict(v1_flow_distinguisher_method_dict)

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