Class: Azure::Network::Mgmt::V2018_07_01::Models::ExpressRouteCircuitAuthorization

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb

Overview

Authorization in an ExpressRouteCircuit resource.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#authorization_keyString

Returns The authorization key.

Returns:

  • (String)

    The authorization key.



16
17
18
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb', line 16

def authorization_key
  @authorization_key
end

#authorization_use_statusAuthorizationUseStatus

values are: ‘Available’ and ‘InUse’. Possible values include: ‘Available’, ‘InUse’

Returns:



21
22
23
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb', line 21

def authorization_use_status
  @authorization_use_status
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



33
34
35
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb', line 33

def etag
  @etag
end

#nameString

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

Returns:

  • (String)

    Gets name of the resource that is unique within a



29
30
31
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb', line 29

def name
  @name
end

#provisioning_stateString

Possible values are: ‘Updating’, ‘Deleting’, and ‘Failed’.

Returns:

  • (String)

    Gets the provisioning state of the public IP resource.



25
26
27
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb', line 25

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

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



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/2018-07-01/generated/azure_mgmt_network/models/express_route_circuit_authorization.rb', line 40

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpressRouteCircuitAuthorization',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteCircuitAuthorization',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        authorization_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.authorizationKey',
          type: {
            name: 'String'
          }
        },
        authorization_use_status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.authorizationUseStatus',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          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'
          }
        }
      }
    }
  }
end