certificate_identity_pools
Creates, updates, deletes, gets or lists a certificate_identity_pools
resource.
Overview
Name | certificate_identity_pools |
Type | Resource |
Id | confluent.iam.certificate_identity_pools |
Fields
Name | Datatype | Description |
---|---|---|
id | string | ID 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"). |
description | string | A description of how this IdentityPool is used |
api_version | string | APIVersion defines the schema version of this representation of a resource. |
display_name | string | The name of the IdentityPool . |
external_identifier | string | The certificate field that will be used to represent the pool's external identifier for audit logging. |
filter | string | A 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). |
kind | string | Kind defines the object this REST resource represents. |
metadata | `` | ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. |
principal | string | Represents the federated identity associated with this pool. |
state | string | The current state of the identity pool |
Methods
SELECT
examples
Retrieve a sorted, filtered, paginated list of all certificate identity pools.
SELECT
id,
description,
api_version,
display_name,
external_identifier,
filter,
kind,
metadata,
principal,
state
FROM confluent.iam.certificate_identity_pools
WHERE certificate_authority_id = '{{ certificate_authority_id }}';
INSERT
example
Use the following StackQL query and manifest file to create a new certificate_identity_pools
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO confluent.iam.certificate_identity_pools (
data__display_name,
data__description,
data__external_identifier,
data__filter,
certificate_authority_id
)
SELECT
'{{ display_name }}',
'{{ description }}',
'{{ external_identifier }}',
'{{ filter }}',
'{{ certificate_authority_id }}'
;
- name: certificate_identity_pools
props:
- name: certificate_authority_id
value: string
- name: display_name
value: string
- name: description
value: string
- name: external_identifier
value: string
- name: filter
value: string
DELETE
example
Deletes the specified certificate_identity_pools
resource.
/*+ delete */
DELETE FROM confluent.iam.certificate_identity_pools
WHERE certificate_authority_id = '{{ certificate_authority_id }}'
AND id = '{{ id }}';