diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_Pod.py b/magnum/common/pythonk8sclient/client/models/V1beta3_Pod.py index bfaadc7..1daf973 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_Pod.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_Pod.py @@ -67,7 +67,9 @@ class V1beta3_Pod(object): 'status': 'V1beta3_PodStatus', - 'uid': 'str' + 'uid': 'str', + + 'metadata': 'dict' } @@ -99,7 +101,9 @@ class V1beta3_Pod(object): 'status': 'status', - 'uid': 'uid' + 'uid': 'uid', + + 'metadata': 'metadata' } @@ -159,4 +163,6 @@ class V1beta3_Pod(object): #unique UUID across space and time; populated by the system; read-only self.uid = None # str + + self.metadata = None # dict diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_PodSpec.py b/magnum/common/pythonk8sclient/client/models/V1beta3_PodSpec.py index bf14466..d3fb431 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_PodSpec.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_PodSpec.py @@ -46,8 +46,9 @@ class V1beta3_PodSpec(object): 'restartPolicy': 'str', - 'volumes': 'list[V1beta3_Volume]' - + 'volumes': 'list[V1beta3_Volume]', + + 'metadata': 'dict' } self.attributeMap = { @@ -64,7 +65,9 @@ class V1beta3_PodSpec(object): 'restartPolicy': 'restartPolicy', - 'volumes': 'volumes' + 'volumes': 'volumes', + + 'metadata': 'metadata' } @@ -96,4 +99,5 @@ class V1beta3_PodSpec(object): #list of volumes that can be mounted by containers belonging to the pod self.volumes = None # list[V1beta3_Volume] - + + self.metadata = None # dict diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_PodTemplateSpec.py b/magnum/common/pythonk8sclient/client/models/V1beta3_PodTemplateSpec.py index 4c62ea7..d1bb742 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_PodTemplateSpec.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_PodTemplateSpec.py @@ -58,7 +58,9 @@ class V1beta3_PodTemplateSpec(object): 'spec': 'V1beta3_PodSpec', - 'uid': 'str' + 'uid': 'str', + + 'metadata': 'dict' } @@ -84,7 +86,9 @@ class V1beta3_PodTemplateSpec(object): 'spec': 'spec', - 'uid': 'uid' + 'uid': 'uid', + + 'metadata': 'metadata' } @@ -132,4 +136,5 @@ class V1beta3_PodTemplateSpec(object): #unique UUID across space and time; populated by the system; read-only self.uid = None # str - + + self.metadata = None # dict diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationController.py b/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationController.py index 032b11c..2ff027f 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationController.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationController.py @@ -67,7 +67,9 @@ class V1beta3_ReplicationController(object): 'status': 'V1beta3_ReplicationControllerStatus', - 'uid': 'str' + 'uid': 'str', + + 'metadata': 'dict' } @@ -99,7 +101,9 @@ class V1beta3_ReplicationController(object): 'status': 'status', - 'uid': 'uid' + 'uid': 'uid', + + 'metadata': 'metadata' } @@ -159,4 +163,5 @@ class V1beta3_ReplicationController(object): #unique UUID across space and time; populated by the system; read-only self.uid = None # str - + + self.metadata = None # dict diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationControllerSpec.py b/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationControllerSpec.py index c1c22c2..9df137d 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationControllerSpec.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_ReplicationControllerSpec.py @@ -31,7 +31,7 @@ class V1beta3_ReplicationControllerSpec(object): 'replicas': 'int', - 'selector': 'any', + 'selector': 'dict', 'template': 'V1beta3_PodTemplateSpec', diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_Service.py b/magnum/common/pythonk8sclient/client/models/V1beta3_Service.py index 228175d..74a11a5 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_Service.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_Service.py @@ -67,7 +67,9 @@ class V1beta3_Service(object): 'status': 'V1beta3_ServiceStatus', - 'uid': 'str' + 'uid': 'str', + + 'metadata': 'dict' } @@ -99,7 +101,9 @@ class V1beta3_Service(object): 'status': 'status', - 'uid': 'uid' + 'uid': 'uid', + + 'metadata': 'metadata' } @@ -159,4 +163,5 @@ class V1beta3_Service(object): #unique UUID across space and time; populated by the system; read-only self.uid = None # str - + + self.metadata = None # dict diff --git a/magnum/common/pythonk8sclient/client/models/V1beta3_ServiceSpec.py b/magnum/common/pythonk8sclient/client/models/V1beta3_ServiceSpec.py index a8ef120..315f0f8 100644 --- a/magnum/common/pythonk8sclient/client/models/V1beta3_ServiceSpec.py +++ b/magnum/common/pythonk8sclient/client/models/V1beta3_ServiceSpec.py @@ -40,7 +40,7 @@ class V1beta3_ServiceSpec(object): 'publicIPs': 'list[str]', - 'selector': 'any', + 'selector': 'dict', 'sessionAffinity': 'str'