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

docs: corrected the Dataflow job name regex #190

Merged
merged 2 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand Down Expand Up @@ -546,7 +546,7 @@ public java.lang.String getName() {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand Down Expand Up @@ -3025,7 +3025,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand Down Expand Up @@ -3053,7 +3053,7 @@ public java.lang.String getName() {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand Down Expand Up @@ -3081,7 +3081,7 @@ public com.google.protobuf.ByteString getNameBytes() {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand All @@ -3108,7 +3108,7 @@ public Builder setName(java.lang.String value) {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand All @@ -3131,7 +3131,7 @@ public Builder clearName() {
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public interface JobOrBuilder
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand All @@ -105,7 +105,7 @@ public interface JobOrBuilder
* name as an already-existing Job, the attempt returns the
* existing Job.
* The name must match the regular expression
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
* </pre>
*
* <code>string name = 3;</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ message Job {
// existing Job.
//
// The name must match the regular expression
// `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
// `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
string name = 3;

// The type of Cloud Dataflow job.
Expand Down