Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.09 KB

File metadata and controls

29 lines (22 loc) · 1.09 KB

V1ParamKind

ParamKind is a tuple of Group Kind and Version.

Properties

Name Type Description Notes
api_version str apiVersion is the API group version the resources belong to. In format of "group/version". Required. [optional]
kind str kind is the API kind the resources belong to. Required. [optional]

Example

from kubernetes.client.models.v1_param_kind import V1ParamKind

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

# convert the object into a dict
v1_param_kind_dict = v1_param_kind_instance.to_dict()
# create an instance of V1ParamKind from a dict
v1_param_kind_from_dict = V1ParamKind.from_dict(v1_param_kind_dict)

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