diff --git a/docs/dyn/apphub_v1.projects.locations.discoveredServices.html b/docs/dyn/apphub_v1.projects.locations.discoveredServices.html index 9d7ba526da1..37310d9070e 100644 --- a/docs/dyn/apphub_v1.projects.locations.discoveredServices.html +++ b/docs/dyn/apphub_v1.projects.locations.discoveredServices.html @@ -86,6 +86,9 @@
Retrieves the next page of results.
+
+ lookup(parent, uri=None, x__xgafv=None)
Looks up a discovered service in a host project and location and with a given resource URI.
close()
@@ -172,4 +175,34 @@ lookup(parent, uri=None, x__xgafv=None)
+ Looks up a discovered service in a host project and location and with a given resource URI. + +Args: + parent: string, Required. Value for parent. (required) + uri: string, Required. Resource URI to find service for. Accepts both project number and project id and does translation when needed. + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # Response for LookupDiscoveredService. + "discoveredService": { # DiscoveredService is a network/api interface that exposes some functionality to clients for consumption over the network. A discovered service can be registered to a App Hub service. # Discovered service if exists, empty otherwise. + "name": "A String", # Identifier. The resource name of the discovered service. Format: "projects/{host-project-id}/locations/{location}/discoveredServices/{uuid}"" + "serviceProperties": { # Properties of an underlying cloud resource that can comprise a Service. # Output only. Properties of an underlying compute resource that can comprise a Service. These are immutable. + "gcpProject": "A String", # Output only. The service project identifier that the underlying cloud resource resides in. + "location": "A String", # Output only. The location that the underlying resource resides in, for example, us-west1. + "zone": "A String", # Output only. The location that the underlying resource resides in if it is zonal, for example, us-west1-a). + }, + "serviceReference": { # Reference to an underlying networking resource that can comprise a Service. # Output only. Reference to an underlying networking resource that can comprise a Service. These are immutable. + "uri": "A String", # Output only. The underlying resource URI (For example, URI of Forwarding Rule, URL Map, and Backend Service). + }, + }, +}+