azure_mgmt_netapp 0.18.0 → 0.18.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/lib/2017-08-15-preview/generated/azure_mgmt_netapp/azure_net_app_files_management_client.rb +1 -1
  3. data/lib/2019-05-01/generated/azure_mgmt_netapp/azure_net_app_files_management_client.rb +1 -1
  4. data/lib/2019-06-01/generated/azure_mgmt_netapp/azure_net_app_files_management_client.rb +1 -1
  5. data/lib/2019-07-01/generated/azure_mgmt_netapp.rb +62 -0
  6. data/lib/2019-07-01/generated/azure_mgmt_netapp/accounts.rb +651 -0
  7. data/lib/2019-07-01/generated/azure_mgmt_netapp/azure_net_app_files_management_client.rb +419 -0
  8. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/active_directory.rb +127 -0
  9. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/capacity_pool.rb +153 -0
  10. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/capacity_pool_list.rb +55 -0
  11. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/capacity_pool_patch.rb +125 -0
  12. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/check_name_resource_types.rb +18 -0
  13. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/dimension.rb +57 -0
  14. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/export_policy_rule.rb +113 -0
  15. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/in_availability_reason_type.rb +16 -0
  16. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/metric_specification.rb +145 -0
  17. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/mount_target.rb +210 -0
  18. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/mount_target_list.rb +55 -0
  19. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/net_app_account.rb +125 -0
  20. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/net_app_account_list.rb +55 -0
  21. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/net_app_account_patch.rb +125 -0
  22. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/operation.rb +83 -0
  23. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/operation_display.rb +79 -0
  24. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/operation_list_result.rb +57 -0
  25. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/resource_name_availability.rb +78 -0
  26. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/resource_name_availability_request.rb +72 -0
  27. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/service_level.rb +17 -0
  28. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/service_specification.rb +56 -0
  29. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/snapshot.rb +150 -0
  30. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/snapshot_patch.rb +46 -0
  31. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/snapshots_list.rb +55 -0
  32. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/volume.rb +257 -0
  33. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/volume_list.rb +55 -0
  34. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/volume_patch.rb +139 -0
  35. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/volume_patch_properties_export_policy.rb +58 -0
  36. data/lib/2019-07-01/generated/azure_mgmt_netapp/models/volume_properties_export_policy.rb +58 -0
  37. data/lib/2019-07-01/generated/azure_mgmt_netapp/module_definition.rb +9 -0
  38. data/lib/2019-07-01/generated/azure_mgmt_netapp/mount_targets.rb +136 -0
  39. data/lib/2019-07-01/generated/azure_mgmt_netapp/operations.rb +115 -0
  40. data/lib/2019-07-01/generated/azure_mgmt_netapp/pools.rb +675 -0
  41. data/lib/2019-07-01/generated/azure_mgmt_netapp/snapshots.rb +708 -0
  42. data/lib/2019-07-01/generated/azure_mgmt_netapp/volumes.rb +694 -0
  43. data/lib/azure_mgmt_netapp.rb +2 -1
  44. data/lib/profiles/latest/modules/netapp_profile_module.rb +65 -65
  45. data/lib/version.rb +1 -1
  46. metadata +41 -3
