locations
Creates, updates, deletes, gets or lists a locations
resource.
Overview
Name | locations |
Type | Resource |
Id | google.dataplex.locations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Resource name for the location, which may vary between implementations. For example: "projects/example-project/locations/us-east1" |
displayName | string | The friendly name for this location, typically a nearby city name. For example, "Tokyo". |
labels | object | Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} |
locationId | string | The canonical id for this location. For example: "us-east1". |
metadata | object | Service-specific metadata. For example the available capacity at the given location. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_get | SELECT | locationsId, projectsId | Gets information about a location. |
projects_locations_list | SELECT | projectsId | Lists information about the supported locations for this service. |
projects_locations_lookup_entry | EXEC | locationsId, projectsId | Looks up a single Entry by name using the permission on the source system. |
projects_locations_search_entries | EXEC | locationsId, projectsId | Searches for Entries matching the given query and scope. |
SELECT
examples
Lists information about the supported locations for this service.
SELECT
name,
displayName,
labels,
locationId,
metadata
FROM google.dataplex.locations
WHERE projectsId = '{{ projectsId }}';