Class: Azure::IotCentral::Mgmt::V2018_09_01::Models::AppPatch

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#application_idString

Returns The ID of the application.

Returns:

  • (String)

    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_nameString

Returns The display name of the application.

Returns:

  • (String)

    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

#skuAppSkuInfo

Returns A valid instance SKU.

Returns:



19
20
21
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 19

def sku
  @sku
end

#subdomainString

Returns The subdomain of the application.

Returns:

  • (String)

    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

#tagsHash{String => String}

Returns Instance tags.

Returns:

  • (Hash{String => String})

    Instance tags



16
17
18
# File 'lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb', line 16

def tags
  @tags
end

#templateString

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.

Returns:

  • (String)

    The ID of the application template, which is a



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

.mapperObject

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