Class: Azure::IotCentral::Mgmt::V2017_07_01_privatepreview::Models::App

Inherits:
Resource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb

Overview

The IoT Central application.

Instance Attribute Summary collapse

Attributes inherited from Resource

#id, #location, #name, #tags, #type

Class Method Summary collapse

Methods inherited from Resource

#resource_group

Instance Attribute Details

#application_idString

Returns The ID of the application.

Returns:

  • (String)

    The ID of the application.



16
17
18
# File 'lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb', line 16

def application_id
  @application_id
end

#display_nameString

Returns The display name of the application.

Returns:

  • (String)

    The display name of the application.



19
20
21
# File 'lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb', line 19

def display_name
  @display_name
end

#skuAppSkuInfo

Returns A valid instance SKU.

Returns:



31
32
33
# File 'lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb', line 31

def sku
  @sku
end

#subdomainString

Returns The subdomain of the application.

Returns:

  • (String)

    The subdomain of the application.



22
23
24
# File 'lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb', line 22

def subdomain
  @subdomain
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



28
29
30
# File 'lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb', line 28

def template
  @template
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/models/app.rb', line 38

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'App',
    type: {
      name: 'Composite',
      class_name: 'App',
      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',
          constraints: {
            Pattern: '^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,99}[a-zA-Z0-9]$'
          },
          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: true,
          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'
                }
            }
          }
        },
        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',
          constraints: {
            Pattern: '^.{1,200}$'
          },
          type: {
            name: 'String'
          }
        },
        subdomain: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.subdomain',
          constraints: {
            Pattern: '^[a-z0-9-]{1,63}$'
          },
          type: {
            name: 'String'
          }
        },
        template: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.template',
          type: {
            name: 'String'
          }
        },
        sku: {
          client_side_validation: true,
          required: true,
          serialized_name: 'sku',
          type: {
            name: 'Composite',
            class_name: 'AppSkuInfo'
          }
        }
      }
    }
  }
end