Skip to content
This repository has been archived by the owner on Sep 27, 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 Jul 15, 2022
1 parent a6e6f6a commit d62596b
Show file tree
Hide file tree
Showing 488 changed files with 62,861 additions and 39,061 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,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 @@ -1136,7 +1136,10 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListContentPagedResponse
extends AbstractPagedListResponse<
ListContentRequest, ListContentResponse, Content, ListContentPage,
ListContentRequest,
ListContentResponse,
Content,
ListContentPage,
ListContentFixedSizeCollection> {

public static ApiFuture<ListContentPagedResponse> createAsync(
Expand Down Expand Up @@ -1183,7 +1186,10 @@ public ApiFuture<ListContentPage> createPageAsync(

public static class ListContentFixedSizeCollection
extends AbstractFixedSizeCollection<
ListContentRequest, ListContentResponse, Content, ListContentPage,
ListContentRequest,
ListContentResponse,
Content,
ListContentPage,
ListContentFixedSizeCollection> {

private ListContentFixedSizeCollection(List<ListContentPage> pages, int collectionSize) {
Expand All @@ -1203,7 +1209,10 @@ protected ListContentFixedSizeCollection 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 @@ -1253,7 +1262,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 @@ -29,7 +29,6 @@
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.ClientSettings;
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.dataplex.v1.stub.ContentServiceStubSettings;
Expand All @@ -54,9 +53,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (dataplex.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 (dataplex.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 d62596b

Please sign in to comment.