@@ -33,6 +33,10 @@ class UpdateFileSystemRequest(object):
33
33
and the value is json key in definition.
34
34
"""
35
35
swagger_types = {
36
+ 'auto_expand' : 'bool' ,
37
+ 'auto_expand_limit' : 'int' ,
38
+ 'auto_expand_step' : 'int' ,
39
+ 'auto_expand_threshold' : 'int' ,
36
40
'description' : 'str' ,
37
41
'file_system_id' : 'str' ,
38
42
'file_system_name' : 'str' ,
@@ -41,26 +45,42 @@ class UpdateFileSystemRequest(object):
41
45
}
42
46
43
47
attribute_map = {
48
+ 'auto_expand' : 'AutoExpand' ,
49
+ 'auto_expand_limit' : 'AutoExpandLimit' ,
50
+ 'auto_expand_step' : 'AutoExpandStep' ,
51
+ 'auto_expand_threshold' : 'AutoExpandThreshold' ,
44
52
'description' : 'Description' ,
45
53
'file_system_id' : 'FileSystemId' ,
46
54
'file_system_name' : 'FileSystemName' ,
47
55
'project_name' : 'ProjectName' ,
48
56
'tags' : 'Tags'
49
57
}
50
58
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
52
60
"""UpdateFileSystemRequest - a model defined in Swagger""" # noqa: E501
53
61
if _configuration is None :
54
62
_configuration = Configuration ()
55
63
self ._configuration = _configuration
56
64
65
+ self ._auto_expand = None
66
+ self ._auto_expand_limit = None
67
+ self ._auto_expand_step = None
68
+ self ._auto_expand_threshold = None
57
69
self ._description = None
58
70
self ._file_system_id = None
59
71
self ._file_system_name = None
60
72
self ._project_name = None
61
73
self ._tags = None
62
74
self .discriminator = None
63
75
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
64
84
if description is not None :
65
85
self .description = description
66
86
self .file_system_id = file_system_id
@@ -71,6 +91,90 @@ def __init__(self, description=None, file_system_id=None, file_system_name=None,
71
91
if tags is not None :
72
92
self .tags = tags
73
93
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
+
74
178
@property
75
179
def description (self ):
76
180
"""Gets the description of this UpdateFileSystemRequest. # noqa: E501
0 commit comments