organizations
Creates, updates, deletes, gets or lists a organizations
resource.
Overview
Name | organizations |
Type | Resource |
Id | confluent.org.organizations |
Fields
- vw_organizations
- organizations
Name | Datatype | Description |
---|---|---|
id | text | 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"). |
api_version | text | APIVersion defines the schema version of this representation of a resource. |
created_at | text | field from the parent object |
display_name | text | A human-readable name for the Organization |
jit_enabled | boolean | The flag to toggle Just-In-Time user provisioning for SSO-enabled organization. Available for early access only. |
kind | text | Kind defines the object this REST resource represents. |
resource_name | text | field from the parent object |
updated_at | text | field from the parent object |
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"). |
api_version | string | APIVersion defines the schema version of this representation of a resource. |
display_name | string | A human-readable name for the Organization |
jit_enabled | boolean | The flag to toggle Just-In-Time user provisioning for SSO-enabled organization. Available for early access only. |
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. |
Methods
SELECT
examples
Retrieve a sorted, filtered, paginated list of all organizations.
- vw_organizations
- organizations
SELECT
id,
api_version,
created_at,
display_name,
jit_enabled,
kind,
resource_name,
updated_at
FROM confluent.org.vw_organizations
;
SELECT
id,
api_version,
display_name,
jit_enabled,
kind,
metadata
FROM confluent.org.organizations
;
UPDATE
example
Updates a organizations
resource.
/*+ update */
UPDATE confluent.org.organizations
SET
display_name = '{{ display_name }}',
jit_enabled = true|false
WHERE
id = '{{ id }}';