class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputProperties

The properties that are associated with an input.

Attributes

diagnostics[RW]

@return [Diagnostics] Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.

etag[RW]

@return [String] The current entity tag for the input. 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.

serialization[RW]

@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.

type[RW]

Private Class Methods

mapper() click to toggle source

Mapper for InputProperties class as Ruby Hash. This will be used for serialization/deserialization.

# 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
new() click to toggle source
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/input_properties.rb, line 19
def initialize
  @type = "InputProperties"
end