# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Automation::Mgmt::V2015_10_31 # # Automation Client # class RunbookDraftOperations include MsRestAzure # # Creates and initializes a new instance of the RunbookDraftOperations class. # @param client service class for accessing basic functionality. # def initialize(client) @client = client end # @return [AutomationClient] reference to the AutomationClient attr_reader :client # # Retrieve the content of runbook draft identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [NOT_IMPLEMENTED] operation results. # def get_content(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) response = get_content_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! response.body unless response.nil? end # # Retrieve the content of runbook draft identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook 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. # def get_content_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) get_content_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! end # # Retrieve the content of runbook draft identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook 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. # def get_content_async(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'automation_account_name is nil' if automation_account_name.nil? fail ArgumentError, 'runbook_name is nil' if runbook_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} # 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft/content' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'automationAccountName' => automation_account_name,'runbookName' => runbook_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, 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? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = { required: false, serialized_name: 'parsed_response', type: { name: 'Stream' } } 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 # # Updates the runbook draft with runbookStream as its content. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param runbook_content The runbook draft content. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # def create_or_update(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers = nil) response = create_or_update_async(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers).value! nil end # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param runbook_content The runbook draft content. # @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. # def create_or_update_async(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers = nil) # Send request promise = begin_create_or_update_async(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| end # Waiting for response. @client.get_long_running_operation_result(response, deserialize_method) end promise end # # Retrieve the runbook draft identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [RunbookDraft] operation results. # def get(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) response = get_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! response.body unless response.nil? end # # Retrieve the runbook draft identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook 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. # def get_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) get_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! end # # Retrieve the runbook draft identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook 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. # def get_async(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'automation_account_name is nil' if automation_account_name.nil? fail ArgumentError, 'runbook_name is nil' if runbook_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} # 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'automationAccountName' => automation_account_name,'runbookName' => runbook_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, 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? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Automation::Mgmt::V2015_10_31::Models::RunbookDraft.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 # # Publish runbook draft. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The parameters supplied to the publish runbook # operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Runbook] operation results. # def publish(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) response = publish_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! response.body unless response.nil? end # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The parameters supplied to the publish runbook # operation. # @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. # def publish_async(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) # Send request promise = begin_publish_async(resource_group_name, automation_account_name, runbook_name, custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Automation::Mgmt::V2015_10_31::Models::Runbook.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 # # Retrieve the runbook identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [RunbookDraftUndoEditResult] operation results. # def undo_edit(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) response = undo_edit_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! response.body unless response.nil? end # # Retrieve the runbook identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook 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. # def undo_edit_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) undo_edit_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! end # # Retrieve the runbook identified by runbook name. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook 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. # def undo_edit_async(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'automation_account_name is nil' if automation_account_name.nil? fail ArgumentError, 'runbook_name is nil' if runbook_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} # 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft/undoEdit' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'automationAccountName' => automation_account_name,'runbookName' => runbook_name,'subscriptionId' => @client.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? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Automation::Mgmt::V2015_10_31::Models::RunbookDraftUndoEditResult.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 # # Updates the runbook draft with runbookStream as its content. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param runbook_content The runbook draft content. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # def begin_create_or_update(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers = nil) response = begin_create_or_update_async(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers).value! nil end # # Updates the runbook draft with runbookStream as its content. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param runbook_content The runbook draft content. # @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. # def begin_create_or_update_with_http_info(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers = nil) begin_create_or_update_async(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers).value! end # # Updates the runbook draft with runbookStream as its content. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The runbook name. # @param runbook_content The runbook draft content. # @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. # def begin_create_or_update_async(resource_group_name, automation_account_name, runbook_name, runbook_content, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'automation_account_name is nil' if automation_account_name.nil? fail ArgumentError, 'runbook_name is nil' if runbook_name.nil? fail ArgumentError, 'runbook_content is nil' if runbook_content.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? request_headers['Content-Type'] = 'application/json; charset=utf-8' # Serialize Request request_mapper = { required: true, serialized_name: 'runbookContent', type: { name: 'Stream' } } request_content = @client.serialize(request_mapper, runbook_content) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft/content' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'automationAccountName' => automation_account_name,'runbookName' => runbook_name,'subscriptionId' => @client.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(:put, 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 == 202 || 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 end promise.execute end # # Publish runbook draft. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The parameters supplied to the publish runbook # operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Runbook] operation results. # def begin_publish(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) response = begin_publish_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! response.body unless response.nil? end # # Publish runbook draft. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The parameters supplied to the publish runbook # operation. # @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. # def begin_publish_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) begin_publish_async(resource_group_name, automation_account_name, runbook_name, custom_headers).value! end # # Publish runbook draft. # # @param resource_group_name [String] The resource group name. # @param automation_account_name [String] The automation account name. # @param runbook_name [String] The parameters supplied to the publish runbook # operation. # @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. # def begin_publish_async(resource_group_name, automation_account_name, runbook_name, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'automation_account_name is nil' if automation_account_name.nil? fail ArgumentError, 'runbook_name is nil' if runbook_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} # 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft/publish' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'automationAccountName' => automation_account_name,'runbookName' => runbook_name,'subscriptionId' => @client.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 == 202 || 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? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Automation::Mgmt::V2015_10_31::Models::Runbook.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 end end