class Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Export

Model object.

Attributes

download_uri[RW]

@return [String] URI used to download the model.

flavor[RW]

@return [ExportFlavorModel] Flavor of the export. Possible values include: 'Linux', 'Windows', 'ONNX10', 'ONNX12'

newer_version_available[RW]

@return [Boolean] Indicates an updated version of the export package is available and should be re-exported for the latest changes.

platform[RW]

@return [ExportPlatformModel] Platform of the export. Possible values include: 'CoreML', 'TensorFlow', 'DockerFile', 'ONNX'

status[RW]

@return [ExportStatusModel] Status of the export. Possible values include: 'Exporting', 'Failed', 'Done'

Public Class Methods

mapper() click to toggle source

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

# File lib/2.2/generated/azure_cognitiveservices_customvisiontraining/models/export.rb, line 40
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Export',
    type: {
      name: 'Composite',
      class_name: 'Export',
      model_properties: {
        platform: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'platform',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        download_uri: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'downloadUri',
          type: {
            name: 'String'
          }
        },
        flavor: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'flavor',
          type: {
            name: 'String'
          }
        },
        newer_version_available: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'newerVersionAvailable',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end