Skip to content
This repository was archived by the owner on Jul 15, 2024. 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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
🦉 Updates from OwlBot
  • Loading branch information
gcf-owl-bot[bot] committed Feb 11, 2022
commit 73f551e8a508c203d712d219b58da2a11c0e8a58
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,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 @@ -519,13 +519,16 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class AggregatedListPagedResponse
extends AbstractPagedListResponse<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>, AggregatedListPage,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>,
AggregatedListPage,
AggregatedListFixedSizeCollection> {

public static ApiFuture<AggregatedListPagedResponse> createAsync(
PageContext<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>>
context,
ApiFuture<AcceleratorTypeAggregatedList> futureResponse) {
Expand All @@ -544,12 +547,15 @@ private AggregatedListPagedResponse(AggregatedListPage page) {

public static class AggregatedListPage
extends AbstractPage<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>, AggregatedListPage> {
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>,
AggregatedListPage> {

private AggregatedListPage(
PageContext<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>>
context,
AcceleratorTypeAggregatedList response) {
Expand All @@ -563,7 +569,8 @@ private static AggregatedListPage createEmptyPage() {
@Override
protected AggregatedListPage createPage(
PageContext<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>>
context,
AcceleratorTypeAggregatedList response) {
Expand All @@ -573,7 +580,8 @@ protected AggregatedListPage createPage(
@Override
public ApiFuture<AggregatedListPage> createPageAsync(
PageContext<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>>
context,
ApiFuture<AcceleratorTypeAggregatedList> futureResponse) {
Expand All @@ -583,8 +591,10 @@ public ApiFuture<AggregatedListPage> createPageAsync(

public static class AggregatedListFixedSizeCollection
extends AbstractFixedSizeCollection<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>, AggregatedListPage,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
Map.Entry<String, AcceleratorTypesScopedList>,
AggregatedListPage,
AggregatedListFixedSizeCollection> {

private AggregatedListFixedSizeCollection(List<AggregatedListPage> pages, int collectionSize) {
Expand All @@ -604,7 +614,10 @@ protected AggregatedListFixedSizeCollection createCollection(

public static class ListPagedResponse
extends AbstractPagedListResponse<
ListAcceleratorTypesRequest, AcceleratorTypeList, AcceleratorType, ListPage,
ListAcceleratorTypesRequest,
AcceleratorTypeList,
AcceleratorType,
ListPage,
ListFixedSizeCollection> {

public static ApiFuture<ListPagedResponse> createAsync(
Expand Down Expand Up @@ -652,7 +665,10 @@ public ApiFuture<ListPage> createPageAsync(

public static class ListFixedSizeCollection
extends AbstractFixedSizeCollection<
ListAcceleratorTypesRequest, AcceleratorTypeList, AcceleratorType, ListPage,
ListAcceleratorTypesRequest,
AcceleratorTypeList,
AcceleratorType,
ListPage,
ListFixedSizeCollection> {

private ListFixedSizeCollection(List<ListPage> 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.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.compute.v1.stub.AcceleratorTypesStubSettings;
Expand All @@ -43,9 +42,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (compute.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 (compute.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 Expand Up @@ -73,7 +72,8 @@ public class AcceleratorTypesSettings extends ClientSettings<AcceleratorTypesSet

/** Returns the object with the settings used for calls to aggregatedList. */
public PagedCallSettings<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
AggregatedListPagedResponse>
aggregatedListSettings() {
return ((AcceleratorTypesStubSettings) getStubSettings()).aggregatedListSettings();
Expand Down Expand Up @@ -190,7 +190,8 @@ public Builder applyToAllUnaryMethods(

/** Returns the builder for the settings used for calls to aggregatedList. */
public PagedCallSettings.Builder<
AggregatedListAcceleratorTypesRequest, AcceleratorTypeAggregatedList,
AggregatedListAcceleratorTypesRequest,
AcceleratorTypeAggregatedList,
AggregatedListPagedResponse>
aggregatedListSettings() {
return getStubSettingsBuilder().aggregatedListSettings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,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 @@ -733,13 +733,16 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class AggregatedListPagedResponse
extends AbstractPagedListResponse<
AggregatedListAddressesRequest, AddressAggregatedList,
Map.Entry<String, AddressesScopedList>, AggregatedListPage,
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>,
AggregatedListPage,
AggregatedListFixedSizeCollection> {

public static ApiFuture<AggregatedListPagedResponse> createAsync(
PageContext<
AggregatedListAddressesRequest, AddressAggregatedList,
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>>
context,
ApiFuture<AddressAggregatedList> futureResponse) {
Expand All @@ -758,12 +761,15 @@ private AggregatedListPagedResponse(AggregatedListPage page) {

public static class AggregatedListPage
extends AbstractPage<
AggregatedListAddressesRequest, AddressAggregatedList,
Map.Entry<String, AddressesScopedList>, AggregatedListPage> {
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>,
AggregatedListPage> {

private AggregatedListPage(
PageContext<
AggregatedListAddressesRequest, AddressAggregatedList,
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>>
context,
AddressAggregatedList response) {
Expand All @@ -777,7 +783,8 @@ private static AggregatedListPage createEmptyPage() {
@Override
protected AggregatedListPage createPage(
PageContext<
AggregatedListAddressesRequest, AddressAggregatedList,
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>>
context,
AddressAggregatedList response) {
Expand All @@ -787,7 +794,8 @@ protected AggregatedListPage createPage(
@Override
public ApiFuture<AggregatedListPage> createPageAsync(
PageContext<
AggregatedListAddressesRequest, AddressAggregatedList,
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>>
context,
ApiFuture<AddressAggregatedList> futureResponse) {
Expand All @@ -797,8 +805,10 @@ public ApiFuture<AggregatedListPage> createPageAsync(

public static class AggregatedListFixedSizeCollection
extends AbstractFixedSizeCollection<
AggregatedListAddressesRequest, AddressAggregatedList,
Map.Entry<String, AddressesScopedList>, AggregatedListPage,
AggregatedListAddressesRequest,
AddressAggregatedList,
Map.Entry<String, AddressesScopedList>,
AggregatedListPage,
AggregatedListFixedSizeCollection> {

private AggregatedListFixedSizeCollection(List<AggregatedListPage> 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.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.compute.v1.stub.AddressesStubSettings;
Expand All @@ -44,9 +43,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (compute.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 (compute.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,13 +59,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 @@ -971,13 +971,16 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class AggregatedListPagedResponse
extends AbstractPagedListResponse<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>, AggregatedListPage,
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>,
AggregatedListPage,
AggregatedListFixedSizeCollection> {

public static ApiFuture<AggregatedListPagedResponse> createAsync(
PageContext<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>>
context,
ApiFuture<AutoscalerAggregatedList> futureResponse) {
Expand All @@ -996,12 +999,15 @@ private AggregatedListPagedResponse(AggregatedListPage page) {

public static class AggregatedListPage
extends AbstractPage<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>, AggregatedListPage> {
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>,
AggregatedListPage> {

private AggregatedListPage(
PageContext<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>>
context,
AutoscalerAggregatedList response) {
Expand All @@ -1015,7 +1021,8 @@ private static AggregatedListPage createEmptyPage() {
@Override
protected AggregatedListPage createPage(
PageContext<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>>
context,
AutoscalerAggregatedList response) {
Expand All @@ -1025,7 +1032,8 @@ protected AggregatedListPage createPage(
@Override
public ApiFuture<AggregatedListPage> createPageAsync(
PageContext<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>>
context,
ApiFuture<AutoscalerAggregatedList> futureResponse) {
Expand All @@ -1035,8 +1043,10 @@ public ApiFuture<AggregatedListPage> createPageAsync(

public static class AggregatedListFixedSizeCollection
extends AbstractFixedSizeCollection<
AggregatedListAutoscalersRequest, AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>, AggregatedListPage,
AggregatedListAutoscalersRequest,
AutoscalerAggregatedList,
Map.Entry<String, AutoscalersScopedList>,
AggregatedListPage,
AggregatedListFixedSizeCollection> {

private AggregatedListFixedSizeCollection(List<AggregatedListPage> 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.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.compute.v1.stub.AutoscalersStubSettings;
Expand All @@ -44,9 +43,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (compute.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 (compute.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