@@ -0,0 +1,72 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # Resource name availability request content.
10
+ #
11
+ class ResourceNameAvailabilityRequest
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Resource name to verify.
16
+ attr_accessor :name
17
+
18
+ # @return [CheckNameResourceTypes] Resource type used for verification.
19
+ # Possible values include: 'Microsoft.NetApp/netAppAccounts',
20
+ # 'Microsoft.NetApp/netAppAccounts/capacityPools',
21
+ # 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes',
22
+ # 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots'
23
+ attr_accessor :type
24
+
25
+ # @return [String] Resource group name.
26
+ attr_accessor :resource_group
27
+
28
+
29
+ #
30
+ # Mapper for ResourceNameAvailabilityRequest class as Ruby Hash.
31
+ # This will be used for serialization/deserialization.
32
+ #
33
+ def self.mapper()
34
+ {
35
+ client_side_validation: true,
36
+ required: false,
37
+ serialized_name: 'ResourceNameAvailabilityRequest',
38
+ type: {
39
+ name: 'Composite',
40
+ class_name: 'ResourceNameAvailabilityRequest',
41
+ model_properties: {
42
+ name: {
43
+ client_side_validation: true,
44
+ required: true,
45
+ serialized_name: 'name',
46
+ type: {
47
+ name: 'String'
48
+ }
49
+ },
50
+ type: {
51
+ client_side_validation: true,
52
+ required: true,
53
+ serialized_name: 'type',
54
+ type: {
55
+ name: 'String'
56
+ }
57
+ },
58
+ resource_group: {
59
+ client_side_validation: true,
60
+ required: true,
61
+ serialized_name: 'resourceGroup',
62
+ type: {
63
+ name: 'String'
64
+ }
65
+ }
66
+ }
67
+ }
68
+ }
69
+ end
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,17 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # Defines values for ServiceLevel
10
+ #
11
+ module ServiceLevel
12
+ Standard = "Standard"
13
+ Premium = "Premium"
14
+ Ultra = "Ultra"
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,56 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # One property of operation, include metric specifications.
10
+ #
11
+ class ServiceSpecification
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [Array<MetricSpecification>] Metric specifications of
16
+ # operation.
17
+ attr_accessor :metric_specifications
18
+
19
+
20
+ #
21
+ # Mapper for ServiceSpecification class as Ruby Hash.
22
+ # This will be used for serialization/deserialization.
23
+ #
24
+ def self.mapper()
25
+ {
26
+ client_side_validation: true,
27
+ required: false,
28
+ serialized_name: 'ServiceSpecification',
29
+ type: {
30
+ name: 'Composite',
31
+ class_name: 'ServiceSpecification',
32
+ model_properties: {
33
+ metric_specifications: {
34
+ client_side_validation: true,
35
+ required: false,
36
+ serialized_name: 'metricSpecifications',
37
+ type: {
38
+ name: 'Sequence',
39
+ element: {
40
+ client_side_validation: true,
41
+ required: false,
42
+ serialized_name: 'MetricSpecificationElementType',
43
+ type: {
44
+ name: 'Composite',
45
+ class_name: 'MetricSpecification'
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
52
+ }
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,150 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # Snapshot of a Volume
10
+ #
11
+ class Snapshot
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Resource location
16
+ attr_accessor :location
17
+
18
+ # @return [String] Resource Id
19
+ attr_accessor :id
20
+
21
+ # @return [String] Resource name
22
+ attr_accessor :name
23
+
24
+ # @return [String] Resource type
25
+ attr_accessor :type
26
+
27
+ # @return Resource tags
28
+ attr_accessor :tags
29
+
30
+ # @return [String] snapshotId. UUID v4 used to identify the Snapshot
31
+ attr_accessor :snapshot_id
32
+
33
+ # @return [String] fileSystemId. UUID v4 used to identify the FileSystem
34
+ attr_accessor :file_system_id
35
+
36
+ # @return [DateTime] name. The creation date of the snapshot
37
+ attr_accessor :created
38
+
39
+ # @return [String] Azure lifecycle management
40
+ attr_accessor :provisioning_state
41
+
42
+
43
+ #
44
+ # Mapper for Snapshot class as Ruby Hash.
45
+ # This will be used for serialization/deserialization.
46
+ #
47
+ def self.mapper()
48
+ {
49
+ client_side_validation: true,
50
+ required: false,
51
+ serialized_name: 'snapshot',
52
+ type: {
53
+ name: 'Composite',
54
+ class_name: 'Snapshot',
55
+ model_properties: {
56
+ location: {
57
+ client_side_validation: true,
58
+ required: true,
59
+ serialized_name: 'location',
60
+ type: {
61
+ name: 'String'
62
+ }
63
+ },
64
+ id: {
65
+ client_side_validation: true,
66
+ required: false,
67
+ read_only: true,
68
+ serialized_name: 'id',
69
+ type: {
70
+ name: 'String'
71
+ }
72
+ },
73
+ name: {
74
+ client_side_validation: true,
75
+ required: false,
76
+ read_only: true,
77
+ serialized_name: 'name',
78
+ type: {
79
+ name: 'String'
80
+ }
81
+ },
82
+ type: {
83
+ client_side_validation: true,
84
+ required: false,
85
+ read_only: true,
86
+ serialized_name: 'type',
87
+ type: {
88
+ name: 'String'
89
+ }
90
+ },
91
+ tags: {
92
+ client_side_validation: true,
93
+ required: false,
94
+ serialized_name: 'tags',
95
+ type: {
96
+ name: 'Object'
97
+ }
98
+ },
99
+ snapshot_id: {
100
+ client_side_validation: true,
101
+ required: false,
102
+ read_only: true,
103
+ serialized_name: 'properties.snapshotId',
104
+ constraints: {
105
+ MaxLength: 36,
106
+ MinLength: 36,
107
+ Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'
108
+ },
109
+ type: {
110
+ name: 'String'
111
+ }
112
+ },
113
+ file_system_id: {
114
+ client_side_validation: true,
115
+ required: false,
116
+ serialized_name: 'properties.fileSystemId',
117
+ constraints: {
118
+ MaxLength: 36,
119
+ MinLength: 36,
120
+ Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'
121
+ },
122
+ type: {
123
+ name: 'String'
124
+ }
125
+ },
126
+ created: {
127
+ client_side_validation: true,
128
+ required: false,
129
+ read_only: true,
130
+ serialized_name: 'properties.created',
131
+ type: {
132
+ name: 'DateTime'
133
+ }
134
+ },
135
+ provisioning_state: {
136
+ client_side_validation: true,
137
+ required: false,
138
+ read_only: true,
139
+ serialized_name: 'properties.provisioningState',
140
+ type: {
141
+ name: 'String'
142
+ }
143
+ }
144
+ }
145
+ }
146
+ }
147
+ end
148
+ end
149
+ end
150
+ end
@@ -0,0 +1,46 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # Snapshot patch
10
+ #
11
+ class SnapshotPatch
12
+
13
+ include MsRestAzure
14
+
15
+ # @return Resource tags
16
+ attr_accessor :tags
17
+
18
+
19
+ #
20
+ # Mapper for SnapshotPatch class as Ruby Hash.
21
+ # This will be used for serialization/deserialization.
22
+ #
23
+ def self.mapper()
24
+ {
25
+ client_side_validation: true,
26
+ required: false,
27
+ serialized_name: 'snapshotPatch',
28
+ type: {
29
+ name: 'Composite',
30
+ class_name: 'SnapshotPatch',
31
+ model_properties: {
32
+ tags: {
33
+ client_side_validation: true,
34
+ required: false,
35
+ serialized_name: 'tags',
36
+ type: {
37
+ name: 'Object'
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,55 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # List of Snapshots
10
+ #
11
+ class SnapshotsList
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [Array<Snapshot>] A list of Snapshots
16
+ attr_accessor :value
17
+
18
+
19
+ #
20
+ # Mapper for SnapshotsList class as Ruby Hash.
21
+ # This will be used for serialization/deserialization.
22
+ #
23
+ def self.mapper()
24
+ {
25
+ client_side_validation: true,
26
+ required: false,
27
+ serialized_name: 'snapshotsList',
28
+ type: {
29
+ name: 'Composite',
30
+ class_name: 'SnapshotsList',
31
+ model_properties: {
32
+ value: {
33
+ client_side_validation: true,
34
+ required: false,
35
+ serialized_name: 'value',
36
+ type: {
37
+ name: 'Sequence',
38
+ element: {
39
+ client_side_validation: true,
40
+ required: false,
41
+ serialized_name: 'SnapshotElementType',
42
+ type: {
43
+ name: 'Composite',
44
+ class_name: 'Snapshot'
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,257 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::NetApp::Mgmt::V2019_07_01
7
+ module Models
8
+ #
9
+ # Volume resource
10
+ #
11
+ class Volume
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Resource location
16
+ attr_accessor :location
17
+
18
+ # @return [String] Resource Id
19
+ attr_accessor :id
20
+
21
+ # @return [String] Resource name
22
+ attr_accessor :name
23
+
24
+ # @return [String] Resource type
25
+ attr_accessor :type
26
+
27
+ # @return Resource tags
28
+ attr_accessor :tags
29
+
30
+ # @return [String] FileSystem ID. Unique FileSystem Identifier.
31
+ attr_accessor :file_system_id
32
+
33
+ # @return [String] Creation Token or File Path. A unique file path for
34
+ # the volume. Used when creating mount targets
35
+ attr_accessor :creation_token
36
+
37
+ # @return [ServiceLevel] serviceLevel. The service level of the file
38
+ # system. Possible values include: 'Standard', 'Premium', 'Ultra'.
39
+ # Default value: 'Premium' .
40
+ attr_accessor :service_level
41
+
42
+ # @return [Integer] usageThreshold. Maximum storage quota allowed for a
43
+ # file system in bytes. This is a soft quota used for alerting only.
44
+ # Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
45
+ # Default value: 107374182400 .
46
+ attr_accessor :usage_threshold
47
+
48
+ # @return [VolumePropertiesExportPolicy] exportPolicy. Set of export
49
+ # policy rules
50
+ attr_accessor :export_policy
51
+
52
+ # @return [Array<String>] protocolTypes. Set of protocol types
53
+ attr_accessor :protocol_types
54
+
55
+ # @return [String] Azure lifecycle management
56
+ attr_accessor :provisioning_state
57
+
58
+ # @return [String] Snapshot ID. UUID v4 or resource identifier used to
59
+ # identify the Snapshot.
60
+ attr_accessor :snapshot_id
61
+
62
+ # @return [String] Baremetal Tenant ID. Unique Baremetal Tenant
63
+ # Identifier.
64
+ attr_accessor :baremetal_tenant_id
65
+
66
+ # @return [String] The Azure Resource URI for a delegated subnet. Must
67
+ # have the delegation Microsoft.NetApp/volumes
68
+ attr_accessor :subnet_id
69
+
70
+ # @return mountTargets. List of mount targets
71
+ attr_accessor :mount_targets
72
+
73
+
74
+ #
75
+ # Mapper for Volume class as Ruby Hash.
76
+ # This will be used for serialization/deserialization.
77
+ #
78
+ def self.mapper()
79
+ {
80
+ client_side_validation: true,
81
+ required: false,
82
+ serialized_name: 'volume',
83
+ type: {
84
+ name: 'Composite',
85
+ class_name: 'Volume',
86
+ model_properties: {
87
+ location: {
88
+ client_side_validation: true,
89
+ required: true,
90
+ serialized_name: 'location',
91
+ type: {
92
+ name: 'String'
93
+ }
94
+ },
95
+ id: {
96
+ client_side_validation: true,
97
+ required: false,
98
+ read_only: true,
99
+ serialized_name: 'id',
100
+ type: {
101
+ name: 'String'
102
+ }
103
+ },
104
+ name: {
105
+ client_side_validation: true,
106
+ required: false,
107
+ read_only: true,
108
+ serialized_name: 'name',
109
+ type: {
110
+ name: 'String'
111
+ }
112
+ },
113
+ type: {
114
+ client_side_validation: true,
115
+ required: false,
116
+ read_only: true,
117
+ serialized_name: 'type',
118
+ type: {
119
+ name: 'String'
120
+ }
121
+ },
122
+ tags: {
123
+ client_side_validation: true,
124
+ required: false,
125
+ serialized_name: 'tags',
126
+ type: {
127
+ name: 'Object'
128
+ }
129
+ },
130
+ file_system_id: {
131
+ client_side_validation: true,
132
+ required: false,
133
+ read_only: true,
134
+ serialized_name: 'properties.fileSystemId',
135
+ constraints: {
136
+ MaxLength: 36,
137
+ MinLength: 36,
138
+ Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'
139
+ },
140
+ type: {
141
+ name: 'String'
142
+ }
143
+ },
144
+ creation_token: {
145
+ client_side_validation: true,
146
+ required: true,
147
+ serialized_name: 'properties.creationToken',
148
+ type: {
149
+ name: 'String'
150
+ }
151
+ },
152
+ service_level: {
153
+ client_side_validation: true,
154
+ required: false,
155
+ serialized_name: 'properties.serviceLevel',
156
+ default_value: 'Premium',
157
+ type: {
158
+ name: 'String'
159
+ }
160
+ },
161
+ usage_threshold: {
162
+ client_side_validation: true,
163
+ required: true,
164
+ serialized_name: 'properties.usageThreshold',
165
+ default_value: 107374182400,
166
+ constraints: {
167
+ InclusiveMaximum: 109951162777600,
168
+ InclusiveMinimum: 107374182400
169
+ },
170
+ type: {
171
+ name: 'Number'
172
+ }
173
+ },
174
+ export_policy: {
175
+ client_side_validation: true,
176
+ required: false,
177
+ serialized_name: 'properties.exportPolicy',
178
+ type: {
179
+ name: 'Composite',
180
+ class_name: 'VolumePropertiesExportPolicy'
181
+ }
182
+ },
183
+ protocol_types: {
184
+ client_side_validation: true,
185
+ required: false,
186
+ serialized_name: 'properties.protocolTypes',
187
+ type: {
188
+ name: 'Sequence',
189
+ element: {
190
+ client_side_validation: true,
191
+ required: false,
192
+ serialized_name: 'StringElementType',
193
+ type: {
194
+ name: 'String'
195
+ }
196
+ }
197
+ }
198
+ },
199
+ provisioning_state: {
200
+ client_side_validation: true,
201
+ required: false,
202
+ read_only: true,
203
+ serialized_name: 'properties.provisioningState',
204
+ type: {
205
+ name: 'String'
206
+ }
207
+ },
208
+ snapshot_id: {
209
+ client_side_validation: true,
210
+ required: false,
211
+ serialized_name: 'properties.snapshotId',
212
+ constraints: {
213
+ MaxLength: 36,
214
+ MinLength: 36,
215
+ Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}|(\\?([^\/]*[\/])*)([^\/]+)$'
216
+ },
217
+ type: {
218
+ name: 'String'
219
+ }
220
+ },
221
+ baremetal_tenant_id: {
222
+ client_side_validation: true,
223
+ required: false,
224
+ read_only: true,
225
+ serialized_name: 'properties.baremetalTenantId',
226
+ constraints: {
227
+ MaxLength: 36,
228
+ MinLength: 36,
229
+ Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'
230
+ },
231
+ type: {
232
+ name: 'String'
233
+ }
234
+ },
235
+ subnet_id: {
236
+ client_side_validation: true,
237
+ required: true,
238
+ serialized_name: 'properties.subnetId',
239
+ type: {
240
+ name: 'String'
241
+ }
242
+ },
243
+ mount_targets: {
244
+ client_side_validation: true,
245
+ required: false,
246
+ serialized_name: 'properties.mountTargets',
247
+ type: {
248
+ name: 'Object'
249
+ }
250
+ }
251
+ }
252
+ }
253
+ }
254
+ end
255
+ end
256
+ end
257
+ end