read-environment
Retrieve detailed information about a specific environment in Confluent Cloud by providing its unique ID. Integrates with the Confluent Cloud REST API for streamlined environment management.
Instructions
Get details of a specific environment by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseUrl | No | The base URL of the Confluent Cloud REST API. | |
environmentId | Yes | The ID of the environment to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseUrl": {
"default": "",
"description": "The base URL of the Confluent Cloud REST API.",
"format": "uri",
"type": "string"
},
"environmentId": {
"description": "The ID of the environment to retrieve",
"minLength": 1,
"type": "string"
}
},
"required": [
"environmentId"
],
"type": "object"
}