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
Next Next commit
feat: add client library BUILD rules, API proto option, v1alpha servi…
…ce config file and service YAML file

PiperOrigin-RevId: 456598021

Source-Link: googleapis/googleapis@bf12acd

Source-Link: https://github.com/googleapis/googleapis-gen/commit/e0e994c3d7c01652ae59870da7b7ece1a9532c5b
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTBlOTk0YzNkN2MwMTY1MmFlNTk4NzBkYTdiN2VjZTFhOTUzMmM1YiJ9
  • Loading branch information
gcf-owl-bot[bot] committed Jun 22, 2022
commit 9f15a531ad25f6fedd1e758a691cfdd46c19e4e3

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Service Description: Google Cloud Batch Service. The service manages user submitted batch jobs
* and allocates Google Compute Engine VM instances to run the jobs.
* Service Description: Google Batch Service. The service manages user submitted batch jobs and
* allocates Google Compute Engine VM instances to run the jobs.
*
* <p>This class provides the ability to make remote calls to the backing service through method
* calls that map to API methods. Sample code to get started:
Expand All @@ -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 @@ -183,8 +183,8 @@ public final OperationsClient getOperationsClient() {
* }
* }</pre>
*
* @param parent Required. The parent resource name where the Job will be created. Format:
* projects/{project}/locations/{location}
* @param parent Required. The parent resource name where the Job will be created. Pattern:
* "projects/{project}/locations/{location}"
* @param job Required. The Job to create.
* @param jobId ID used to uniquely identify the Job within its parent scope. This field should
* contain at most 63 characters. Only alphanumeric characters or '-' are accepted. The '-'
Expand Down Expand Up @@ -221,8 +221,8 @@ public final Job createJob(LocationName parent, Job job, String jobId) {
* }
* }</pre>
*
* @param parent Required. The parent resource name where the Job will be created. Format:
* projects/{project}/locations/{location}
* @param parent Required. The parent resource name where the Job will be created. Pattern:
* "projects/{project}/locations/{location}"
* @param job Required. The Job to create.
* @param jobId ID used to uniquely identify the Job within its parent scope. This field should
* contain at most 63 characters. Only alphanumeric characters or '-' are accepted. The '-'
Expand Down Expand Up @@ -495,7 +495,7 @@ public final UnaryCallable<DeleteJobRequest, Operation> deleteJobCallable() {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List all Jobs for a project.
* List all Jobs for a project within a region.
*
* <p>Sample code:
*
Expand All @@ -520,7 +520,7 @@ public final ListJobsPagedResponse listJobs(String parent) {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List all Jobs for a project.
* List all Jobs for a project within a region.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -550,7 +550,7 @@ public final ListJobsPagedResponse listJobs(ListJobsRequest request) {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List all Jobs for a project.
* List all Jobs for a project within a region.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -579,7 +579,7 @@ public final UnaryCallable<ListJobsRequest, ListJobsPagedResponse> listJobsPaged

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* List all Jobs for a project.
* List all Jobs for a project within a region.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -731,7 +731,8 @@ public final UnaryCallable<GetTaskRequest, Task> getTaskCallable() {
* }
* }</pre>
*
* @param parent Required. Path of the TaskGroup from which Tasks are being requested.
* @param parent Required. Name of a TaskGroup from which Tasks are being requested. Pattern:
* "projects/{project}/locations/{location}/jobs/{job}/taskGroups/{task_group}"
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListTasksPagedResponse listTasks(TaskGroupName parent) {
Expand All @@ -758,7 +759,8 @@ public final ListTasksPagedResponse listTasks(TaskGroupName parent) {
* }
* }</pre>
*
* @param parent Required. Path of the TaskGroup from which Tasks are being requested.
* @param parent Required. Name of a TaskGroup from which Tasks are being requested. Pattern:
* "projects/{project}/locations/{location}/jobs/{job}/taskGroups/{task_group}"
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListTasksPagedResponse listTasks(String parent) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,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.cloud.batch.v1.stub.BatchServiceStubSettings;
Expand All @@ -45,9 +46,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (batch.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 (batch.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 @@ -21,8 +21,8 @@
*
* <p>======================= BatchServiceClient =======================
*
* <p>Service Description: Google Cloud Batch Service. The service manages user submitted batch jobs
* and allocates Google Compute Engine VM instances to run the jobs.
* <p>Service Description: Google Batch Service. The service manages user submitted batch jobs and
* allocates Google Compute Engine VM instances to run the jobs.
*
* <p>Sample for BatchServiceClient:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (batch.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 (batch.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 @@ -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
Loading