class Azure::ServiceFabric::V6_4_0_36::Models::ResumeApplicationUpgradeDescription

Describes the parameters for resuming an unmonitored manual Service Fabric application upgrade

Attributes

upgrade_domain_name[RW]

@return [String] The name of the upgrade domain in which to resume the upgrade.

Public Class Methods

mapper() click to toggle source

Mapper for ResumeApplicationUpgradeDescription class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/6.4.0.36/generated/azure_service_fabric/models/resume_application_upgrade_description.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ResumeApplicationUpgradeDescription',
    type: {
      name: 'Composite',
      class_name: 'ResumeApplicationUpgradeDescription',
      model_properties: {
        upgrade_domain_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'UpgradeDomainName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end