From a4afc4a95d64fdd6fb89a87c92f2f2f8220bc2ad Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 9 Feb 2021 10:48:05 -0800 Subject: [PATCH] docs: generate sample code in the Java microgenerator (#344) This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/b5715173-fa09-4f29-8c69-530ae787b970/targets - [ ] To automatically regenerate this PR, check this box. PiperOrigin-RevId: 356341083 Source-Link: https://github.com/googleapis/googleapis/commit/8d8c008e56f1af31d57f75561e0f1848ffb29eeb --- .../webrisk/v1/WebRiskServiceClient.java | 172 ++++++++++++++++++ .../google/cloud/webrisk/v1/package-info.java | 11 ++ .../v1beta1/WebRiskServiceV1Beta1Client.java | 137 ++++++++++++++ .../cloud/webrisk/v1beta1/package-info.java | 12 ++ synth.metadata | 10 +- 5 files changed, 337 insertions(+), 5 deletions(-) diff --git a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/WebRiskServiceClient.java b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/WebRiskServiceClient.java index ff371810..5e63682f 100644 --- a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/WebRiskServiceClient.java +++ b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/WebRiskServiceClient.java @@ -45,6 +45,17 @@ *

This class provides the ability to make remote calls to the backing service through method * calls that map to API methods. Sample code to get started: * + *

{@code
+ * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+ *   ThreatType threatType = ThreatType.forNumber(0);
+ *   ByteString versionToken = ByteString.EMPTY;
+ *   ComputeThreatListDiffRequest.Constraints constraints =
+ *       ComputeThreatListDiffRequest.Constraints.newBuilder().build();
+ *   ComputeThreatListDiffResponse response =
+ *       webRiskServiceClient.computeThreatListDiff(threatType, versionToken, constraints);
+ * }
+ * }
+ * *

