class Azure::CognitiveServices::Customvisiontraining::V2_1::Models::Export

Model object.

Attributes

download_uri[RW]

@return [String]

flavor[RW]

@return [ExportFlavor] Possible values include: 'Linux', 'Windows'

newer_version_available[RW]

@return [Boolean]

platform[RW]

@return [ExportPlatform] Possible values include: 'CoreML', 'TensorFlow', 'DockerFile', 'ONNX'

status[RW]

@return [ExportStatusModel] 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.1/generated/azure_cognitiveservices_customvisiontraining/models/export.rb, line 38
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