discovered_services
Creates, updates, deletes, gets or lists a discovered_services
resource.
Overview
Name | discovered_services |
Type | Resource |
Id | google.apphub.discovered_services |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The resource name of the discovered service. Format: "projects/{host-project-id}/locations/{location}/discoveredServices/{uuid}"" |
serviceProperties | object | Properties of an underlying cloud resource that can comprise a Service. |
serviceReference | object | Reference to an underlying networking resource that can comprise a Service. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | discoveredServicesId, locationsId, projectsId | Gets a Discovered Service in a host project and location. |
list | SELECT | locationsId, projectsId | Lists Discovered Services that can be added to an Application in a host project and location. |
lookup | EXEC | locationsId, projectsId | Lists a Discovered Service in a host project and location, with a given resource URI. |
SELECT
examples
Lists Discovered Services that can be added to an Application in a host project and location.
SELECT
name,
serviceProperties,
serviceReference
FROM google.apphub.discovered_services
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';