Note: close() needs to be called on the WebRiskServiceClient object to clean up resources such * as threads. In the example above, try-with-resources is used, which automatically calls close(). * @@ -152,6 +163,19 @@ public WebRiskServiceStub getStub() { * ThreatList at a time. To update multiple ThreatList databases, this method needs to be called * once for each list. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   ThreatType threatType = ThreatType.forNumber(0);
+   *   ByteString versionToken = ByteString.EMPTY;
+   *   ComputeThreatListDiffRequest.Constraints constraints =
+   *       ComputeThreatListDiffRequest.Constraints.newBuilder().build();
+   *   ComputeThreatListDiffResponse response =
+   *       webRiskServiceClient.computeThreatListDiff(threatType, versionToken, constraints);
+   * }
+   * }
+ * * @param threatType Required. The threat list to update. Only a single ThreatType should be * specified. * @param versionToken The current version token of the client for the requested list (the client @@ -182,6 +206,19 @@ public final ComputeThreatListDiffResponse computeThreatListDiff( * ThreatList at a time. To update multiple ThreatList databases, this method needs to be called * once for each list. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   ComputeThreatListDiffRequest request =
+   *       ComputeThreatListDiffRequest.newBuilder()
+   *           .setVersionToken(ByteString.EMPTY)
+   *           .setConstraints(ComputeThreatListDiffRequest.Constraints.newBuilder().build())
+   *           .build();
+   *   ComputeThreatListDiffResponse response = webRiskServiceClient.computeThreatListDiff(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -199,6 +236,20 @@ public final ComputeThreatListDiffResponse computeThreatListDiff( * once for each list. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   ComputeThreatListDiffRequest request =
+   *       ComputeThreatListDiffRequest.newBuilder()
+   *           .setVersionToken(ByteString.EMPTY)
+   *           .setConstraints(ComputeThreatListDiffRequest.Constraints.newBuilder().build())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceClient.computeThreatListDiffCallable().futureCall(request);
+   *   // Do something.
+   *   ComputeThreatListDiffResponse response = future.get();
+   * }
+   * }
*/ public final UnaryCallable computeThreatListDiffCallable() { @@ -212,6 +263,16 @@ public final ComputeThreatListDiffResponse computeThreatListDiff( * found to match. If the URI is not found on any of the requested ThreatList an empty response * will be returned. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   String uri = "uri116076";
+   *   List threatTypes = new ArrayList<>();
+   *   SearchUrisResponse response = webRiskServiceClient.searchUris(uri, threatTypes);
+   * }
+   * }
+ * * @param uri Required. The URI to be checked for matches. * @param threatTypes Required. The ThreatLists to search in. Multiple ThreatLists may be * specified. @@ -230,6 +291,19 @@ public final SearchUrisResponse searchUris(String uri, List threatTy * found to match. If the URI is not found on any of the requested ThreatList an empty response * will be returned. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   SearchUrisRequest request =
+   *       SearchUrisRequest.newBuilder()
+   *           .setUri("uri116076")
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   SearchUrisResponse response = webRiskServiceClient.searchUris(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -245,6 +319,20 @@ public final SearchUrisResponse searchUris(SearchUrisRequest request) { * will be returned. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   SearchUrisRequest request =
+   *       SearchUrisRequest.newBuilder()
+   *           .setUri("uri116076")
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceClient.searchUrisCallable().futureCall(request);
+   *   // Do something.
+   *   SearchUrisResponse response = future.get();
+   * }
+   * }
*/ public final UnaryCallable searchUrisCallable() { return stub.searchUrisCallable(); @@ -257,6 +345,16 @@ public final UnaryCallable searchUrisCall * hashes so the client must query this method to determine if there is a full hash match of a * threat. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   ByteString hashPrefix = ByteString.EMPTY;
+   *   List threatTypes = new ArrayList<>();
+   *   SearchHashesResponse response = webRiskServiceClient.searchHashes(hashPrefix, threatTypes);
+   * }
+   * }
+ * * @param hashPrefix A hash prefix, consisting of the most significant 4-32 bytes of a SHA256 * hash. For JSON requests, this field is base64-encoded. * @param threatTypes Required. The ThreatLists to search in. Multiple ThreatLists may be @@ -280,6 +378,19 @@ public final SearchHashesResponse searchHashes( * hashes so the client must query this method to determine if there is a full hash match of a * threat. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   SearchHashesRequest request =
+   *       SearchHashesRequest.newBuilder()
+   *           .setHashPrefix(ByteString.EMPTY)
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   SearchHashesResponse response = webRiskServiceClient.searchHashes(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -295,6 +406,20 @@ public final SearchHashesResponse searchHashes(SearchHashesRequest request) { * threat. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   SearchHashesRequest request =
+   *       SearchHashesRequest.newBuilder()
+   *           .setHashPrefix(ByteString.EMPTY)
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceClient.searchHashesCallable().futureCall(request);
+   *   // Do something.
+   *   SearchHashesResponse response = future.get();
+   * }
+   * }
*/ public final UnaryCallable searchHashesCallable() { return stub.searchHashesCallable(); @@ -308,6 +433,16 @@ public final UnaryCallable searchHash * order to protect users that could get exposed to this threat in the future. Only projects with * CREATE_SUBMISSION_USERS visibility can use this method. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   ProjectName parent = ProjectName.of("[PROJECT]");
+   *   Submission submission = Submission.newBuilder().build();
+   *   Submission response = webRiskServiceClient.createSubmission(parent, submission);
+   * }
+   * }
+ * * @param parent Required. The name of the project that is making the submission. This string is * in the format "projects/{project_number}". * @param submission Required. The submission that contains the content of the phishing report. @@ -330,6 +465,16 @@ public final Submission createSubmission(ProjectName parent, Submission submissi * order to protect users that could get exposed to this threat in the future. Only projects with * CREATE_SUBMISSION_USERS visibility can use this method. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   String parent = ProjectName.of("[PROJECT]").toString();
+   *   Submission submission = Submission.newBuilder().build();
+   *   Submission response = webRiskServiceClient.createSubmission(parent, submission);
+   * }
+   * }
+ * * @param parent Required. The name of the project that is making the submission. This string is * in the format "projects/{project_number}". * @param submission Required. The submission that contains the content of the phishing report. @@ -349,6 +494,19 @@ public final Submission createSubmission(String parent, Submission submission) { * order to protect users that could get exposed to this threat in the future. Only projects with * CREATE_SUBMISSION_USERS visibility can use this method. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   CreateSubmissionRequest request =
+   *       CreateSubmissionRequest.newBuilder()
+   *           .setParent(ProjectName.of("[PROJECT]").toString())
+   *           .setSubmission(Submission.newBuilder().build())
+   *           .build();
+   *   Submission response = webRiskServiceClient.createSubmission(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -365,6 +523,20 @@ public final Submission createSubmission(CreateSubmissionRequest request) { * CREATE_SUBMISSION_USERS visibility can use this method. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+   *   CreateSubmissionRequest request =
+   *       CreateSubmissionRequest.newBuilder()
+   *           .setParent(ProjectName.of("[PROJECT]").toString())
+   *           .setSubmission(Submission.newBuilder().build())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceClient.createSubmissionCallable().futureCall(request);
+   *   // Do something.
+   *   Submission response = future.get();
+   * }
+   * }
*/ public final UnaryCallable createSubmissionCallable() { return stub.createSubmissionCallable(); diff --git a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/package-info.java b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/package-info.java index 87b4386a..f3708c54 100644 --- a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/package-info.java +++ b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1/package-info.java @@ -23,6 +23,17 @@ * website and in client applications. * *

Sample for WebRiskServiceClient: + * + *

{@code
+ * try (WebRiskServiceClient webRiskServiceClient = WebRiskServiceClient.create()) {
+ *   ThreatType threatType = ThreatType.forNumber(0);
+ *   ByteString versionToken = ByteString.EMPTY;
+ *   ComputeThreatListDiffRequest.Constraints constraints =
+ *       ComputeThreatListDiffRequest.Constraints.newBuilder().build();
+ *   ComputeThreatListDiffResponse response =
+ *       webRiskServiceClient.computeThreatListDiff(threatType, versionToken, constraints);
+ * }
+ * }
*/ @Generated("by gapic-generator-java") package com.google.cloud.webrisk.v1; diff --git a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/WebRiskServiceV1Beta1Client.java b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/WebRiskServiceV1Beta1Client.java index 94d477f3..dfc4e602 100644 --- a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/WebRiskServiceV1Beta1Client.java +++ b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/WebRiskServiceV1Beta1Client.java @@ -42,6 +42,18 @@ *

This class provides the ability to make remote calls to the backing service through method * calls that map to API methods. Sample code to get started: * + *

{@code
+ * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+ *     WebRiskServiceV1Beta1Client.create()) {
+ *   ThreatType threatType = ThreatType.forNumber(0);
+ *   ByteString versionToken = ByteString.EMPTY;
+ *   ComputeThreatListDiffRequest.Constraints constraints =
+ *       ComputeThreatListDiffRequest.Constraints.newBuilder().build();
+ *   ComputeThreatListDiffResponse response =
+ *       webRiskServiceV1Beta1Client.computeThreatListDiff(threatType, versionToken, constraints);
+ * }
+ * }
+ * *

Note: close() needs to be called on the WebRiskServiceV1Beta1Client object to clean up * resources such as threads. In the example above, try-with-resources is used, which automatically * calls close(). @@ -149,6 +161,20 @@ public WebRiskServiceV1Beta1Stub getStub() { /** * Gets the most recent threat list diffs. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   ThreatType threatType = ThreatType.forNumber(0);
+   *   ByteString versionToken = ByteString.EMPTY;
+   *   ComputeThreatListDiffRequest.Constraints constraints =
+   *       ComputeThreatListDiffRequest.Constraints.newBuilder().build();
+   *   ComputeThreatListDiffResponse response =
+   *       webRiskServiceV1Beta1Client.computeThreatListDiff(threatType, versionToken, constraints);
+   * }
+   * }
+ * * @param threatType The ThreatList to update. * @param versionToken The current version token of the client for the requested list (the client * version that was received from the last successful diff). @@ -172,6 +198,21 @@ public final ComputeThreatListDiffResponse computeThreatListDiff( /** * Gets the most recent threat list diffs. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   ComputeThreatListDiffRequest request =
+   *       ComputeThreatListDiffRequest.newBuilder()
+   *           .setVersionToken(ByteString.EMPTY)
+   *           .setConstraints(ComputeThreatListDiffRequest.Constraints.newBuilder().build())
+   *           .build();
+   *   ComputeThreatListDiffResponse response =
+   *       webRiskServiceV1Beta1Client.computeThreatListDiff(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -185,6 +226,21 @@ public final ComputeThreatListDiffResponse computeThreatListDiff( * Gets the most recent threat list diffs. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   ComputeThreatListDiffRequest request =
+   *       ComputeThreatListDiffRequest.newBuilder()
+   *           .setVersionToken(ByteString.EMPTY)
+   *           .setConstraints(ComputeThreatListDiffRequest.Constraints.newBuilder().build())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceV1Beta1Client.computeThreatListDiffCallable().futureCall(request);
+   *   // Do something.
+   *   ComputeThreatListDiffResponse response = future.get();
+   * }
+   * }
*/ public final UnaryCallable computeThreatListDiffCallable() { @@ -195,6 +251,17 @@ public final ComputeThreatListDiffResponse computeThreatListDiff( /** * This method is used to check whether a URI is on a given threatList. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   String uri = "uri116076";
+   *   List threatTypes = new ArrayList<>();
+   *   SearchUrisResponse response = webRiskServiceV1Beta1Client.searchUris(uri, threatTypes);
+   * }
+   * }
+ * * @param uri Required. The URI to be checked for matches. * @param threatTypes Required. The ThreatLists to search in. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -209,6 +276,20 @@ public final SearchUrisResponse searchUris(String uri, List threatTy /** * This method is used to check whether a URI is on a given threatList. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   SearchUrisRequest request =
+   *       SearchUrisRequest.newBuilder()
+   *           .setUri("uri116076")
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   SearchUrisResponse response = webRiskServiceV1Beta1Client.searchUris(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -221,6 +302,21 @@ public final SearchUrisResponse searchUris(SearchUrisRequest request) { * This method is used to check whether a URI is on a given threatList. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   SearchUrisRequest request =
+   *       SearchUrisRequest.newBuilder()
+   *           .setUri("uri116076")
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceV1Beta1Client.searchUrisCallable().futureCall(request);
+   *   // Do something.
+   *   SearchUrisResponse response = future.get();
+   * }
+   * }
*/ public final UnaryCallable searchUrisCallable() { return stub.searchUrisCallable(); @@ -233,6 +329,18 @@ public final UnaryCallable searchUrisCall * hashes so the client must query this method to determine if there is a full hash match of a * threat. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   ByteString hashPrefix = ByteString.EMPTY;
+   *   List threatTypes = new ArrayList<>();
+   *   SearchHashesResponse response =
+   *       webRiskServiceV1Beta1Client.searchHashes(hashPrefix, threatTypes);
+   * }
+   * }
+ * * @param hashPrefix A hash prefix, consisting of the most significant 4-32 bytes of a SHA256 * hash. For JSON requests, this field is base64-encoded. * @param threatTypes Required. The ThreatLists to search in. @@ -255,6 +363,20 @@ public final SearchHashesResponse searchHashes( * hashes so the client must query this method to determine if there is a full hash match of a * threat. * + *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   SearchHashesRequest request =
+   *       SearchHashesRequest.newBuilder()
+   *           .setHashPrefix(ByteString.EMPTY)
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   SearchHashesResponse response = webRiskServiceV1Beta1Client.searchHashes(request);
+   * }
+   * }
+ * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -270,6 +392,21 @@ public final SearchHashesResponse searchHashes(SearchHashesRequest request) { * threat. * *

Sample code: + * + *

{@code
+   * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+   *     WebRiskServiceV1Beta1Client.create()) {
+   *   SearchHashesRequest request =
+   *       SearchHashesRequest.newBuilder()
+   *           .setHashPrefix(ByteString.EMPTY)
+   *           .addAllThreatTypes(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       webRiskServiceV1Beta1Client.searchHashesCallable().futureCall(request);
+   *   // Do something.
+   *   SearchHashesResponse response = future.get();
+   * }
+   * }
*/ public final UnaryCallable searchHashesCallable() { return stub.searchHashesCallable(); diff --git a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/package-info.java b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/package-info.java index 9ee5b333..142f820c 100644 --- a/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/package-info.java +++ b/google-cloud-webrisk/src/main/java/com/google/cloud/webrisk/v1beta1/package-info.java @@ -23,6 +23,18 @@ * your website and in client applications. * *

Sample for WebRiskServiceV1Beta1Client: + * + *

{@code
+ * try (WebRiskServiceV1Beta1Client webRiskServiceV1Beta1Client =
+ *     WebRiskServiceV1Beta1Client.create()) {
+ *   ThreatType threatType = ThreatType.forNumber(0);
+ *   ByteString versionToken = ByteString.EMPTY;
+ *   ComputeThreatListDiffRequest.Constraints constraints =
+ *       ComputeThreatListDiffRequest.Constraints.newBuilder().build();
+ *   ComputeThreatListDiffResponse response =
+ *       webRiskServiceV1Beta1Client.computeThreatListDiff(threatType, versionToken, constraints);
+ * }
+ * }
*/ @Generated("by gapic-generator-java") package com.google.cloud.webrisk.v1beta1; diff --git a/synth.metadata b/synth.metadata index a1d9bb38..4c61e44e 100644 --- a/synth.metadata +++ b/synth.metadata @@ -4,23 +4,23 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/java-webrisk.git", - "sha": "9bfcdf31af8ee3345dfd0e9d58dd3ba3129bb72c" + "sha": "3d34bb8dc0c6d310fbb5330b54c740f346334529" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "91e206bcfeaf8948ea03fe3cb1b7616108496cd3", - "internalRef": "350949863" + "sha": "8d8c008e56f1af31d57f75561e0f1848ffb29eeb", + "internalRef": "356341083" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "91e206bcfeaf8948ea03fe3cb1b7616108496cd3", - "internalRef": "350949863" + "sha": "8d8c008e56f1af31d57f75561e0f1848ffb29eeb", + "internalRef": "356341083" } }, {