class Azure::Subscriptions::Mgmt::V2019_10_01_preview::Subscription
Subscription
client provides an interface to create and manage Azure
subscriptions programmatically.
Attributes
@return [SubscriptionClient] reference to the SubscriptionClient
Public Class Methods
Creates and initializes a new instance of the Subscription
class. @param client service class for accessing basic functionality.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 18 def initialize(client) @client = client end
Public Instance Methods
The operation to create a new CSP subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param customer_name [String] The name of the customer. @param body [ModernCspSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [SubscriptionCreationResult] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 690 def begin_create_csp_subscription(billing_account_name, customer_name, body, custom_headers:nil) response = begin_create_csp_subscription_async(billing_account_name, customer_name, body, custom_headers:custom_headers).value! response.body unless response.nil? end
The operation to create a new CSP subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param customer_name [String] The name of the customer. @param body [ModernCspSubscriptionCreationParameters] The subscription creation parameters. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 725 def begin_create_csp_subscription_async(billing_account_name, customer_name, body, custom_headers:nil) fail ArgumentError, 'billing_account_name is nil' if billing_account_name.nil? fail ArgumentError, 'customer_name is nil' if customer_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, 'body is nil' if body.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? # Serialize Request request_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::ModernCspSubscriptionCreationParameters.mapper() request_content = @client.serialize(request_mapper, body) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'providers/Microsoft.Billing/billingAccounts/{billingAccountName}/customers/{customerName}/providers/Microsoft.Subscription/createSubscription' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'billingAccountName' => billing_account_name,'customerName' => customer_name}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 || status_code == 202 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
The operation to create a new CSP subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param customer_name [String] The name of the customer. @param body [ModernCspSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 708 def begin_create_csp_subscription_with_http_info(billing_account_name, customer_name, body, custom_headers:nil) begin_create_csp_subscription_async(billing_account_name, customer_name, body, custom_headers:custom_headers).value! end
The operation to create a new WebDirect or EA Azure
subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param billing_profile_name [String] The name of the billing profile in the billing account for which you want to create the subscription. @param invoice_section_name [String] The name of the invoice section in the billing account for which you want to create the subscription. @param body [ModernSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [SubscriptionCreationResult] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 573 def begin_create_subscription(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:nil) response = begin_create_subscription_async(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:custom_headers).value! response.body unless response.nil? end
The operation to create a new WebDirect or EA Azure
subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param billing_profile_name [String] The name of the billing profile in the billing account for which you want to create the subscription. @param invoice_section_name [String] The name of the invoice section in the billing account for which you want to create the subscription. @param body [ModernSubscriptionCreationParameters] The subscription creation parameters. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 614 def begin_create_subscription_async(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:nil) fail ArgumentError, 'billing_account_name is nil' if billing_account_name.nil? fail ArgumentError, 'billing_profile_name is nil' if billing_profile_name.nil? fail ArgumentError, 'invoice_section_name is nil' if invoice_section_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, 'body is nil' if body.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? # Serialize Request request_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::ModernSubscriptionCreationParameters.mapper() request_content = @client.serialize(request_mapper, body) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections/{invoiceSectionName}/providers/Microsoft.Subscription/createSubscription' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'billingAccountName' => billing_account_name,'billingProfileName' => billing_profile_name,'invoiceSectionName' => invoice_section_name}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 || status_code == 202 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Creates an Azure
subscription
@param enrollment_account_name [String] The name of the enrollment account to which the subscription will be billed. @param body [SubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [SubscriptionCreationResult] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 463 def begin_create_subscription_in_enrollment_account(enrollment_account_name, body, custom_headers:nil) response = begin_create_subscription_in_enrollment_account_async(enrollment_account_name, body, custom_headers:custom_headers).value! response.body unless response.nil? end
Creates an Azure
subscription
@param enrollment_account_name [String] The name of the enrollment account to which the subscription will be billed. @param body [SubscriptionCreationParameters] The subscription creation parameters. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 496 def begin_create_subscription_in_enrollment_account_async(enrollment_account_name, body, custom_headers:nil) fail ArgumentError, 'enrollment_account_name is nil' if enrollment_account_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, 'body is nil' if body.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? # Serialize Request request_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationParameters.mapper() request_content = @client.serialize(request_mapper, body) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'providers/Microsoft.Billing/enrollmentAccounts/{enrollmentAccountName}/providers/Microsoft.Subscription/createSubscription' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'enrollmentAccountName' => enrollment_account_name}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 || status_code == 202 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Creates an Azure
subscription
@param enrollment_account_name [String] The name of the enrollment account to which the subscription will be billed. @param body [SubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 480 def begin_create_subscription_in_enrollment_account_with_http_info(enrollment_account_name, body, custom_headers:nil) begin_create_subscription_in_enrollment_account_async(enrollment_account_name, body, custom_headers:custom_headers).value! end
The operation to create a new WebDirect or EA Azure
subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param billing_profile_name [String] The name of the billing profile in the billing account for which you want to create the subscription. @param invoice_section_name [String] The name of the invoice section in the billing account for which you want to create the subscription. @param body [ModernSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 594 def begin_create_subscription_with_http_info(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:nil) begin_create_subscription_async(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:custom_headers).value! end
The operation to cancel a subscription
@param subscription_id [String] Subscription
Id. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [CanceledSubscriptionId] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 80 def cancel(subscription_id, custom_headers:nil) response = cancel_async(subscription_id, custom_headers:custom_headers).value! response.body unless response.nil? end
The operation to cancel a subscription
@param subscription_id [String] Subscription
Id. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 107 def cancel_async(subscription_id, custom_headers:nil) fail ArgumentError, 'subscription_id is nil' if subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = 'subscriptions/{subscriptionId}/providers/Microsoft.Subscription/cancel' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'subscriptionId' => subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::CanceledSubscriptionId.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
The operation to cancel a subscription
@param subscription_id [String] Subscription
Id. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 94 def cancel_with_http_info(subscription_id, custom_headers:nil) cancel_async(subscription_id, custom_headers:custom_headers).value! end
The operation to create a new CSP subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param customer_name [String] The name of the customer. @param body [ModernCspSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [SubscriptionCreationResult] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 416 def create_csp_subscription(billing_account_name, customer_name, body, custom_headers:nil) response = create_csp_subscription_async(billing_account_name, customer_name, body, custom_headers:custom_headers).value! response.body unless response.nil? end
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param customer_name [String] The name of the customer. @param body [ModernCspSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] promise which provides async access to http response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 433 def create_csp_subscription_async(billing_account_name, customer_name, body, custom_headers:nil) # Send request promise = begin_create_csp_subscription_async(billing_account_name, customer_name, body, custom_headers:custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationResult.mapper() parsed_response = @client.deserialize(result_mapper, parsed_response) end # Waiting for response. @client.get_long_running_operation_result(response, deserialize_method) end promise end
The operation to create a new WebDirect or EA Azure
subscription.
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param billing_profile_name [String] The name of the billing profile in the billing account for which you want to create the subscription. @param invoice_section_name [String] The name of the invoice section in the billing account for which you want to create the subscription. @param body [ModernSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [SubscriptionCreationResult] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 365 def create_subscription(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:nil) response = create_subscription_async(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:custom_headers).value! response.body unless response.nil? end
@param billing_account_name [String] The name of the Microsoft Customer Agreement billing account for which you want to create the subscription. @param billing_profile_name [String] The name of the billing profile in the billing account for which you want to create the subscription. @param invoice_section_name [String] The name of the invoice section in the billing account for which you want to create the subscription. @param body [ModernSubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] promise which provides async access to http response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 385 def create_subscription_async(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:nil) # Send request promise = begin_create_subscription_async(billing_account_name, billing_profile_name, invoice_section_name, body, custom_headers:custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationResult.mapper() parsed_response = @client.deserialize(result_mapper, parsed_response) end # Waiting for response. @client.get_long_running_operation_result(response, deserialize_method) end promise end
Creates an Azure
subscription
@param enrollment_account_name [String] The name of the enrollment account to which the subscription will be billed. @param body [SubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [SubscriptionCreationResult] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 37 def create_subscription_in_enrollment_account(enrollment_account_name, body, custom_headers:nil) response = create_subscription_in_enrollment_account_async(enrollment_account_name, body, custom_headers:custom_headers).value! response.body unless response.nil? end
@param enrollment_account_name [String] The name of the enrollment account to which the subscription will be billed. @param body [SubscriptionCreationParameters] The subscription creation parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] promise which provides async access to http response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 53 def create_subscription_in_enrollment_account_async(enrollment_account_name, body, custom_headers:nil) # Send request promise = begin_create_subscription_in_enrollment_account_async(enrollment_account_name, body, custom_headers:custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionCreationResult.mapper() parsed_response = @client.deserialize(result_mapper, parsed_response) end # Waiting for response. @client.get_long_running_operation_result(response, deserialize_method) end promise end
The operation to enable a subscription
@param subscription_id [String] Subscription
Id. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [EnabledSubscriptionId] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 269 def enable(subscription_id, custom_headers:nil) response = enable_async(subscription_id, custom_headers:custom_headers).value! response.body unless response.nil? end
The operation to enable a subscription
@param subscription_id [String] Subscription
Id. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 296 def enable_async(subscription_id, custom_headers:nil) fail ArgumentError, 'subscription_id is nil' if subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = 'subscriptions/{subscriptionId}/providers/Microsoft.Subscription/enable' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'subscriptionId' => subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::EnabledSubscriptionId.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
The operation to enable a subscription
@param subscription_id [String] Subscription
Id. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 283 def enable_with_http_info(subscription_id, custom_headers:nil) enable_async(subscription_id, custom_headers:custom_headers).value! end
The operation to rename a subscription
@param subscription_id [String] Subscription
Id. @param body [SubscriptionName] Subscription
Name @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [RenamedSubscriptionId] operation results.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 170 def rename(subscription_id, body, custom_headers:nil) response = rename_async(subscription_id, body, custom_headers:custom_headers).value! response.body unless response.nil? end
The operation to rename a subscription
@param subscription_id [String] Subscription
Id. @param body [SubscriptionName] Subscription
Name @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 199 def rename_async(subscription_id, body, custom_headers:nil) fail ArgumentError, 'subscription_id is nil' if subscription_id.nil? fail ArgumentError, 'body is nil' if body.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? # Serialize Request request_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::SubscriptionName.mapper() request_content = @client.serialize(request_mapper, body) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/providers/Microsoft.Subscription/rename' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'subscriptionId' => subscription_id}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Subscriptions::Mgmt::V2019_10_01_preview::Models::RenamedSubscriptionId.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
The operation to rename a subscription
@param subscription_id [String] Subscription
Id. @param body [SubscriptionName] Subscription
Name @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/2019-10-01-preview/generated/azure_mgmt_subscriptions/subscription.rb, line 185 def rename_with_http_info(subscription_id, body, custom_headers:nil) rename_async(subscription_id, body, custom_headers:custom_headers).value! end