Skip to main content

certificate_identity_pools

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

Overview

Namecertificate_identity_pools
TypeResource
Idconfluent.iam.certificate_identity_pools

Fields

The following fields are returned by SELECT queries:

Certificate Identity Pool.

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 name of the IdentityPool. (example: My Identity Pool)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (iam/v2)
descriptionstringA description of how this IdentityPool is used (example: Prod Access to Kafka clusters to Release Engineering)
external_identifierstringThe certificate field that will be used to represent the pool's external identifier for audit logging. (example: UID)
filterstringA filter expression in Supported Common Expression Language (CEL) that specifies which identities can authenticate using your certificate identity pool (see CEL filter for mTLS for more details). (example: C=='Canada' && O=='Confluent')
kindstringKind defines the object this REST resource represents. (CertificateIdentityPool)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
principalstringRepresents the federated identity associated with this pool. (example: pool-abc)
statestringThe current state of the identity pool (example: ENABLED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_iam_v2_certificate_identity_poolselectcertificate_authority_id, idMake a request to read a certificate identity pool.
list_iam_v2_certificate_identity_poolsselectcertificate_authority_idpage_size, page_tokenRetrieve a sorted, filtered, paginated list of all certificate identity pools.
create_iam_v2_certificate_identity_poolinsertcertificate_authority_id, display_name, description, external_identifier, filterassigned_resource_ownerMake a request to create a certificate identity pool.
update_iam_v2_certificate_identity_poolreplacecertificate_authority_id, idMake a request to update a certificate identity pool.

delete_iam_v2_certificate_identity_pooldeletecertificate_authority_id, idMake a request to delete a certificate identity pool.

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
certificate_authority_idstringThe Certificate Authority
idstringThe unique identifier for the certificate identity pool.
assigned_resource_ownerstringThe resource_id of the principal who will be assigned resource owner on the created certificate identity pool. Principal can be group-mapping (group-xxx), user (u-xxx), service-account (sa-xxx) or identity-pool (pool-xxx). (example: u-a83k9b)
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.

SELECT examples

Make a request to read a certificate identity pool.

SELECT
id,
display_name,
api_version,
description,
external_identifier,
filter,
kind,
metadata,
principal,
state
FROM confluent.iam.certificate_identity_pools
WHERE certificate_authority_id = '{{ certificate_authority_id }}' -- required
AND id = '{{ id }}' -- required
;

INSERT examples

Make a request to create a certificate identity pool.

INSERT INTO confluent.iam.certificate_identity_pools (
display_name,
description,
external_identifier,
filter,
certificate_authority_id,
assigned_resource_owner
)
SELECT
'{{ display_name }}' /* required */,
'{{ description }}' /* required */,
'{{ external_identifier }}' /* required */,
'{{ filter }}' /* required */,
'{{ certificate_authority_id }}',
'{{ assigned_resource_owner }}'
RETURNING
id,
display_name,
api_version,
description,
external_identifier,
filter,
kind,
metadata,
principal,
state
;

REPLACE examples

Make a request to update a certificate identity pool.

REPLACE confluent.iam.certificate_identity_pools
SET
display_name = '{{ display_name }}',
description = '{{ description }}',
external_identifier = '{{ external_identifier }}',
filter = '{{ filter }}'
WHERE
certificate_authority_id = '{{ certificate_authority_id }}' --required
AND id = '{{ id }}' --required
RETURNING
id,
display_name,
api_version,
description,
external_identifier,
filter,
kind,
metadata,
principal,
state;

DELETE examples

Make a request to delete a certificate identity pool.

DELETE FROM confluent.iam.certificate_identity_pools
WHERE certificate_authority_id = '{{ certificate_authority_id }}' --required
AND id = '{{ id }}' --required
;