class Azure::ServiceFabric::V6_3_0_9::Models::ApplicationTypeImageStorePath

Path description for the application package in the image store specified during the prior copy operation.

Attributes

application_type_build_path[RW]

@return [String] The relative image store path to the application package.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.3.0.9/generated/azure_service_fabric/models/application_type_image_store_path.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationTypeImageStorePath',
    type: {
      name: 'Composite',
      class_name: 'ApplicationTypeImageStorePath',
      model_properties: {
        application_type_build_path: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ApplicationTypeBuildPath',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end