Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobDataSourceProperties
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobDataSourceProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb
Overview
The properties that are associated with a blob data source.
Instance Attribute Summary collapse
-
#container ⇒ String
account.
-
#date_format ⇒ String
pathPattern, the value of this property is used as the date format instead.
-
#path_pattern ⇒ String
represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job.
-
#storage_accounts ⇒ Array<StorageAccount>
accounts.
-
#time_format ⇒ String
pathPattern, the value of this property is used as the time format instead.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for BlobDataSourceProperties class as Ruby Hash.
Instance Attribute Details
#container ⇒ String
account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
22 23 24 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb', line 22 def container @container end |
#date_format ⇒ String
pathPattern, the value of this property is used as the date format instead.
37 38 39 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb', line 37 def date_format @date_format end |
#path_pattern ⇒ String
represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
32 33 34 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb', line 32 def path_pattern @path_pattern end |
#storage_accounts ⇒ Array<StorageAccount>
accounts. Required on PUT (CreateOrReplace) requests.
17 18 19 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb', line 17 def storage_accounts @storage_accounts end |
#time_format ⇒ String
pathPattern, the value of this property is used as the time format instead.
42 43 44 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb', line 42 def time_format @time_format end |
Class Method Details
.mapper ⇒ Object
Mapper for BlobDataSourceProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/blob_data_source_properties.rb', line 49 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BlobDataSourceProperties', type: { name: 'Composite', class_name: 'BlobDataSourceProperties', model_properties: { storage_accounts: { client_side_validation: true, required: false, serialized_name: 'storageAccounts', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StorageAccountElementType', type: { name: 'Composite', class_name: 'StorageAccount' } } } }, container: { client_side_validation: true, required: false, serialized_name: 'container', type: { name: 'String' } }, path_pattern: { client_side_validation: true, required: false, serialized_name: 'pathPattern', type: { name: 'String' } }, date_format: { client_side_validation: true, required: false, serialized_name: 'dateFormat', type: { name: 'String' } }, time_format: { client_side_validation: true, required: false, serialized_name: 'timeFormat', type: { name: 'String' } } } } } end |