class Azure::BatchAI::Mgmt::V2018_05_01::Models::InputDirectory

Input directory for the job.

Attributes

id[RW]

@return [String] ID. The ID for the input directory. The job can use AZ_BATCHAI_INPUT_<id> environment variable to find the directory path, where <id> is the value of id attribute.

path[RW]

@return [String] Path. The path to the input directory.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-05-01/generated/azure_mgmt_batchai/models/input_directory.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'InputDirectory',
    type: {
      name: 'Composite',
      class_name: 'InputDirectory',
      model_properties: {
        id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        path: {
          client_side_validation: true,
          required: true,
          serialized_name: 'path',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end