Skip to content

Commit 9e4fe64

Browse files
1 parent 8a9a62b commit 9e4fe64

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

clients/google-api-services-servicecontrol/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-servicecontrol</artifactId>
25-
<version>v1-rev20250820-2.0.0</version>
25+
<version>v1-rev20251125-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-servicecontrol:v1-rev20250820-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicecontrol:v1-rev20251125-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-servicecontrol/v1/2.0.0/com/google/api/services/servicecontrol/v1/model/ViolationInfo.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ public final class ViolationInfo extends com.google.api.client.json.GenericJson
4444
@com.google.api.client.util.Key
4545
private java.lang.String constraint;
4646

47+
/**
48+
* Optional. Provides extra information for the specific violated constraint. See the constraint's
49+
* documentation to determine if this field is populated and what the structure of the message
50+
* should be.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.Map<String, java.lang.Object> constraintViolationInfo;
55+
4756
/**
4857
* Optional. Error message that policy is indicating.
4958
* The value may be {@code null}.
@@ -94,6 +103,27 @@ public ViolationInfo setConstraint(java.lang.String constraint) {
94103
return this;
95104
}
96105

106+
/**
107+
* Optional. Provides extra information for the specific violated constraint. See the constraint's
108+
* documentation to determine if this field is populated and what the structure of the message
109+
* should be.
110+
* @return value or {@code null} for none
111+
*/
112+
public java.util.Map<String, java.lang.Object> getConstraintViolationInfo() {
113+
return constraintViolationInfo;
114+
}
115+
116+
/**
117+
* Optional. Provides extra information for the specific violated constraint. See the constraint's
118+
* documentation to determine if this field is populated and what the structure of the message
119+
* should be.
120+
* @param constraintViolationInfo constraintViolationInfo or {@code null} for none
121+
*/
122+
public ViolationInfo setConstraintViolationInfo(java.util.Map<String, java.lang.Object> constraintViolationInfo) {
123+
this.constraintViolationInfo = constraintViolationInfo;
124+
return this;
125+
}
126+
97127
/**
98128
* Optional. Error message that policy is indicating.
99129
* @return value or {@code null} for none

clients/google-api-services-servicecontrol/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-servicecontrol</artifactId>
11-
<version>v1-rev20250820-2.0.0</version>
12-
<name>Service Control API v1-rev20250820-2.0.0</name>
11+
<version>v1-rev20251125-2.0.0</version>
12+
<name>Service Control API v1-rev20251125-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-servicecontrol/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-servicecontrol</artifactId>
25-
<version>v1-rev20250820-2.0.0</version>
25+
<version>v1-rev20251125-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-servicecontrol:v1-rev20250820-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicecontrol:v1-rev20251125-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)