Class: Azure::IotCentral::Mgmt::V2018_09_01::Models::AppPatch
- Inherits:
-
Object
- Object
- Azure::IotCentral::Mgmt::V2018_09_01::Models::AppPatch
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb
Overview
The description of the IoT Central application.
Instance Attribute Summary collapse
-
#application_id ⇒ String
The ID of the application.
-
#display_name ⇒ String
The display name of the application.
-
#sku ⇒ AppSkuInfo
A valid instance SKU.
-
#subdomain ⇒ String
The subdomain of the application.
-
#tags ⇒ Hash{String => String}
Instance tags.
-
#template ⇒ String
blueprint that defines the characteristics and behaviors of an application.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AppPatch class as Ruby Hash.
Instance Attribute Details
#application_id ⇒ String
Returns The ID of the application.
22 23 24 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 22 def application_id @application_id end |
#display_name ⇒ String
Returns The display name of the application.
25 26 27 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 25 def display_name @display_name end |
#sku ⇒ AppSkuInfo
Returns A valid instance SKU.
19 20 21 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 19 def sku @sku end |
#subdomain ⇒ String
Returns The subdomain of the application.
28 29 30 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 28 def subdomain @subdomain end |
#tags ⇒ Hash{String => String}
Returns Instance tags.
16 17 18 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 16 def @tags end |
#template ⇒ String
blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch.
34 35 36 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 34 def template @template end |
Class Method Details
.mapper ⇒ Object
Mapper for AppPatch class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AppPatch', type: { name: 'Composite', class_name: 'AppPatch', model_properties: { 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' } } } }, sku: { client_side_validation: true, required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'AppSkuInfo' } }, application_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.applicationId', type: { name: 'String' } }, display_name: { client_side_validation: true, required: false, serialized_name: 'properties.displayName', type: { name: 'String' } }, subdomain: { client_side_validation: true, required: false, serialized_name: 'properties.subdomain', type: { name: 'String' } }, template: { client_side_validation: true, required: false, serialized_name: 'properties.template', type: { name: 'String' } } } } } end |