class Azure::Network::Mgmt::V2020_05_01::PrivateLinkServices
Attributes
@return [NetworkManagementClient] reference to the NetworkManagementClient
Public Class Methods
Creates and initializes a new instance of the PrivateLinkServices
class. @param client service class for accessing basic functionality.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 17 def initialize(client) @client = client end
Public Instance Methods
Checks whether the subscription is visible to private link service.
@param location [String] The location of the domain name. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkServiceVisibility] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1329 def begin_check_private_link_service_visibility(location, parameters, custom_headers:nil) response = begin_check_private_link_service_visibility_async(location, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
Checks whether the subscription is visible to private link service.
@param location [String] The location of the domain name. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1360 def begin_check_private_link_service_visibility_async(location, parameters, custom_headers:nil) fail ArgumentError, 'location is nil' if location.nil? fail ArgumentError, 'parameters is nil' if parameters.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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::Network::Mgmt::V2020_05_01::Models::CheckPrivateLinkServiceVisibilityRequest.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'location' => location,'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(: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? 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceVisibility.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 whether the subscription is visible to private link service in the specified resource group.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkServiceVisibility] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1435 def begin_check_private_link_service_visibility_by_resource_group(location, resource_group_name, parameters, custom_headers:nil) response = begin_check_private_link_service_visibility_by_resource_group_async(location, resource_group_name, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
Checks whether the subscription is visible to private link service in the specified resource group.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1470 def begin_check_private_link_service_visibility_by_resource_group_async(location, resource_group_name, parameters, custom_headers:nil) fail ArgumentError, 'location is nil' if location.nil? fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'parameters is nil' if parameters.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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::Network::Mgmt::V2020_05_01::Models::CheckPrivateLinkServiceVisibilityRequest.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'location' => location,'resourceGroupName' => resource_group_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(: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? 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceVisibility.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 whether the subscription is visible to private link service in the specified resource group.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1453 def begin_check_private_link_service_visibility_by_resource_group_with_http_info(location, resource_group_name, parameters, custom_headers:nil) begin_check_private_link_service_visibility_by_resource_group_async(location, resource_group_name, parameters, custom_headers:custom_headers).value! end
Checks whether the subscription is visible to private link service.
@param location [String] The location of the domain name. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1345 def begin_check_private_link_service_visibility_with_http_info(location, parameters, custom_headers:nil) begin_check_private_link_service_visibility_async(location, parameters, custom_headers:custom_headers).value! end
Creates or updates an private link service in the specified resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param parameters [PrivateLinkService] Parameters supplied to the create or update private link service operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkService] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1119 def begin_create_or_update(resource_group_name, service_name, parameters, custom_headers:nil) response = begin_create_or_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
Creates or updates an private link service in the specified resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param parameters [PrivateLinkService] Parameters supplied to the create or update private link service 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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1152 def begin_create_or_update_async(resource_group_name, service_name, parameters, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, 'parameters is nil' if parameters.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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::Network::Mgmt::V2020_05_01::Models::PrivateLinkService.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_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 == 200 || status_code == 201 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkService.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 # Deserialize Response if status_code == 201 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Network::Mgmt::V2020_05_01::Models::PrivateLinkService.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 or updates an private link service in the specified resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param parameters [PrivateLinkService] Parameters supplied to the create or update private link service 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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1136 def begin_create_or_update_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
Deletes the specified private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1033 def begin_delete(resource_group_name, service_name, custom_headers:nil) response = begin_delete_async(resource_group_name, service_name, custom_headers:custom_headers).value! nil end
Deletes the specified private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1062 def begin_delete_async(resource_group_name, service_name, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_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(: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 || 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? result end promise.execute end
Delete private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1237 def begin_delete_private_endpoint_connection(resource_group_name, service_name, pe_connection_name, custom_headers:nil) response = begin_delete_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, custom_headers:custom_headers).value! nil end
Delete private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1272 def begin_delete_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, 'pe_connection_name is nil' if pe_connection_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_name,'peConnectionName' => pe_connection_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(: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 || 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? result end promise.execute end
Delete private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1255 def begin_delete_private_endpoint_connection_with_http_info(resource_group_name, service_name, pe_connection_name, custom_headers:nil) begin_delete_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, custom_headers:custom_headers).value! end
Deletes the specified private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1048 def begin_delete_with_http_info(resource_group_name, service_name, custom_headers:nil) begin_delete_async(resource_group_name, service_name, custom_headers:custom_headers).value! end
Checks whether the subscription is visible to private link service.
@param location [String] The location of the domain name. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkServiceVisibility] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 754 def check_private_link_service_visibility(location, parameters, custom_headers:nil) response = check_private_link_service_visibility_async(location, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
@param location [String] The location of the domain name. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 769 def check_private_link_service_visibility_async(location, parameters, custom_headers:nil) # Send request promise = begin_check_private_link_service_visibility_async(location, parameters, custom_headers:custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceVisibility.mapper() parsed_response = @client.deserialize(result_mapper, parsed_response) end # Waiting for response. @client.get_long_running_operation_result(response, deserialize_method, FinalStateVia::LOCATION) end promise end
Checks whether the subscription is visible to private link service in the specified resource group.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkServiceVisibility] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 800 def check_private_link_service_visibility_by_resource_group(location, resource_group_name, parameters, custom_headers:nil) response = check_private_link_service_visibility_by_resource_group_async(location, resource_group_name, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param parameters [CheckPrivateLinkServiceVisibilityRequest] The request body of CheckPrivateLinkService API call. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 816 def check_private_link_service_visibility_by_resource_group_async(location, resource_group_name, parameters, custom_headers:nil) # Send request promise = begin_check_private_link_service_visibility_by_resource_group_async(location, resource_group_name, parameters, custom_headers:custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceVisibility.mapper() parsed_response = @client.deserialize(result_mapper, parsed_response) end # Waiting for response. @client.get_long_running_operation_result(response, deserialize_method, FinalStateVia::LOCATION) end promise end
Creates or updates an private link service in the specified resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param parameters [PrivateLinkService] Parameters supplied to the create or update private link service operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkService] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 171 def create_or_update(resource_group_name, service_name, parameters, custom_headers:nil) response = create_or_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param parameters [PrivateLinkService] Parameters supplied to the create or update private link service 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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 187 def create_or_update_async(resource_group_name, service_name, parameters, custom_headers:nil) # Send request promise = begin_create_or_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers) promise = promise.then do |response| # Defining deserialization method. deserialize_method = lambda do |parsed_response| result_mapper = Azure::Network::Mgmt::V2020_05_01::Models::PrivateLinkService.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 specified private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 32 def delete(resource_group_name, service_name, custom_headers:nil) response = delete_async(resource_group_name, service_name, custom_headers:custom_headers).value! nil end
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 46 def delete_async(resource_group_name, service_name, custom_headers:nil) # Send request promise = begin_delete_async(resource_group_name, service_name, custom_headers: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
Delete private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 617 def delete_private_endpoint_connection(resource_group_name, service_name, pe_connection_name, custom_headers:nil) response = delete_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, custom_headers:custom_headers).value! nil end
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 633 def delete_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, custom_headers:nil) # Send request promise = begin_delete_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, custom_headers: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 specified private link service by resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param expand [String] Expands referenced resources. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkService] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 73 def get(resource_group_name, service_name, expand:nil, custom_headers:nil) response = get_async(resource_group_name, service_name, expand:expand, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets the specified private link service by resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param expand [String] Expands referenced resources. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 104 def get_async(resource_group_name, service_name, expand:nil, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version,'$expand' => expand}, 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? 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkService.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
Get the specific private end point connection by specific private link service in the resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param expand [String] Expands referenced resources. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateEndpointConnection] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 395 def get_private_endpoint_connection(resource_group_name, service_name, pe_connection_name, expand:nil, custom_headers:nil) response = get_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, expand:expand, custom_headers:custom_headers).value! response.body unless response.nil? end
Get the specific private end point connection by specific private link service in the resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param expand [String] Expands referenced resources. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 432 def get_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, expand:nil, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, 'pe_connection_name is nil' if pe_connection_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_name,'peConnectionName' => pe_connection_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version,'$expand' => expand}, 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? 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::Network::Mgmt::V2020_05_01::Models::PrivateEndpointConnection.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
Get the specific private end point connection by specific private link service in the resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param expand [String] Expands referenced resources. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 414 def get_private_endpoint_connection_with_http_info(resource_group_name, service_name, pe_connection_name, expand:nil, custom_headers:nil) get_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, expand:expand, custom_headers:custom_headers).value! end
Gets the specified private link service by resource group.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param expand [String] Expands referenced resources. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 89 def get_with_http_info(resource_group_name, service_name, expand:nil, custom_headers:nil) get_async(resource_group_name, service_name, expand:expand, custom_headers:custom_headers).value! end
Gets all private link services in a resource group.
@param resource_group_name [String] The name of the resource group. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<PrivateLinkService>] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 214 def list(resource_group_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, custom_headers:custom_headers) first_page.get_all_items end
Gets all private link services in a resource group.
@param resource_group_name [String] The name of the resource group. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkServiceListResult] which provide lazy access to pages of the response.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1999 def list_as_lazy(resource_group_name, custom_headers:nil) response = list_async(resource_group_name, custom_headers: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:custom_headers) end page end end
Gets all private link services in a resource group.
@param resource_group_name [String] The name of the resource group. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 241 def list_async(resource_group_name, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => 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 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceListResult.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
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<AutoApprovedPrivateLinkService>] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 844 def list_auto_approved_private_link_services(location, custom_headers:nil) first_page = list_auto_approved_private_link_services_as_lazy(location, custom_headers:custom_headers) first_page.get_all_items end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [AutoApprovedPrivateLinkServicesResult] which provide lazy access to pages of the response.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 2063 def list_auto_approved_private_link_services_as_lazy(location, custom_headers:nil) response = list_auto_approved_private_link_services_async(location, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_auto_approved_private_link_services_next_async(next_page_link, custom_headers:custom_headers) end page end end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain 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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 873 def list_auto_approved_private_link_services_async(location, custom_headers:nil) fail ArgumentError, 'location is nil' if location.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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.Network/locations/{location}/autoApprovedPrivateLinkServices' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'location' => location,'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? 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::Network::Mgmt::V2020_05_01::Models::AutoApprovedPrivateLinkServicesResult.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
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<AutoApprovedPrivateLinkService>] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 938 def list_auto_approved_private_link_services_by_resource_group(location, resource_group_name, custom_headers:nil) first_page = list_auto_approved_private_link_services_by_resource_group_as_lazy(location, resource_group_name, custom_headers:custom_headers) first_page.get_all_items end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [AutoApprovedPrivateLinkServicesResult] which provide lazy access to pages of the response.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 2086 def list_auto_approved_private_link_services_by_resource_group_as_lazy(location, resource_group_name, custom_headers:nil) response = list_auto_approved_private_link_services_by_resource_group_async(location, resource_group_name, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_auto_approved_private_link_services_by_resource_group_next_async(next_page_link, custom_headers:custom_headers) end page end end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 969 def list_auto_approved_private_link_services_by_resource_group_async(location, resource_group_name, custom_headers:nil) fail ArgumentError, 'location is nil' if location.nil? fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'location' => location,'resourceGroupName' => 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? 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::Network::Mgmt::V2020_05_01::Models::AutoApprovedPrivateLinkServicesResult.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
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@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 [AutoApprovedPrivateLinkServicesResult] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1907 def list_auto_approved_private_link_services_by_resource_group_next(next_page_link, custom_headers:nil) response = list_auto_approved_private_link_services_by_resource_group_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1938 def list_auto_approved_private_link_services_by_resource_group_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.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 = '{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? 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::Network::Mgmt::V2020_05_01::Models::AutoApprovedPrivateLinkServicesResult.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
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1923 def list_auto_approved_private_link_services_by_resource_group_next_with_http_info(next_page_link, custom_headers:nil) list_auto_approved_private_link_services_by_resource_group_next_async(next_page_link, custom_headers:custom_headers).value! end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain name. @param resource_group_name [String] The name of the resource group. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 954 def list_auto_approved_private_link_services_by_resource_group_with_http_info(location, resource_group_name, custom_headers:nil) list_auto_approved_private_link_services_by_resource_group_async(location, resource_group_name, custom_headers:custom_headers).value! end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@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 [AutoApprovedPrivateLinkServicesResult] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1814 def list_auto_approved_private_link_services_next(next_page_link, custom_headers:nil) response = list_auto_approved_private_link_services_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1845 def list_auto_approved_private_link_services_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.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 = '{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? 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::Network::Mgmt::V2020_05_01::Models::AutoApprovedPrivateLinkServicesResult.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
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1830 def list_auto_approved_private_link_services_next_with_http_info(next_page_link, custom_headers:nil) list_auto_approved_private_link_services_next_async(next_page_link, custom_headers:custom_headers).value! end
Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.
@param location [String] The location of the domain 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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 859 def list_auto_approved_private_link_services_with_http_info(location, custom_headers:nil) list_auto_approved_private_link_services_async(location, custom_headers:custom_headers).value! end
Gets all private link service in a subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<PrivateLinkService>] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 303 def list_by_subscription(custom_headers:nil) first_page = list_by_subscription_as_lazy(custom_headers:custom_headers) first_page.get_all_items end
Gets all private link service in a subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateLinkServiceListResult] which provide lazy access to pages of the response.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 2019 def list_by_subscription_as_lazy(custom_headers:nil) response = list_by_subscription_async(custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_subscription_next_async(next_page_link, custom_headers:custom_headers) end page end end
Gets all private link service in a subscription.
@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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 328 def list_by_subscription_async(custom_headers:nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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.Network/privateLinkServices' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'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? 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceListResult.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 all private link service in a subscription.
@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 [PrivateLinkServiceListResult] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1633 def list_by_subscription_next(next_page_link, custom_headers:nil) response = list_by_subscription_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets all private link service in a subscription.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1662 def list_by_subscription_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.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 = '{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 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceListResult.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 all private link service in a subscription.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1648 def list_by_subscription_next_with_http_info(next_page_link, custom_headers:nil) list_by_subscription_next_async(next_page_link, custom_headers:custom_headers).value! end
Gets all private link service in a subscription.
@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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 316 def list_by_subscription_with_http_info(custom_headers:nil) list_by_subscription_async(custom_headers:custom_headers).value! end
Gets all private link services in a resource group.
@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 [PrivateLinkServiceListResult] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1543 def list_next(next_page_link, custom_headers:nil) response = list_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets all private link services in a resource group.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1572 def list_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.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 = '{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 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::Network::Mgmt::V2020_05_01::Models::PrivateLinkServiceListResult.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 all private link services in a resource group.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1558 def list_next_with_http_info(next_page_link, custom_headers:nil) list_next_async(next_page_link, custom_headers:custom_headers).value! end
Gets all private end point connections for a specific private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<PrivateEndpointConnection>] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 659 def list_private_endpoint_connections(resource_group_name, service_name, custom_headers:nil) first_page = list_private_endpoint_connections_as_lazy(resource_group_name, service_name, custom_headers:custom_headers) first_page.get_all_items end
Gets all private end point connections for a specific private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateEndpointConnectionListResult] which provide lazy access to pages of the response.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 2041 def list_private_endpoint_connections_as_lazy(resource_group_name, service_name, custom_headers:nil) response = list_private_endpoint_connections_async(resource_group_name, service_name, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_private_endpoint_connections_next_async(next_page_link, custom_headers:custom_headers) end page end end
Gets all private end point connections for a specific private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 688 def list_private_endpoint_connections_async(resource_group_name, service_name, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_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? 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::Network::Mgmt::V2020_05_01::Models::PrivateEndpointConnectionListResult.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 all private end point connections for a specific private link service.
@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 [PrivateEndpointConnectionListResult] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1723 def list_private_endpoint_connections_next(next_page_link, custom_headers:nil) response = list_private_endpoint_connections_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets all private end point connections for a specific private link service.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1752 def list_private_endpoint_connections_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.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 = '{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 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::Network::Mgmt::V2020_05_01::Models::PrivateEndpointConnectionListResult.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 all private end point connections for a specific private link service.
@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.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 1738 def list_private_endpoint_connections_next_with_http_info(next_page_link, custom_headers:nil) list_private_endpoint_connections_next_async(next_page_link, custom_headers:custom_headers).value! end
Gets all private end point connections for a specific private link service.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 674 def list_private_endpoint_connections_with_http_info(resource_group_name, service_name, custom_headers:nil) list_private_endpoint_connections_async(resource_group_name, service_name, custom_headers:custom_headers).value! end
Gets all private link services in a resource group.
@param resource_group_name [String] The name of the resource group. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 228 def list_with_http_info(resource_group_name, custom_headers:nil) list_async(resource_group_name, custom_headers:custom_headers).value! end
Approve or reject private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param parameters [PrivateEndpointConnection] Parameters supplied to approve or reject the private end point connection. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PrivateEndpointConnection] operation results.
# File lib/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 503 def update_private_endpoint_connection(resource_group_name, service_name, pe_connection_name, parameters, custom_headers:nil) response = update_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
Approve or reject private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param parameters [PrivateEndpointConnection] Parameters supplied to approve or reject the private end point connection. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 542 def update_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, parameters, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'service_name is nil' if service_name.nil? fail ArgumentError, 'pe_connection_name is nil' if pe_connection_name.nil? fail ArgumentError, 'parameters is nil' if parameters.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.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::Network::Mgmt::V2020_05_01::Models::PrivateEndpointConnection.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'serviceName' => service_name,'peConnectionName' => pe_connection_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 == 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::Network::Mgmt::V2020_05_01::Models::PrivateEndpointConnection.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
Approve or reject private end point connection for a private link service in a subscription.
@param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the private link service. @param pe_connection_name [String] The name of the private end point connection. @param parameters [PrivateEndpointConnection] Parameters supplied to approve or reject the private end point connection. @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/2020-05-01/generated/azure_mgmt_network/private_link_services.rb, line 523 def update_private_endpoint_connection_with_http_info(resource_group_name, service_name, pe_connection_name, parameters, custom_headers:nil) update_private_endpoint_connection_async(resource_group_name, service_name, pe_connection_name, parameters, custom_headers:custom_headers).value! end