class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Output
An output object, containing all information associated with the named output. All outputs are contained under a streaming job.
Attributes
@return [OutputDataSource] Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
@return [String] The current entity tag for the output. This is an opaque string. You can use it to detect whether the resource has changed between requests. You can also use it in the If-Match or If-None-Match headers for write operations for optimistic concurrency.
@return [Serialization] Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
Private Class Methods
Mapper for Output
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output.rb, line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Output', type: { name: 'Composite', class_name: 'Output', 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, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, datasource: { client_side_validation: true, required: false, serialized_name: 'properties.datasource', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'OutputDataSource', class_name: 'OutputDataSource' } }, serialization: { client_side_validation: true, required: false, serialized_name: 'properties.serialization', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'Serialization', class_name: 'Serialization' } }, diagnostics: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.diagnostics', type: { name: 'Composite', class_name: 'Diagnostics' } }, etag: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.etag', type: { name: 'String' } } } } } end