Skip to content

Commit e85b20b

Browse files
1 parent 56ef0a8 commit e85b20b

File tree

6 files changed

+38
-14
lines changed

6 files changed

+38
-14
lines changed

clients/google-api-services-documentai/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-documentai</artifactId>
25-
<version>v1-rev20251020-2.0.0</version>
25+
<version>v1-rev20251030-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-documentai:v1-rev20251020-2.0.0'
38+
implementation 'com.google.apis:google-api-services-documentai:v1-rev20251030-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-documentai/v1/2.0.0/com/google/api/services/documentai/v1/Document.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -751,22 +751,22 @@ public List setName(java.lang.String name) {
751751
}
752752

753753
/**
754-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
755-
* is primarily intended for internal usage.
754+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
755+
* documented otherwise. This is primarily for internal usage.
756756
*/
757757
@com.google.api.client.util.Key
758758
private java.util.List<java.lang.String> extraLocationTypes;
759759

760-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
761-
primarily intended for internal usage.
760+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
761+
otherwise. This is primarily for internal usage.
762762
*/
763763
public java.util.List<java.lang.String> getExtraLocationTypes() {
764764
return extraLocationTypes;
765765
}
766766

767767
/**
768-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
769-
* is primarily intended for internal usage.
768+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
769+
* documented otherwise. This is primarily for internal usage.
770770
*/
771771
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
772772
this.extraLocationTypes = extraLocationTypes;

clients/google-api-services-documentai/v1/2.0.0/com/google/api/services/documentai/v1/model/CloudAiDocumentaiLabHifiaToolsValidationValidatorInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Definition of the validation rules. Those are the input to the validator logic and they are used
21-
* to validate a document.
21+
* to validate a document. Next ID: 3
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Cloud Document AI API. For a detailed explanation

clients/google-api-services-documentai/v1/2.0.0/com/google/api/services/documentai/v1/model/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.documentai.v1.model;
1818

1919
/**
20-
* Model definition for CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule.
20+
* Next ID: 9
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Cloud Document AI API. For a detailed explanation
@@ -74,6 +74,13 @@ public final class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidat
7474
@com.google.api.client.util.Key
7575
private java.lang.String name;
7676

77+
/**
78+
* Unique identifier of the rule. Optional.
79+
* The value may be {@code null}.
80+
*/
81+
@com.google.api.client.util.Key
82+
private java.lang.String ruleId;
83+
7784
/**
7885
* @return value or {@code null} for none
7986
*/
@@ -183,6 +190,23 @@ public CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule setN
183190
return this;
184191
}
185192

193+
/**
194+
* Unique identifier of the rule. Optional.
195+
* @return value or {@code null} for none
196+
*/
197+
public java.lang.String getRuleId() {
198+
return ruleId;
199+
}
200+
201+
/**
202+
* Unique identifier of the rule. Optional.
203+
* @param ruleId ruleId or {@code null} for none
204+
*/
205+
public CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule setRuleId(java.lang.String ruleId) {
206+
this.ruleId = ruleId;
207+
return this;
208+
}
209+
186210
@Override
187211
public CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule set(String fieldName, Object value) {
188212
return (CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule) super.set(fieldName, value);

clients/google-api-services-documentai/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-documentai</artifactId>
11-
<version>v1-rev20251020-2.0.0</version>
12-
<name>Cloud Document AI API v1-rev20251020-2.0.0</name>
11+
<version>v1-rev20251030-2.0.0</version>
12+
<name>Cloud Document AI API v1-rev20251030-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-documentai/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-documentai</artifactId>
25-
<version>v1-rev20251020-2.0.0</version>
25+
<version>v1-rev20251030-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-documentai:v1-rev20251020-2.0.0'
38+
implementation 'com.google.apis:google-api-services-documentai:v1-rev20251030-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)