class Azure::BatchAI::Mgmt::V2018_03_01::Models::InputDirectory
Input directory for the job.
Attributes
id[RW]
@return [String] The id for the input directory. The path of the input directory will be available as a value of an environment variable with AZ_BATCHAI_INPUT_<id> name, where <id> is the value of id attribute.
path[RW]
@return [String] The path to the input directory.
Public Class Methods
mapper()
click to toggle source
Mapper for InputDirectory
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-03-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