azure_mgmt_netapp 0.18.0 → 0.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,153 @@
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
+ # Capacity pool resource
10
+ #
11
+ class CapacityPool
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] poolId. UUID v4 used to identify the Pool
31
+ attr_accessor :pool_id
32
+
33
+ # @return [Integer] size. Provisioned size of the pool (in bytes).
34
+ # Allowed values are in 4TiB chunks (value must be multiply of
35
+ # 4398046511104).
36
+ attr_accessor :size
37
+
38
+ # @return [ServiceLevel] serviceLevel. The service level of the file
39
+ # system. Possible values include: 'Standard', 'Premium', 'Ultra'.
40
+ # Default value: 'Premium' .
41
+ attr_accessor :service_level
42
+
43
+ # @return [String] Azure lifecycle management
44
+ attr_accessor :provisioning_state
45
+
46
+
47
+ #
48
+ # Mapper for CapacityPool class as Ruby Hash.
49
+ # This will be used for serialization/deserialization.
50
+ #
51
+ def self.mapper()
52
+ {
53
+ client_side_validation: true,
54
+ required: false,
55
+ serialized_name: 'capacityPool',
56
+ type: {
57
+ name: 'Composite',
58
+ class_name: 'CapacityPool',
59
+ model_properties: {
60
+ location: {
61
+ client_side_validation: true,
62
+ required: true,
63
+ serialized_name: 'location',
64
+ type: {
65
+ name: 'String'
66
+ }
67
+ },
68
+ id: {
69
+ client_side_validation: true,
70
+ required: false,
71
+ read_only: true,
72
+ serialized_name: 'id',
73
+ type: {
74
+ name: 'String'
75
+ }
76
+ },
77
+ name: {
78
+ client_side_validation: true,
79
+ required: false,
80
+ read_only: true,
81
+ serialized_name: 'name',
82
+ type: {
83
+ name: 'String'
84
+ }
85
+ },
86
+ type: {
87
+ client_side_validation: true,
88
+ required: false,
89
+ read_only: true,
90
+ serialized_name: 'type',
91
+ type: {
92
+ name: 'String'
93
+ }
94
+ },
95
+ tags: {
96
+ client_side_validation: true,
97
+ required: false,
98
+ serialized_name: 'tags',
99
+ type: {
100
+ name: 'Object'
101
+ }
102
+ },
103
+ pool_id: {
104
+ client_side_validation: true,
105
+ required: false,
106
+ read_only: true,
107
+ serialized_name: 'properties.poolId',
108
+ constraints: {
109
+ MaxLength: 36,
110
+ MinLength: 36,
111
+ 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}$'
112
+ },
113
+ type: {
114
+ name: 'String'
115
+ }
116
+ },
117
+ size: {
118
+ client_side_validation: true,
119
+ required: true,
120
+ serialized_name: 'properties.size',
121
+ constraints: {
122
+ InclusiveMaximum: 549755813888000,
123
+ InclusiveMinimum: 4398046511104
124
+ },
125
+ type: {
126
+ name: 'Number'
127
+ }
128
+ },
129
+ service_level: {
130
+ client_side_validation: true,
131
+ required: true,
132
+ serialized_name: 'properties.serviceLevel',
133
+ default_value: 'Premium',
134
+ type: {
135
+ name: 'String'
136
+ }
137
+ },
138
+ provisioning_state: {
139
+ client_side_validation: true,
140
+ required: false,
141
+ read_only: true,
142
+ serialized_name: 'properties.provisioningState',
143
+ type: {
144
+ name: 'String'
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+ end
151
+ end
152
+ end
153
+ 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 capacity pool resources
10
+ #
11
+ class CapacityPoolList
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [Array<CapacityPool>] List of Capacity pools
16
+ attr_accessor :value
17
+
18
+
19
+ #
20
+ # Mapper for CapacityPoolList 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: 'capacityPoolList',
28
+ type: {
29
+ name: 'Composite',
30
+ class_name: 'CapacityPoolList',
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: 'CapacityPoolElementType',
42
+ type: {
43
+ name: 'Composite',
44
+ class_name: 'CapacityPool'
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,125 @@
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
+ # Capacity pool patch resource
10
+ #
11
+ class CapacityPoolPatch
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 [Integer] size. Provisioned size of the pool (in bytes).
31
+ # Allowed values are in 4TiB chunks (value must be multiply of
32
+ # 4398046511104). Default value: 4398046511104 .
33
+ attr_accessor :size
34
+
35
+ # @return [ServiceLevel] serviceLevel. The service level of the file
36
+ # system. Possible values include: 'Standard', 'Premium', 'Ultra'.
37
+ # Default value: 'Premium' .
38
+ attr_accessor :service_level
39
+
40
+
41
+ #
42
+ # Mapper for CapacityPoolPatch class as Ruby Hash.
43
+ # This will be used for serialization/deserialization.
44
+ #
45
+ def self.mapper()
46
+ {
47
+ client_side_validation: true,
48
+ required: false,
49
+ serialized_name: 'capacityPoolPatch',
50
+ type: {
51
+ name: 'Composite',
52
+ class_name: 'CapacityPoolPatch',
53
+ model_properties: {
54
+ location: {
55
+ client_side_validation: true,
56
+ required: false,
57
+ serialized_name: 'location',
58
+ type: {
59
+ name: 'String'
60
+ }
61
+ },
62
+ id: {
63
+ client_side_validation: true,
64
+ required: false,
65
+ read_only: true,
66
+ serialized_name: 'id',
67
+ type: {
68
+ name: 'String'
69
+ }
70
+ },
71
+ name: {
72
+ client_side_validation: true,
73
+ required: false,
74
+ read_only: true,
75
+ serialized_name: 'name',
76
+ type: {
77
+ name: 'String'
78
+ }
79
+ },
80
+ type: {
81
+ client_side_validation: true,
82
+ required: false,
83
+ read_only: true,
84
+ serialized_name: 'type',
85
+ type: {
86
+ name: 'String'
87
+ }
88
+ },
89
+ tags: {
90
+ client_side_validation: true,
91
+ required: false,
92
+ serialized_name: 'tags',
93
+ type: {
94
+ name: 'Object'
95
+ }
96
+ },
97
+ size: {
98
+ client_side_validation: true,
99
+ required: false,
100
+ serialized_name: 'properties.size',
101
+ default_value: 4398046511104,
102
+ constraints: {
103
+ InclusiveMaximum: 549755813888000,
104
+ InclusiveMinimum: 4398046511104
105
+ },
106
+ type: {
107
+ name: 'Number'
108
+ }
109
+ },
110
+ service_level: {
111
+ client_side_validation: true,
112
+ required: false,
113
+ serialized_name: 'properties.serviceLevel',
114
+ default_value: 'Premium',
115
+ type: {
116
+ name: 'String'
117
+ }
118
+ }
119
+ }
120
+ }
121
+ }
122
+ end
123
+ end
124
+ end
125
+ end
@@ -0,0 +1,18 @@
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 CheckNameResourceTypes
10
+ #
11
+ module CheckNameResourceTypes
12
+ MicrosoftNetAppnetAppAccounts = "Microsoft.NetApp/netAppAccounts"
13
+ MicrosoftNetAppnetAppAccountscapacityPools = "Microsoft.NetApp/netAppAccounts/capacityPools"
14
+ MicrosoftNetAppnetAppAccountscapacityPoolsvolumes = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes"
15
+ MicrosoftNetAppnetAppAccountscapacityPoolsvolumessnapshots = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,57 @@
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
+ # Dimension of blobs, possibly be blob type or access tier.
10
+ #
11
+ class Dimension
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Display name of dimension.
16
+ attr_accessor :name
17
+
18
+ # @return [String] Display name of dimension.
19
+ attr_accessor :display_name
20
+
21
+
22
+ #
23
+ # Mapper for Dimension class as Ruby Hash.
24
+ # This will be used for serialization/deserialization.
25
+ #
26
+ def self.mapper()
27
+ {
28
+ client_side_validation: true,
29
+ required: false,
30
+ serialized_name: 'Dimension',
31
+ type: {
32
+ name: 'Composite',
33
+ class_name: 'Dimension',
34
+ model_properties: {
35
+ name: {
36
+ client_side_validation: true,
37
+ required: false,
38
+ serialized_name: 'name',
39
+ type: {
40
+ name: 'String'
41
+ }
42
+ },
43
+ display_name: {
44
+ client_side_validation: true,
45
+ required: false,
46
+ serialized_name: 'displayName',
47
+ type: {
48
+ name: 'String'
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,113 @@
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 Export Policy Rule
10
+ #
11
+ class ExportPolicyRule
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [Integer] Order index
16
+ attr_accessor :rule_index
17
+
18
+ # @return [Boolean] Read only access
19
+ attr_accessor :unix_read_only
20
+
21
+ # @return [Boolean] Read and write access
22
+ attr_accessor :unix_read_write
23
+
24
+ # @return [Boolean] Allows CIFS protocol
25
+ attr_accessor :cifs
26
+
27
+ # @return [Boolean] Allows NFSv3 protocol
28
+ attr_accessor :nfsv3
29
+
30
+ # @return [Boolean] Allows NFSv4.1 protocol
31
+ attr_accessor :nfsv41
32
+
33
+ # @return [String] Client ingress specification as comma separated string
34
+ # with IPv4 CIDRs, IPv4 host addresses and host names
35
+ attr_accessor :allowed_clients
36
+
37
+
38
+ #
39
+ # Mapper for ExportPolicyRule class as Ruby Hash.
40
+ # This will be used for serialization/deserialization.
41
+ #
42
+ def self.mapper()
43
+ {
44
+ client_side_validation: true,
45
+ required: false,
46
+ serialized_name: 'exportPolicyRule',
47
+ type: {
48
+ name: 'Composite',
49
+ class_name: 'ExportPolicyRule',
50
+ model_properties: {
51
+ rule_index: {
52
+ client_side_validation: true,
53
+ required: false,
54
+ serialized_name: 'ruleIndex',
55
+ type: {
56
+ name: 'Number'
57
+ }
58
+ },
59
+ unix_read_only: {
60
+ client_side_validation: true,
61
+ required: false,
62
+ serialized_name: 'unixReadOnly',
63
+ type: {
64
+ name: 'Boolean'
65
+ }
66
+ },
67
+ unix_read_write: {
68
+ client_side_validation: true,
69
+ required: false,
70
+ serialized_name: 'unixReadWrite',
71
+ type: {
72
+ name: 'Boolean'
73
+ }
74
+ },
75
+ cifs: {
76
+ client_side_validation: true,
77
+ required: false,
78
+ serialized_name: 'cifs',
79
+ type: {
80
+ name: 'Boolean'
81
+ }
82
+ },
83
+ nfsv3: {
84
+ client_side_validation: true,
85
+ required: false,
86
+ serialized_name: 'nfsv3',
87
+ type: {
88
+ name: 'Boolean'
89
+ }
90
+ },
91
+ nfsv41: {
92
+ client_side_validation: true,
93
+ required: false,
94
+ serialized_name: 'nfsv41',
95
+ type: {
96
+ name: 'Boolean'
97
+ }
98
+ },
99
+ allowed_clients: {
100
+ client_side_validation: true,
101
+ required: false,
102
+ serialized_name: 'allowedClients',
103
+ type: {
104
+ name: 'String'
105
+ }
106
+ }
107
+ }
108
+ }
109
+ }
110
+ end
111
+ end
112
+ end
113
+ end