Class: Azure::Network::Mgmt::V2019_06_01::Models::PrivateEndpoint
- Inherits:
-
Resource
- Object
- Resource
- Azure::Network::Mgmt::V2019_06_01::Models::PrivateEndpoint
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb
Overview
Private endpoint resource.
Instance Attribute Summary collapse
-
#etag ⇒ String
resource is updated.
-
#manual_private_link_service_connections ⇒ Array<PrivateLinkServiceConnection>
about the connection to the remote resource.
-
#network_interfaces ⇒ Array<NetworkInterface>
network interfaces created for this private endpoint.
-
#private_link_service_connections ⇒ Array<PrivateLinkServiceConnection>
about the connection to the remote resource.
-
#provisioning_state ⇒ ProvisioningState
endpoint.
-
#subnet ⇒ Subnet
allocated.
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PrivateEndpoint class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#etag ⇒ String
resource is updated.
40 41 42 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 40 def etag @etag end |
#manual_private_link_service_connections ⇒ Array<PrivateLinkServiceConnection>
about the connection to the remote resource. Used when the network admin does not have access to approve connections to the remote resource.
36 37 38 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 36 def manual_private_link_service_connections @manual_private_link_service_connections end |
#network_interfaces ⇒ Array<NetworkInterface>
network interfaces created for this private endpoint.
21 22 23 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 21 def network_interfaces @network_interfaces end |
#private_link_service_connections ⇒ Array<PrivateLinkServiceConnection>
about the connection to the remote resource.
30 31 32 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 30 def private_link_service_connections @private_link_service_connections end |
#provisioning_state ⇒ ProvisioningState
endpoint. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’
26 27 28 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 26 def provisioning_state @provisioning_state end |
#subnet ⇒ Subnet
allocated.
17 18 19 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 17 def subnet @subnet end |
Class Method Details
.mapper ⇒ Object
Mapper for PrivateEndpoint 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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PrivateEndpoint', type: { name: 'Composite', class_name: 'PrivateEndpoint', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', 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: false, 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' } } } }, subnet: { client_side_validation: true, required: false, serialized_name: 'properties.subnet', type: { name: 'Composite', class_name: 'Subnet' } }, network_interfaces: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.networkInterfaces', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'NetworkInterfaceElementType', type: { name: 'Composite', class_name: 'NetworkInterface' } } } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, private_link_service_connections: { client_side_validation: true, required: false, serialized_name: 'properties.privateLinkServiceConnections', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PrivateLinkServiceConnectionElementType', type: { name: 'Composite', class_name: 'PrivateLinkServiceConnection' } } } }, manual_private_link_service_connections: { client_side_validation: true, required: false, serialized_name: 'properties.manualPrivateLinkServiceConnections', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PrivateLinkServiceConnectionElementType', type: { name: 'Composite', class_name: 'PrivateLinkServiceConnection' } } } }, etag: { client_side_validation: true, required: false, serialized_name: 'etag', type: { name: 'String' } } } } } end |