Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputDataSource
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputDataSource
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output_data_source.rb
Overview
Describes the data source that output will be written to.
Direct Known Subclasses
AzureDataLakeStoreOutputDataSource, AzureSqlDatabaseOutputDataSource, AzureTableOutputDataSource, BlobOutputDataSource, DocumentDbOutputDataSource, EventHubOutputDataSource, PowerBIOutputDataSource, ServiceBusQueueOutputDataSource, ServiceBusTopicOutputDataSource
Constant Summary collapse
- @@discriminatorMap =
Hash.new
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OutputDataSource class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ OutputDataSource
constructor
A new instance of OutputDataSource.
Constructor Details
#initialize ⇒ OutputDataSource
Returns a new instance of OutputDataSource.
26 27 28 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output_data_source.rb', line 26 def initialize @type = "OutputDataSource" end |
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
30 31 32 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output_data_source.rb', line 30 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for OutputDataSource class as Ruby Hash. This will be used for serialization/deserialization.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output_data_source.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OutputDataSource', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'OutputDataSource', class_name: 'OutputDataSource', model_properties: { } } } end |