class Azure::CognitiveServices::Customvisiontraining::V3_0::Models::ProjectSettings

Represents settings associated with a project.

Attributes

classification_type[RW]

@return [Classifier] Gets or sets the classification type of the project. Possible values include: 'Multiclass', 'Multilabel'

domain_id[RW]

@return Gets or sets the id of the Domain to use with this project.

target_export_platforms[RW]

@return [Array<Enum>] A list of ExportPlatform that the trained model should be able to support.

Private Class Methods

mapper() click to toggle source

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

# File lib/3.0/generated/azure_cognitiveservices_customvisiontraining/models/project_settings.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ProjectSettings',
    type: {
      name: 'Composite',
      class_name: 'ProjectSettings',
      model_properties: {
        domain_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'domainId',
          type: {
            name: 'String'
          }
        },
        classification_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'classificationType',
          type: {
            name: 'String'
          }
        },
        target_export_platforms: {
          client_side_validation: true,
          required: false,
          serialized_name: 'targetExportPlatforms',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'enumElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end