class Azure::Subscriptions::Mgmt::V2018_11_01_preview::SubscriptionFactory

Subscription client provides an interface to create and manage Azure subscriptions programmatically.

Attributes

client[R]

@return [SubscriptionClient] reference to the SubscriptionClient

Private Class Methods

new(client) click to toggle source

Creates and initializes a new instance of the SubscriptionFactory class. @param client service class for accessing basic functionality.

# File lib/2018-11-01-preview/generated/azure_mgmt_subscriptions/subscription_factory.rb, line 18
def initialize(client)
  @client = client
end

Private Instance Methods

begin_create_subscription(billing_account_name, invoice_section_name, body, custom_headers:nil) click to toggle source

The operation to create a new 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 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/2018-11-01-preview/generated/azure_mgmt_subscriptions/subscription_factory.rb, line 89
def begin_create_subscription(billing_account_name, invoice_section_name, body, custom_headers:nil)
  response = begin_create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:custom_headers).value!
  response.body unless response.nil?
end
begin_create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:nil) click to toggle source

The operation to create a new 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 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/2018-11-01-preview/generated/azure_mgmt_subscriptions/subscription_factory.rb, line 126
def begin_create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:nil)
  fail ArgumentError, 'billing_account_name is nil' if billing_account_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::V2018_11_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}/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,'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::V2018_11_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
begin_create_subscription_with_http_info(billing_account_name, invoice_section_name, body, custom_headers:nil) click to toggle source

The operation to create a new 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 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/2018-11-01-preview/generated/azure_mgmt_subscriptions/subscription_factory.rb, line 108
def begin_create_subscription_with_http_info(billing_account_name, invoice_section_name, body, custom_headers:nil)
  begin_create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:custom_headers).value!
end
create_subscription(billing_account_name, invoice_section_name, body, custom_headers:nil) click to toggle source

The operation to create a new 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 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/2018-11-01-preview/generated/azure_mgmt_subscriptions/subscription_factory.rb, line 39
def create_subscription(billing_account_name, invoice_section_name, body, custom_headers:nil)
  response = create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:custom_headers).value!
  response.body unless response.nil?
end
create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:nil) click to toggle source

@param billing_account_name [String] The name of the Microsoft Customer Agreement 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/2018-11-01-preview/generated/azure_mgmt_subscriptions/subscription_factory.rb, line 57
def create_subscription_async(billing_account_name, invoice_section_name, body, custom_headers:nil)
  # Send request
  promise = begin_create_subscription_async(billing_account_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::V2018_11_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