Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Output
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Output
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output.rb
Overview
An output object, containing all information associated with the named output. All outputs are contained under a streaming job.
Instance Attribute Summary collapse
-
#datasource ⇒ OutputDataSource
be written to.
-
#diagnostics ⇒ Diagnostics
Output, or the job overall, that warrant customer attention.
-
#etag ⇒ String
opaque string.
-
#serialization ⇒ Serialization
or how data is serialized when written to an output.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Output class as Ruby Hash.
Instance Attribute Details
#datasource ⇒ OutputDataSource
be written to. Required on PUT (CreateOrReplace) requests.
18 19 20 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output.rb', line 18 def datasource @datasource end |
#diagnostics ⇒ Diagnostics
Output, or the job overall, that warrant customer attention.
27 28 29 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output.rb', line 27 def diagnostics @diagnostics end |
#etag ⇒ String
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.
33 34 35 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output.rb', line 33 def etag @etag end |
#serialization ⇒ Serialization
or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
23 24 25 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/output.rb', line 23 def serialization @serialization end |
Class Method Details
.mapper ⇒ Object
Mapper for Output class as Ruby Hash. This will be used for serialization/deserialization.
40 41 42 43 44 45 46 47 48 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 111 112 113 114 115 116 117 118 119 |
# 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 |