Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🦉 Updates from OwlBot post-processor
  • Loading branch information
gcf-owl-bot[bot] committed May 3, 2022
commit 4d49d127a1a881f1ecc08e4b7ded0a167e784a07
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,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 @@ -1476,7 +1476,10 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListRuntimesPagedResponse
extends AbstractPagedListResponse<
ListRuntimesRequest, ListRuntimesResponse, Runtime, ListRuntimesPage,
ListRuntimesRequest,
ListRuntimesResponse,
Runtime,
ListRuntimesPage,
ListRuntimesFixedSizeCollection> {

public static ApiFuture<ListRuntimesPagedResponse> createAsync(
Expand Down Expand Up @@ -1525,7 +1528,10 @@ public ApiFuture<ListRuntimesPage> createPageAsync(

public static class ListRuntimesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListRuntimesRequest, ListRuntimesResponse, Runtime, ListRuntimesPage,
ListRuntimesRequest,
ListRuntimesResponse,
Runtime,
ListRuntimesPage,
ListRuntimesFixedSizeCollection> {

private ListRuntimesFixedSizeCollection(List<ListRuntimesPage> pages, int collectionSize) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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.notebooks.v1.stub.ManagedNotebookServiceStubSettings;
Expand All @@ -45,9 +44,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (notebooks.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 (notebooks.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 @@ -62,13 +62,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 @@ -3394,7 +3394,10 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListInstancesPagedResponse
extends AbstractPagedListResponse<
ListInstancesRequest, ListInstancesResponse, Instance, ListInstancesPage,
ListInstancesRequest,
ListInstancesResponse,
Instance,
ListInstancesPage,
ListInstancesFixedSizeCollection> {

public static ApiFuture<ListInstancesPagedResponse> createAsync(
Expand Down Expand Up @@ -3444,7 +3447,10 @@ public ApiFuture<ListInstancesPage> createPageAsync(

public static class ListInstancesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListInstancesRequest, ListInstancesResponse, Instance, ListInstancesPage,
ListInstancesRequest,
ListInstancesResponse,
Instance,
ListInstancesPage,
ListInstancesFixedSizeCollection> {

private ListInstancesFixedSizeCollection(List<ListInstancesPage> pages, int collectionSize) {
Expand All @@ -3464,7 +3470,10 @@ protected ListInstancesFixedSizeCollection createCollection(

public static class ListEnvironmentsPagedResponse
extends AbstractPagedListResponse<
ListEnvironmentsRequest, ListEnvironmentsResponse, Environment, ListEnvironmentsPage,
ListEnvironmentsRequest,
ListEnvironmentsResponse,
Environment,
ListEnvironmentsPage,
ListEnvironmentsFixedSizeCollection> {

public static ApiFuture<ListEnvironmentsPagedResponse> createAsync(
Expand Down Expand Up @@ -3514,7 +3523,10 @@ public ApiFuture<ListEnvironmentsPage> createPageAsync(

public static class ListEnvironmentsFixedSizeCollection
extends AbstractFixedSizeCollection<
ListEnvironmentsRequest, ListEnvironmentsResponse, Environment, ListEnvironmentsPage,
ListEnvironmentsRequest,
ListEnvironmentsResponse,
Environment,
ListEnvironmentsPage,
ListEnvironmentsFixedSizeCollection> {

private ListEnvironmentsFixedSizeCollection(
Expand All @@ -3535,7 +3547,10 @@ protected ListEnvironmentsFixedSizeCollection createCollection(

public static class ListSchedulesPagedResponse
extends AbstractPagedListResponse<
ListSchedulesRequest, ListSchedulesResponse, Schedule, ListSchedulesPage,
ListSchedulesRequest,
ListSchedulesResponse,
Schedule,
ListSchedulesPage,
ListSchedulesFixedSizeCollection> {

public static ApiFuture<ListSchedulesPagedResponse> createAsync(
Expand Down Expand Up @@ -3585,7 +3600,10 @@ public ApiFuture<ListSchedulesPage> createPageAsync(

public static class ListSchedulesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListSchedulesRequest, ListSchedulesResponse, Schedule, ListSchedulesPage,
ListSchedulesRequest,
ListSchedulesResponse,
Schedule,
ListSchedulesPage,
ListSchedulesFixedSizeCollection> {

private ListSchedulesFixedSizeCollection(List<ListSchedulesPage> pages, int collectionSize) {
Expand All @@ -3605,7 +3623,10 @@ protected ListSchedulesFixedSizeCollection createCollection(

public static class ListExecutionsPagedResponse
extends AbstractPagedListResponse<
ListExecutionsRequest, ListExecutionsResponse, Execution, ListExecutionsPage,
ListExecutionsRequest,
ListExecutionsResponse,
Execution,
ListExecutionsPage,
ListExecutionsFixedSizeCollection> {

public static ApiFuture<ListExecutionsPagedResponse> createAsync(
Expand Down Expand Up @@ -3655,7 +3676,10 @@ public ApiFuture<ListExecutionsPage> createPageAsync(

public static class ListExecutionsFixedSizeCollection
extends AbstractFixedSizeCollection<
ListExecutionsRequest, ListExecutionsResponse, Execution, ListExecutionsPage,
ListExecutionsRequest,
ListExecutionsResponse,
Execution,
ListExecutionsPage,
ListExecutionsFixedSizeCollection> {

private ListExecutionsFixedSizeCollection(List<ListExecutionsPage> pages, int collectionSize) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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.notebooks.v1.stub.NotebookServiceStubSettings;
Expand All @@ -48,9 +47,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (notebooks.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 (notebooks.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 @@ -46,7 +46,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 @@ -80,7 +80,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 @@ -76,9 +76,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (notebooks.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 (notebooks.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 @@ -110,9 +110,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (notebooks.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 (notebooks.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 @@ -62,13 +62,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 @@ -1626,7 +1626,10 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListInstancesPagedResponse
extends AbstractPagedListResponse<
ListInstancesRequest, ListInstancesResponse, Instance, ListInstancesPage,
ListInstancesRequest,
ListInstancesResponse,
Instance,
ListInstancesPage,
ListInstancesFixedSizeCollection> {

public static ApiFuture<ListInstancesPagedResponse> createAsync(
Expand Down Expand Up @@ -1676,7 +1679,10 @@ public ApiFuture<ListInstancesPage> createPageAsync(

public static class ListInstancesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListInstancesRequest, ListInstancesResponse, Instance, ListInstancesPage,
ListInstancesRequest,
ListInstancesResponse,
Instance,
ListInstancesPage,
ListInstancesFixedSizeCollection> {

private ListInstancesFixedSizeCollection(List<ListInstancesPage> pages, int collectionSize) {
Expand All @@ -1696,7 +1702,10 @@ protected ListInstancesFixedSizeCollection createCollection(

public static class ListEnvironmentsPagedResponse
extends AbstractPagedListResponse<
ListEnvironmentsRequest, ListEnvironmentsResponse, Environment, ListEnvironmentsPage,
ListEnvironmentsRequest,
ListEnvironmentsResponse,
Environment,
ListEnvironmentsPage,
ListEnvironmentsFixedSizeCollection> {

public static ApiFuture<ListEnvironmentsPagedResponse> createAsync(
Expand Down Expand Up @@ -1746,7 +1755,10 @@ public ApiFuture<ListEnvironmentsPage> createPageAsync(

public static class ListEnvironmentsFixedSizeCollection
extends AbstractFixedSizeCollection<
ListEnvironmentsRequest, ListEnvironmentsResponse, Environment, ListEnvironmentsPage,
ListEnvironmentsRequest,
ListEnvironmentsResponse,
Environment,
ListEnvironmentsPage,
ListEnvironmentsFixedSizeCollection> {

private ListEnvironmentsFixedSizeCollection(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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.notebooks.v1beta1.stub.NotebookServiceStubSettings;
Expand All @@ -46,9 +45,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (notebooks.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 (notebooks.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 @@ -59,7 +59,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 @@ -88,9 +88,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (notebooks.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 (notebooks.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