Skip to main content

applied_quotas

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

Overview

Nameapplied_quotas
TypeResource
Idconfluent.quotas.applied_quotas

Fields

The following fields are returned by SELECT queries:

Applied Quota.

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)
display_namestringA human-readable name for the quota type name. (example: Kafka Cluster Per Organization)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (service-quota/v1)
applied_limitinteger (int32)The latest applied service quota value, taking into account any limit adjustments.
default_limitinteger (int32)The default service quota value.
environmentobjectThe environment ID the quota is associated with.
kafka_clusterobjectThe kafka cluster ID the quota is associated with.
kindstringKind defines the object this REST resource represents. (AppliedQuota)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
networkobjectThe network ID the quota is associated with.
organizationobjectA unique organization id to associate a specific organization to this quota.
scopestringThe applied scope that this quota belongs to. (example: ORGANIZATION)
usageinteger (int32)Show the quota usage value if the quota usage is available for this quota.
userobjectThe user associated with this object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_quota_v1_applied_quotaselectidenvironment, network, kafka_clusterMake a request to read an applied quota.
list_service_quota_v1_applied_quotasselectscopeenvironment, network, kafka_cluster, id, page_size, page_tokenRetrieve a sorted, filtered, paginated list of all applied quotas.

Shows all quotas for a given scope.

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 applied quota.
scopestringThe applied scope the quota belongs to. (example: ORGANIZATION)
environmentstringThe environment ID the quota is associated with. (example: env-00000)
idstringThe id (quota code) that this quota belongs to. (example: iam.max_environments.per_org)
kafka_clusterstringThe kafka cluster ID the quota is associated with. (example: lkc-00000)
networkstringThe network ID the quota is associated with. (example: n-12034)
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.

SELECT examples

Make a request to read an applied quota.

SELECT
id,
display_name,
api_version,
applied_limit,
default_limit,
environment,
kafka_cluster,
kind,
metadata,
network,
organization,
scope,
usage,
user
FROM confluent.quotas.applied_quotas
WHERE id = '{{ id }}' -- required
AND environment = '{{ environment }}'
AND network = '{{ network }}'
AND kafka_cluster = '{{ kafka_cluster }}'
;