azure_sdk 0.49.0 → 0.49.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.
@@ -1,185 +1,209 @@
1
- # encoding: utf-8
2
- # Copyright (c) Microsoft Corporation. All rights reserved.
3
- # Licensed under the MIT License. See License.txt in the project root for license information.
4
-
5
- require 'azure_mgmt_netapp'
6
-
7
- module Azure::Profiles::Latest
8
- module NetApp
9
- module Mgmt
10
- Operations = Azure::NetApp::Mgmt::V2019_08_01::Operations
11
- NetAppResource = Azure::NetApp::Mgmt::V2019_08_01::NetAppResource
12
- Accounts = Azure::NetApp::Mgmt::V2019_08_01::Accounts
13
- Pools = Azure::NetApp::Mgmt::V2019_08_01::Pools
14
- Volumes = Azure::NetApp::Mgmt::V2019_08_01::Volumes
15
- MountTargets = Azure::NetApp::Mgmt::V2019_08_01::MountTargets
16
- Snapshots = Azure::NetApp::Mgmt::V2019_08_01::Snapshots
17
-
18
- module Models
19
- CapacityPoolPatch = Azure::NetApp::Mgmt::V2019_08_01::Models::CapacityPoolPatch
20
- OperationDisplay = Azure::NetApp::Mgmt::V2019_08_01::Models::OperationDisplay
21
- ExportPolicyRule = Azure::NetApp::Mgmt::V2019_08_01::Models::ExportPolicyRule
22
- MetricSpecification = Azure::NetApp::Mgmt::V2019_08_01::Models::MetricSpecification
23
- VolumePropertiesExportPolicy = Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePropertiesExportPolicy
24
- Operation = Azure::NetApp::Mgmt::V2019_08_01::Models::Operation
25
- ReplicationObject = Azure::NetApp::Mgmt::V2019_08_01::Models::ReplicationObject
26
- ResourceNameAvailability = Azure::NetApp::Mgmt::V2019_08_01::Models::ResourceNameAvailability
27
- VolumePropertiesDataProtection = Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePropertiesDataProtection
28
- ActiveDirectory = Azure::NetApp::Mgmt::V2019_08_01::Models::ActiveDirectory
29
- Volume = Azure::NetApp::Mgmt::V2019_08_01::Models::Volume
30
- NetAppAccountList = Azure::NetApp::Mgmt::V2019_08_01::Models::NetAppAccountList
31
- VolumeList = Azure::NetApp::Mgmt::V2019_08_01::Models::VolumeList
32
- CapacityPool = Azure::NetApp::Mgmt::V2019_08_01::Models::CapacityPool
33
- VolumePatchPropertiesExportPolicy = Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePatchPropertiesExportPolicy
34
- Dimension = Azure::NetApp::Mgmt::V2019_08_01::Models::Dimension
35
- VolumePatch = Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePatch
36
- OperationListResult = Azure::NetApp::Mgmt::V2019_08_01::Models::OperationListResult
37
- MountTarget = Azure::NetApp::Mgmt::V2019_08_01::Models::MountTarget
38
- NetAppAccount = Azure::NetApp::Mgmt::V2019_08_01::Models::NetAppAccount
39
- MountTargetList = Azure::NetApp::Mgmt::V2019_08_01::Models::MountTargetList
40
- CapacityPoolList = Azure::NetApp::Mgmt::V2019_08_01::Models::CapacityPoolList
41
- Snapshot = Azure::NetApp::Mgmt::V2019_08_01::Models::Snapshot
42
- ResourceNameAvailabilityRequest = Azure::NetApp::Mgmt::V2019_08_01::Models::ResourceNameAvailabilityRequest
43
- SnapshotsList = Azure::NetApp::Mgmt::V2019_08_01::Models::SnapshotsList
44
- ServiceSpecification = Azure::NetApp::Mgmt::V2019_08_01::Models::ServiceSpecification
45
- SnapshotPatch = Azure::NetApp::Mgmt::V2019_08_01::Models::SnapshotPatch
46
- NetAppAccountPatch = Azure::NetApp::Mgmt::V2019_08_01::Models::NetAppAccountPatch
47
- InAvailabilityReasonType = Azure::NetApp::Mgmt::V2019_08_01::Models::InAvailabilityReasonType
48
- CheckNameResourceTypes = Azure::NetApp::Mgmt::V2019_08_01::Models::CheckNameResourceTypes
49
- ServiceLevel = Azure::NetApp::Mgmt::V2019_08_01::Models::ServiceLevel
50
- end
51
-
52
- class NetAppManagementClass
53
- attr_reader :operations, :net_app_resource, :accounts, :pools, :volumes, :mount_targets, :snapshots, :configurable, :base_url, :options, :model_classes
54
-
55
- def initialize(configurable, base_url=nil, options=nil)
56
- @configurable, @base_url, @options = configurable, base_url, options
57
-
58
- @client_0 = Azure::NetApp::Mgmt::V2019_08_01::AzureNetAppFilesManagementClient.new(configurable.credentials, base_url, options)
59
- if(@client_0.respond_to?(:subscription_id))
60
- @client_0.subscription_id = configurable.subscription_id
61
- end
62
- add_telemetry(@client_0)
63
- @operations = @client_0.operations
64
- @net_app_resource = @client_0.net_app_resource
65
- @accounts = @client_0.accounts
66
- @pools = @client_0.pools
67
- @volumes = @client_0.volumes
68
- @mount_targets = @client_0.mount_targets
69
- @snapshots = @client_0.snapshots
70
-
71
- @model_classes = ModelClasses.new
72
- end
73
-
74
- def add_telemetry(client)
75
- profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/NetApp/Mgmt"
76
- client.add_user_agent_information(profile_information)
77
- end
78
-
79
- def method_missing(method, *args)
80
- if @client_0.respond_to?method
81
- @client_0.send(method, *args)
82
- else
83
- super
84
- end
85
- end
86
-
87
- class ModelClasses
88
- def capacity_pool_patch
89
- Azure::NetApp::Mgmt::V2019_08_01::Models::CapacityPoolPatch
90
- end
91
- def operation_display
92
- Azure::NetApp::Mgmt::V2019_08_01::Models::OperationDisplay
93
- end
94
- def export_policy_rule
95
- Azure::NetApp::Mgmt::V2019_08_01::Models::ExportPolicyRule
96
- end
97
- def metric_specification
98
- Azure::NetApp::Mgmt::V2019_08_01::Models::MetricSpecification
99
- end
100
- def volume_properties_export_policy
101
- Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePropertiesExportPolicy
102
- end
103
- def operation
104
- Azure::NetApp::Mgmt::V2019_08_01::Models::Operation
105
- end
106
- def replication_object
107
- Azure::NetApp::Mgmt::V2019_08_01::Models::ReplicationObject
108
- end
109
- def resource_name_availability
110
- Azure::NetApp::Mgmt::V2019_08_01::Models::ResourceNameAvailability
111
- end
112
- def volume_properties_data_protection
113
- Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePropertiesDataProtection
114
- end
115
- def active_directory
116
- Azure::NetApp::Mgmt::V2019_08_01::Models::ActiveDirectory
117
- end
118
- def volume
119
- Azure::NetApp::Mgmt::V2019_08_01::Models::Volume
120
- end
121
- def net_app_account_list
122
- Azure::NetApp::Mgmt::V2019_08_01::Models::NetAppAccountList
123
- end
124
- def volume_list
125
- Azure::NetApp::Mgmt::V2019_08_01::Models::VolumeList
126
- end
127
- def capacity_pool
128
- Azure::NetApp::Mgmt::V2019_08_01::Models::CapacityPool
129
- end
130
- def volume_patch_properties_export_policy
131
- Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePatchPropertiesExportPolicy
132
- end
133
- def dimension
134
- Azure::NetApp::Mgmt::V2019_08_01::Models::Dimension
135
- end
136
- def volume_patch
137
- Azure::NetApp::Mgmt::V2019_08_01::Models::VolumePatch
138
- end
139
- def operation_list_result
140
- Azure::NetApp::Mgmt::V2019_08_01::Models::OperationListResult
141
- end
142
- def mount_target
143
- Azure::NetApp::Mgmt::V2019_08_01::Models::MountTarget
144
- end
145
- def net_app_account
146
- Azure::NetApp::Mgmt::V2019_08_01::Models::NetAppAccount
147
- end
148
- def mount_target_list
149
- Azure::NetApp::Mgmt::V2019_08_01::Models::MountTargetList
150
- end
151
- def capacity_pool_list
152
- Azure::NetApp::Mgmt::V2019_08_01::Models::CapacityPoolList
153
- end
154
- def snapshot
155
- Azure::NetApp::Mgmt::V2019_08_01::Models::Snapshot
156
- end
157
- def resource_name_availability_request
158
- Azure::NetApp::Mgmt::V2019_08_01::Models::ResourceNameAvailabilityRequest
159
- end
160
- def snapshots_list
161
- Azure::NetApp::Mgmt::V2019_08_01::Models::SnapshotsList
162
- end
163
- def service_specification
164
- Azure::NetApp::Mgmt::V2019_08_01::Models::ServiceSpecification
165
- end
166
- def snapshot_patch
167
- Azure::NetApp::Mgmt::V2019_08_01::Models::SnapshotPatch
168
- end
169
- def net_app_account_patch
170
- Azure::NetApp::Mgmt::V2019_08_01::Models::NetAppAccountPatch
171
- end
172
- def in_availability_reason_type
173
- Azure::NetApp::Mgmt::V2019_08_01::Models::InAvailabilityReasonType
174
- end
175
- def check_name_resource_types
176
- Azure::NetApp::Mgmt::V2019_08_01::Models::CheckNameResourceTypes
177
- end
178
- def service_level
179
- Azure::NetApp::Mgmt::V2019_08_01::Models::ServiceLevel
180
- end
181
- end
182
- end
183
- end
184
- end
185
- end
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ require 'azure_mgmt_netapp'
6
+
7
+ module Azure::Profiles::Latest
8
+ module NetApp
9
+ module Mgmt
10
+ Operations = Azure::NetApp::Mgmt::V2019_10_01::Operations
11
+ NetAppResource = Azure::NetApp::Mgmt::V2019_10_01::NetAppResource
12
+ Accounts = Azure::NetApp::Mgmt::V2019_10_01::Accounts
13
+ Pools = Azure::NetApp::Mgmt::V2019_10_01::Pools
14
+ Volumes = Azure::NetApp::Mgmt::V2019_10_01::Volumes
15
+ MountTargets = Azure::NetApp::Mgmt::V2019_10_01::MountTargets
16
+ Snapshots = Azure::NetApp::Mgmt::V2019_10_01::Snapshots
17
+
18
+ module Models
19
+ ExportPolicyRule = Azure::NetApp::Mgmt::V2019_10_01::Models::ExportPolicyRule
20
+ OperationDisplay = Azure::NetApp::Mgmt::V2019_10_01::Models::OperationDisplay
21
+ VolumePropertiesExportPolicy = Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePropertiesExportPolicy
22
+ MetricSpecification = Azure::NetApp::Mgmt::V2019_10_01::Models::MetricSpecification
23
+ ReplicationObject = Azure::NetApp::Mgmt::V2019_10_01::Models::ReplicationObject
24
+ Operation = Azure::NetApp::Mgmt::V2019_10_01::Models::Operation
25
+ VolumePropertiesDataProtection = Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePropertiesDataProtection
26
+ ResourceNameAvailability = Azure::NetApp::Mgmt::V2019_10_01::Models::ResourceNameAvailability
27
+ Volume = Azure::NetApp::Mgmt::V2019_10_01::Models::Volume
28
+ ActiveDirectory = Azure::NetApp::Mgmt::V2019_10_01::Models::ActiveDirectory
29
+ VolumeList = Azure::NetApp::Mgmt::V2019_10_01::Models::VolumeList
30
+ NetAppAccountList = Azure::NetApp::Mgmt::V2019_10_01::Models::NetAppAccountList
31
+ ReplicationStatus = Azure::NetApp::Mgmt::V2019_10_01::Models::ReplicationStatus
32
+ CapacityPool = Azure::NetApp::Mgmt::V2019_10_01::Models::CapacityPool
33
+ VolumePatchPropertiesExportPolicy = Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePatchPropertiesExportPolicy
34
+ CapacityPoolPatch = Azure::NetApp::Mgmt::V2019_10_01::Models::CapacityPoolPatch
35
+ VolumePatch = Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePatch
36
+ ServiceSpecification = Azure::NetApp::Mgmt::V2019_10_01::Models::ServiceSpecification
37
+ MountTarget = Azure::NetApp::Mgmt::V2019_10_01::Models::MountTarget
38
+ ResourceNameAvailabilityRequest = Azure::NetApp::Mgmt::V2019_10_01::Models::ResourceNameAvailabilityRequest
39
+ MountTargetList = Azure::NetApp::Mgmt::V2019_10_01::Models::MountTargetList
40
+ NetAppAccountPatch = Azure::NetApp::Mgmt::V2019_10_01::Models::NetAppAccountPatch
41
+ Snapshot = Azure::NetApp::Mgmt::V2019_10_01::Models::Snapshot
42
+ Dimension = Azure::NetApp::Mgmt::V2019_10_01::Models::Dimension
43
+ SnapshotsList = Azure::NetApp::Mgmt::V2019_10_01::Models::SnapshotsList
44
+ NetAppAccount = Azure::NetApp::Mgmt::V2019_10_01::Models::NetAppAccount
45
+ SnapshotPatch = Azure::NetApp::Mgmt::V2019_10_01::Models::SnapshotPatch
46
+ OperationListResult = Azure::NetApp::Mgmt::V2019_10_01::Models::OperationListResult
47
+ AuthorizeRequest = Azure::NetApp::Mgmt::V2019_10_01::Models::AuthorizeRequest
48
+ CapacityPoolList = Azure::NetApp::Mgmt::V2019_10_01::Models::CapacityPoolList
49
+ InAvailabilityReasonType = Azure::NetApp::Mgmt::V2019_10_01::Models::InAvailabilityReasonType
50
+ CheckNameResourceTypes = Azure::NetApp::Mgmt::V2019_10_01::Models::CheckNameResourceTypes
51
+ ServiceLevel = Azure::NetApp::Mgmt::V2019_10_01::Models::ServiceLevel
52
+ EndpointType = Azure::NetApp::Mgmt::V2019_10_01::Models::EndpointType
53
+ ReplicationSchedule = Azure::NetApp::Mgmt::V2019_10_01::Models::ReplicationSchedule
54
+ RelationshipStatus = Azure::NetApp::Mgmt::V2019_10_01::Models::RelationshipStatus
55
+ MirrorState = Azure::NetApp::Mgmt::V2019_10_01::Models::MirrorState
56
+ end
57
+
58
+ class NetAppManagementClass
59
+ attr_reader :operations, :net_app_resource, :accounts, :pools, :volumes, :mount_targets, :snapshots, :configurable, :base_url, :options, :model_classes
60
+
61
+ def initialize(configurable, base_url=nil, options=nil)
62
+ @configurable, @base_url, @options = configurable, base_url, options
63
+
64
+ @client_0 = Azure::NetApp::Mgmt::V2019_10_01::AzureNetAppFilesManagementClient.new(configurable.credentials, base_url, options)
65
+ if(@client_0.respond_to?(:subscription_id))
66
+ @client_0.subscription_id = configurable.subscription_id
67
+ end
68
+ add_telemetry(@client_0)
69
+ @operations = @client_0.operations
70
+ @net_app_resource = @client_0.net_app_resource
71
+ @accounts = @client_0.accounts
72
+ @pools = @client_0.pools
73
+ @volumes = @client_0.volumes
74
+ @mount_targets = @client_0.mount_targets
75
+ @snapshots = @client_0.snapshots
76
+
77
+ @model_classes = ModelClasses.new
78
+ end
79
+
80
+ def add_telemetry(client)
81
+ profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/NetApp/Mgmt"
82
+ client.add_user_agent_information(profile_information)
83
+ end
84
+
85
+ def method_missing(method, *args)
86
+ if @client_0.respond_to?method
87
+ @client_0.send(method, *args)
88
+ else
89
+ super
90
+ end
91
+ end
92
+
93
+ class ModelClasses
94
+ def export_policy_rule
95
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ExportPolicyRule
96
+ end
97
+ def operation_display
98
+ Azure::NetApp::Mgmt::V2019_10_01::Models::OperationDisplay
99
+ end
100
+ def volume_properties_export_policy
101
+ Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePropertiesExportPolicy
102
+ end
103
+ def metric_specification
104
+ Azure::NetApp::Mgmt::V2019_10_01::Models::MetricSpecification
105
+ end
106
+ def replication_object
107
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ReplicationObject
108
+ end
109
+ def operation
110
+ Azure::NetApp::Mgmt::V2019_10_01::Models::Operation
111
+ end
112
+ def volume_properties_data_protection
113
+ Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePropertiesDataProtection
114
+ end
115
+ def resource_name_availability
116
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ResourceNameAvailability
117
+ end
118
+ def volume
119
+ Azure::NetApp::Mgmt::V2019_10_01::Models::Volume
120
+ end
121
+ def active_directory
122
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ActiveDirectory
123
+ end
124
+ def volume_list
125
+ Azure::NetApp::Mgmt::V2019_10_01::Models::VolumeList
126
+ end
127
+ def net_app_account_list
128
+ Azure::NetApp::Mgmt::V2019_10_01::Models::NetAppAccountList
129
+ end
130
+ def replication_status
131
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ReplicationStatus
132
+ end
133
+ def capacity_pool
134
+ Azure::NetApp::Mgmt::V2019_10_01::Models::CapacityPool
135
+ end
136
+ def volume_patch_properties_export_policy
137
+ Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePatchPropertiesExportPolicy
138
+ end
139
+ def capacity_pool_patch
140
+ Azure::NetApp::Mgmt::V2019_10_01::Models::CapacityPoolPatch
141
+ end
142
+ def volume_patch
143
+ Azure::NetApp::Mgmt::V2019_10_01::Models::VolumePatch
144
+ end
145
+ def service_specification
146
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ServiceSpecification
147
+ end
148
+ def mount_target
149
+ Azure::NetApp::Mgmt::V2019_10_01::Models::MountTarget
150
+ end
151
+ def resource_name_availability_request
152
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ResourceNameAvailabilityRequest
153
+ end
154
+ def mount_target_list
155
+ Azure::NetApp::Mgmt::V2019_10_01::Models::MountTargetList
156
+ end
157
+ def net_app_account_patch
158
+ Azure::NetApp::Mgmt::V2019_10_01::Models::NetAppAccountPatch
159
+ end
160
+ def snapshot
161
+ Azure::NetApp::Mgmt::V2019_10_01::Models::Snapshot
162
+ end
163
+ def dimension
164
+ Azure::NetApp::Mgmt::V2019_10_01::Models::Dimension
165
+ end
166
+ def snapshots_list
167
+ Azure::NetApp::Mgmt::V2019_10_01::Models::SnapshotsList
168
+ end
169
+ def net_app_account
170
+ Azure::NetApp::Mgmt::V2019_10_01::Models::NetAppAccount
171
+ end
172
+ def snapshot_patch
173
+ Azure::NetApp::Mgmt::V2019_10_01::Models::SnapshotPatch
174
+ end
175
+ def operation_list_result
176
+ Azure::NetApp::Mgmt::V2019_10_01::Models::OperationListResult
177
+ end
178
+ def authorize_request
179
+ Azure::NetApp::Mgmt::V2019_10_01::Models::AuthorizeRequest
180
+ end
181
+ def capacity_pool_list
182
+ Azure::NetApp::Mgmt::V2019_10_01::Models::CapacityPoolList
183
+ end
184
+ def in_availability_reason_type
185
+ Azure::NetApp::Mgmt::V2019_10_01::Models::InAvailabilityReasonType
186
+ end
187
+ def check_name_resource_types
188
+ Azure::NetApp::Mgmt::V2019_10_01::Models::CheckNameResourceTypes
189
+ end
190
+ def service_level
191
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ServiceLevel
192
+ end
193
+ def endpoint_type
194
+ Azure::NetApp::Mgmt::V2019_10_01::Models::EndpointType
195
+ end
196
+ def replication_schedule
197
+ Azure::NetApp::Mgmt::V2019_10_01::Models::ReplicationSchedule
198
+ end
199
+ def relationship_status
200
+ Azure::NetApp::Mgmt::V2019_10_01::Models::RelationshipStatus
201
+ end
202
+ def mirror_state
203
+ Azure::NetApp::Mgmt::V2019_10_01::Models::MirrorState
204
+ end
205
+ end
206
+ end
207
+ end
208
+ end
209
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.49.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-02 00:00:00.000000000 Z
11
+ date: 2020-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -940,14 +940,14 @@ dependencies:
940
940
  requirements:
941
941
  - - "~>"
942
942
  - !ruby/object:Gem::Version
943
- version: 0.18.2
943
+ version: 0.18.3
944
944
  type: :runtime
945
945
  prerelease: false
946
946
  version_requirements: !ruby/object:Gem::Requirement
947
947
  requirements:
948
948
  - - "~>"
949
949
  - !ruby/object:Gem::Version
950
- version: 0.18.2
950
+ version: 0.18.3
951
951
  - !ruby/object:Gem::Dependency
952
952
  name: azure_mgmt_network
953
953
  requirement: !ruby/object:Gem::Requirement
@@ -2102,7 +2102,7 @@ metadata:
2102
2102
  changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
2103
2103
  documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
2104
2104
  homepage_uri: https://aka.ms/azure-sdk-for-ruby
2105
- source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.49.0
2105
+ source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.49.1
2106
2106
  wiki_uri: https://github.com/Azure/azure-sdk-for-ruby/wiki
2107
2107
  post_install_message:
2108
2108
  rdoc_options: []