class Azure::ServiceFabric::V7_0_0_42::MeshApplication
Service Fabric REST Client APIs allows management of Service Fabric clusters, applications and services.
Attributes
@return [ServiceFabricClientAPIs] reference to the ServiceFabricClientAPIs
Private Class Methods
Creates and initializes a new instance of the MeshApplication
class. @param client service class for accessing basic functionality.
# File lib/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 18 def initialize(client) @client = client end
Private Instance Methods
Creates or updates a Application resource.
Creates a Application resource with the specified name, description and properties. If Application resource with the same name exists, then it is updated with the specified description and properties.
@param application_resource_name [String] The identity of the application. @param application_resource_description [ApplicationResourceDescription] Description for creating a Application resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [ApplicationResourceDescription] operation results.
# File lib/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 40 def create_or_update(application_resource_name, application_resource_description, custom_headers:nil) response = create_or_update_async(application_resource_name, application_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
Creates or updates a Application resource.
Creates a Application resource with the specified name, description and properties. If Application resource with the same name exists, then it is updated with the specified description and properties.
@param application_resource_name [String] The identity of the application. @param application_resource_description [ApplicationResourceDescription] Description for creating a Application 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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 79 def create_or_update_async(application_resource_name, application_resource_description, custom_headers:nil) api_version = '6.4-preview' fail ArgumentError, 'application_resource_name is nil' if application_resource_name.nil? fail ArgumentError, 'application_resource_description is nil' if application_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::V7_0_0_42::Models::ApplicationResourceDescription.mapper() request_content = @client.serialize(request_mapper, application_resource_description) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'Resources/Applications/{applicationResourceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'applicationResourceName' => application_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::V7_0_0_42::Models::ApplicationResourceDescription.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::V7_0_0_42::Models::ApplicationResourceDescription.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 Application resource.
Creates a Application resource with the specified name, description and properties. If Application resource with the same name exists, then it is updated with the specified description and properties.
@param application_resource_name [String] The identity of the application. @param application_resource_description [ApplicationResourceDescription] Description for creating a Application 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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 60 def create_or_update_with_http_info(application_resource_name, application_resource_description, custom_headers:nil) create_or_update_async(application_resource_name, application_resource_description, custom_headers:custom_headers).value! end
Deletes the Application resource.
Deletes the Application resource identified by the name.
@param application_resource_name [String] The identity of the application. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 258 def delete(application_resource_name, custom_headers:nil) response = delete_async(application_resource_name, custom_headers:custom_headers).value! nil end
Deletes the Application resource.
Deletes the Application resource identified by the name.
@param application_resource_name [String] The identity of the application. @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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 289 def delete_async(application_resource_name, custom_headers:nil) api_version = '6.4-preview' fail ArgumentError, 'application_resource_name is nil' if application_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/Applications/{applicationResourceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'applicationResourceName' => application_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 Application resource.
Deletes the Application resource identified by the name.
@param application_resource_name [String] The identity of the application. @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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 274 def delete_with_http_info(application_resource_name, custom_headers:nil) delete_async(application_resource_name, custom_headers:custom_headers).value! end
Gets the Application resource with the given name.
Gets the information about the Application resource with the given name. The information include the description and other properties of the Application.
@param application_resource_name [String] The identity of the application. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [ApplicationResourceDescription] operation results.
# File lib/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 162 def get(application_resource_name, custom_headers:nil) response = get_async(application_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets the Application resource with the given name.
Gets the information about the Application resource with the given name. The information include the description and other properties of the Application.
@param application_resource_name [String] The identity of the application. @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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 195 def get_async(application_resource_name, custom_headers:nil) api_version = '6.4-preview' fail ArgumentError, 'application_resource_name is nil' if application_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/Applications/{applicationResourceName}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'applicationResourceName' => application_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::V7_0_0_42::Models::ApplicationResourceDescription.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 progress of the latest upgrade performed on this application resource.
Gets the upgrade progress information about the Application resource with the given name. The information include percentage of completion and other upgrade state information of the Application resource.
@param application_resource_name [String] The identity of the application. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [ApplicationResourceUpgradeProgressInfo] operation results.
# File lib/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 442 def get_upgrade_progress(application_resource_name, custom_headers:nil) response = get_upgrade_progress_async(application_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
Gets the progress of the latest upgrade performed on this application resource.
Gets the upgrade progress information about the Application resource with the given name. The information include percentage of completion and other upgrade state information of the Application resource.
@param application_resource_name [String] The identity of the application. @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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 479 def get_upgrade_progress_async(application_resource_name, custom_headers:nil) api_version = '7.0' fail ArgumentError, 'application_resource_name is nil' if application_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/Applications/{applicationResourceName}/$/GetUpgradeProgress' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'applicationResourceName' => application_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::V7_0_0_42::Models::ApplicationResourceUpgradeProgressInfo.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 progress of the latest upgrade performed on this application resource.
Gets the upgrade progress information about the Application resource with the given name. The information include percentage of completion and other upgrade state information of the Application resource.
@param application_resource_name [String] The identity of the application. @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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 461 def get_upgrade_progress_with_http_info(application_resource_name, custom_headers:nil) get_upgrade_progress_async(application_resource_name, custom_headers:custom_headers).value! end
Gets the Application resource with the given name.
Gets the information about the Application resource with the given name. The information include the description and other properties of the Application.
@param application_resource_name [String] The identity of the application. @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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 179 def get_with_http_info(application_resource_name, custom_headers:nil) get_async(application_resource_name, custom_headers:custom_headers).value! end
Lists all the application resources.
Gets the information about all application resources in a given resource group. The information include the description and other properties of the Application.
@param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PagedApplicationResourceDescriptionList] operation results.
# File lib/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 344 def list(custom_headers:nil) response = list_async(custom_headers:custom_headers).value! response.body unless response.nil? end
Lists all the application resources.
Gets the information about all application resources in a given resource group. The information include the description and other properties of the Application.
@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/7.0.0.42/generated/azure_service_fabric/mesh_application.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/Applications' 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::V7_0_0_42::Models::PagedApplicationResourceDescriptionList.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 application resources.
Gets the information about all application resources in a given resource group. The information include the description and other properties of the Application.
@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/7.0.0.42/generated/azure_service_fabric/mesh_application.rb, line 361 def list_with_http_info(custom_headers:nil) list_async(custom_headers:custom_headers).value! end