class Azure::ServiceFabric::V6_5_0_36::MeshApplication

Service Fabric REST Client APIs allows management of Service Fabric clusters, applications and services.

Attributes

client[R]

@return [ServiceFabricClientAPIs] reference to the ServiceFabricClientAPIs

Public Class Methods

new(client) click to toggle source

Creates and initializes a new instance of the MeshApplication class. @param client service class for accessing basic functionality.

# File lib/6.5.0.36/generated/azure_service_fabric/mesh_application.rb, line 18
def initialize(client)
  @client = client
end

Public Instance Methods

create_or_update(application_resource_name, application_resource_description, custom_headers:nil) click to toggle source

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/6.5.0.36/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
create_or_update_async(application_resource_name, application_resource_description, custom_headers:nil) click to toggle source

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/6.5.0.36/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::V6_5_0_36::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::V6_5_0_36::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::V6_5_0_36::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
create_or_update_with_http_info(application_resource_name, application_resource_description, custom_headers:nil) click to toggle source

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/6.5.0.36/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
delete(application_resource_name, custom_headers:nil) click to toggle source

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/6.5.0.36/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
delete_async(application_resource_name, custom_headers:nil) click to toggle source

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/6.5.0.36/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
delete_with_http_info(application_resource_name, custom_headers:nil) click to toggle source

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/6.5.0.36/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
get(application_resource_name, custom_headers:nil) click to toggle source

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/6.5.0.36/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
get_async(application_resource_name, custom_headers:nil) click to toggle source

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/6.5.0.36/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::V6_5_0_36::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
get_with_http_info(application_resource_name, custom_headers:nil) click to toggle source

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/6.5.0.36/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
list(custom_headers:nil) click to toggle source

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/6.5.0.36/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
list_async(custom_headers:nil) click to toggle source

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/6.5.0.36/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::V6_5_0_36::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
list_with_http_info(custom_headers:nil) click to toggle source

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/6.5.0.36/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