You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
75
+
76
+
:return: The api_version of this UnversionedAPIGroup.
77
+
:rtype: str
78
+
"""
79
+
returnself._api_version
80
+
81
+
@api_version.setter
82
+
defapi_version(self, api_version):
83
+
"""
84
+
Sets the api_version of this UnversionedAPIGroup.
85
+
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
86
+
87
+
:param api_version: The api_version of this UnversionedAPIGroup.
88
+
:type: str
89
+
"""
90
+
91
+
self._api_version=api_version
92
+
93
+
@property
94
+
defkind(self):
95
+
"""
96
+
Gets the kind of this UnversionedAPIGroup.
97
+
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
98
+
99
+
:return: The kind of this UnversionedAPIGroup.
100
+
:rtype: str
101
+
"""
102
+
returnself._kind
103
+
104
+
@kind.setter
105
+
defkind(self, kind):
106
+
"""
107
+
Sets the kind of this UnversionedAPIGroup.
108
+
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
109
+
110
+
:param kind: The kind of this UnversionedAPIGroup.
0 commit comments