Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::IoTHubStreamInputDataSource

Inherits:
StreamInputDataSource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb

Overview

Describes an IoT Hub input data source that contains stream data.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeIoTHubStreamInputDataSource



16
17
18
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 16

def initialize
  @type = "Microsoft.Devices/IotHubs"
end

Instance Attribute Details

#consumer_group_nameString

used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.



38
39
40
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 38

def consumer_group_name
  @consumer_group_name
end

#endpointString

messages/events, messages/operationsMonitoringEvents, etc.).



42
43
44
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 42

def endpoint
  @endpoint
end

#iot_hub_namespaceString

(CreateOrReplace) requests.



24
25
26
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 24

def iot_hub_namespace
  @iot_hub_namespace
end

#shared_access_policy_keyString

access policy. Required on PUT (CreateOrReplace) requests.



33
34
35
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 33

def shared_access_policy_key
  @shared_access_policy_key
end

#shared_access_policy_nameString

policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.



29
30
31
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 29

def shared_access_policy_name
  @shared_access_policy_name
end

#typeObject

Returns the value of attribute type.



20
21
22
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 20

def type
  @type
end

Class Method Details

.mapperObject

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



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
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/io_thub_stream_input_data_source.rb', line 49

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Microsoft.Devices/IotHubs',
    type: {
      name: 'Composite',
      class_name: 'IoTHubStreamInputDataSource',
      model_properties: {
        type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        iot_hub_namespace: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.iotHubNamespace',
          type: {
            name: 'String'
          }
        },
        shared_access_policy_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.sharedAccessPolicyName',
          type: {
            name: 'String'
          }
        },
        shared_access_policy_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.sharedAccessPolicyKey',
          type: {
            name: 'String'
          }
        },
        consumer_group_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.consumerGroupName',
          type: {
            name: 'String'
          }
        },
        endpoint: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.endpoint',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end