Class: Azure::DataFactory::Mgmt::V2018_06_01::Models::SftpLocation
- Inherits:
-
DatasetLocation
- Object
- DatasetLocation
- Azure::DataFactory::Mgmt::V2018_06_01::Models::SftpLocation
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_data_factory/models/sftp_location.rb
Overview
The location of SFTP dataset.
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from DatasetLocation
#additional_properties, #file_name, #folder_path
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SftpLocation class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ SftpLocation
constructor
A new instance of SftpLocation.
Constructor Details
#initialize ⇒ SftpLocation
Returns a new instance of SftpLocation.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/sftp_location.rb', line 16 def initialize @type = "SftpLocation" end |
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/sftp_location.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for SftpLocation class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/sftp_location.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SftpLocation', type: { name: 'Composite', class_name: 'SftpLocation', model_properties: { additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, folder_path: { client_side_validation: true, required: false, serialized_name: 'folderPath', type: { name: 'Object' } }, file_name: { client_side_validation: true, required: false, serialized_name: 'fileName', type: { name: 'Object' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } } } } } end |