Class: Azure::DataFactory::Mgmt::V2018_06_01::Models::AmazonS3Location
- Inherits:
-
DatasetLocation
- Object
- DatasetLocation
- Azure::DataFactory::Mgmt::V2018_06_01::Models::AmazonS3Location
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_data_factory/models/amazon_s3location.rb
Overview
The location of amazon S3 dataset.
Instance Attribute Summary collapse
-
#bucket_name ⇒ Object
Expression with resultType string).
-
#type ⇒ Object
Returns the value of attribute type.
-
#version ⇒ Object
with resultType string).
Attributes inherited from DatasetLocation
#additional_properties, #file_name, #folder_path
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AmazonS3Location class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ AmazonS3Location
constructor
A new instance of AmazonS3Location.
Constructor Details
#initialize ⇒ AmazonS3Location
Returns a new instance of AmazonS3Location.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/amazon_s3location.rb', line 16 def initialize @type = "AmazonS3Location" end |
Instance Attribute Details
#bucket_name ⇒ Object
Expression with resultType string)
24 25 26 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/amazon_s3location.rb', line 24 def bucket_name @bucket_name end |
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/amazon_s3location.rb', line 20 def type @type end |
#version ⇒ Object
with resultType string).
28 29 30 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/amazon_s3location.rb', line 28 def version @version end |
Class Method Details
.mapper ⇒ Object
Mapper for AmazonS3Location class as Ruby Hash. This will be used for serialization/deserialization.
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/amazon_s3location.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AmazonS3Location', type: { name: 'Composite', class_name: 'AmazonS3Location', 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' } }, bucket_name: { client_side_validation: true, required: false, serialized_name: 'bucketName', type: { name: 'Object' } }, version: { client_side_validation: true, required: false, serialized_name: 'version', type: { name: 'Object' } } } } } end |