Skip to main content

regions

Creates, updates, deletes, gets or lists a regions resource.

Overview

Nameregions
TypeResource
Idconfluent.flink_compute_pools.regions

Fields

The following fields are returned by SELECT queries:

Region.

NameDatatypeDescription
idstringID is the "natural identifier" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted ("time"); however, it may collide with IDs for other object kinds or objects of the same kind within a different scope/namespace ("space"). (example: dlz-f3a90de)
display_namestringThe display name. (example: Ohio (us-east-2))
region_namestringThe region name. (example: us-east-2)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (fcpm/v2)
cloudstringThe cloud service provider that hosts the region. (example: AWS)
http_endpointstring (uri)The regional API endpoint for Flink compute pools.
kindstringKind defines the object this REST resource represents. (Region)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
private_http_endpointstring (uri)The private regional API endpoint for Flink compute pools.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_fcpm_v2_regionsselectcloud, region_name, page_size, page_tokenRetrieve a sorted, filtered, paginated list of all regions.

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
cloudstringFilter the results by exact match for cloud. (example: AWS)
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.
region_namestringFilter the results by exact match for region_name. (example: us-east-2)

SELECT examples

Retrieve a sorted, filtered, paginated list of all regions.

SELECT
id,
display_name,
region_name,
api_version,
cloud,
http_endpoint,
kind,
metadata,
private_http_endpoint
FROM confluent.flink_compute_pools.regions
WHERE cloud = '{{ cloud }}'
AND region_name = '{{ region_name }}'
AND page_size = '{{ page_size }}'
AND page_token = '{{ page_token }}'
;