Class: Azure::ARM::StreamAnalytics::Models::Output
- Inherits:
-
SubResource
- Object
- MsRestAzure::SubResource
- SubResource
- Azure::ARM::StreamAnalytics::Models::Output
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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.
19 20 21 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/output.rb', line 19 def datasource @datasource end |
#diagnostics ⇒ Diagnostics
Output, or the job overall, that warrant customer attention.
28 29 30 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/output.rb', line 28 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.
34 35 36 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/output.rb', line 34 def etag @etag end |
#serialization ⇒ Serialization
or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
24 25 26 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/output.rb', line 24 def serialization @serialization end |
Class Method Details
.mapper ⇒ Object
Mapper for Output class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/output.rb', line 41 def self.mapper() { required: false, serialized_name: 'Output', type: { name: 'Composite', class_name: 'Output', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, datasource: { required: false, serialized_name: 'properties.datasource', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'OutputDataSource', class_name: 'OutputDataSource' } }, serialization: { required: false, serialized_name: 'properties.serialization', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'Serialization', class_name: 'Serialization' } }, diagnostics: { required: false, read_only: true, serialized_name: 'properties.diagnostics', type: { name: 'Composite', class_name: 'Diagnostics' } }, etag: { required: false, read_only: true, serialized_name: 'properties.etag', type: { name: 'String' } } } } } end |