class Azure::ServiceFabric::V7_0_0_42::Models::ExternalStoreProvisionApplicationTypeDescription

Describes the operation to register or provision an application type using an application package from an external store instead of a package uploaded to the Service Fabric image store.

Attributes

Kind[RW]
application_package_download_uri[RW]

@return [String] The path to the '.sfpkg' application package from where the application package can be downloaded using HTTP or HTTPS protocols. The application package can be stored in an external store that provides GET operation to download the file. Supported protocols are HTTP and HTTPS, and the path must allow READ access.

application_type_name[RW]

@return [String] The application type name represents the name of the application type found in the application manifest.

application_type_version[RW]

@return [String] The application type version represents the version of the application type found in the application manifest.

Private Class Methods

mapper() click to toggle source

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

# File lib/7.0.0.42/generated/azure_service_fabric/models/external_store_provision_application_type_description.rb, line 45
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExternalStore',
    type: {
      name: 'Composite',
      class_name: 'ExternalStoreProvisionApplicationTypeDescription',
      model_properties: {
        async: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Async',
          type: {
            name: 'Boolean'
          }
        },
        Kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Kind',
          type: {
            name: 'String'
          }
        },
        application_package_download_uri: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ApplicationPackageDownloadUri',
          type: {
            name: 'String'
          }
        },
        application_type_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ApplicationTypeName',
          type: {
            name: 'String'
          }
        },
        application_type_version: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ApplicationTypeVersion',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end
new() click to toggle source
# File lib/7.0.0.42/generated/azure_service_fabric/models/external_store_provision_application_type_description.rb, line 18
def initialize
  @Kind = "ExternalStore"
end