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

Commit

Permalink
docs: clarified when revision_id of a workflow is updated docs: clari…
Browse files Browse the repository at this point in the history
…fied format and semantics of service_account field docs: documented expanded workflow size limit

PiperOrigin-RevId: 404237609

Source-Link: googleapis/googleapis@2d60c59

Source-Link: googleapis/googleapis-gen@ec5a08b
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZWM1YTA4YjdlNmQwZTNjNzc0NTE2ZTQxNjk4OTNhNTg4Njg1NjQyMyJ9
  • Loading branch information
gcf-owl-bot[bot] committed Oct 19, 2021
1 parent f771383 commit a17929b
Show file tree
Hide file tree
Showing 72 changed files with 6,351 additions and 9,592 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,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 @@ -419,11 +419,11 @@ public final UnaryCallable<GetWorkflowRequest, Workflow> getWorkflowCallable() {
* @param workflowId Required. The ID of the workflow to be created. It has to fulfill the
* following requirements:
* <ul>
* <li>Must contain only letters, numbers, underscores and hyphens.
* <li>Must start with a letter.
* <li>Must be between 1-64 characters.
* <li>Must end with a number or a letter.
* <li>Must be unique within the customer project and location.
* <li> Must contain only letters, numbers, underscores and hyphens.
* <li> Must start with a letter.
* <li> Must be between 1-64 characters.
* <li> Must end with a number or a letter.
* <li> Must be unique within the customer project and location.
* </ul>
*
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
Expand Down Expand Up @@ -462,11 +462,11 @@ public final OperationFuture<Workflow, OperationMetadata> createWorkflowAsync(
* @param workflowId Required. The ID of the workflow to be created. It has to fulfill the
* following requirements:
* <ul>
* <li>Must contain only letters, numbers, underscores and hyphens.
* <li>Must start with a letter.
* <li>Must be between 1-64 characters.
* <li>Must end with a number or a letter.
* <li>Must be unique within the customer project and location.
* <li> Must contain only letters, numbers, underscores and hyphens.
* <li> Must start with a letter.
* <li> Must be between 1-64 characters.
* <li> Must end with a number or a letter.
* <li> Must be unique within the customer project and location.
* </ul>
*
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
Expand Down Expand Up @@ -823,10 +823,7 @@ public boolean awaitTermination(long duration, TimeUnit unit) throws Interrupted

public static class ListWorkflowsPagedResponse
extends AbstractPagedListResponse<
ListWorkflowsRequest,
ListWorkflowsResponse,
Workflow,
ListWorkflowsPage,
ListWorkflowsRequest, ListWorkflowsResponse, Workflow, ListWorkflowsPage,
ListWorkflowsFixedSizeCollection> {

public static ApiFuture<ListWorkflowsPagedResponse> createAsync(
Expand Down Expand Up @@ -876,10 +873,7 @@ public ApiFuture<ListWorkflowsPage> createPageAsync(

public static class ListWorkflowsFixedSizeCollection
extends AbstractFixedSizeCollection<
ListWorkflowsRequest,
ListWorkflowsResponse,
Workflow,
ListWorkflowsPage,
ListWorkflowsRequest, ListWorkflowsResponse, Workflow, ListWorkflowsPage,
ListWorkflowsFixedSizeCollection> {

private ListWorkflowsFixedSizeCollection(List<ListWorkflowsPage> pages, int collectionSize) {
Expand Down
Original file line number Diff line number Diff line change
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.cloud.workflows.v1.stub.WorkflowsStubSettings;
Expand All @@ -44,9 +45,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (workflows.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 (workflows.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 @@ -15,7 +15,9 @@
*/

/**
* The interfaces provided are listed below, along with usage samples.
* A client to Workflows API
*
* <p>The interfaces provided are listed below, along with usage samples.
*
* <p>======================= WorkflowsClient =======================
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,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
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (workflows.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 (workflows.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 a17929b

Please sign in to comment.