network_link_service_associations
Creates, updates, deletes, gets or lists a network_link_service_associations resource.
Overview
| Name | network_link_service_associations |
| Type | Resource |
| Id | confluent.networking.network_link_service_associations |
Fields
The following fields are returned by SELECT queries:
- get_networking_v1_network_link_service_association
- list_networking_v1_network_link_service_associations
Network Link Service Association.
| Name | Datatype | Description |
|---|---|---|
id | string | ID 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_version | string | APIVersion defines the schema version of this representation of a resource. (networking/v1) |
kind | string | Kind defines the object this REST resource represents. (NetworkLinkServiceAssociation) |
metadata | object | ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. |
spec | object | The desired state of the Network Link Service Association |
status | object | The status of the Network Link Service Association |
Network Link Service Association.
| Name | Datatype | Description |
|---|---|---|
id | string | ID 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_version | string | APIVersion defines the schema version of this representation of a resource. (networking/v1) |
kind | string | Kind defines the object this REST resource represents. (NetworkLinkServiceAssociation) |
metadata | object | ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. |
spec | object | The desired state of the Network Link Service Association |
status | object | The status of the Network Link Service Association |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_networking_v1_network_link_service_association | select | spec.network_link_service, environment, id | Make a request to read a network link service association. | |
list_networking_v1_network_link_service_associations | select | spec.network_link_service, environment | status.phase, page_size, page_token | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
environment | string | Filter the results by exact match for environment. (example: env-00000) |
id | string | The unique identifier for the network link service association. |
spec.network_link_service | string | Filter the results by exact match for spec.network_link_service. (example: nls-abcde) |
page_size | integer | A pagination size for collection requests. |
page_token | string | An opaque pagination token for collection requests. |
status.phase | array | Filter 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
- get_networking_v1_network_link_service_association
- list_networking_v1_network_link_service_associations
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
;
Retrieve a sorted, filtered, paginated list of all network link service associations.
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 status.phase = '{{ status.phase }}'
AND page_size = '{{ page_size }}'
AND page_token = '{{ page_token }}'
;