class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobDataSourceProperties

The properties that are associated with a blob data source.

Attributes

container[RW]

@return [String] The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.

date_format[RW]

@return [String] The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.

path_pattern[RW]

@return [String] The blob path pattern. Not a regular expression. It 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.

storage_accounts[RW]

@return [Array<StorageAccount>] A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.

time_format[RW]

@return [String] The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

Private Class Methods

mapper() click to toggle source

Mapper for BlobDataSourceProperties class as Ruby Hash. This will be used for serialization/deserialization.

# 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