get_vpc_details
Retrieve detailed information about a specific VPC network in Google Cloud Platform by providing the project ID and network name. Ideal for managing and monitoring network configurations.
Instructions
Get detailed information about a specific VPC network.
Args:
project_id: The ID of the GCP project
network_name: The name of the VPC network
Returns:
Detailed information about the specified VPC network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network_name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"network_name": {
"title": "Network Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"network_name"
],
"title": "get_vpc_detailsArguments",
"type": "object"
}