Virtual Private Cloud API, gRPC: SubnetService.Get
Returns the specified Subnet resource.
To get the list of available Subnet resources, make a List request.
gRPC request
rpc Get (GetSubnetRequest) returns (Subnet)
GetSubnetRequest
{
"subnetId": "string"
}
Field |
Description |
subnetId |
string Required field. ID of the Subnet resource to return. |
Subnet
{
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "string",
"networkId": "string",
"zoneId": "string",
"v4CidrBlocks": [
"string"
],
"v6CidrBlocks": [
"string"
],
"routeTableId": "string",
"dhcpOptions": {
"domainNameServers": [
"string"
],
"domainName": "string",
"ntpServers": [
"string"
]
}
}
A Subnet resource. For more information, see Subnets.
Field |
Description |
id |
string ID of the subnet. |
folderId |
string ID of the folder that the subnet belongs to. |
createdAt |
Creation timestamp in RFC3339 |
name |
string Name of the subnet. |
description |
string Optional description of the subnet. 0-256 characters long. |
labels |
string Resource labels, |
networkId |
string ID of the network the subnet belongs to. |
zoneId |
string ID of the availability zone where the subnet resides. |
v4CidrBlocks[] |
string CIDR block. |
v6CidrBlocks[] |
string IPv6 not available yet. |
routeTableId |
string ID of route table the subnet is linked to. |
dhcpOptions |
DHCP options for the subnet. |
DhcpOptions
Field |
Description |
domainNameServers[] |
string A list of DHCP servers for this subnet. |
domainName |
string A domain name to us as a suffix when resolving host names in this subnet. |
ntpServers[] |
string List of NTP servers for this subnet. |