Class: Azure::Network::Mgmt::V2017_03_30::Models::ResourceNavigationLink

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_link.rb

Overview

ResourceNavigationLink resource.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



31
32
33
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_link.rb', line 31

def etag
  @etag
end

Returns Link to the external resource.

Returns:

  • (String)

    Link to the external resource



19
20
21
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_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/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_link.rb', line 16

def linked_resource_type
  @linked_resource_type
end

#nameString

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

Returns:

  • (String)

    Name of the resource that is unique within a resource



27
28
29
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_link.rb', line 27

def name
  @name
end

#provisioning_stateString

resource.

Returns:

  • (String)

    Provisioning state of the ResourceNavigationLink



23
24
25
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_link.rb', line 23

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

Mapper for ResourceNavigationLink 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
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/resource_navigation_link.rb', line 38

def self.mapper()
  {
    required: false,
    serialized_name: 'ResourceNavigationLink',
    type: {
      name: 'Composite',
      class_name: 'ResourceNavigationLink',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        linked_resource_type: {
          required: false,
          serialized_name: 'properties.linkedResourceType',
          type: {
            name: 'String'
          }
        },
        link: {
          required: false,
          serialized_name: 'properties.link',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end