Skip to main content

ekm_connections

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

Overview

Nameekm_connections
TypeResource
Idgoogle.cloudcontrolspartner.ekm_connections

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringIdentifier. Format: organizations/{organization}/locations/{location}/customers/{customer}/workloads/{workload}/ekmConnections
ekmConnectionsarrayThe EKM connections associated with the workload

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_ekm_connectionsselectorganizationsId, locationsId, customersId, workloadsIdGets 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.

NameDatatypeDescription
customersIdstring
locationsIdstring
organizationsIdstring
workloadsIdstring

SELECT examples

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;