Class: Azure::ARM::StreamAnalytics::Models::AzureDataLakeStoreOutputDataSource
- Inherits:
-
OutputDataSource
- Object
- OutputDataSource
- Azure::ARM::StreamAnalytics::Models::AzureDataLakeStoreOutputDataSource
- Includes:
- MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb
Overview
Describes an Azure Data Lake Store output data source.
Instance Attribute Summary collapse
-
#account_name ⇒ String
Required on PUT (CreateOrReplace) requests.
-
#date_format ⇒ String
filePathPrefix, the value of this property is used as the date format instead.
-
#file_path_prefix ⇒ String
written to.
-
#refresh_token ⇒ String
access token that can then be used to authenticate with the data source.
-
#tenant_id ⇒ String
token.
-
#time_format ⇒ String
filePathPrefix, the value of this property is used as the time format instead.
-
#token_user_display_name ⇒ String
obtain the refresh token.
-
#token_user_principal_name ⇒ String
used to obtain the refresh token.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureDataLakeStoreOutputDataSource class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ AzureDataLakeStoreOutputDataSource
constructor
A new instance of AzureDataLakeStoreOutputDataSource.
Constructor Details
#initialize ⇒ AzureDataLakeStoreOutputDataSource
Returns a new instance of AzureDataLakeStoreOutputDataSource.
16 17 18 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 16 def initialize @type = "Microsoft.DataLake/Accounts" end |
Instance Attribute Details
#account_name ⇒ String
Required on PUT (CreateOrReplace) requests.
43 44 45 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 43 def account_name @account_name end |
#date_format ⇒ String
filePathPrefix, the value of this property is used as the date format instead.
56 57 58 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 56 def date_format @date_format end |
#file_path_prefix ⇒ String
written to. Required on PUT (CreateOrReplace) requests.
51 52 53 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 51 def file_path_prefix @file_path_prefix end |
#refresh_token ⇒ String
access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
29 30 31 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 29 def refresh_token @refresh_token end |
#tenant_id ⇒ String
token. Required on PUT (CreateOrReplace) requests.
47 48 49 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 47 def tenant_id @tenant_id end |
#time_format ⇒ String
filePathPrefix, the value of this property is used as the time format instead.
61 62 63 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 61 def time_format @time_format end |
#token_user_display_name ⇒ String
obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
39 40 41 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 39 def token_user_display_name @token_user_display_name end |
#token_user_principal_name ⇒ String
used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
34 35 36 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 34 def token_user_principal_name @token_user_principal_name end |
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureDataLakeStoreOutputDataSource class as Ruby Hash. This will be used for serialization/deserialization.
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 142 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/azure_data_lake_store_output_data_source.rb', line 68 def self.mapper() { required: false, serialized_name: 'Microsoft.DataLake/Accounts', type: { name: 'Composite', class_name: 'AzureDataLakeStoreOutputDataSource', model_properties: { type: { required: true, serialized_name: 'type', type: { name: 'String' } }, refresh_token: { required: false, serialized_name: 'properties.refreshToken', type: { name: 'String' } }, token_user_principal_name: { required: false, serialized_name: 'properties.tokenUserPrincipalName', type: { name: 'String' } }, token_user_display_name: { required: false, serialized_name: 'properties.tokenUserDisplayName', type: { name: 'String' } }, account_name: { required: false, serialized_name: 'properties.accountName', type: { name: 'String' } }, tenant_id: { required: false, serialized_name: 'properties.tenantId', type: { name: 'String' } }, file_path_prefix: { required: false, serialized_name: 'properties.filePathPrefix', type: { name: 'String' } }, date_format: { required: false, serialized_name: 'properties.dateFormat', type: { name: 'String' } }, time_format: { required: false, serialized_name: 'properties.timeFormat', type: { name: 'String' } } } } } end |