org_compute_pool_configs
Creates, updates, deletes, gets or lists an org_compute_pool_configs resource.
Overview
| Name | org_compute_pool_configs |
| Type | Resource |
| Id | confluent.flink_compute_pools.org_compute_pool_configs |
Fields
The following fields are returned by SELECT queries:
- get_fcpm_v2_org_compute_pool_config
Org Compute Pool Config.
| Name | Datatype | Description |
|---|---|---|
organization_id | string | The ID of the organization. (example: 9bb441c4-edef-46ac-8a41-c49e44a3fd9a) |
api_version | string | APIVersion defines the schema version of this representation of a resource. (fcpm/v2) |
kind | string | Kind defines the object this REST resource represents. (OrgComputePoolConfig) |
spec | object | The desired state of the organization-level Compute Pool configuration |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_fcpm_v2_org_compute_pool_config | select | Make a request to read an org compute pool config. | ||
update_fcpm_v2_org_compute_pool_config | update | Make a request to update an org compute pool config. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|
SELECT examples
- get_fcpm_v2_org_compute_pool_config
Make a request to read an org compute pool config.
SELECT
organization_id,
api_version,
kind,
spec
FROM confluent.flink_compute_pools.org_compute_pool_configs
;
UPDATE examples
- update_fcpm_v2_org_compute_pool_config
Make a request to update an org compute pool config.
UPDATE confluent.flink_compute_pools.org_compute_pool_configs
SET
spec = '{{ spec }}'
RETURNING
organization_id,
api_version,
kind,
spec;