Skip to main content

network_link_service_associations

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

Overview

Namenetwork_link_service_associations
TypeResource
Idconfluent.networking.network_link_service_associations

Fields

The following fields are returned by SELECT queries:

Network Link Service Association.

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. (networking/v1)
kindstringKind defines the object this REST resource represents. (NetworkLinkServiceAssociation)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
specobjectThe desired state of the Network Link Service Association
statusobjectThe status of the Network Link Service Association

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_networking_v1_network_link_service_associationselectspec.network_link_service, environment, idMake a request to read a network link service association.
list_networking_v1_network_link_service_associationsselectspec.network_link_service, environmentstatus.phase, page_size, page_tokenRetrieve a sorted, filtered, paginated list of all network link service associations.

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
environmentstringFilter the results by exact match for environment. (example: env-00000)
idstringThe unique identifier for the network link service association.
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.
status.phasearrayFilter the results by exact match for status.phase. Pass multiple times to see results matching any of the values. (example: [READY, PENDING_ACCEPT])

SELECT examples

Make a request to read a network link service association.

SELECT
id,
api_version,
kind,
metadata,
spec,
status
FROM confluent.networking.network_link_service_associations
WHERE spec.network_link_service = '{{ spec.network_link_service }}' -- required
AND environment = '{{ environment }}' -- required
AND id = '{{ id }}' -- required
;