integrations
Creates, updates, deletes, gets or lists a integrations
resource.
Overview
Name | integrations |
Type | Resource |
Id | confluent.provider_integrations.integrations |
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"). |
_environment | `` | |
api_version | string | APIVersion defines the schema version of this representation of a resource. |
config | object | Cloud provider specific configs for provider integration |
display_name | string | Display name of Provider Integration. |
environment | object | The environment to which this belongs. |
kind | string | Kind defines the object this REST resource represents. |
provider | string | Cloud provider to which access is provided through provider integration. |
usages | array | List of resource crns where this integration is being used. |
Methods
SELECT
examples
Retrieve a sorted, filtered, paginated list of all integrations. If no provider
filter is specified, returns provider integrations from all clouds.
SELECT
id,
_environment,
api_version,
config,
display_name,
environment,
kind,
provider,
usages
FROM confluent.provider_integrations.integrations
WHERE environment = '{{ environment }}';
INSERT
example
Use the following StackQL query and manifest file to create a new integrations
resource.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO confluent.provider_integrations.integrations (
data__display_name,
data__provider,
data__config,
data__environment
)
SELECT
'{{ display_name }}',
'{{ provider }}',
'{{ config }}',
'{{ environment }}'
;
/*+ create */
INSERT INTO confluent.provider_integrations.integrations (
data__config,
data__environment
)
SELECT
'{{ config }}',
'{{ environment }}'
;
- name: integrations
props:
- name: display_name
value: string
- name: provider
value: string
- name: config
props:
- name: customer_iam_role_arn
value: string
- name: kind
value: string
- name: environment
value: string
DELETE
example
Deletes the specified integrations
resource.
/*+ delete */
DELETE FROM confluent.provider_integrations.integrations
WHERE environment = '{{ environment }}'
AND id = '{{ id }}';