class Azure::CognitiveServices::Customvisiontraining::V3_0::Models::Export
Model object.
Attributes
download_uri[RW]
@return [String] URI used to download the model.
flavor[RW]
@return [ExportFlavor] Flavor of the export. Possible values include: 'Linux', 'Windows', 'ONNX10', 'ONNX12', 'ARM'
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 [ExportPlatform] Platform of the export. Possible values include: 'CoreML', 'TensorFlow', 'DockerFile', 'ONNX', 'VAIDK'
status[RW]
@return [ExportStatus] Status of the export. Possible values include: 'Exporting', 'Failed', 'Done'
Private Class Methods
mapper()
click to toggle source
Mapper for Export
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/3.0/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