Skip to main content

organizations

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

Overview

Nameorganizations
TypeResource
Idconfluent.partner.organizations

Fields

The following fields are returned by SELECT queries:

Organization.

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)
namestringThe name of the organization (example: Acme Organization, pattern: ^[^<>#%'*^`{|}~"]{1,31}$)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (partner/v2)
kindstringKind defines the object this REST resource represents. (Organization)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
sso_configobject
sso_urlstring (uri)The login URL for the customer to access Confluent Cloud (example: https://confluent.cloud/login/sso/AzureAD-OIDC-Conn)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_partner_v2_organizationselectid Make a request to read an organization.
list_partner_v2_organizationsselectpage_size, page_token Retrieve a sorted, filtered, paginated list of all organizations.

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
idstringThe unique identifier for the organization.
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.

SELECT examples

Make a request to read an organization.

SELECT
id,
name,
api_version,
kind,
metadata,
sso_config,
sso_url
FROM confluent.partner.organizations
WHERE id = '{{ id }}' -- required
;