# 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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10 # # ReplicationFabrics # class ReplicationFabrics include MsRestAzure # # Creates and initializes a new instance of the ReplicationFabrics class. # @param client service class for accessing basic functionality. # def initialize(client) @client = client end # @return [SiteRecoveryManagementClient] reference to the SiteRecoveryManagementClient attr_reader :client # # Migrates the site to AAD. # # The operation to migrate an Azure Site Recovery fabric to AAD. # # @param fabric_name [String] ASR fabric to migrate. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # def migrate_to_aad(fabric_name, custom_headers = nil) response = migrate_to_aad_async(fabric_name, custom_headers).value! nil end # # @param fabric_name [String] ASR fabric to migrate. # @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 migrate_to_aad_async(fabric_name, custom_headers = nil) # Send request promise = begin_migrate_to_aad_async(fabric_name, 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 # # Renews certificate for the fabric. # # Renews the connection certificate for the ASR replication fabric. # # @param fabric_name [String] fabric name to renew certs for. # @param renew_certificate [RenewCertificateInput] Renew certificate input. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def renew_certificate(fabric_name, renew_certificate, custom_headers = nil) response = renew_certificate_async(fabric_name, renew_certificate, custom_headers).value! response.body unless response.nil? end # # @param fabric_name [String] fabric name to renew certs for. # @param renew_certificate [RenewCertificateInput] Renew certificate input. # @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 renew_certificate_async(fabric_name, renew_certificate, custom_headers = nil) # Send request promise = begin_renew_certificate_async(fabric_name, renew_certificate, custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Perform failover of the process server. # # The operation to move replications from a process server to another process # server. # # @param fabric_name [String] The name of the fabric containing the process # server. # @param failover_process_server_request [FailoverProcessServerRequest] The # input to the failover process server operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def reassociate_gateway(fabric_name, failover_process_server_request, custom_headers = nil) response = reassociate_gateway_async(fabric_name, failover_process_server_request, custom_headers).value! response.body unless response.nil? end # # @param fabric_name [String] The name of the fabric containing the process # server. # @param failover_process_server_request [FailoverProcessServerRequest] The # input to the failover process server 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 reassociate_gateway_async(fabric_name, failover_process_server_request, custom_headers = nil) # Send request promise = begin_reassociate_gateway_async(fabric_name, failover_process_server_request, custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Checks the consistency of the ASR fabric. # # The operation to perform a consistency check on the fabric. # # @param fabric_name [String] Fabric name. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def check_consistency(fabric_name, custom_headers = nil) response = check_consistency_async(fabric_name, custom_headers).value! response.body unless response.nil? end # # @param fabric_name [String] Fabric name. # @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 check_consistency_async(fabric_name, custom_headers = nil) # Send request promise = begin_check_consistency_async(fabric_name, custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Deletes the site. # # The operation to delete or remove an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to delete # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # def delete(fabric_name, custom_headers = nil) response = delete_async(fabric_name, custom_headers).value! nil end # # @param fabric_name [String] ASR fabric to delete # @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 delete_async(fabric_name, custom_headers = nil) # Send request promise = begin_delete_async(fabric_name, 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 # # Gets the details of an ASR fabric. # # Gets the details of an Azure Site Recovery fabric. # # @param fabric_name [String] Fabric name. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def get(fabric_name, custom_headers = nil) response = get_async(fabric_name, custom_headers).value! response.body unless response.nil? end # # Gets the details of an ASR fabric. # # Gets the details of an Azure Site Recovery fabric. # # @param fabric_name [String] Fabric 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(fabric_name, custom_headers = nil) get_async(fabric_name, custom_headers).value! end # # Gets the details of an ASR fabric. # # Gets the details of an Azure Site Recovery fabric. # # @param fabric_name [String] Fabric 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(fabric_name, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.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.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_name}, 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 MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 Site Recoery fabric. # # The operation to create an Azure Site Recovery fabric (for e.g. Hyper-V site) # # @param fabric_name [String] Name of the ASR fabric. # @param input [FabricCreationInput] Fabric creation input. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def create(fabric_name, input, custom_headers = nil) response = create_async(fabric_name, input, custom_headers).value! response.body unless response.nil? end # # @param fabric_name [String] Name of the ASR fabric. # @param input [FabricCreationInput] Fabric creation input. # @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_async(fabric_name, input, custom_headers = nil) # Send request promise = begin_create_async(fabric_name, input, custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Purges the site. # # The operation to purge(force delete) an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to purge. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # def purge(fabric_name, custom_headers = nil) response = purge_async(fabric_name, custom_headers).value! nil end # # @param fabric_name [String] ASR fabric to purge. # @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 purge_async(fabric_name, custom_headers = nil) # Send request promise = begin_purge_async(fabric_name, 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 # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Array] operation results. # def list(custom_headers = nil) first_page = list_as_lazy(custom_headers) first_page.get_all_items end # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @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 list_with_http_info(custom_headers = nil) list_async(custom_headers).value! end # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @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 list_async(custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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.RecoveryServices/vaults/{resourceName}/replicationFabrics' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_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 MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::FabricCollection.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 # # Migrates the site to AAD. # # The operation to migrate an Azure Site Recovery fabric to AAD. # # @param fabric_name [String] ASR fabric to migrate. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # def begin_migrate_to_aad(fabric_name, custom_headers = nil) response = begin_migrate_to_aad_async(fabric_name, custom_headers).value! nil end # # Migrates the site to AAD. # # The operation to migrate an Azure Site Recovery fabric to AAD. # # @param fabric_name [String] ASR fabric to migrate. # @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_migrate_to_aad_with_http_info(fabric_name, custom_headers = nil) begin_migrate_to_aad_async(fabric_name, custom_headers).value! end # # Migrates the site to AAD. # # The operation to migrate an Azure Site Recovery fabric to AAD. # # @param fabric_name [String] ASR fabric to migrate. # @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_migrate_to_aad_async(fabric_name, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.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.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/migratetoaad' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_name}, 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 == 204 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.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 # # Renews certificate for the fabric. # # Renews the connection certificate for the ASR replication fabric. # # @param fabric_name [String] fabric name to renew certs for. # @param renew_certificate [RenewCertificateInput] Renew certificate input. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def begin_renew_certificate(fabric_name, renew_certificate, custom_headers = nil) response = begin_renew_certificate_async(fabric_name, renew_certificate, custom_headers).value! response.body unless response.nil? end # # Renews certificate for the fabric. # # Renews the connection certificate for the ASR replication fabric. # # @param fabric_name [String] fabric name to renew certs for. # @param renew_certificate [RenewCertificateInput] Renew certificate input. # @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_renew_certificate_with_http_info(fabric_name, renew_certificate, custom_headers = nil) begin_renew_certificate_async(fabric_name, renew_certificate, custom_headers).value! end # # Renews certificate for the fabric. # # Renews the connection certificate for the ASR replication fabric. # # @param fabric_name [String] fabric name to renew certs for. # @param renew_certificate [RenewCertificateInput] Renew certificate input. # @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_renew_certificate_async(fabric_name, renew_certificate, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.nil? fail ArgumentError, 'renew_certificate is nil' if renew_certificate.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 = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::RenewCertificateInput.mapper() request_content = @client.serialize(request_mapper, renew_certificate) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/renewCertificate' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_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 MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Perform failover of the process server. # # The operation to move replications from a process server to another process # server. # # @param fabric_name [String] The name of the fabric containing the process # server. # @param failover_process_server_request [FailoverProcessServerRequest] The # input to the failover process server operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def begin_reassociate_gateway(fabric_name, failover_process_server_request, custom_headers = nil) response = begin_reassociate_gateway_async(fabric_name, failover_process_server_request, custom_headers).value! response.body unless response.nil? end # # Perform failover of the process server. # # The operation to move replications from a process server to another process # server. # # @param fabric_name [String] The name of the fabric containing the process # server. # @param failover_process_server_request [FailoverProcessServerRequest] The # input to the failover process server 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_reassociate_gateway_with_http_info(fabric_name, failover_process_server_request, custom_headers = nil) begin_reassociate_gateway_async(fabric_name, failover_process_server_request, custom_headers).value! end # # Perform failover of the process server. # # The operation to move replications from a process server to another process # server. # # @param fabric_name [String] The name of the fabric containing the process # server. # @param failover_process_server_request [FailoverProcessServerRequest] The # input to the failover process server 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_reassociate_gateway_async(fabric_name, failover_process_server_request, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.nil? fail ArgumentError, 'failover_process_server_request is nil' if failover_process_server_request.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 = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::FailoverProcessServerRequest.mapper() request_content = @client.serialize(request_mapper, failover_process_server_request) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/reassociateGateway' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_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 MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Checks the consistency of the ASR fabric. # # The operation to perform a consistency check on the fabric. # # @param fabric_name [String] Fabric name. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def begin_check_consistency(fabric_name, custom_headers = nil) response = begin_check_consistency_async(fabric_name, custom_headers).value! response.body unless response.nil? end # # Checks the consistency of the ASR fabric. # # The operation to perform a consistency check on the fabric. # # @param fabric_name [String] Fabric 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 begin_check_consistency_with_http_info(fabric_name, custom_headers = nil) begin_check_consistency_async(fabric_name, custom_headers).value! end # # Checks the consistency of the ASR fabric. # # The operation to perform a consistency check on the fabric. # # @param fabric_name [String] Fabric 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 begin_check_consistency_async(fabric_name, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.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.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/checkConsistency' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_name}, 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 || status_code == 202 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Deletes the site. # # The operation to delete or remove an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to delete # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # def begin_delete(fabric_name, custom_headers = nil) response = begin_delete_async(fabric_name, custom_headers).value! nil end # # Deletes the site. # # The operation to delete or remove an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to delete # @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_delete_with_http_info(fabric_name, custom_headers = nil) begin_delete_async(fabric_name, custom_headers).value! end # # Deletes the site. # # The operation to delete or remove an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to delete # @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_delete_async(fabric_name, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.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.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/remove' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_name}, 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 == 204 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.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 # # Creates an Azure Site Recoery fabric. # # The operation to create an Azure Site Recovery fabric (for e.g. Hyper-V site) # # @param fabric_name [String] Name of the ASR fabric. # @param input [FabricCreationInput] Fabric creation input. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Fabric] operation results. # def begin_create(fabric_name, input, custom_headers = nil) response = begin_create_async(fabric_name, input, custom_headers).value! response.body unless response.nil? end # # Creates an Azure Site Recoery fabric. # # The operation to create an Azure Site Recovery fabric (for e.g. Hyper-V site) # # @param fabric_name [String] Name of the ASR fabric. # @param input [FabricCreationInput] Fabric creation input. # @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_with_http_info(fabric_name, input, custom_headers = nil) begin_create_async(fabric_name, input, custom_headers).value! end # # Creates an Azure Site Recoery fabric. # # The operation to create an Azure Site Recovery fabric (for e.g. Hyper-V site) # # @param fabric_name [String] Name of the ASR fabric. # @param input [FabricCreationInput] Fabric creation input. # @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_async(fabric_name, input, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.nil? fail ArgumentError, 'input is nil' if input.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 = Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::FabricCreationInput.mapper() request_content = @client.serialize(request_mapper, input) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_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(: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 == 200 || status_code == 202 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::Fabric.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 # # Purges the site. # # The operation to purge(force delete) an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to purge. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # def begin_purge(fabric_name, custom_headers = nil) response = begin_purge_async(fabric_name, custom_headers).value! nil end # # Purges the site. # # The operation to purge(force delete) an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to purge. # @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_purge_with_http_info(fabric_name, custom_headers = nil) begin_purge_async(fabric_name, custom_headers).value! end # # Purges the site. # # The operation to purge(force delete) an Azure Site Recovery fabric. # # @param fabric_name [String] ASR fabric to purge. # @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_purge_async(fabric_name, custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.resource_name is nil' if @client.resource_name.nil? fail ArgumentError, '@client.resource_group_name is nil' if @client.resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? fail ArgumentError, 'fabric_name is nil' if fabric_name.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.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceName' => @client.resource_name,'resourceGroupName' => @client.resource_group_name,'subscriptionId' => @client.subscription_id,'fabricName' => fabric_name}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:delete, 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 == 204 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.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 # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @param next_page_link [String] The NextLink from the previous successful call # to List operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [FabricCollection] operation results. # def list_next(next_page_link, custom_headers = nil) response = list_next_async(next_page_link, custom_headers).value! response.body unless response.nil? end # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @param next_page_link [String] The NextLink from the previous successful call # to List 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 list_next_with_http_info(next_page_link, custom_headers = nil) list_next_async(next_page_link, custom_headers).value! end # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @param next_page_link [String] The NextLink from the previous successful call # to List 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 list_next_async(next_page_link, custom_headers = nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.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 = '{nextLink}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'nextLink' => next_page_link}, 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 MsRestAzure::AzureOperationError.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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10::Models::FabricCollection.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 # # Gets the list of ASR fabrics # # Gets a list of the Azure Site Recovery fabrics in the vault. # # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [FabricCollection] which provide lazy access to pages of the # response. # def list_as_lazy(custom_headers = nil) response = list_async(custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_next_async(next_page_link, custom_headers) end page end end end end