ekm_connections
Creates, updates, deletes, gets or lists an ekm_connections
resource.
Overview
Name | ekm_connections |
Type | Resource |
Id | google.cloudcontrolspartner.ekm_connections |
Fields
The following fields are returned by SELECT
queries:
- get_ekm_connections
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Format: organizations/{organization}/locations/{location}/customers/{customer}/workloads/{workload}/ekmConnections |
ekmConnections | array | The EKM connections associated with the workload |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_ekm_connections | select | organizationsId , locationsId , customersId , workloadsId | Gets the EKM connections associated with a workload |
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 |
---|---|---|
customersId | string | |
locationsId | string | |
organizationsId | string | |
workloadsId | string |
SELECT
examples
- get_ekm_connections
Gets the EKM connections associated with a workload
SELECT
name,
ekmConnections
FROM google.cloudcontrolspartner.ekm_connections
WHERE organizationsId = '{{ organizationsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND customersId = '{{ customersId }}' -- required
AND workloadsId = '{{ workloadsId }}' -- required;