@@ -34,17 +34,19 @@ class V1ArchConfiguration(object):
3434 'amd64' : 'V1ArchSpecificConfiguration' ,
3535 'arm64' : 'V1ArchSpecificConfiguration' ,
3636 'default_architecture' : 'str' ,
37- 'ppc64le' : 'V1ArchSpecificConfiguration'
37+ 'ppc64le' : 'V1ArchSpecificConfiguration' ,
38+ 's390x' : 'V1ArchSpecificConfiguration'
3839 }
3940
4041 attribute_map = {
4142 'amd64' : 'amd64' ,
4243 'arm64' : 'arm64' ,
4344 'default_architecture' : 'defaultArchitecture' ,
44- 'ppc64le' : 'ppc64le'
45+ 'ppc64le' : 'ppc64le' ,
46+ 's390x' : 's390x'
4547 }
4648
47- def __init__ (self , amd64 = None , arm64 = None , default_architecture = None , ppc64le = None ):
49+ def __init__ (self , amd64 = None , arm64 = None , default_architecture = None , ppc64le = None , s390x = None ):
4850 """
4951 V1ArchConfiguration - a model defined in Swagger
5052 """
@@ -53,6 +55,7 @@ def __init__(self, amd64=None, arm64=None, default_architecture=None, ppc64le=No
5355 self ._arm64 = None
5456 self ._default_architecture = None
5557 self ._ppc64le = None
58+ self ._s390x = None
5659
5760 if amd64 is not None :
5861 self .amd64 = amd64
@@ -62,6 +65,8 @@ def __init__(self, amd64=None, arm64=None, default_architecture=None, ppc64le=No
6265 self .default_architecture = default_architecture
6366 if ppc64le is not None :
6467 self .ppc64le = ppc64le
68+ if s390x is not None :
69+ self .s390x = s390x
6570
6671 @property
6772 def amd64 (self ):
@@ -147,6 +152,27 @@ def ppc64le(self, ppc64le):
147152
148153 self ._ppc64le = ppc64le
149154
155+ @property
156+ def s390x (self ):
157+ """
158+ Gets the s390x of this V1ArchConfiguration.
159+
160+ :return: The s390x of this V1ArchConfiguration.
161+ :rtype: V1ArchSpecificConfiguration
162+ """
163+ return self ._s390x
164+
165+ @s390x .setter
166+ def s390x (self , s390x ):
167+ """
168+ Sets the s390x of this V1ArchConfiguration.
169+
170+ :param s390x: The s390x of this V1ArchConfiguration.
171+ :type: V1ArchSpecificConfiguration
172+ """
173+
174+ self ._s390x = s390x
175+
150176 def to_dict (self ):
151177 """
152178 Returns the model properties as a dict
0 commit comments