class Azure::ServiceFabric::V6_4_0_36::MeshNetwork
Service Fabric REST Client APIs allows management of Service Fabric clusters, applications and services.
Attributes
@return [ServiceFabricClientAPIs] reference to the ServiceFabricClientAPIs
Public Class Methods
Creates and initializes a new instance of the MeshNetwork
class. @param client service class for accessing basic functionality.
# File lib/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 18 def initialize(client) @client = client end
Public Instance Methods
Creates or updates a Network resource.
Creates a Network resource with the specified name, description and properties. If Network resource with the same name exists, then it is updated with the specified description and properties. Network resource provides connectivity between application services.
@param network_resource_name [String] The identity of the network. @param network_resource_description [NetworkResourceDescription] Description for creating a Network resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [NetworkResourceDescription] operation results.
# File lib/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 41 def create_or_update(network_resource_name, network_resource_description, custom_headers:nil) response = create_or_update_async(network_resource_name, network_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
Creates or updates a Network resource.
Creates a Network resource with the specified name, description and properties. If Network resource with the same name exists, then it is updated with the specified description and properties. Network resource provides connectivity between application services.
@param network_resource_name [String] The identity of the network. @param network_resource_description [NetworkResourceDescription] Description for creating a Network resource. @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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 82 def create_or_update_async(network_resource_name, network_resource_description, custom_headers:nil) api_version = '6.4-preview' fail ArgumentError, 'network_resource_name is nil' if network_resource_name.nil? fail ArgumentError, 'network_resource_description is nil' if network_resource_description.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::ServiceFabric::V6_4_0_36::Models::NetworkResourceDescription.mapper() request_content = @client.serialize(request_mapper, network_resource_description) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'Resources/Networks/{networkResourceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'networkResourceName' => network_resource_name}, query_params: {'api-version' => 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 || status_code == 202 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::ServiceFabric::V6_4_0_36::Models::NetworkResourceDescription.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::ServiceFabric::V6_4_0_36::Models::NetworkResourceDescription.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 a Network resource.
Creates a Network resource with the specified name, description and properties. If Network resource with the same name exists, then it is updated with the specified description and properties. Network resource provides connectivity between application services.
@param network_resource_name [String] The identity of the network. @param network_resource_description [NetworkResourceDescription] Description for creating a Network resource. @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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 62 def create_or_update_with_http_info(network_resource_name, network_resource_description, custom_headers:nil) create_or_update_async(network_resource_name, network_resource_description, custom_headers:custom_headers).value! end
Deletes the Network resource.
Deletes the Network resource identified by the name.
@param network_resource_name [String] The identity of the network. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 261 def delete(network_resource_name, custom_headers:nil) response = delete_async(network_resource_name, custom_headers:custom_headers).value! nil end
Deletes the Network resource.
Deletes the Network resource identified by the name.
@param network_resource_name [String] The identity of the network. @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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 292 def delete_async(network_resource_name, custom_headers:nil) api_version = '6.4-preview' fail ArgumentError, 'network_resource_name is nil' if network_resource_name.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 = 'Resources/Networks/{networkResourceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'networkResourceName' => network_resource_name}, query_params: {'api-version' => 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 == 200 || status_code == 202 || status_code == 204 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
Deletes the Network resource.
Deletes the Network resource identified by the name.
@param network_resource_name [String] The identity of the network. @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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 277 def delete_with_http_info(network_resource_name, custom_headers:nil) delete_async(network_resource_name, custom_headers:custom_headers).value! end
Gets the Network resource with the given name.
Gets the information about the Network resource with the given name. The information include the description and other properties of the Network.
@param network_resource_name [String] The identity of the network. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [NetworkResourceDescription] operation results.
# File lib/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 165 def get(network_resource_name, custom_headers:nil) response = get_async(network_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets the Network resource with the given name.
Gets the information about the Network resource with the given name. The information include the description and other properties of the Network.
@param network_resource_name [String] The identity of the network. @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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 198 def get_async(network_resource_name, custom_headers:nil) api_version = '6.4-preview' fail ArgumentError, 'network_resource_name is nil' if network_resource_name.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 = 'Resources/Networks/{networkResourceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'networkResourceName' => network_resource_name}, query_params: {'api-version' => 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::ServiceFabric::V6_4_0_36::Models::NetworkResourceDescription.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 Network resource with the given name.
Gets the information about the Network resource with the given name. The information include the description and other properties of the Network.
@param network_resource_name [String] The identity of the network. @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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 182 def get_with_http_info(network_resource_name, custom_headers:nil) get_async(network_resource_name, custom_headers:custom_headers).value! end
Lists all the network resources.
Gets the information about all network resources in a given resource group. The information include the description and other properties of the Network.
@param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PagedNetworkResourceDescriptionList] operation results.
# File lib/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 346 def list(custom_headers:nil) response = list_async(custom_headers:custom_headers).value! response.body unless response.nil? end
Lists all the network resources.
Gets the information about all network resources in a given resource group. The information include the description and other properties of the Network.
@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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 377 def list_async(custom_headers:nil) api_version = '6.4-preview' 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 = 'Resources/Networks' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], query_params: {'api-version' => 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::ServiceFabric::V6_4_0_36::Models::PagedNetworkResourceDescriptionList.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
Lists all the network resources.
Gets the information about all network resources in a given resource group. The information include the description and other properties of the Network.
@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/6.4.0.36/generated/azure_service_fabric/mesh_network.rb, line 362 def list_with_http_info(custom_headers:nil) list_async(custom_headers:custom_headers).value! end