Skip to main content

sql_integrations

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

Overview

Namesql_integrations
TypeResource
Idgoogle.managedidentities.sql_integrations

Fields

NameDatatypeDescription
namestringThe unique name of the SQL integration in the form of projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration}
createTimestringOutput only. The time the SQL integration was created.
sqlInstancestringThe full resource name of an integrated SQL instance
statestringOutput only. The current state of the SQL integration.
updateTimestringOutput only. The time the SQL integration was updated.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdomainsId, projectsId, sqlIntegrationsIdGets details of a single sqlIntegration.
listSELECTdomainsId, projectsIdLists SqlIntegrations in a given domain.

SELECT examples

Lists SqlIntegrations in a given domain.

SELECT
name,
createTime,
sqlInstance,
state,
updateTime
FROM google.managedidentities.sql_integrations
WHERE domainsId = '{{ domainsId }}'
AND projectsId = '{{ projectsId }}';