azure_sdk 0.16.2 → 0.16.3
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.
- checksums.yaml +4 -4
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +11 -1
- data/lib/latest/modules/apimanagement_profile_module.rb +951 -0
- metadata +18 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e4f136d234dd90f301e54b7e950cba79fbf6b2a
|
|
4
|
+
data.tar.gz: 5b782f2a48abc0791bad95ade47d71865668f82d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49c0002a166e3686a182cb55a0c922eb7472256a36de40c52e1fd0283dec0f7e0f7e2e5134c6677a498052b9c01e48f95a5b3f026675b131a3665578ec1e7586
|
|
7
|
+
data.tar.gz: 42f9737a5b18cd03230106269495a9bb787b33172f5dde4095a0fb0ce1e6335a8d387315555dded907a0cfaacb70abdfb20efa488a122b1ce6f27b74c57e002d
|
data/lib/azure_sdk/version.rb
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
require 'latest/module_definition'
|
|
6
6
|
require 'latest/modules/analysisservices_profile_module'
|
|
7
|
+
require 'latest/modules/apimanagement_profile_module'
|
|
7
8
|
require 'latest/modules/authorization_profile_module'
|
|
8
9
|
require 'latest/modules/automation_profile_module'
|
|
9
10
|
require 'latest/modules/batch_profile_module'
|
|
@@ -80,7 +81,7 @@ module Azure::Profiles::Latest
|
|
|
80
81
|
class Client
|
|
81
82
|
include MsRestAzure::Common::Configurable
|
|
82
83
|
|
|
83
|
-
attr_reader :analysis_services, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :mobile_engagement, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :server_management, :service_bus, :service_fabric, :sql, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :computer_vision, :content_moderator, :custom_search, :entity_search, :face, :image_search, :news_search, :spell_check, :text_analytics, :video_search, :web_search
|
|
84
|
+
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :mobile_engagement, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :server_management, :service_bus, :service_fabric, :sql, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :computer_vision, :content_moderator, :custom_search, :entity_search, :face, :image_search, :news_search, :spell_check, :text_analytics, :video_search, :web_search
|
|
84
85
|
|
|
85
86
|
#
|
|
86
87
|
# Initializes a new instance of the Client class.
|
|
@@ -113,6 +114,7 @@ module Azure::Profiles::Latest
|
|
|
113
114
|
sdk_options = options[:options].nil? ? nil:options[:options]
|
|
114
115
|
|
|
115
116
|
@analysis_services = AnalysisServicesAdapter.new(self, base_url, sdk_options)
|
|
117
|
+
@api_management = ApiManagementAdapter.new(self, base_url, sdk_options)
|
|
116
118
|
@authorization = AuthorizationAdapter.new(self, base_url, sdk_options)
|
|
117
119
|
@automation = AutomationAdapter.new(self, base_url, sdk_options)
|
|
118
120
|
@batch = BatchAdapter.new(self, base_url, sdk_options)
|
|
@@ -191,6 +193,14 @@ module Azure::Profiles::Latest
|
|
|
191
193
|
end
|
|
192
194
|
end
|
|
193
195
|
|
|
196
|
+
class ApiManagementAdapter
|
|
197
|
+
attr_accessor :mgmt
|
|
198
|
+
|
|
199
|
+
def initialize(context, base_url, options)
|
|
200
|
+
@mgmt = Azure::Profiles::Latest::ApiManagement::Mgmt::ApiManagementManagementClass.new(context, base_url, options)
|
|
201
|
+
end
|
|
202
|
+
end
|
|
203
|
+
|
|
194
204
|
class AuthorizationAdapter
|
|
195
205
|
attr_accessor :mgmt
|
|
196
206
|
|
|
@@ -0,0 +1,951 @@
|
|
|
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_api_management'
|
|
6
|
+
|
|
7
|
+
module Azure::Profiles::Latest
|
|
8
|
+
module ApiManagement
|
|
9
|
+
module Mgmt
|
|
10
|
+
Policy = Azure::ApiManagement::Mgmt::V2018_01_01::Policy
|
|
11
|
+
PolicySnippets = Azure::ApiManagement::Mgmt::V2018_01_01::PolicySnippets
|
|
12
|
+
Regions = Azure::ApiManagement::Mgmt::V2018_01_01::Regions
|
|
13
|
+
Api = Azure::ApiManagement::Mgmt::V2018_01_01::Api
|
|
14
|
+
ApiRevisions = Azure::ApiManagement::Mgmt::V2018_01_01::ApiRevisions
|
|
15
|
+
ApiRelease = Azure::ApiManagement::Mgmt::V2018_01_01::ApiRelease
|
|
16
|
+
ApiOperation = Azure::ApiManagement::Mgmt::V2018_01_01::ApiOperation
|
|
17
|
+
ApiOperationPolicy = Azure::ApiManagement::Mgmt::V2018_01_01::ApiOperationPolicy
|
|
18
|
+
ApiProduct = Azure::ApiManagement::Mgmt::V2018_01_01::ApiProduct
|
|
19
|
+
ApiPolicy = Azure::ApiManagement::Mgmt::V2018_01_01::ApiPolicy
|
|
20
|
+
ApiSchema = Azure::ApiManagement::Mgmt::V2018_01_01::ApiSchema
|
|
21
|
+
ApiDiagnostic = Azure::ApiManagement::Mgmt::V2018_01_01::ApiDiagnostic
|
|
22
|
+
ApiDiagnosticLogger = Azure::ApiManagement::Mgmt::V2018_01_01::ApiDiagnosticLogger
|
|
23
|
+
AuthorizationServer = Azure::ApiManagement::Mgmt::V2018_01_01::AuthorizationServer
|
|
24
|
+
Backend = Azure::ApiManagement::Mgmt::V2018_01_01::Backend
|
|
25
|
+
Certificate = Azure::ApiManagement::Mgmt::V2018_01_01::Certificate
|
|
26
|
+
ApiManagementOperations = Azure::ApiManagement::Mgmt::V2018_01_01::ApiManagementOperations
|
|
27
|
+
ApiManagementService = Azure::ApiManagement::Mgmt::V2018_01_01::ApiManagementService
|
|
28
|
+
Diagnostic = Azure::ApiManagement::Mgmt::V2018_01_01::Diagnostic
|
|
29
|
+
DiagnosticLogger = Azure::ApiManagement::Mgmt::V2018_01_01::DiagnosticLogger
|
|
30
|
+
EmailTemplate = Azure::ApiManagement::Mgmt::V2018_01_01::EmailTemplate
|
|
31
|
+
Group = Azure::ApiManagement::Mgmt::V2018_01_01::Group
|
|
32
|
+
GroupUser = Azure::ApiManagement::Mgmt::V2018_01_01::GroupUser
|
|
33
|
+
IdentityProvider = Azure::ApiManagement::Mgmt::V2018_01_01::IdentityProvider
|
|
34
|
+
Logger = Azure::ApiManagement::Mgmt::V2018_01_01::Logger
|
|
35
|
+
Notification = Azure::ApiManagement::Mgmt::V2018_01_01::Notification
|
|
36
|
+
NotificationRecipientUser = Azure::ApiManagement::Mgmt::V2018_01_01::NotificationRecipientUser
|
|
37
|
+
NotificationRecipientEmail = Azure::ApiManagement::Mgmt::V2018_01_01::NotificationRecipientEmail
|
|
38
|
+
NetworkStatus = Azure::ApiManagement::Mgmt::V2018_01_01::NetworkStatus
|
|
39
|
+
OpenIdConnectProvider = Azure::ApiManagement::Mgmt::V2018_01_01::OpenIdConnectProvider
|
|
40
|
+
SignInSettings = Azure::ApiManagement::Mgmt::V2018_01_01::SignInSettings
|
|
41
|
+
SignUpSettings = Azure::ApiManagement::Mgmt::V2018_01_01::SignUpSettings
|
|
42
|
+
DelegationSettings = Azure::ApiManagement::Mgmt::V2018_01_01::DelegationSettings
|
|
43
|
+
Product = Azure::ApiManagement::Mgmt::V2018_01_01::Product
|
|
44
|
+
ProductApi = Azure::ApiManagement::Mgmt::V2018_01_01::ProductApi
|
|
45
|
+
ProductGroup = Azure::ApiManagement::Mgmt::V2018_01_01::ProductGroup
|
|
46
|
+
ProductSubscriptions = Azure::ApiManagement::Mgmt::V2018_01_01::ProductSubscriptions
|
|
47
|
+
ProductPolicy = Azure::ApiManagement::Mgmt::V2018_01_01::ProductPolicy
|
|
48
|
+
Property = Azure::ApiManagement::Mgmt::V2018_01_01::Property
|
|
49
|
+
QuotaByCounterKeys = Azure::ApiManagement::Mgmt::V2018_01_01::QuotaByCounterKeys
|
|
50
|
+
QuotaByPeriodKeys = Azure::ApiManagement::Mgmt::V2018_01_01::QuotaByPeriodKeys
|
|
51
|
+
Reports = Azure::ApiManagement::Mgmt::V2018_01_01::Reports
|
|
52
|
+
Subscription = Azure::ApiManagement::Mgmt::V2018_01_01::Subscription
|
|
53
|
+
TagResource = Azure::ApiManagement::Mgmt::V2018_01_01::TagResource
|
|
54
|
+
Tag = Azure::ApiManagement::Mgmt::V2018_01_01::Tag
|
|
55
|
+
TagDescription = Azure::ApiManagement::Mgmt::V2018_01_01::TagDescription
|
|
56
|
+
OperationOperations = Azure::ApiManagement::Mgmt::V2018_01_01::OperationOperations
|
|
57
|
+
TenantAccess = Azure::ApiManagement::Mgmt::V2018_01_01::TenantAccess
|
|
58
|
+
TenantAccessGit = Azure::ApiManagement::Mgmt::V2018_01_01::TenantAccessGit
|
|
59
|
+
TenantConfiguration = Azure::ApiManagement::Mgmt::V2018_01_01::TenantConfiguration
|
|
60
|
+
User = Azure::ApiManagement::Mgmt::V2018_01_01::User
|
|
61
|
+
UserGroup = Azure::ApiManagement::Mgmt::V2018_01_01::UserGroup
|
|
62
|
+
UserSubscription = Azure::ApiManagement::Mgmt::V2018_01_01::UserSubscription
|
|
63
|
+
UserIdentities = Azure::ApiManagement::Mgmt::V2018_01_01::UserIdentities
|
|
64
|
+
ApiVersionSet = Azure::ApiManagement::Mgmt::V2018_01_01::ApiVersionSet
|
|
65
|
+
ApiExport = Azure::ApiManagement::Mgmt::V2018_01_01::ApiExport
|
|
66
|
+
|
|
67
|
+
module Models
|
|
68
|
+
ApiManagementServiceNameAvailabilityResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceNameAvailabilityResult
|
|
69
|
+
ApiManagementServiceApplyNetworkConfigurationParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceApplyNetworkConfigurationParameters
|
|
70
|
+
ErrorResponse = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ErrorResponse
|
|
71
|
+
ApiManagementServiceUploadCertificateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceUploadCertificateParameters
|
|
72
|
+
PolicyCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyCollection
|
|
73
|
+
HostnameConfigurationOld = Azure::ApiManagement::Mgmt::V2018_01_01::Models::HostnameConfigurationOld
|
|
74
|
+
PolicySnippetsCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicySnippetsCollection
|
|
75
|
+
ApiManagementServiceUpdateHostnameParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceUpdateHostnameParameters
|
|
76
|
+
RegionListResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RegionListResult
|
|
77
|
+
OperationDisplay = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationDisplay
|
|
78
|
+
ApiExportResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiExportResult
|
|
79
|
+
Operation = Azure::ApiManagement::Mgmt::V2018_01_01::Models::Operation
|
|
80
|
+
AdditionalLocation = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AdditionalLocation
|
|
81
|
+
ApiManagementServiceBackupRestoreParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceBackupRestoreParameters
|
|
82
|
+
ApiCreateOrUpdatePropertiesWsdlSelector = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiCreateOrUpdatePropertiesWsdlSelector
|
|
83
|
+
ApiManagementServiceBaseProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceBaseProperties
|
|
84
|
+
ApiUpdateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiUpdateContract
|
|
85
|
+
ApiManagementServiceIdentity = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceIdentity
|
|
86
|
+
AuthenticationSettingsContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthenticationSettingsContract
|
|
87
|
+
DeployConfigurationParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::DeployConfigurationParameters
|
|
88
|
+
ApiEntityBaseContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiEntityBaseContract
|
|
89
|
+
ApimResource = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApimResource
|
|
90
|
+
ApiRevisionCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiRevisionCollection
|
|
91
|
+
AccessInformationUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AccessInformationUpdateParameters
|
|
92
|
+
ApiVersionSetUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetUpdateParameters
|
|
93
|
+
ApiManagementServiceListResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceListResult
|
|
94
|
+
ApiVersionSetEntityBase = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetEntityBase
|
|
95
|
+
ApiManagementServiceGetSsoTokenResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceGetSsoTokenResult
|
|
96
|
+
ParameterContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ParameterContract
|
|
97
|
+
ApiManagementServiceCheckNameAvailabilityParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceCheckNameAvailabilityParameters
|
|
98
|
+
RequestContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RequestContract
|
|
99
|
+
ErrorFieldContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ErrorFieldContract
|
|
100
|
+
OperationEntityBaseContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationEntityBaseContract
|
|
101
|
+
OperationUpdateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationUpdateContract
|
|
102
|
+
QuotaCounterValueContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterValueContractProperties
|
|
103
|
+
SchemaCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SchemaCollection
|
|
104
|
+
PolicySnippetContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicySnippetContract
|
|
105
|
+
LoggerCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerCollection
|
|
106
|
+
RegionContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RegionContract
|
|
107
|
+
DiagnosticCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::DiagnosticCollection
|
|
108
|
+
Resource = Azure::ApiManagement::Mgmt::V2018_01_01::Models::Resource
|
|
109
|
+
UserTokenParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserTokenParameters
|
|
110
|
+
ApiVersionSetContractDetails = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetContractDetails
|
|
111
|
+
UserIdentityCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserIdentityCollection
|
|
112
|
+
AccessInformationContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AccessInformationContract
|
|
113
|
+
TagResourceContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagResourceContract
|
|
114
|
+
OperationListResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationListResult
|
|
115
|
+
UserCreateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserCreateParameters
|
|
116
|
+
EmailTemplateParametersContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateParametersContractProperties
|
|
117
|
+
GenerateSsoUrlResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GenerateSsoUrlResult
|
|
118
|
+
TagDescriptionCreateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagDescriptionCreateParameters
|
|
119
|
+
TenantConfigurationSyncStateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TenantConfigurationSyncStateContract
|
|
120
|
+
EmailTemplateCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateCollection
|
|
121
|
+
AuthorizationServerContractBaseProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerContractBaseProperties
|
|
122
|
+
EmailTemplateUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateUpdateParameters
|
|
123
|
+
X509CertificateName = Azure::ApiManagement::Mgmt::V2018_01_01::Models::X509CertificateName
|
|
124
|
+
GroupContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupContractProperties
|
|
125
|
+
BackendProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendProperties
|
|
126
|
+
TagDescriptionCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagDescriptionCollection
|
|
127
|
+
BackendProxyContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendProxyContract
|
|
128
|
+
GroupCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupCollection
|
|
129
|
+
BackendBaseParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendBaseParameters
|
|
130
|
+
GroupCreateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupCreateParameters
|
|
131
|
+
BackendCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendCollection
|
|
132
|
+
GroupUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupUpdateParameters
|
|
133
|
+
OperationResultContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationResultContract
|
|
134
|
+
UserIdentityContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserIdentityContract
|
|
135
|
+
CertificateCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateCollection
|
|
136
|
+
UserEntityBaseParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserEntityBaseParameters
|
|
137
|
+
CertificateInformation = Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateInformation
|
|
138
|
+
TagCreateUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagCreateUpdateParameters
|
|
139
|
+
HostnameConfiguration = Azure::ApiManagement::Mgmt::V2018_01_01::Models::HostnameConfiguration
|
|
140
|
+
UserCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserCollection
|
|
141
|
+
ApiManagementServiceSkuProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceSkuProperties
|
|
142
|
+
TagCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagCollection
|
|
143
|
+
ApiCreateOrUpdateParameter = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiCreateOrUpdateParameter
|
|
144
|
+
IdentityProviderList = Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderList
|
|
145
|
+
SubscriptionKeyParameterNamesContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionKeyParameterNamesContract
|
|
146
|
+
IdentityProviderUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderUpdateParameters
|
|
147
|
+
ApiRevisionInfoContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiRevisionInfoContract
|
|
148
|
+
IdentityProviderBaseParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderBaseParameters
|
|
149
|
+
OperationCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationCollection
|
|
150
|
+
LoggerUpdateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerUpdateContract
|
|
151
|
+
ResponseContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ResponseContract
|
|
152
|
+
RecipientsContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientsContractProperties
|
|
153
|
+
UserUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserUpdateParameters
|
|
154
|
+
SubscriptionUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionUpdateParameters
|
|
155
|
+
ProductEntityBaseParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductEntityBaseParameters
|
|
156
|
+
NotificationCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::NotificationCollection
|
|
157
|
+
TagTagResourceContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagTagResourceContractProperties
|
|
158
|
+
SubscriptionCreateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionCreateParameters
|
|
159
|
+
ProductCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductCollection
|
|
160
|
+
RecipientUserCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientUserCollection
|
|
161
|
+
TokenBodyParameterContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TokenBodyParameterContract
|
|
162
|
+
RequestReportCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RequestReportCollection
|
|
163
|
+
BackendServiceFabricClusterProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendServiceFabricClusterProperties
|
|
164
|
+
RecipientEmailCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientEmailCollection
|
|
165
|
+
BackendTlsProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendTlsProperties
|
|
166
|
+
ConnectivityStatusContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ConnectivityStatusContract
|
|
167
|
+
BackendUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendUpdateParameters
|
|
168
|
+
NetworkStatusContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::NetworkStatusContract
|
|
169
|
+
CertificateCreateOrUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateCreateOrUpdateParameters
|
|
170
|
+
NetworkStatusContractByLocation = Azure::ApiManagement::Mgmt::V2018_01_01::Models::NetworkStatusContractByLocation
|
|
171
|
+
VirtualNetworkConfiguration = Azure::ApiManagement::Mgmt::V2018_01_01::Models::VirtualNetworkConfiguration
|
|
172
|
+
RequestReportRecordContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RequestReportRecordContract
|
|
173
|
+
OAuth2AuthenticationSettingsContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OAuth2AuthenticationSettingsContract
|
|
174
|
+
OpenIdConnectProviderCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OpenIdConnectProviderCollection
|
|
175
|
+
ApiReleaseCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiReleaseCollection
|
|
176
|
+
OpenidConnectProviderUpdateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OpenidConnectProviderUpdateContract
|
|
177
|
+
ApiVersionSetCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetCollection
|
|
178
|
+
ReportCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ReportCollection
|
|
179
|
+
OperationTagResourceContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationTagResourceContractProperties
|
|
180
|
+
TermsOfServiceProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TermsOfServiceProperties
|
|
181
|
+
AuthorizationServerCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerCollection
|
|
182
|
+
ReportRecordContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ReportRecordContract
|
|
183
|
+
BackendCredentialsContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendCredentialsContract
|
|
184
|
+
SubscriptionsDelegationSettingsProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionsDelegationSettingsProperties
|
|
185
|
+
OperationResultLogItemContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationResultLogItemContract
|
|
186
|
+
RegistrationDelegationSettingsProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RegistrationDelegationSettingsProperties
|
|
187
|
+
ApiCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiCollection
|
|
188
|
+
QuotaCounterValueContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterValueContract
|
|
189
|
+
RepresentationContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RepresentationContract
|
|
190
|
+
ProductUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductUpdateParameters
|
|
191
|
+
TagResourceCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagResourceCollection
|
|
192
|
+
QuotaCounterCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterCollection
|
|
193
|
+
SaveConfigurationParameter = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SaveConfigurationParameter
|
|
194
|
+
SubscriptionCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionCollection
|
|
195
|
+
ApiRevisionContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiRevisionContract
|
|
196
|
+
QuotaCounterContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterContract
|
|
197
|
+
BackendAuthorizationHeaderCredentials = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendAuthorizationHeaderCredentials
|
|
198
|
+
PropertyCollection = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyCollection
|
|
199
|
+
UserTokenResult = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserTokenResult
|
|
200
|
+
PropertyUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyUpdateParameters
|
|
201
|
+
CertificateConfiguration = Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateConfiguration
|
|
202
|
+
PropertyEntityBaseParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyEntityBaseParameters
|
|
203
|
+
PolicyContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyContract
|
|
204
|
+
ApiContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiContractProperties
|
|
205
|
+
ApiContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiContract
|
|
206
|
+
ApiReleaseContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiReleaseContract
|
|
207
|
+
OperationContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationContract
|
|
208
|
+
SchemaContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SchemaContract
|
|
209
|
+
LoggerContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerContract
|
|
210
|
+
DiagnosticContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::DiagnosticContract
|
|
211
|
+
ProductTagResourceContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductTagResourceContractProperties
|
|
212
|
+
ApiTagResourceContractProperties = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiTagResourceContractProperties
|
|
213
|
+
ProductContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductContract
|
|
214
|
+
AuthorizationServerContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerContract
|
|
215
|
+
AuthorizationServerUpdateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerUpdateContract
|
|
216
|
+
BackendContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendContract
|
|
217
|
+
BackendReconnectContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendReconnectContract
|
|
218
|
+
CertificateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateContract
|
|
219
|
+
ApiManagementServiceResource = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceResource
|
|
220
|
+
ApiManagementServiceUpdateParameters = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceUpdateParameters
|
|
221
|
+
EmailTemplateContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateContract
|
|
222
|
+
GroupContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupContract
|
|
223
|
+
UserContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserContract
|
|
224
|
+
IdentityProviderContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderContract
|
|
225
|
+
NotificationContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::NotificationContract
|
|
226
|
+
RecipientUserContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientUserContract
|
|
227
|
+
RecipientEmailContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientEmailContract
|
|
228
|
+
OpenidConnectProviderContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::OpenidConnectProviderContract
|
|
229
|
+
PortalSigninSettings = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PortalSigninSettings
|
|
230
|
+
PortalSignupSettings = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PortalSignupSettings
|
|
231
|
+
PortalDelegationSettings = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PortalDelegationSettings
|
|
232
|
+
SubscriptionContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionContract
|
|
233
|
+
PropertyContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyContract
|
|
234
|
+
TagContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagContract
|
|
235
|
+
TagDescriptionContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagDescriptionContract
|
|
236
|
+
ApiVersionSetContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetContract
|
|
237
|
+
PolicyContentFormat = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyContentFormat
|
|
238
|
+
Protocol = Azure::ApiManagement::Mgmt::V2018_01_01::Models::Protocol
|
|
239
|
+
ContentFormat = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ContentFormat
|
|
240
|
+
SoapApiType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SoapApiType
|
|
241
|
+
ApiType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiType
|
|
242
|
+
LoggerType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerType
|
|
243
|
+
ProductState = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductState
|
|
244
|
+
GrantType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GrantType
|
|
245
|
+
AuthorizationMethod = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationMethod
|
|
246
|
+
ClientAuthenticationMethod = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ClientAuthenticationMethod
|
|
247
|
+
BearerTokenSendingMethod = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BearerTokenSendingMethod
|
|
248
|
+
BackendProtocol = Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendProtocol
|
|
249
|
+
HostnameType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::HostnameType
|
|
250
|
+
SkuType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SkuType
|
|
251
|
+
VirtualNetworkType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::VirtualNetworkType
|
|
252
|
+
NameAvailabilityReason = Azure::ApiManagement::Mgmt::V2018_01_01::Models::NameAvailabilityReason
|
|
253
|
+
GroupType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupType
|
|
254
|
+
Confirmation = Azure::ApiManagement::Mgmt::V2018_01_01::Models::Confirmation
|
|
255
|
+
UserState = Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserState
|
|
256
|
+
IdentityProviderType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderType
|
|
257
|
+
ConnectivityStatusType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ConnectivityStatusType
|
|
258
|
+
SubscriptionState = Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionState
|
|
259
|
+
AsyncOperationStatus = Azure::ApiManagement::Mgmt::V2018_01_01::Models::AsyncOperationStatus
|
|
260
|
+
KeyType = Azure::ApiManagement::Mgmt::V2018_01_01::Models::KeyType
|
|
261
|
+
VersioningScheme = Azure::ApiManagement::Mgmt::V2018_01_01::Models::VersioningScheme
|
|
262
|
+
TemplateName = Azure::ApiManagement::Mgmt::V2018_01_01::Models::TemplateName
|
|
263
|
+
NotificationName = Azure::ApiManagement::Mgmt::V2018_01_01::Models::NotificationName
|
|
264
|
+
PolicyScopeContract = Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyScopeContract
|
|
265
|
+
ExportFormat = Azure::ApiManagement::Mgmt::V2018_01_01::Models::ExportFormat
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
class ApiManagementManagementClass
|
|
269
|
+
attr_reader :policy, :policy_snippets, :regions, :api, :api_revisions, :api_release, :api_operation, :api_operation_policy, :api_product, :api_policy, :api_schema, :api_diagnostic, :api_diagnostic_logger, :authorization_server, :backend, :certificate, :api_management_operations, :api_management_service, :diagnostic, :diagnostic_logger, :email_template, :group, :group_user, :identity_provider, :logger, :notification, :notification_recipient_user, :notification_recipient_email, :network_status, :open_id_connect_provider, :sign_in_settings, :sign_up_settings, :delegation_settings, :product, :product_api, :product_group, :product_subscriptions, :product_policy, :property, :quota_by_counter_keys, :quota_by_period_keys, :reports, :subscription, :tag_resource, :tag, :tag_description, :operation_operations, :tenant_access, :tenant_access_git, :tenant_configuration, :user, :user_group, :user_subscription, :user_identities, :api_version_set, :api_export, :configurable, :base_url, :options, :model_classes
|
|
270
|
+
|
|
271
|
+
def initialize(configurable, base_url=nil, options=nil)
|
|
272
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
|
273
|
+
|
|
274
|
+
@client_0 = Azure::ApiManagement::Mgmt::V2018_01_01::ApiManagementClient.new(configurable.credentials, base_url, options)
|
|
275
|
+
if(@client_0.respond_to?(:subscription_id))
|
|
276
|
+
@client_0.subscription_id = configurable.subscription_id
|
|
277
|
+
end
|
|
278
|
+
add_telemetry(@client_0)
|
|
279
|
+
@policy = @client_0.policy
|
|
280
|
+
@policy_snippets = @client_0.policy_snippets
|
|
281
|
+
@regions = @client_0.regions
|
|
282
|
+
@api = @client_0.api
|
|
283
|
+
@api_revisions = @client_0.api_revisions
|
|
284
|
+
@api_release = @client_0.api_release
|
|
285
|
+
@api_operation = @client_0.api_operation
|
|
286
|
+
@api_operation_policy = @client_0.api_operation_policy
|
|
287
|
+
@api_product = @client_0.api_product
|
|
288
|
+
@api_policy = @client_0.api_policy
|
|
289
|
+
@api_schema = @client_0.api_schema
|
|
290
|
+
@api_diagnostic = @client_0.api_diagnostic
|
|
291
|
+
@api_diagnostic_logger = @client_0.api_diagnostic_logger
|
|
292
|
+
@authorization_server = @client_0.authorization_server
|
|
293
|
+
@backend = @client_0.backend
|
|
294
|
+
@certificate = @client_0.certificate
|
|
295
|
+
@api_management_operations = @client_0.api_management_operations
|
|
296
|
+
@api_management_service = @client_0.api_management_service
|
|
297
|
+
@diagnostic = @client_0.diagnostic
|
|
298
|
+
@diagnostic_logger = @client_0.diagnostic_logger
|
|
299
|
+
@email_template = @client_0.email_template
|
|
300
|
+
@group = @client_0.group
|
|
301
|
+
@group_user = @client_0.group_user
|
|
302
|
+
@identity_provider = @client_0.identity_provider
|
|
303
|
+
@logger = @client_0.logger
|
|
304
|
+
@notification = @client_0.notification
|
|
305
|
+
@notification_recipient_user = @client_0.notification_recipient_user
|
|
306
|
+
@notification_recipient_email = @client_0.notification_recipient_email
|
|
307
|
+
@network_status = @client_0.network_status
|
|
308
|
+
@open_id_connect_provider = @client_0.open_id_connect_provider
|
|
309
|
+
@sign_in_settings = @client_0.sign_in_settings
|
|
310
|
+
@sign_up_settings = @client_0.sign_up_settings
|
|
311
|
+
@delegation_settings = @client_0.delegation_settings
|
|
312
|
+
@product = @client_0.product
|
|
313
|
+
@product_api = @client_0.product_api
|
|
314
|
+
@product_group = @client_0.product_group
|
|
315
|
+
@product_subscriptions = @client_0.product_subscriptions
|
|
316
|
+
@product_policy = @client_0.product_policy
|
|
317
|
+
@property = @client_0.property
|
|
318
|
+
@quota_by_counter_keys = @client_0.quota_by_counter_keys
|
|
319
|
+
@quota_by_period_keys = @client_0.quota_by_period_keys
|
|
320
|
+
@reports = @client_0.reports
|
|
321
|
+
@subscription = @client_0.subscription
|
|
322
|
+
@tag_resource = @client_0.tag_resource
|
|
323
|
+
@tag = @client_0.tag
|
|
324
|
+
@tag_description = @client_0.tag_description
|
|
325
|
+
@operation_operations = @client_0.operation_operations
|
|
326
|
+
@tenant_access = @client_0.tenant_access
|
|
327
|
+
@tenant_access_git = @client_0.tenant_access_git
|
|
328
|
+
@tenant_configuration = @client_0.tenant_configuration
|
|
329
|
+
@user = @client_0.user
|
|
330
|
+
@user_group = @client_0.user_group
|
|
331
|
+
@user_subscription = @client_0.user_subscription
|
|
332
|
+
@user_identities = @client_0.user_identities
|
|
333
|
+
@api_version_set = @client_0.api_version_set
|
|
334
|
+
@api_export = @client_0.api_export
|
|
335
|
+
|
|
336
|
+
@model_classes = ModelClasses.new
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
def add_telemetry(client)
|
|
340
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/ApiManagement/Mgmt"
|
|
341
|
+
client.add_user_agent_information(profile_information)
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
def method_missing(method, *args)
|
|
345
|
+
if @client_0.respond_to?method
|
|
346
|
+
@client_0.send(method, *args)
|
|
347
|
+
else
|
|
348
|
+
super
|
|
349
|
+
end
|
|
350
|
+
end
|
|
351
|
+
|
|
352
|
+
class ModelClasses
|
|
353
|
+
def api_management_service_name_availability_result
|
|
354
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceNameAvailabilityResult
|
|
355
|
+
end
|
|
356
|
+
def api_management_service_apply_network_configuration_parameters
|
|
357
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceApplyNetworkConfigurationParameters
|
|
358
|
+
end
|
|
359
|
+
def error_response
|
|
360
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ErrorResponse
|
|
361
|
+
end
|
|
362
|
+
def api_management_service_upload_certificate_parameters
|
|
363
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceUploadCertificateParameters
|
|
364
|
+
end
|
|
365
|
+
def policy_collection
|
|
366
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyCollection
|
|
367
|
+
end
|
|
368
|
+
def hostname_configuration_old
|
|
369
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::HostnameConfigurationOld
|
|
370
|
+
end
|
|
371
|
+
def policy_snippets_collection
|
|
372
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicySnippetsCollection
|
|
373
|
+
end
|
|
374
|
+
def api_management_service_update_hostname_parameters
|
|
375
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceUpdateHostnameParameters
|
|
376
|
+
end
|
|
377
|
+
def region_list_result
|
|
378
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RegionListResult
|
|
379
|
+
end
|
|
380
|
+
def operation_display
|
|
381
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationDisplay
|
|
382
|
+
end
|
|
383
|
+
def api_export_result
|
|
384
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiExportResult
|
|
385
|
+
end
|
|
386
|
+
def operation
|
|
387
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::Operation
|
|
388
|
+
end
|
|
389
|
+
def additional_location
|
|
390
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AdditionalLocation
|
|
391
|
+
end
|
|
392
|
+
def api_management_service_backup_restore_parameters
|
|
393
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceBackupRestoreParameters
|
|
394
|
+
end
|
|
395
|
+
def api_create_or_update_properties_wsdl_selector
|
|
396
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiCreateOrUpdatePropertiesWsdlSelector
|
|
397
|
+
end
|
|
398
|
+
def api_management_service_base_properties
|
|
399
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceBaseProperties
|
|
400
|
+
end
|
|
401
|
+
def api_update_contract
|
|
402
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiUpdateContract
|
|
403
|
+
end
|
|
404
|
+
def api_management_service_identity
|
|
405
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceIdentity
|
|
406
|
+
end
|
|
407
|
+
def authentication_settings_contract
|
|
408
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthenticationSettingsContract
|
|
409
|
+
end
|
|
410
|
+
def deploy_configuration_parameters
|
|
411
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::DeployConfigurationParameters
|
|
412
|
+
end
|
|
413
|
+
def api_entity_base_contract
|
|
414
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiEntityBaseContract
|
|
415
|
+
end
|
|
416
|
+
def apim_resource
|
|
417
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApimResource
|
|
418
|
+
end
|
|
419
|
+
def api_revision_collection
|
|
420
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiRevisionCollection
|
|
421
|
+
end
|
|
422
|
+
def access_information_update_parameters
|
|
423
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AccessInformationUpdateParameters
|
|
424
|
+
end
|
|
425
|
+
def api_version_set_update_parameters
|
|
426
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetUpdateParameters
|
|
427
|
+
end
|
|
428
|
+
def api_management_service_list_result
|
|
429
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceListResult
|
|
430
|
+
end
|
|
431
|
+
def api_version_set_entity_base
|
|
432
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetEntityBase
|
|
433
|
+
end
|
|
434
|
+
def api_management_service_get_sso_token_result
|
|
435
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceGetSsoTokenResult
|
|
436
|
+
end
|
|
437
|
+
def parameter_contract
|
|
438
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ParameterContract
|
|
439
|
+
end
|
|
440
|
+
def api_management_service_check_name_availability_parameters
|
|
441
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceCheckNameAvailabilityParameters
|
|
442
|
+
end
|
|
443
|
+
def request_contract
|
|
444
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RequestContract
|
|
445
|
+
end
|
|
446
|
+
def error_field_contract
|
|
447
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ErrorFieldContract
|
|
448
|
+
end
|
|
449
|
+
def operation_entity_base_contract
|
|
450
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationEntityBaseContract
|
|
451
|
+
end
|
|
452
|
+
def operation_update_contract
|
|
453
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationUpdateContract
|
|
454
|
+
end
|
|
455
|
+
def quota_counter_value_contract_properties
|
|
456
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterValueContractProperties
|
|
457
|
+
end
|
|
458
|
+
def schema_collection
|
|
459
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SchemaCollection
|
|
460
|
+
end
|
|
461
|
+
def policy_snippet_contract
|
|
462
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicySnippetContract
|
|
463
|
+
end
|
|
464
|
+
def logger_collection
|
|
465
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerCollection
|
|
466
|
+
end
|
|
467
|
+
def region_contract
|
|
468
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RegionContract
|
|
469
|
+
end
|
|
470
|
+
def diagnostic_collection
|
|
471
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::DiagnosticCollection
|
|
472
|
+
end
|
|
473
|
+
def resource
|
|
474
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::Resource
|
|
475
|
+
end
|
|
476
|
+
def user_token_parameters
|
|
477
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserTokenParameters
|
|
478
|
+
end
|
|
479
|
+
def api_version_set_contract_details
|
|
480
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetContractDetails
|
|
481
|
+
end
|
|
482
|
+
def user_identity_collection
|
|
483
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserIdentityCollection
|
|
484
|
+
end
|
|
485
|
+
def access_information_contract
|
|
486
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AccessInformationContract
|
|
487
|
+
end
|
|
488
|
+
def tag_resource_contract
|
|
489
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagResourceContract
|
|
490
|
+
end
|
|
491
|
+
def operation_list_result
|
|
492
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationListResult
|
|
493
|
+
end
|
|
494
|
+
def user_create_parameters
|
|
495
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserCreateParameters
|
|
496
|
+
end
|
|
497
|
+
def email_template_parameters_contract_properties
|
|
498
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateParametersContractProperties
|
|
499
|
+
end
|
|
500
|
+
def generate_sso_url_result
|
|
501
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GenerateSsoUrlResult
|
|
502
|
+
end
|
|
503
|
+
def tag_description_create_parameters
|
|
504
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagDescriptionCreateParameters
|
|
505
|
+
end
|
|
506
|
+
def tenant_configuration_sync_state_contract
|
|
507
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TenantConfigurationSyncStateContract
|
|
508
|
+
end
|
|
509
|
+
def email_template_collection
|
|
510
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateCollection
|
|
511
|
+
end
|
|
512
|
+
def authorization_server_contract_base_properties
|
|
513
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerContractBaseProperties
|
|
514
|
+
end
|
|
515
|
+
def email_template_update_parameters
|
|
516
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateUpdateParameters
|
|
517
|
+
end
|
|
518
|
+
def x509_certificate_name
|
|
519
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::X509CertificateName
|
|
520
|
+
end
|
|
521
|
+
def group_contract_properties
|
|
522
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupContractProperties
|
|
523
|
+
end
|
|
524
|
+
def backend_properties
|
|
525
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendProperties
|
|
526
|
+
end
|
|
527
|
+
def tag_description_collection
|
|
528
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagDescriptionCollection
|
|
529
|
+
end
|
|
530
|
+
def backend_proxy_contract
|
|
531
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendProxyContract
|
|
532
|
+
end
|
|
533
|
+
def group_collection
|
|
534
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupCollection
|
|
535
|
+
end
|
|
536
|
+
def backend_base_parameters
|
|
537
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendBaseParameters
|
|
538
|
+
end
|
|
539
|
+
def group_create_parameters
|
|
540
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupCreateParameters
|
|
541
|
+
end
|
|
542
|
+
def backend_collection
|
|
543
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendCollection
|
|
544
|
+
end
|
|
545
|
+
def group_update_parameters
|
|
546
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupUpdateParameters
|
|
547
|
+
end
|
|
548
|
+
def operation_result_contract
|
|
549
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationResultContract
|
|
550
|
+
end
|
|
551
|
+
def user_identity_contract
|
|
552
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserIdentityContract
|
|
553
|
+
end
|
|
554
|
+
def certificate_collection
|
|
555
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateCollection
|
|
556
|
+
end
|
|
557
|
+
def user_entity_base_parameters
|
|
558
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserEntityBaseParameters
|
|
559
|
+
end
|
|
560
|
+
def certificate_information
|
|
561
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateInformation
|
|
562
|
+
end
|
|
563
|
+
def tag_create_update_parameters
|
|
564
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagCreateUpdateParameters
|
|
565
|
+
end
|
|
566
|
+
def hostname_configuration
|
|
567
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::HostnameConfiguration
|
|
568
|
+
end
|
|
569
|
+
def user_collection
|
|
570
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserCollection
|
|
571
|
+
end
|
|
572
|
+
def api_management_service_sku_properties
|
|
573
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceSkuProperties
|
|
574
|
+
end
|
|
575
|
+
def tag_collection
|
|
576
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagCollection
|
|
577
|
+
end
|
|
578
|
+
def api_create_or_update_parameter
|
|
579
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiCreateOrUpdateParameter
|
|
580
|
+
end
|
|
581
|
+
def identity_provider_list
|
|
582
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderList
|
|
583
|
+
end
|
|
584
|
+
def subscription_key_parameter_names_contract
|
|
585
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionKeyParameterNamesContract
|
|
586
|
+
end
|
|
587
|
+
def identity_provider_update_parameters
|
|
588
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderUpdateParameters
|
|
589
|
+
end
|
|
590
|
+
def api_revision_info_contract
|
|
591
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiRevisionInfoContract
|
|
592
|
+
end
|
|
593
|
+
def identity_provider_base_parameters
|
|
594
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderBaseParameters
|
|
595
|
+
end
|
|
596
|
+
def operation_collection
|
|
597
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationCollection
|
|
598
|
+
end
|
|
599
|
+
def logger_update_contract
|
|
600
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerUpdateContract
|
|
601
|
+
end
|
|
602
|
+
def response_contract
|
|
603
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ResponseContract
|
|
604
|
+
end
|
|
605
|
+
def recipients_contract_properties
|
|
606
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientsContractProperties
|
|
607
|
+
end
|
|
608
|
+
def user_update_parameters
|
|
609
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserUpdateParameters
|
|
610
|
+
end
|
|
611
|
+
def subscription_update_parameters
|
|
612
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionUpdateParameters
|
|
613
|
+
end
|
|
614
|
+
def product_entity_base_parameters
|
|
615
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductEntityBaseParameters
|
|
616
|
+
end
|
|
617
|
+
def notification_collection
|
|
618
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::NotificationCollection
|
|
619
|
+
end
|
|
620
|
+
def tag_tag_resource_contract_properties
|
|
621
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagTagResourceContractProperties
|
|
622
|
+
end
|
|
623
|
+
def subscription_create_parameters
|
|
624
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionCreateParameters
|
|
625
|
+
end
|
|
626
|
+
def product_collection
|
|
627
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductCollection
|
|
628
|
+
end
|
|
629
|
+
def recipient_user_collection
|
|
630
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientUserCollection
|
|
631
|
+
end
|
|
632
|
+
def token_body_parameter_contract
|
|
633
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TokenBodyParameterContract
|
|
634
|
+
end
|
|
635
|
+
def request_report_collection
|
|
636
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RequestReportCollection
|
|
637
|
+
end
|
|
638
|
+
def backend_service_fabric_cluster_properties
|
|
639
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendServiceFabricClusterProperties
|
|
640
|
+
end
|
|
641
|
+
def recipient_email_collection
|
|
642
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientEmailCollection
|
|
643
|
+
end
|
|
644
|
+
def backend_tls_properties
|
|
645
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendTlsProperties
|
|
646
|
+
end
|
|
647
|
+
def connectivity_status_contract
|
|
648
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ConnectivityStatusContract
|
|
649
|
+
end
|
|
650
|
+
def backend_update_parameters
|
|
651
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendUpdateParameters
|
|
652
|
+
end
|
|
653
|
+
def network_status_contract
|
|
654
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::NetworkStatusContract
|
|
655
|
+
end
|
|
656
|
+
def certificate_create_or_update_parameters
|
|
657
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateCreateOrUpdateParameters
|
|
658
|
+
end
|
|
659
|
+
def network_status_contract_by_location
|
|
660
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::NetworkStatusContractByLocation
|
|
661
|
+
end
|
|
662
|
+
def virtual_network_configuration
|
|
663
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::VirtualNetworkConfiguration
|
|
664
|
+
end
|
|
665
|
+
def request_report_record_contract
|
|
666
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RequestReportRecordContract
|
|
667
|
+
end
|
|
668
|
+
def oauth2_authentication_settings_contract
|
|
669
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OAuth2AuthenticationSettingsContract
|
|
670
|
+
end
|
|
671
|
+
def open_id_connect_provider_collection
|
|
672
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OpenIdConnectProviderCollection
|
|
673
|
+
end
|
|
674
|
+
def api_release_collection
|
|
675
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiReleaseCollection
|
|
676
|
+
end
|
|
677
|
+
def openid_connect_provider_update_contract
|
|
678
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OpenidConnectProviderUpdateContract
|
|
679
|
+
end
|
|
680
|
+
def api_version_set_collection
|
|
681
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetCollection
|
|
682
|
+
end
|
|
683
|
+
def report_collection
|
|
684
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ReportCollection
|
|
685
|
+
end
|
|
686
|
+
def operation_tag_resource_contract_properties
|
|
687
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationTagResourceContractProperties
|
|
688
|
+
end
|
|
689
|
+
def terms_of_service_properties
|
|
690
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TermsOfServiceProperties
|
|
691
|
+
end
|
|
692
|
+
def authorization_server_collection
|
|
693
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerCollection
|
|
694
|
+
end
|
|
695
|
+
def report_record_contract
|
|
696
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ReportRecordContract
|
|
697
|
+
end
|
|
698
|
+
def backend_credentials_contract
|
|
699
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendCredentialsContract
|
|
700
|
+
end
|
|
701
|
+
def subscriptions_delegation_settings_properties
|
|
702
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionsDelegationSettingsProperties
|
|
703
|
+
end
|
|
704
|
+
def operation_result_log_item_contract
|
|
705
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationResultLogItemContract
|
|
706
|
+
end
|
|
707
|
+
def registration_delegation_settings_properties
|
|
708
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RegistrationDelegationSettingsProperties
|
|
709
|
+
end
|
|
710
|
+
def api_collection
|
|
711
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiCollection
|
|
712
|
+
end
|
|
713
|
+
def quota_counter_value_contract
|
|
714
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterValueContract
|
|
715
|
+
end
|
|
716
|
+
def representation_contract
|
|
717
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RepresentationContract
|
|
718
|
+
end
|
|
719
|
+
def product_update_parameters
|
|
720
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductUpdateParameters
|
|
721
|
+
end
|
|
722
|
+
def tag_resource_collection
|
|
723
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagResourceCollection
|
|
724
|
+
end
|
|
725
|
+
def quota_counter_collection
|
|
726
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterCollection
|
|
727
|
+
end
|
|
728
|
+
def save_configuration_parameter
|
|
729
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SaveConfigurationParameter
|
|
730
|
+
end
|
|
731
|
+
def subscription_collection
|
|
732
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionCollection
|
|
733
|
+
end
|
|
734
|
+
def api_revision_contract
|
|
735
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiRevisionContract
|
|
736
|
+
end
|
|
737
|
+
def quota_counter_contract
|
|
738
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::QuotaCounterContract
|
|
739
|
+
end
|
|
740
|
+
def backend_authorization_header_credentials
|
|
741
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendAuthorizationHeaderCredentials
|
|
742
|
+
end
|
|
743
|
+
def property_collection
|
|
744
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyCollection
|
|
745
|
+
end
|
|
746
|
+
def user_token_result
|
|
747
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserTokenResult
|
|
748
|
+
end
|
|
749
|
+
def property_update_parameters
|
|
750
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyUpdateParameters
|
|
751
|
+
end
|
|
752
|
+
def certificate_configuration
|
|
753
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateConfiguration
|
|
754
|
+
end
|
|
755
|
+
def property_entity_base_parameters
|
|
756
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyEntityBaseParameters
|
|
757
|
+
end
|
|
758
|
+
def policy_contract
|
|
759
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyContract
|
|
760
|
+
end
|
|
761
|
+
def api_contract_properties
|
|
762
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiContractProperties
|
|
763
|
+
end
|
|
764
|
+
def api_contract
|
|
765
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiContract
|
|
766
|
+
end
|
|
767
|
+
def api_release_contract
|
|
768
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiReleaseContract
|
|
769
|
+
end
|
|
770
|
+
def operation_contract
|
|
771
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OperationContract
|
|
772
|
+
end
|
|
773
|
+
def schema_contract
|
|
774
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SchemaContract
|
|
775
|
+
end
|
|
776
|
+
def logger_contract
|
|
777
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerContract
|
|
778
|
+
end
|
|
779
|
+
def diagnostic_contract
|
|
780
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::DiagnosticContract
|
|
781
|
+
end
|
|
782
|
+
def product_tag_resource_contract_properties
|
|
783
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductTagResourceContractProperties
|
|
784
|
+
end
|
|
785
|
+
def api_tag_resource_contract_properties
|
|
786
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiTagResourceContractProperties
|
|
787
|
+
end
|
|
788
|
+
def product_contract
|
|
789
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductContract
|
|
790
|
+
end
|
|
791
|
+
def authorization_server_contract
|
|
792
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerContract
|
|
793
|
+
end
|
|
794
|
+
def authorization_server_update_contract
|
|
795
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationServerUpdateContract
|
|
796
|
+
end
|
|
797
|
+
def backend_contract
|
|
798
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendContract
|
|
799
|
+
end
|
|
800
|
+
def backend_reconnect_contract
|
|
801
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendReconnectContract
|
|
802
|
+
end
|
|
803
|
+
def certificate_contract
|
|
804
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::CertificateContract
|
|
805
|
+
end
|
|
806
|
+
def api_management_service_resource
|
|
807
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceResource
|
|
808
|
+
end
|
|
809
|
+
def api_management_service_update_parameters
|
|
810
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiManagementServiceUpdateParameters
|
|
811
|
+
end
|
|
812
|
+
def email_template_contract
|
|
813
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::EmailTemplateContract
|
|
814
|
+
end
|
|
815
|
+
def group_contract
|
|
816
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupContract
|
|
817
|
+
end
|
|
818
|
+
def user_contract
|
|
819
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserContract
|
|
820
|
+
end
|
|
821
|
+
def identity_provider_contract
|
|
822
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderContract
|
|
823
|
+
end
|
|
824
|
+
def notification_contract
|
|
825
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::NotificationContract
|
|
826
|
+
end
|
|
827
|
+
def recipient_user_contract
|
|
828
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientUserContract
|
|
829
|
+
end
|
|
830
|
+
def recipient_email_contract
|
|
831
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::RecipientEmailContract
|
|
832
|
+
end
|
|
833
|
+
def openid_connect_provider_contract
|
|
834
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::OpenidConnectProviderContract
|
|
835
|
+
end
|
|
836
|
+
def portal_signin_settings
|
|
837
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PortalSigninSettings
|
|
838
|
+
end
|
|
839
|
+
def portal_signup_settings
|
|
840
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PortalSignupSettings
|
|
841
|
+
end
|
|
842
|
+
def portal_delegation_settings
|
|
843
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PortalDelegationSettings
|
|
844
|
+
end
|
|
845
|
+
def subscription_contract
|
|
846
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionContract
|
|
847
|
+
end
|
|
848
|
+
def property_contract
|
|
849
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PropertyContract
|
|
850
|
+
end
|
|
851
|
+
def tag_contract
|
|
852
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagContract
|
|
853
|
+
end
|
|
854
|
+
def tag_description_contract
|
|
855
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TagDescriptionContract
|
|
856
|
+
end
|
|
857
|
+
def api_version_set_contract
|
|
858
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiVersionSetContract
|
|
859
|
+
end
|
|
860
|
+
def policy_content_format
|
|
861
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyContentFormat
|
|
862
|
+
end
|
|
863
|
+
def protocol
|
|
864
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::Protocol
|
|
865
|
+
end
|
|
866
|
+
def content_format
|
|
867
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ContentFormat
|
|
868
|
+
end
|
|
869
|
+
def soap_api_type
|
|
870
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SoapApiType
|
|
871
|
+
end
|
|
872
|
+
def api_type
|
|
873
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ApiType
|
|
874
|
+
end
|
|
875
|
+
def logger_type
|
|
876
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::LoggerType
|
|
877
|
+
end
|
|
878
|
+
def product_state
|
|
879
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductState
|
|
880
|
+
end
|
|
881
|
+
def grant_type
|
|
882
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GrantType
|
|
883
|
+
end
|
|
884
|
+
def authorization_method
|
|
885
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AuthorizationMethod
|
|
886
|
+
end
|
|
887
|
+
def client_authentication_method
|
|
888
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ClientAuthenticationMethod
|
|
889
|
+
end
|
|
890
|
+
def bearer_token_sending_method
|
|
891
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BearerTokenSendingMethod
|
|
892
|
+
end
|
|
893
|
+
def backend_protocol
|
|
894
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::BackendProtocol
|
|
895
|
+
end
|
|
896
|
+
def hostname_type
|
|
897
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::HostnameType
|
|
898
|
+
end
|
|
899
|
+
def sku_type
|
|
900
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SkuType
|
|
901
|
+
end
|
|
902
|
+
def virtual_network_type
|
|
903
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::VirtualNetworkType
|
|
904
|
+
end
|
|
905
|
+
def name_availability_reason
|
|
906
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::NameAvailabilityReason
|
|
907
|
+
end
|
|
908
|
+
def group_type
|
|
909
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::GroupType
|
|
910
|
+
end
|
|
911
|
+
def confirmation
|
|
912
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::Confirmation
|
|
913
|
+
end
|
|
914
|
+
def user_state
|
|
915
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::UserState
|
|
916
|
+
end
|
|
917
|
+
def identity_provider_type
|
|
918
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::IdentityProviderType
|
|
919
|
+
end
|
|
920
|
+
def connectivity_status_type
|
|
921
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ConnectivityStatusType
|
|
922
|
+
end
|
|
923
|
+
def subscription_state
|
|
924
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::SubscriptionState
|
|
925
|
+
end
|
|
926
|
+
def async_operation_status
|
|
927
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::AsyncOperationStatus
|
|
928
|
+
end
|
|
929
|
+
def key_type
|
|
930
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::KeyType
|
|
931
|
+
end
|
|
932
|
+
def versioning_scheme
|
|
933
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::VersioningScheme
|
|
934
|
+
end
|
|
935
|
+
def template_name
|
|
936
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::TemplateName
|
|
937
|
+
end
|
|
938
|
+
def notification_name
|
|
939
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::NotificationName
|
|
940
|
+
end
|
|
941
|
+
def policy_scope_contract
|
|
942
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::PolicyScopeContract
|
|
943
|
+
end
|
|
944
|
+
def export_format
|
|
945
|
+
Azure::ApiManagement::Mgmt::V2018_01_01::Models::ExportFormat
|
|
946
|
+
end
|
|
947
|
+
end
|
|
948
|
+
end
|
|
949
|
+
end
|
|
950
|
+
end
|
|
951
|
+
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.16.
|
|
4
|
+
version: 0.16.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-03-
|
|
11
|
+
date: 2018-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 0.16.0
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: azure_mgmt_api_management
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.16.0
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 0.16.0
|
|
83
97
|
- !ruby/object:Gem::Dependency
|
|
84
98
|
name: azure_mgmt_authorization
|
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1072,6 +1086,7 @@ files:
|
|
|
1072
1086
|
- lib/latest/latest_profile_client.rb
|
|
1073
1087
|
- lib/latest/module_definition.rb
|
|
1074
1088
|
- lib/latest/modules/analysisservices_profile_module.rb
|
|
1089
|
+
- lib/latest/modules/apimanagement_profile_module.rb
|
|
1075
1090
|
- lib/latest/modules/authorization_profile_module.rb
|
|
1076
1091
|
- lib/latest/modules/automation_profile_module.rb
|
|
1077
1092
|
- lib/latest/modules/batch_profile_module.rb
|
|
@@ -1159,7 +1174,7 @@ metadata:
|
|
|
1159
1174
|
changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
|
|
1160
1175
|
documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
|
|
1161
1176
|
homepage_uri: https://aka.ms/azure-sdk-for-ruby
|
|
1162
|
-
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.16.
|
|
1177
|
+
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.16.3
|
|
1163
1178
|
wiki_uri: https://github.com/Azure/azure-sdk-for-ruby/wiki
|
|
1164
1179
|
post_install_message:
|
|
1165
1180
|
rdoc_options: []
|