Skip to main content

organizations

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

Overview

Nameorganizations
TypeResource
Idconfluent.org.organizations

Fields

NameDatatypeDescription
idtextID 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_versiontextAPIVersion defines the schema version of this representation of a resource.
created_attextfield from the parent object
display_nametextA human-readable name for the Organization
jit_enabledbooleanThe flag to toggle Just-In-Time user provisioning for SSO-enabled organization. Available for early access only.
kindtextKind defines the object this REST resource represents.
resource_nametextfield from the parent object
updated_attextfield from the parent object

Methods

NameAccessible byRequired ParamsDescription
get_org_v2organizationSELECTidGeneral Availability Make a request to read an organization.
list_org_v2organizationsSELECTGeneral Availability Retrieve a sorted, filtered, paginated list of all organizations.
update_org_v2organizationUPDATEidGeneral Availability Make a request to update an organization.

SELECT examples

General Availability Retrieve a sorted, filtered, paginated list of all organizations.

SELECT
id,
api_version,
created_at,
display_name,
jit_enabled,
kind,
resource_name,
updated_at
FROM confluent.org.vw_organizations
;

UPDATE example

Updates a organizations resource.

/*+ update */
UPDATE confluent.org.organizations
SET
display_name = '{{ display_name }}',
jit_enabled = true|false
WHERE
id = '{{ id }}';