Skip to main content

org_compute_pool_configs

Creates, updates, deletes, gets or lists an org_compute_pool_configs resource.

Overview

Nameorg_compute_pool_configs
TypeResource
Idconfluent.flink_compute_pools.org_compute_pool_configs

Fields

The following fields are returned by SELECT queries:

Org Compute Pool Config.

NameDatatypeDescription
organization_idstringThe ID of the organization. (example: 9bb441c4-edef-46ac-8a41-c49e44a3fd9a)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (fcpm/v2)
kindstringKind defines the object this REST resource represents. (OrgComputePoolConfig)
specobjectThe desired state of the organization-level Compute Pool configuration

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_fcpm_v2_org_compute_pool_configselectMake a request to read an org compute pool config.
update_fcpm_v2_org_compute_pool_configupdateMake 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.

NameDatatypeDescription

SELECT examples

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

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;