sql_integrations
Creates, updates, deletes, gets or lists a sql_integrations
resource.
Overview
Name | sql_integrations |
Type | Resource |
Id | google.managedidentities.sql_integrations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The unique name of the SQL integration in the form of projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration} |
createTime | string | Output only. The time the SQL integration was created. |
sqlInstance | string | The full resource name of an integrated SQL instance |
state | string | Output only. The current state of the SQL integration. |
updateTime | string | Output only. The time the SQL integration was updated. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | domainsId, projectsId, sqlIntegrationsId | Gets details of a single sqlIntegration. |
list | SELECT | domainsId, projectsId | Lists 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 }}';