Class: Azure::Network::Mgmt::V2019_06_01::Models::ServiceAssociationLink

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb

Overview

ServiceAssociationLink resource.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#allow_deleteBoolean

Returns If true, the resource can be deleted.

Returns:

  • (Boolean)

    If true, the resource can be deleted.



26
27
28
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 26

def allow_delete
  @allow_delete
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



37
38
39
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 37

def etag
  @etag
end

Returns Link to the external resource.

Returns:

  • (String)

    Link to the external resource.



19
20
21
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 19

def link
  @link
end

#linked_resource_typeString

Returns Resource type of the linked resource.

Returns:

  • (String)

    Resource type of the linked resource.



16
17
18
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 16

def linked_resource_type
  @linked_resource_type
end

#locationsArray<String>

Returns A list of locations.

Returns:

  • (Array<String>)

    A list of locations.



29
30
31
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 29

def locations
  @locations
end

#nameString

group. This name can be used to access the resource.

Returns:

  • (String)

    Name of the resource that is unique within a resource



33
34
35
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 33

def name
  @name
end

#provisioning_stateString

resource.

Returns:

  • (String)

    Provisioning state of the ServiceAssociationLink



23
24
25
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 23

def provisioning_state
  @provisioning_state
end

#typeString

Returns Resource type.

Returns:

  • (String)

    Resource type.



40
41
42
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 40

def type
  @type
end

Class Method Details

.mapperObject

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



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
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/service_association_link.rb', line 47

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ServiceAssociationLink',
    type: {
      name: 'Composite',
      class_name: 'ServiceAssociationLink',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        linked_resource_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.linkedResourceType',
          type: {
            name: 'String'
          }
        },
        link: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.link',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        allow_delete: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.allowDelete',
          type: {
            name: 'Boolean'
          }
        },
        locations: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.locations',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end