Class: Azure::DataShare::Mgmt::V2019_11_01::Models::ADLSGen1FileDataSet
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb
Overview
An ADLS Gen 1 file data set.
Instance Attribute Summary collapse
-
#account_name ⇒ String
The ADLS account name.
-
#data_set_id ⇒ String
Unique id for identifying a data set resource.
-
#file_name ⇒ String
The file name in the ADLS account.
-
#folder_path ⇒ String
The folder path within the ADLS account.
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#resource_group ⇒ String
Resource group of ADLS account.
-
#subscription_id ⇒ String
Subscription id of ADLS account.
Attributes inherited from ProxyDto
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ADLSGen1FileDataSet class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ ADLSGen1FileDataSet
constructor
A new instance of ADLSGen1FileDataSet.
Constructor Details
#initialize ⇒ ADLSGen1FileDataSet
Returns a new instance of ADLSGen1FileDataSet.
16 17 18 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 16 def initialize @kind = "AdlsGen1File" end |
Instance Attribute Details
#account_name ⇒ String
Returns The ADLS account name.
23 24 25 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 23 def account_name @account_name end |
#data_set_id ⇒ String
Returns Unique id for identifying a data set resource.
26 27 28 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 26 def data_set_id @data_set_id end |
#file_name ⇒ String
Returns The file name in the ADLS account.
29 30 31 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 29 def file_name @file_name end |
#folder_path ⇒ String
Returns The folder path within the ADLS account.
32 33 34 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 32 def folder_path @folder_path end |
#kind ⇒ Object
Returns the value of attribute kind.
20 21 22 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 20 def kind @kind end |
#resource_group ⇒ String
Returns Resource group of ADLS account.
35 36 37 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 35 def resource_group @resource_group end |
#subscription_id ⇒ String
Returns Subscription id of ADLS account.
38 39 40 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 38 def subscription_id @subscription_id end |
Class Method Details
.mapper ⇒ Object
Mapper for ADLSGen1FileDataSet class as Ruby Hash. This will be used for serialization/deserialization.
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/adlsgen1file_data_set.rb', line 45 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AdlsGen1File', type: { name: 'Composite', class_name: 'ADLSGen1FileDataSet', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, kind: { client_side_validation: true, required: true, serialized_name: 'kind', type: { name: 'String' } }, account_name: { client_side_validation: true, required: true, serialized_name: 'properties.accountName', type: { name: 'String' } }, data_set_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.dataSetId', type: { name: 'String' } }, file_name: { client_side_validation: true, required: true, serialized_name: 'properties.fileName', type: { name: 'String' } }, folder_path: { client_side_validation: true, required: true, serialized_name: 'properties.folderPath', type: { name: 'String' } }, resource_group: { client_side_validation: true, required: true, serialized_name: 'properties.resourceGroup', type: { name: 'String' } }, subscription_id: { client_side_validation: true, required: true, serialized_name: 'properties.subscriptionId', type: { name: 'String' } } } } } end |