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

Commit 8fbc2f0

Browse files
docs: corrected the Dataflow job name regex (#190)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 458015583 Source-Link: googleapis/googleapis@9b7d76e Source-Link: https://github.com/googleapis/googleapis-gen/commit/fb26a7ca71df63e4c527e9e607e57a382e8095f6 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZmIyNmE3Y2E3MWRmNjNlNGM1MjdlOWU2MDdlNTdhMzgyZTgwOTVmNiJ9
1 parent b0eadd6 commit 8fbc2f0

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

proto-google-cloud-dataflow-v1beta3/src/main/java/com/google/dataflow/v1beta3/Job.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() {
517517
* name as an already-existing Job, the attempt returns the
518518
* existing Job.
519519
* The name must match the regular expression
520-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
520+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
521521
* </pre>
522522
*
523523
* <code>string name = 3;</code>
@@ -546,7 +546,7 @@ public java.lang.String getName() {
546546
* name as an already-existing Job, the attempt returns the
547547
* existing Job.
548548
* The name must match the regular expression
549-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
549+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
550550
* </pre>
551551
*
552552
* <code>string name = 3;</code>
@@ -3025,7 +3025,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) {
30253025
* name as an already-existing Job, the attempt returns the
30263026
* existing Job.
30273027
* The name must match the regular expression
3028-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
3028+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
30293029
* </pre>
30303030
*
30313031
* <code>string name = 3;</code>
@@ -3053,7 +3053,7 @@ public java.lang.String getName() {
30533053
* name as an already-existing Job, the attempt returns the
30543054
* existing Job.
30553055
* The name must match the regular expression
3056-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
3056+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
30573057
* </pre>
30583058
*
30593059
* <code>string name = 3;</code>
@@ -3081,7 +3081,7 @@ public com.google.protobuf.ByteString getNameBytes() {
30813081
* name as an already-existing Job, the attempt returns the
30823082
* existing Job.
30833083
* The name must match the regular expression
3084-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
3084+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
30853085
* </pre>
30863086
*
30873087
* <code>string name = 3;</code>
@@ -3108,7 +3108,7 @@ public Builder setName(java.lang.String value) {
31083108
* name as an already-existing Job, the attempt returns the
31093109
* existing Job.
31103110
* The name must match the regular expression
3111-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
3111+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
31123112
* </pre>
31133113
*
31143114
* <code>string name = 3;</code>
@@ -3131,7 +3131,7 @@ public Builder clearName() {
31313131
* name as an already-existing Job, the attempt returns the
31323132
* existing Job.
31333133
* The name must match the regular expression
3134-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
3134+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
31353135
* </pre>
31363136
*
31373137
* <code>string name = 3;</code>

proto-google-cloud-dataflow-v1beta3/src/main/java/com/google/dataflow/v1beta3/JobOrBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public interface JobOrBuilder
8787
* name as an already-existing Job, the attempt returns the
8888
* existing Job.
8989
* The name must match the regular expression
90-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
90+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
9191
* </pre>
9292
*
9393
* <code>string name = 3;</code>
@@ -105,7 +105,7 @@ public interface JobOrBuilder
105105
* name as an already-existing Job, the attempt returns the
106106
* existing Job.
107107
* The name must match the regular expression
108-
* `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
108+
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
109109
* </pre>
110110
*
111111
* <code>string name = 3;</code>

proto-google-cloud-dataflow-v1beta3/src/main/proto/google/dataflow/v1beta3/jobs.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ message Job {
154154
// existing Job.
155155
//
156156
// The name must match the regular expression
157-
// `[a-z]([-a-z0-9]{0,38}[a-z0-9])?`
157+
// `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
158158
string name = 3;
159159

160160
// The type of Cloud Dataflow job.

0 commit comments

Comments
 (0)