Skip to main content

shared_resources_network_config

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

Overview

Nameshared_resources_network_config
TypeResource
Idconfluent.stream_sharing.shared_resources_network_config

Fields

The following fields are returned by SELECT queries:

The network information of the shared resource

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)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (cdx/v1)
cloudobjectThe cloud-specific network details. These will be populated when the network reaches the READY state.
dns_domainstringThe root DNS domain for the network if applicable. (example: 00000.us-east-1.aws.glb.confluent.cloud)
kafka_bootstrap_urlstring (uri)The kafka cluster bootstrap url (example: SASL://pkc-xxxxx.us-west-2.aws.confluent.cloud:9092)
kindstringKind defines the object this REST resource represents. (Network)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
zonal_subdomainsobjectThe DNS subdomain for each zone. Present on networks that support PrivateLink. Keys are zones and values are DNS domains.
zonesarrayThe 3 availability zones for this network. They can optionally be specified for AWS networks used with PrivateLink. Otherwise, they are automatically chosen by Confluent Cloud. On AWS, zones are AWS AZ IDs (e.g. use1-az3) On GCP, zones are GCP zones (e.g. us-central1-c). On Azure, zones are Confluent-chosen names (e.g. 1, 2, 3) since Azure does not have universal zone identifiers.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
network_cdx_v1_consumer_shared_resourceselectidReturns network information of the shared resource

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 consumer shared resource.

SELECT examples

Returns network information of the shared resource

SELECT
id,
api_version,
cloud,
dns_domain,
kafka_bootstrap_url,
kind,
metadata,
zonal_subdomains,
zones
FROM confluent.stream_sharing.shared_resources_network_config
WHERE id = '{{ id }}' -- required
;