class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Transformation
A transformation object, containing all information associated with the named transformation. All transformations are contained under a streaming job.
Attributes
@return [String] The current entity tag for the transformation. 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.
@return [String] Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
@return [Integer] Specifies the number of streaming units that the streaming job uses.
Private Class Methods
Mapper for Transformation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/transformation.rb, line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Transformation', type: { name: 'Composite', class_name: 'Transformation', 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' } }, streaming_units: { client_side_validation: true, required: false, serialized_name: 'properties.streamingUnits', type: { name: 'Number' } }, query: { client_side_validation: true, required: false, serialized_name: 'properties.query', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.etag', type: { name: 'String' } } } } } end