azure_mgmt_confluent 0.17.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent.rb +47 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/confluent_management_client.rb +139 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/marketplace_agreements.rb +317 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/confluent_agreement_resource.rb +161 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/confluent_agreement_resource_list_response.rb +100 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/error_response_body.rb +94 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/offer_detail.rb +119 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_display.rb +80 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_list_result.rb +100 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_result.rb +69 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource.rb +176 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_list_result.rb +98 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties.rb +110 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties_offer_detail.rb +99 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties_user_detail.rb +68 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_update.rb +54 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/provision_state.rb +23 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/resource_provider_default_error_response.rb +50 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/saa_soffer_status.rb +24 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/models/user_detail.rb +77 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/module_definition.rb +9 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/organization.rb +899 -0
- data/lib/2020-03-01/generated/azure_mgmt_confluent/organization_operations.rb +219 -0
- data/lib/azure_mgmt_confluent.rb +6 -0
- data/lib/module_definition.rb +7 -0
- data/lib/profiles/latest/confluent_latest_profile_client.rb +40 -0
- data/lib/profiles/latest/confluent_module_definition.rb +8 -0
- data/lib/profiles/latest/modules/confluent_profile_module.rb +133 -0
- data/lib/version.rb +7 -0
- metadata +147 -0
@@ -0,0 +1,219 @@
|
|
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::Confluent::Mgmt::V2020_03_01
|
7
|
+
#
|
8
|
+
# OrganizationOperations
|
9
|
+
#
|
10
|
+
class OrganizationOperations
|
11
|
+
include MsRestAzure
|
12
|
+
|
13
|
+
#
|
14
|
+
# Creates and initializes a new instance of the OrganizationOperations class.
|
15
|
+
# @param client service class for accessing basic functionality.
|
16
|
+
#
|
17
|
+
def initialize(client)
|
18
|
+
@client = client
|
19
|
+
end
|
20
|
+
|
21
|
+
# @return [ConfluentManagementClient] reference to the ConfluentManagementClient
|
22
|
+
attr_reader :client
|
23
|
+
|
24
|
+
#
|
25
|
+
# List all operations provided by Microsoft.Confluent.
|
26
|
+
#
|
27
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
28
|
+
# will be added to the HTTP request.
|
29
|
+
#
|
30
|
+
# @return [Array<OperationResult>] operation results.
|
31
|
+
#
|
32
|
+
def list(custom_headers:nil)
|
33
|
+
first_page = list_as_lazy(custom_headers:custom_headers)
|
34
|
+
first_page.get_all_items
|
35
|
+
end
|
36
|
+
|
37
|
+
#
|
38
|
+
# List all operations provided by Microsoft.Confluent.
|
39
|
+
#
|
40
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
41
|
+
# will be added to the HTTP request.
|
42
|
+
#
|
43
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
44
|
+
#
|
45
|
+
def list_with_http_info(custom_headers:nil)
|
46
|
+
list_async(custom_headers:custom_headers).value!
|
47
|
+
end
|
48
|
+
|
49
|
+
#
|
50
|
+
# List all operations provided by Microsoft.Confluent.
|
51
|
+
#
|
52
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
53
|
+
# to the HTTP request.
|
54
|
+
#
|
55
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
56
|
+
#
|
57
|
+
def list_async(custom_headers:nil)
|
58
|
+
@client.api_version = '2020-03-01'
|
59
|
+
|
60
|
+
|
61
|
+
request_headers = {}
|
62
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
63
|
+
|
64
|
+
# Set Headers
|
65
|
+
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
66
|
+
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
67
|
+
path_template = 'providers/Microsoft.Confluent/operations'
|
68
|
+
|
69
|
+
request_url = @base_url || @client.base_url
|
70
|
+
|
71
|
+
options = {
|
72
|
+
middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
|
73
|
+
query_params: {'api-version' => @client.api_version},
|
74
|
+
headers: request_headers.merge(custom_headers || {}),
|
75
|
+
base_url: request_url
|
76
|
+
}
|
77
|
+
promise = @client.make_request_async(:get, path_template, options)
|
78
|
+
|
79
|
+
promise = promise.then do |result|
|
80
|
+
http_response = result.response
|
81
|
+
status_code = http_response.status
|
82
|
+
response_content = http_response.body
|
83
|
+
unless status_code == 200
|
84
|
+
error_model = JSON.load(response_content)
|
85
|
+
fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
|
86
|
+
end
|
87
|
+
|
88
|
+
result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
|
89
|
+
result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
|
90
|
+
result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
|
91
|
+
# Deserialize Response
|
92
|
+
if status_code == 200
|
93
|
+
begin
|
94
|
+
parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
|
95
|
+
result_mapper = Azure::Confluent::Mgmt::V2020_03_01::Models::OperationListResult.mapper()
|
96
|
+
result.body = @client.deserialize(result_mapper, parsed_response)
|
97
|
+
rescue Exception => e
|
98
|
+
fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
result
|
103
|
+
end
|
104
|
+
|
105
|
+
promise.execute
|
106
|
+
end
|
107
|
+
|
108
|
+
#
|
109
|
+
# List all operations provided by Microsoft.Confluent.
|
110
|
+
#
|
111
|
+
# @param next_page_link [String] The NextLink from the previous successful call
|
112
|
+
# to List operation.
|
113
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
114
|
+
# will be added to the HTTP request.
|
115
|
+
#
|
116
|
+
# @return [OperationListResult] operation results.
|
117
|
+
#
|
118
|
+
def list_next(next_page_link, custom_headers:nil)
|
119
|
+
response = list_next_async(next_page_link, custom_headers:custom_headers).value!
|
120
|
+
response.body unless response.nil?
|
121
|
+
end
|
122
|
+
|
123
|
+
#
|
124
|
+
# List all operations provided by Microsoft.Confluent.
|
125
|
+
#
|
126
|
+
# @param next_page_link [String] The NextLink from the previous successful call
|
127
|
+
# to List operation.
|
128
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
129
|
+
# will be added to the HTTP request.
|
130
|
+
#
|
131
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
132
|
+
#
|
133
|
+
def list_next_with_http_info(next_page_link, custom_headers:nil)
|
134
|
+
list_next_async(next_page_link, custom_headers:custom_headers).value!
|
135
|
+
end
|
136
|
+
|
137
|
+
#
|
138
|
+
# List all operations provided by Microsoft.Confluent.
|
139
|
+
#
|
140
|
+
# @param next_page_link [String] The NextLink from the previous successful call
|
141
|
+
# to List operation.
|
142
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
143
|
+
# to the HTTP request.
|
144
|
+
#
|
145
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
146
|
+
#
|
147
|
+
def list_next_async(next_page_link, custom_headers:nil)
|
148
|
+
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
149
|
+
|
150
|
+
|
151
|
+
request_headers = {}
|
152
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
153
|
+
|
154
|
+
# Set Headers
|
155
|
+
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
156
|
+
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
157
|
+
path_template = '{nextLink}'
|
158
|
+
|
159
|
+
request_url = @base_url || @client.base_url
|
160
|
+
|
161
|
+
options = {
|
162
|
+
middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
|
163
|
+
skip_encoding_path_params: {'nextLink' => next_page_link},
|
164
|
+
headers: request_headers.merge(custom_headers || {}),
|
165
|
+
base_url: request_url
|
166
|
+
}
|
167
|
+
promise = @client.make_request_async(:get, path_template, options)
|
168
|
+
|
169
|
+
promise = promise.then do |result|
|
170
|
+
http_response = result.response
|
171
|
+
status_code = http_response.status
|
172
|
+
response_content = http_response.body
|
173
|
+
unless status_code == 200
|
174
|
+
error_model = JSON.load(response_content)
|
175
|
+
fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
|
176
|
+
end
|
177
|
+
|
178
|
+
result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
|
179
|
+
result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
|
180
|
+
result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
|
181
|
+
# Deserialize Response
|
182
|
+
if status_code == 200
|
183
|
+
begin
|
184
|
+
parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
|
185
|
+
result_mapper = Azure::Confluent::Mgmt::V2020_03_01::Models::OperationListResult.mapper()
|
186
|
+
result.body = @client.deserialize(result_mapper, parsed_response)
|
187
|
+
rescue Exception => e
|
188
|
+
fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
result
|
193
|
+
end
|
194
|
+
|
195
|
+
promise.execute
|
196
|
+
end
|
197
|
+
|
198
|
+
#
|
199
|
+
# List all operations provided by Microsoft.Confluent.
|
200
|
+
#
|
201
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
202
|
+
# will be added to the HTTP request.
|
203
|
+
#
|
204
|
+
# @return [OperationListResult] which provide lazy access to pages of the
|
205
|
+
# response.
|
206
|
+
#
|
207
|
+
def list_as_lazy(custom_headers:nil)
|
208
|
+
response = list_async(custom_headers:custom_headers).value!
|
209
|
+
unless response.nil?
|
210
|
+
page = response.body
|
211
|
+
page.next_method = Proc.new do |next_page_link|
|
212
|
+
list_next_async(next_page_link, custom_headers:custom_headers)
|
213
|
+
end
|
214
|
+
page
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
end
|
219
|
+
end
|
@@ -0,0 +1,6 @@
|
|
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 '2020-03-01/generated/azure_mgmt_confluent'
|
6
|
+
require 'profiles/latest/confluent_latest_profile_client'
|
@@ -0,0 +1,40 @@
|
|
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 'profiles/latest/confluent_module_definition'
|
6
|
+
require 'profiles/latest/modules/confluent_profile_module'
|
7
|
+
|
8
|
+
module Azure::Confluent::Profiles::Latest
|
9
|
+
module Mgmt
|
10
|
+
#
|
11
|
+
# Client class for the Latest profile SDK.
|
12
|
+
#
|
13
|
+
class Client < ConfluentManagementClass
|
14
|
+
include MsRestAzure::Common::Configurable
|
15
|
+
|
16
|
+
#
|
17
|
+
# Initializes a new instance of the Client class.
|
18
|
+
# @param options [Hash] hash of client options.
|
19
|
+
# options = {
|
20
|
+
# tenant_id: 'YOUR TENANT ID',
|
21
|
+
# client_id: 'YOUR CLIENT ID',
|
22
|
+
# client_secret: 'YOUR CLIENT SECRET',
|
23
|
+
# subscription_id: 'YOUR SUBSCRIPTION ID',
|
24
|
+
# credentials: credentials,
|
25
|
+
# active_directory_settings: active_directory_settings,
|
26
|
+
# base_url: 'YOUR BASE URL',
|
27
|
+
# options: options
|
28
|
+
# }
|
29
|
+
# 'credentials' are optional and if not passed in the hash, will be obtained
|
30
|
+
# from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
|
31
|
+
#
|
32
|
+
# Also, base_url, active_directory_settings & options are optional.
|
33
|
+
#
|
34
|
+
def initialize(options = {})
|
35
|
+
super(options)
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,8 @@
|
|
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
|
+
module Azure end
|
6
|
+
module Azure::Confluent end
|
7
|
+
module Azure::Confluent::Profiles end
|
8
|
+
module Azure::Confluent::Profiles::Latest end
|
@@ -0,0 +1,133 @@
|
|
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_confluent'
|
6
|
+
|
7
|
+
module Azure::Confluent::Profiles::Latest
|
8
|
+
module Mgmt
|
9
|
+
MarketplaceAgreements = Azure::Confluent::Mgmt::V2020_03_01::MarketplaceAgreements
|
10
|
+
OrganizationOperations = Azure::Confluent::Mgmt::V2020_03_01::OrganizationOperations
|
11
|
+
Organization = Azure::Confluent::Mgmt::V2020_03_01::Organization
|
12
|
+
|
13
|
+
module Models
|
14
|
+
OfferDetail = Azure::Confluent::Mgmt::V2020_03_01::Models::OfferDetail
|
15
|
+
UserDetail = Azure::Confluent::Mgmt::V2020_03_01::Models::UserDetail
|
16
|
+
ConfluentAgreementResourceListResponse = Azure::Confluent::Mgmt::V2020_03_01::Models::ConfluentAgreementResourceListResponse
|
17
|
+
OperationDisplay = Azure::Confluent::Mgmt::V2020_03_01::Models::OperationDisplay
|
18
|
+
OperationResult = Azure::Confluent::Mgmt::V2020_03_01::Models::OperationResult
|
19
|
+
ErrorResponseBody = Azure::Confluent::Mgmt::V2020_03_01::Models::ErrorResponseBody
|
20
|
+
OrganizationResourceUpdate = Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourceUpdate
|
21
|
+
ConfluentAgreementResource = Azure::Confluent::Mgmt::V2020_03_01::Models::ConfluentAgreementResource
|
22
|
+
OrganizationResourceProperties = Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourceProperties
|
23
|
+
ResourceProviderDefaultErrorResponse = Azure::Confluent::Mgmt::V2020_03_01::Models::ResourceProviderDefaultErrorResponse
|
24
|
+
OrganizationResource = Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResource
|
25
|
+
OperationListResult = Azure::Confluent::Mgmt::V2020_03_01::Models::OperationListResult
|
26
|
+
OrganizationResourceListResult = Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourceListResult
|
27
|
+
OrganizationResourcePropertiesOfferDetail = Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourcePropertiesOfferDetail
|
28
|
+
OrganizationResourcePropertiesUserDetail = Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourcePropertiesUserDetail
|
29
|
+
ProvisionState = Azure::Confluent::Mgmt::V2020_03_01::Models::ProvisionState
|
30
|
+
SaaSOfferStatus = Azure::Confluent::Mgmt::V2020_03_01::Models::SaaSOfferStatus
|
31
|
+
end
|
32
|
+
|
33
|
+
#
|
34
|
+
# ConfluentManagementClass
|
35
|
+
#
|
36
|
+
class ConfluentManagementClass
|
37
|
+
attr_reader :marketplace_agreements, :organization_operations, :organization, :configurable, :base_url, :options, :model_classes
|
38
|
+
|
39
|
+
def initialize(options = {})
|
40
|
+
if options.is_a?(Hash) && options.length == 0
|
41
|
+
@options = setup_default_options
|
42
|
+
else
|
43
|
+
@options = options
|
44
|
+
end
|
45
|
+
|
46
|
+
reset!(options)
|
47
|
+
|
48
|
+
@configurable = self
|
49
|
+
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
50
|
+
@options = options[:options].nil? ? nil:options[:options]
|
51
|
+
|
52
|
+
@client_0 = Azure::Confluent::Mgmt::V2020_03_01::ConfluentManagementClient.new(configurable.credentials, base_url, options)
|
53
|
+
if(@client_0.respond_to?(:subscription_id))
|
54
|
+
@client_0.subscription_id = configurable.subscription_id
|
55
|
+
end
|
56
|
+
add_telemetry(@client_0)
|
57
|
+
@marketplace_agreements = @client_0.marketplace_agreements
|
58
|
+
@organization_operations = @client_0.organization_operations
|
59
|
+
@organization = @client_0.organization
|
60
|
+
|
61
|
+
@model_classes = ModelClasses.new
|
62
|
+
end
|
63
|
+
|
64
|
+
def add_telemetry(client)
|
65
|
+
profile_information = 'Profiles/Latest/Confluent/Mgmt'
|
66
|
+
client.add_user_agent_information(profile_information)
|
67
|
+
end
|
68
|
+
|
69
|
+
def method_missing(method, *args)
|
70
|
+
if @client_0.respond_to?method
|
71
|
+
@client_0.send(method, *args)
|
72
|
+
else
|
73
|
+
super
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
class ModelClasses
|
80
|
+
def offer_detail
|
81
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OfferDetail
|
82
|
+
end
|
83
|
+
def user_detail
|
84
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::UserDetail
|
85
|
+
end
|
86
|
+
def confluent_agreement_resource_list_response
|
87
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::ConfluentAgreementResourceListResponse
|
88
|
+
end
|
89
|
+
def operation_display
|
90
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OperationDisplay
|
91
|
+
end
|
92
|
+
def operation_result
|
93
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OperationResult
|
94
|
+
end
|
95
|
+
def error_response_body
|
96
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::ErrorResponseBody
|
97
|
+
end
|
98
|
+
def organization_resource_update
|
99
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourceUpdate
|
100
|
+
end
|
101
|
+
def confluent_agreement_resource
|
102
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::ConfluentAgreementResource
|
103
|
+
end
|
104
|
+
def organization_resource_properties
|
105
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourceProperties
|
106
|
+
end
|
107
|
+
def resource_provider_default_error_response
|
108
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::ResourceProviderDefaultErrorResponse
|
109
|
+
end
|
110
|
+
def organization_resource
|
111
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResource
|
112
|
+
end
|
113
|
+
def operation_list_result
|
114
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OperationListResult
|
115
|
+
end
|
116
|
+
def organization_resource_list_result
|
117
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourceListResult
|
118
|
+
end
|
119
|
+
def organization_resource_properties_offer_detail
|
120
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourcePropertiesOfferDetail
|
121
|
+
end
|
122
|
+
def organization_resource_properties_user_detail
|
123
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResourcePropertiesUserDetail
|
124
|
+
end
|
125
|
+
def provision_state
|
126
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::ProvisionState
|
127
|
+
end
|
128
|
+
def saa_soffer_status
|
129
|
+
Azure::Confluent::Mgmt::V2020_03_01::Models::SaaSOfferStatus
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
data/lib/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: azure_mgmt_confluent
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.17.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Microsoft Corporation
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: dotenv
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: ms_rest_azure
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.12.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.12.0
|
83
|
+
description:
|
84
|
+
email: azrubyteam@microsoft.com
|
85
|
+
executables: []
|
86
|
+
extensions: []
|
87
|
+
extra_rdoc_files: []
|
88
|
+
files:
|
89
|
+
- LICENSE.txt
|
90
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent.rb
|
91
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/confluent_management_client.rb
|
92
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/marketplace_agreements.rb
|
93
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/confluent_agreement_resource.rb
|
94
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/confluent_agreement_resource_list_response.rb
|
95
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/error_response_body.rb
|
96
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/offer_detail.rb
|
97
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_display.rb
|
98
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_list_result.rb
|
99
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/operation_result.rb
|
100
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource.rb
|
101
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_list_result.rb
|
102
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties.rb
|
103
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties_offer_detail.rb
|
104
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_properties_user_detail.rb
|
105
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource_update.rb
|
106
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/provision_state.rb
|
107
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/resource_provider_default_error_response.rb
|
108
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/saa_soffer_status.rb
|
109
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/models/user_detail.rb
|
110
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/module_definition.rb
|
111
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/organization.rb
|
112
|
+
- lib/2020-03-01/generated/azure_mgmt_confluent/organization_operations.rb
|
113
|
+
- lib/azure_mgmt_confluent.rb
|
114
|
+
- lib/module_definition.rb
|
115
|
+
- lib/profiles/latest/confluent_latest_profile_client.rb
|
116
|
+
- lib/profiles/latest/confluent_module_definition.rb
|
117
|
+
- lib/profiles/latest/modules/confluent_profile_module.rb
|
118
|
+
- lib/version.rb
|
119
|
+
homepage: https://aka.ms/azure-sdk-for-ruby
|
120
|
+
licenses:
|
121
|
+
- MIT
|
122
|
+
metadata:
|
123
|
+
bug_tracker_uri: https://github.com/Azure/azure-sdk-for-ruby/issues
|
124
|
+
changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
|
125
|
+
documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
|
126
|
+
homepage_uri: https://aka.ms/azure-sdk-for-ruby
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options: []
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: 2.0.0
|
136
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
requirements: []
|
142
|
+
rubyforge_project:
|
143
|
+
rubygems_version: 2.7.10
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: Official Ruby client library to consume Confluent
|
147
|
+
test_files: []
|