class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StartStreamingJobParameters
Parameters supplied to the Start Streaming Job operation.
Attributes
@return [OutputStartMode] Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the starting point of the output event stream should start whenever the job is started, start at a custom user time stamp specified via the outputStartTime property, or start from the last event output time. Possible values include: 'JobStartTime', 'CustomTime', 'LastOutputEventTime'
@return [DateTime] Value is either an ISO-8601 formatted time stamp that indicates the starting point of the output event stream, or null to indicate that the output event stream will start whenever the streaming job is started. This property must have a value if outputStartMode is set to CustomTime.
Private Class Methods
Mapper for StartStreamingJobParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/start_streaming_job_parameters.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StartStreamingJobParameters', type: { name: 'Composite', class_name: 'StartStreamingJobParameters', model_properties: { output_start_mode: { client_side_validation: true, required: false, serialized_name: 'outputStartMode', type: { name: 'String' } }, output_start_time: { client_side_validation: true, required: false, serialized_name: 'outputStartTime', type: { name: 'DateTime' } } } } } end