Class: Azure::TimeSeriesInsights::Mgmt::V2017_11_15::Models::AzureEventSourceProperties
- Inherits:
-
EventSourceCommonProperties
- Object
- ResourceProperties
- EventSourceCommonProperties
- Azure::TimeSeriesInsights::Mgmt::V2017_11_15::Models::AzureEventSourceProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/azure_event_source_properties.rb
Overview
Properties of an event source that reads events from an event broker in Azure.
Direct Known Subclasses
EventHubEventSourceCommonProperties, IoTHubEventSourceCommonProperties
Instance Attribute Summary collapse
-
#event_source_resource_id ⇒ String
Manager.
Attributes inherited from EventSourceCommonProperties
Attributes inherited from ResourceProperties
#creation_time, #provisioning_state
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureEventSourceProperties class as Ruby Hash.
Instance Attribute Details
#event_source_resource_id ⇒ String
Manager.
18 19 20 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/azure_event_source_properties.rb', line 18 def event_source_resource_id @event_source_resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureEventSourceProperties class as Ruby Hash. This will be used for serialization/deserialization.
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/azure_event_source_properties.rb', line 25 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureEventSourceProperties', type: { name: 'Composite', class_name: 'AzureEventSourceProperties', model_properties: { provisioning_state: { client_side_validation: true, required: false, serialized_name: 'provisioningState', type: { name: 'Enum', module: 'ProvisioningState' } }, creation_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'creationTime', type: { name: 'DateTime' } }, timestamp_property_name: { client_side_validation: true, required: false, serialized_name: 'timestampPropertyName', type: { name: 'String' } }, event_source_resource_id: { client_side_validation: true, required: true, serialized_name: 'eventSourceResourceId', type: { name: 'String' } } } } } end |