Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.05 KB

File metadata and controls

30 lines (23 loc) · 1.05 KB

V1GroupVersionKind

GroupVersionKind unambiguously identifies a kind.

Properties

Name Type Description Notes
group str [optional]
version str [optional]
kind str [optional]

Example

from kubernetes.client.models.v1_group_version_kind import V1GroupVersionKind

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

# convert the object into a dict
v1_group_version_kind_dict = v1_group_version_kind_instance.to_dict()
# create an instance of V1GroupVersionKind from a dict
v1_group_version_kind_from_dict = V1GroupVersionKind.from_dict(v1_group_version_kind_dict)

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