@@ -33,6 +33,10 @@ class UpdateFileSystemRequest(object):
3333 and the value is json key in definition.
3434 """
3535 swagger_types = {
36+ 'auto_expand' : 'bool' ,
37+ 'auto_expand_limit' : 'int' ,
38+ 'auto_expand_step' : 'int' ,
39+ 'auto_expand_threshold' : 'int' ,
3640 'description' : 'str' ,
3741 'file_system_id' : 'str' ,
3842 'file_system_name' : 'str' ,
@@ -41,26 +45,42 @@ class UpdateFileSystemRequest(object):
4145 }
4246
4347 attribute_map = {
48+ 'auto_expand' : 'AutoExpand' ,
49+ 'auto_expand_limit' : 'AutoExpandLimit' ,
50+ 'auto_expand_step' : 'AutoExpandStep' ,
51+ 'auto_expand_threshold' : 'AutoExpandThreshold' ,
4452 'description' : 'Description' ,
4553 'file_system_id' : 'FileSystemId' ,
4654 'file_system_name' : 'FileSystemName' ,
4755 'project_name' : 'ProjectName' ,
4856 'tags' : 'Tags'
4957 }
5058
51- def __init__ (self , description = None , file_system_id = None , file_system_name = None , project_name = None , tags = None , _configuration = None ): # noqa: E501
59+ def __init__ (self , auto_expand = None , auto_expand_limit = None , auto_expand_step = None , auto_expand_threshold = None , description = None , file_system_id = None , file_system_name = None , project_name = None , tags = None , _configuration = None ): # noqa: E501
5260 """UpdateFileSystemRequest - a model defined in Swagger""" # noqa: E501
5361 if _configuration is None :
5462 _configuration = Configuration ()
5563 self ._configuration = _configuration
5664
65+ self ._auto_expand = None
66+ self ._auto_expand_limit = None
67+ self ._auto_expand_step = None
68+ self ._auto_expand_threshold = None
5769 self ._description = None
5870 self ._file_system_id = None
5971 self ._file_system_name = None
6072 self ._project_name = None
6173 self ._tags = None
6274 self .discriminator = None
6375
76+ if auto_expand is not None :
77+ self .auto_expand = auto_expand
78+ if auto_expand_limit is not None :
79+ self .auto_expand_limit = auto_expand_limit
80+ if auto_expand_step is not None :
81+ self .auto_expand_step = auto_expand_step
82+ if auto_expand_threshold is not None :
83+ self .auto_expand_threshold = auto_expand_threshold
6484 if description is not None :
6585 self .description = description
6686 self .file_system_id = file_system_id
@@ -71,6 +91,90 @@ def __init__(self, description=None, file_system_id=None, file_system_name=None,
7191 if tags is not None :
7292 self .tags = tags
7393
94+ @property
95+ def auto_expand (self ):
96+ """Gets the auto_expand of this UpdateFileSystemRequest. # noqa: E501
97+
98+
99+ :return: The auto_expand of this UpdateFileSystemRequest. # noqa: E501
100+ :rtype: bool
101+ """
102+ return self ._auto_expand
103+
104+ @auto_expand .setter
105+ def auto_expand (self , auto_expand ):
106+ """Sets the auto_expand of this UpdateFileSystemRequest.
107+
108+
109+ :param auto_expand: The auto_expand of this UpdateFileSystemRequest. # noqa: E501
110+ :type: bool
111+ """
112+
113+ self ._auto_expand = auto_expand
114+
115+ @property
116+ def auto_expand_limit (self ):
117+ """Gets the auto_expand_limit of this UpdateFileSystemRequest. # noqa: E501
118+
119+
120+ :return: The auto_expand_limit of this UpdateFileSystemRequest. # noqa: E501
121+ :rtype: int
122+ """
123+ return self ._auto_expand_limit
124+
125+ @auto_expand_limit .setter
126+ def auto_expand_limit (self , auto_expand_limit ):
127+ """Sets the auto_expand_limit of this UpdateFileSystemRequest.
128+
129+
130+ :param auto_expand_limit: The auto_expand_limit of this UpdateFileSystemRequest. # noqa: E501
131+ :type: int
132+ """
133+
134+ self ._auto_expand_limit = auto_expand_limit
135+
136+ @property
137+ def auto_expand_step (self ):
138+ """Gets the auto_expand_step of this UpdateFileSystemRequest. # noqa: E501
139+
140+
141+ :return: The auto_expand_step of this UpdateFileSystemRequest. # noqa: E501
142+ :rtype: int
143+ """
144+ return self ._auto_expand_step
145+
146+ @auto_expand_step .setter
147+ def auto_expand_step (self , auto_expand_step ):
148+ """Sets the auto_expand_step of this UpdateFileSystemRequest.
149+
150+
151+ :param auto_expand_step: The auto_expand_step of this UpdateFileSystemRequest. # noqa: E501
152+ :type: int
153+ """
154+
155+ self ._auto_expand_step = auto_expand_step
156+
157+ @property
158+ def auto_expand_threshold (self ):
159+ """Gets the auto_expand_threshold of this UpdateFileSystemRequest. # noqa: E501
160+
161+
162+ :return: The auto_expand_threshold of this UpdateFileSystemRequest. # noqa: E501
163+ :rtype: int
164+ """
165+ return self ._auto_expand_threshold
166+
167+ @auto_expand_threshold .setter
168+ def auto_expand_threshold (self , auto_expand_threshold ):
169+ """Sets the auto_expand_threshold of this UpdateFileSystemRequest.
170+
171+
172+ :param auto_expand_threshold: The auto_expand_threshold of this UpdateFileSystemRequest. # noqa: E501
173+ :type: int
174+ """
175+
176+ self ._auto_expand_threshold = auto_expand_threshold
177+
74178 @property
75179 def description (self ):
76180 """Gets the description of this UpdateFileSystemRequest. # noqa: E501
0 commit comments