Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputProperties
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb
Overview
The properties that are associated with an input.
Direct Known Subclasses
Constant Summary collapse
- @@discriminatorMap =
Hash.new
Instance Attribute Summary collapse
-
#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.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for InputProperties class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ InputProperties
constructor
A new instance of InputProperties.
Constructor Details
#initialize ⇒ InputProperties
Returns a new instance of InputProperties.
19 20 21 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb', line 19 def initialize @type = "InputProperties" end |
Instance Attribute Details
#diagnostics ⇒ Diagnostics
Output, or the job overall, that warrant customer attention.
32 33 34 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb', line 32 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.
38 39 40 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb', line 38 def etag @etag end |
#serialization ⇒ Serialization
or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
28 29 30 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb', line 28 def serialization @serialization end |
#type ⇒ Object
Returns the value of attribute type.
23 24 25 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb', line 23 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for InputProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb', line 45 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'InputProperties', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'InputProperties', class_name: 'InputProperties', model_properties: { serialization: { client_side_validation: true, required: false, serialized_name: '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: 'diagnostics', type: { name: 'Composite', class_name: 'Diagnostics' } }, etag: { client_side_validation: true, required: false, read_only: true, serialized_name: 'etag', type: { name: 'String' } } } } } end |