Class: Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannel
- Inherits:
-
Resource
- Object
- Resource
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannel
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb
Overview
A notification.
Instance Attribute Summary collapse
-
#created_date ⇒ DateTime
The creation date of the notification channel.
-
#description ⇒ String
Description of notification.
-
#events ⇒ Array<Event>
enabled.
-
#provisioning_state ⇒ String
The provisioning status of the resource.
-
#unique_identifier ⇒ String
The unique immutable identifier of a resource (Guid).
-
#web_hook_url ⇒ String
The webhook URL to send notifications to.
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NotificationChannel class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#created_date ⇒ DateTime
Returns The creation date of the notification channel.
26 27 28 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 26 def created_date @created_date end |
#description ⇒ String
Returns Description of notification.
19 20 21 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 19 def description @description end |
#events ⇒ Array<Event>
enabled.
23 24 25 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 23 def events @events end |
#provisioning_state ⇒ String
Returns The provisioning status of the resource.
29 30 31 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 29 def provisioning_state @provisioning_state end |
#unique_identifier ⇒ String
Returns The unique immutable identifier of a resource (Guid).
32 33 34 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 32 def unique_identifier @unique_identifier end |
#web_hook_url ⇒ String
Returns The webhook URL to send notifications to.
16 17 18 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 16 def web_hook_url @web_hook_url end |
Class Method Details
.mapper ⇒ Object
Mapper for NotificationChannel class as Ruby Hash. This will be used for serialization/deserialization.
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 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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/notification_channel.rb', line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NotificationChannel', type: { name: 'Composite', class_name: 'NotificationChannel', 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, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, web_hook_url: { client_side_validation: true, required: false, serialized_name: 'properties.webHookUrl', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, events: { client_side_validation: true, required: false, serialized_name: 'properties.events', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'EventElementType', type: { name: 'Composite', class_name: 'Event' } } } }, created_date: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.createdDate', type: { name: 'DateTime' } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, unique_identifier: { client_side_validation: true, required: false, serialized_name: 'properties.uniqueIdentifier', type: { name: 'String' } } } } } end |