connections
Creates, updates, deletes, gets or lists a connections
resource.
Overview
Name | connections |
Type | Resource |
Id | google.integrations.connections |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. Resource name of the Connection. Format: projects/{project}/locations/{location}/connections/{connection} |
description | string | Optional. Description of the resource. |
asyncOperationsEnabled | boolean | Optional. Async operations enabled for the connection. If Async Operations is enabled, Connection allows the customers to initiate async long running operations using the actions API. |
authConfig | object | AuthConfig defines details of a authentication type. |
billingConfig | object | Billing config for the connection. |
configVariables | array | Optional. Configuration for configuring the connection with an external system. |
connectionRevision | string | Output only. Connection revision. This field is only updated when the connection is created or updated by User. |
connectorVersion | string | Required. Connector version on which the connection is created. The format is: projects//locations//providers//connectors//versions/* Only global location is supported for ConnectorVersion resource. |
connectorVersionInfraConfig | object | This cofiguration provides infra configs like rate limit threshold which need to be configurable for every connector version |
connectorVersionLaunchStage | string | Output only. Flag to mark the version indicating the launch stage. |
createTime | string | Output only. Created time. |
destinationConfigs | array | Optional. Configuration of the Connector's destination. Only accepted for Connectors that accepts user defined destination(s). |
envoyImageLocation | string | Output only. GCR location where the envoy image is stored. formatted like: gcr.io/{bucketName}/{imageName} |
eventingConfig | object | Eventing Configuration of a connection |
eventingEnablementType | string | Optional. Eventing enablement type. Will be nil if eventing is not enabled. |
eventingRuntimeData | object | Eventing runtime data has the details related to eventing managed by the system. |
host | string | Output only. The name of the Hostname of the Service Directory service with TLS. |
imageLocation | string | Output only. GCR location where the runtime image is stored. formatted like: gcr.io/{bucketName}/{imageName} |
isTrustedTester | boolean | Output only. Is trusted tester program enabled for the project. |
labels | object | Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources |
lockConfig | object | Determines whether or no a connection is locked. If locked, a reason must be specified. |
logConfig | object | Log configuration for the connection. |
nodeConfig | object | Node configuration for the connection. |
serviceAccount | string | Optional. Service account needed for runtime plane to access Google Cloud resources. |
serviceDirectory | string | Output only. The name of the Service Directory service name. Used for Private Harpoon to resolve the ILB address. e.g. "projects/cloud-connectors-e2e-testing/locations/us-central1/namespaces/istio-system/services/istio-ingressgateway-connectors" |
sslConfig | object | SSL Configuration of a connection |
status | object | ConnectionStatus indicates the state of the connection. |
subscriptionType | string | Output only. This subscription type enum states the subscription type of the project. |
suspended | boolean | Optional. Suspended indicates if a user has suspended a connection or not. |
tlsMigrationState | string | Output only. Status of the TLS migration. |
tlsServiceDirectory | string | Output only. The name of the Service Directory service with TLS. |
updateTime | string | Output only. Updated time. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_connections_list | SELECT | locationsId, projectsId | Lists Connections in a given project and location. |
SELECT
examples
Lists Connections in a given project and location.
SELECT
name,
description,
asyncOperationsEnabled,
authConfig,
billingConfig,
configVariables,
connectionRevision,
connectorVersion,
connectorVersionInfraConfig,
connectorVersionLaunchStage,
createTime,
destinationConfigs,
envoyImageLocation,
eventingConfig,
eventingEnablementType,
eventingRuntimeData,
host,
imageLocation,
isTrustedTester,
labels,
lockConfig,
logConfig,
nodeConfig,
serviceAccount,
serviceDirectory,
sslConfig,
status,
subscriptionType,
suspended,
tlsMigrationState,
tlsServiceDirectory,
updateTime
FROM google.integrations.connections
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';