Class: Azure::DigitalTwins::Mgmt::V2020_10_31::Models::DigitalTwinsResource

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb

Overview

The common properties of a DigitalTwinsInstance.

Direct Known Subclasses

DigitalTwinsDescription

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString



16
17
18
# File 'lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb', line 16

def id
  @id
end

#locationString



25
26
27
# File 'lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb', line 25

def location
  @location
end

#nameString



19
20
21
# File 'lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb', line 19

def name
  @name
end

#tagsHash{String => String}



28
29
30
# File 'lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb', line 28

def tags
  @tags
end

#typeString



22
23
24
# File 'lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb', line 22

def type
  @type
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/2020-10-31/generated/azure_mgmt_digitaltwins/models/digital_twins_resource.rb', line 35

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DigitalTwinsResource',
    type: {
      name: 'Composite',
      class_name: 'DigitalTwinsResource',
      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: '^(?!-)[A-Za-z0-9-]{3,63}(?<!-)$'
          },
          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'
                }
            }
          }
        }
      }
    }
  }
end