-
Notifications
You must be signed in to change notification settings - Fork 76
Closed
Labels
priority: p3Desirable enhancement or fix. May not be included in next release.Desirable enhancement or fix. May not be included in next release.type: docsImprovement to the documentation for an API.Improvement to the documentation for an API.
Description
// Request for the
// [CreateWorkflow][google.cloud.workflows.v1beta.Workflows.CreateWorkflow]
// method.
message CreateWorkflowRequest {
// Required. Project and location in which the workflow should be created.
// Format: projects/{project}/locations/{location}
string parent = 1 [
(google.api.field_behavior) = REQUIRED,
(google.api.resource_reference) = {
type: "locations.googleapis.com/Location"
}
];
// Required. Workflow to be created.
Workflow workflow = 2 [(google.api.field_behavior) = REQUIRED];
// Required. The ID of the workflow to be created. It has to fulfill the
// following requirements:
//
// * Must contain only letters, numbers, underscores and hyphens.
// * Must start with a letter.
// * Must be between 1-64 characters.
// * Must end with a number or a letter.
// * Must be unique within the customer project and location.
string workflow_id = 3 [(google.api.field_behavior) = REQUIRED];
}Gets turned into
workflow_id (:class:`str`):
Required. The ID of the workflow to be created. It has
to fulfill the following requirements:
- Must contain only letters, numbers, underscores and
hyphens.
- Must start with a letter.
- Must be between 1-64 characters.
- Must end with a number or a letter.
- Must be unique within the customer project and
location.
This corresponds to the ``workflow_id`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.Which results in a Sphinx warning
WARNING: Bullet list ends without a blank line; unexpected unindent.
Metadata
Metadata
Assignees
Labels
priority: p3Desirable enhancement or fix. May not be included in next release.Desirable enhancement or fix. May not be included in next release.type: docsImprovement to the documentation for an API.Improvement to the documentation for an API.