Class: Azure::Network::Mgmt::V2020_03_01::Models::NetworkInterfaceTapConfiguration

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb

Overview

Tap configuration in a Network Interface.

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



30
31
32
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb', line 30

def etag
  @etag
end

#nameString

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

Returns:

  • (String)

    The name of the resource that is unique within a



26
27
28
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb', line 26

def name
  @name
end

#provisioning_stateProvisioningState

interface tap configuration resource. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’

Returns:



22
23
24
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb', line 22

def provisioning_state
  @provisioning_state
end

#typeString

Returns Sub Resource type.

Returns:

  • (String)

    Sub Resource type.



33
34
35
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb', line 33

def type
  @type
end

#virtual_network_tapVirtualNetworkTap

resource.

Returns:



17
18
19
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb', line 17

def virtual_network_tap
  @virtual_network_tap
end

Class Method Details

.mapperObject

Mapper for NetworkInterfaceTapConfiguration 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
102
103
104
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/network_interface_tap_configuration.rb', line 40

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NetworkInterfaceTapConfiguration',
    type: {
      name: 'Composite',
      class_name: 'NetworkInterfaceTapConfiguration',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        virtual_network_tap: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.virtualNetworkTap',
          type: {
            name: 'Composite',
            class_name: 'VirtualNetworkTap'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          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'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end