Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
🦉 Updates from OwlBot post-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Aug 23, 2022
1 parent 052e1df commit 8d01edc
Show file tree
Hide file tree
Showing 66 changed files with 4,014 additions and 2,620 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@
* methods:
*
* <ol>
* <li> A "flattened" method. With this type of method, the fields of the request type have been
* <li>A "flattened" method. With this type of method, the fields of the request type have been
* converted into function parameters. It may be the case that not all fields are available as
* parameters, and not every API method will have a flattened method entry point.
* <li> A "request object" method. This type of method only takes one parameter, a request object,
* <li>A "request object" method. This type of method only takes one parameter, a request object,
* which must be constructed before the call. Not every API method will have a request object
* method.
* <li> A "callable" method. This type of method takes no parameters and returns an immutable API
* <li>A "callable" method. This type of method takes no parameters and returns an immutable API
* callable object, which can be used to initiate calls to the service.
* </ol>
*
Expand Down Expand Up @@ -855,7 +855,10 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListConnectorsPagedResponse
extends AbstractPagedListResponse<
ListConnectorsRequest, ListConnectorsResponse, Connector, ListConnectorsPage,
ListConnectorsRequest,
ListConnectorsResponse,
Connector,
ListConnectorsPage,
ListConnectorsFixedSizeCollection> {

public static ApiFuture<ListConnectorsPagedResponse> createAsync(
Expand Down Expand Up @@ -905,7 +908,10 @@ public ApiFuture<ListConnectorsPage> createPageAsync(

public static class ListConnectorsFixedSizeCollection
extends AbstractFixedSizeCollection<
ListConnectorsRequest, ListConnectorsResponse, Connector, ListConnectorsPage,
ListConnectorsRequest,
ListConnectorsResponse,
Connector,
ListConnectorsPage,
ListConnectorsFixedSizeCollection> {

private ListConnectorsFixedSizeCollection(List<ListConnectorsPage> pages, int collectionSize) {
Expand All @@ -925,7 +931,10 @@ protected ListConnectorsFixedSizeCollection createCollection(

public static class ListLocationsPagedResponse
extends AbstractPagedListResponse<
ListLocationsRequest, ListLocationsResponse, Location, ListLocationsPage,
ListLocationsRequest,
ListLocationsResponse,
Location,
ListLocationsPage,
ListLocationsFixedSizeCollection> {

public static ApiFuture<ListLocationsPagedResponse> createAsync(
Expand Down Expand Up @@ -975,7 +984,10 @@ public ApiFuture<ListLocationsPage> createPageAsync(

public static class ListLocationsFixedSizeCollection
extends AbstractFixedSizeCollection<
ListLocationsRequest, ListLocationsResponse, Location, ListLocationsPage,
ListLocationsRequest,
ListLocationsResponse,
Location,
ListLocationsPage,
ListLocationsFixedSizeCollection> {

private ListLocationsFixedSizeCollection(List<ListLocationsPage> pages, int collectionSize) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import com.google.api.gax.rpc.ClientSettings;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.PagedCallSettings;
import com.google.api.gax.rpc.StubSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.cloud.location.ListLocationsRequest;
Expand All @@ -49,9 +48,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (vpcaccess.googleapis.com) and default port (443) are used.
* <li> Credentials are acquired automatically through Application Default Credentials.
* <li> Retries are configured for idempotent methods but not for non-idempotent methods.
* <li>The default service address (vpcaccess.googleapis.com) and default port (443) are used.
* <li>Credentials are acquired automatically through Application Default Credentials.
* <li>Retries are configured for idempotent methods but not for non-idempotent methods.
* </ul>
*
* <p>The builder of this class is recursive, so contained classes are themselves builders. When
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import io.grpc.MethodDescriptor;
import io.grpc.protobuf.ProtoUtils;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import com.google.api.gax.httpjson.ProtoMessageResponseParser;
import com.google.api.gax.httpjson.ProtoRestSerializer;
import com.google.api.gax.httpjson.longrunning.stub.HttpJsonOperationsStub;
import com.google.api.gax.longrunning.OperationSnapshot;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (vpcaccess.googleapis.com) and default port (443) are used.
* <li> Credentials are acquired automatically through Application Default Credentials.
* <li> Retries are configured for idempotent methods but not for non-idempotent methods.
* <li>The default service address (vpcaccess.googleapis.com) and default port (443) are used.
* <li>Credentials are acquired automatically through Application Default Credentials.
* <li>Retries are configured for idempotent methods but not for non-idempotent methods.
* </ul>
*
* <p>The builder of this class is recursive, so contained classes are themselves builders. When
Expand Down
Loading

0 comments on commit 8d01edc

Please sign in to comment.