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

Commit

Permalink
docs: Remove erroneous space in a docstring
Browse files Browse the repository at this point in the history
Committer: @parthea
PiperOrigin-RevId: 403379119

Source-Link: googleapis/googleapis@85633a2

Source-Link: googleapis/googleapis-gen@cb84b0c
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2I4NGIwYzFhNWZhNzVjMTFhZTFhOTE3MDNkOTM4MmY2NDE0MzY1MiJ9
  • Loading branch information
gcf-owl-bot[bot] committed Oct 19, 2021
1 parent ba23c65 commit fe44f23
Show file tree
Hide file tree
Showing 168 changed files with 16,234 additions and 25,886 deletions.

This file was deleted.

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 @@ -633,10 +633,7 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListServicesPagedResponse
extends AbstractPagedListResponse<
ListServicesRequest,
ListServicesResponse,
Service,
ListServicesPage,
ListServicesRequest, ListServicesResponse, Service, ListServicesPage,
ListServicesFixedSizeCollection> {

public static ApiFuture<ListServicesPagedResponse> createAsync(
Expand Down Expand Up @@ -685,10 +682,7 @@ public ApiFuture<ListServicesPage> createPageAsync(

public static class ListServicesFixedSizeCollection
extends AbstractFixedSizeCollection<
ListServicesRequest,
ListServicesResponse,
Service,
ListServicesPage,
ListServicesRequest, ListServicesResponse, Service, ListServicesPage,
ListServicesFixedSizeCollection> {

private ListServicesFixedSizeCollection(List<ListServicesPage> pages, int collectionSize) {
Expand Down
Expand Up @@ -28,6 +28,7 @@
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.api.serviceusage.v1.stub.ServiceUsageStubSettings;
Expand All @@ -43,9 +44,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (serviceusage.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 (serviceusage.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 @@ -44,6 +44,7 @@
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
Expand Up @@ -74,9 +74,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (serviceusage.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 (serviceusage.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 @@ -267,7 +267,9 @@ public static List<String> getDefaultServiceScopes() {

/** Returns a builder for the default credentials for this service. */
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() {
return GoogleCredentialsProvider.newBuilder().setScopesToApply(DEFAULT_SERVICE_SCOPES);
return GoogleCredentialsProvider.newBuilder()
.setScopesToApply(DEFAULT_SERVICE_SCOPES)
.setUseJwtAccessWithScope(true);
}

/** Returns a builder for the default ChannelProvider for this service. */
Expand Down

0 comments on commit fe44f23

Please sign in to comment.