Skip to content

Commit 9aff629

Browse files
1 parent 07ee44f commit 9aff629

20 files changed

+655
-25
lines changed

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
25-
<version>v1beta1-rev20250619-2.0.0</version>
25+
<version>v1beta1-rev20250919-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-serviceusage:v1beta1-rev20250619-2.0.0'
38+
implementation 'com.google.apis:google-api-services-serviceusage:v1beta1-rev20250919-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/Api.java

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
* are different from API Services, which represent a concrete implementation of an interface as
2323
* opposed to simply a description of methods and bindings. They are also sometimes simply referred
2424
* to as "APIs" in other contexts, such as the name of this message itself. See
25-
* https://cloud.google.com/apis/design/glossary for detailed terminology.
25+
* https://cloud.google.com/apis/design/glossary for detailed terminology. New usages of this
26+
* message as an alternative to ServiceDescriptorProto are strongly discouraged. This message does
27+
* not reliability preserve all information necessary to model the schema and preserve semantics.
28+
* Instead make use of FileDescriptorSet which preserves the necessary information.
2629
*
2730
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2831
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:
@@ -34,6 +37,13 @@
3437
@SuppressWarnings("javadoc")
3538
public final class Api extends com.google.api.client.json.GenericJson {
3639

40+
/**
41+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String edition;
46+
3747
/**
3848
* The methods of this interface, in unspecified order.
3949
* The value may be {@code null}.
@@ -94,6 +104,23 @@ public final class Api extends com.google.api.client.json.GenericJson {
94104
@com.google.api.client.util.Key
95105
private java.lang.String version;
96106

107+
/**
108+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
109+
* @return value or {@code null} for none
110+
*/
111+
public java.lang.String getEdition() {
112+
return edition;
113+
}
114+
115+
/**
116+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
117+
* @param edition edition or {@code null} for none
118+
*/
119+
public Api setEdition(java.lang.String edition) {
120+
this.edition = edition;
121+
return this;
122+
}
123+
97124
/**
98125
* The methods of this interface, in unspecified order.
99126
* @return value or {@code null} for none

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/BackendRule.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public final class BackendRule extends com.google.api.client.json.GenericJson {
9999
private java.util.Map<String, BackendRule> overridesByRequestProtocol;
100100

101101
/**
102+
* no-lint
102103
* The value may be {@code null}.
103104
*/
104105
@com.google.api.client.util.Key
@@ -287,13 +288,15 @@ public BackendRule setOverridesByRequestProtocol(java.util.Map<String, BackendRu
287288
}
288289

289290
/**
291+
* no-lint
290292
* @return value or {@code null} for none
291293
*/
292294
public java.lang.String getPathTranslation() {
293295
return pathTranslation;
294296
}
295297

296298
/**
299+
* no-lint
297300
* @param pathTranslation pathTranslation or {@code null} for none
298301
*/
299302
public BackendRule setPathTranslation(java.lang.String pathTranslation) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.serviceusage.v1beta1.model;
18+
19+
/**
20+
* ContentSecurity defines the content security related fields of a MCP policy.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ContentSecurity extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* List of content security providers that are enabled for content scanning.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<ContentSecurityProvider> contentSecurityProviders;
38+
39+
/**
40+
* List of content security providers that are enabled for content scanning.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<ContentSecurityProvider> getContentSecurityProviders() {
44+
return contentSecurityProviders;
45+
}
46+
47+
/**
48+
* List of content security providers that are enabled for content scanning.
49+
* @param contentSecurityProviders contentSecurityProviders or {@code null} for none
50+
*/
51+
public ContentSecurity setContentSecurityProviders(java.util.List<ContentSecurityProvider> contentSecurityProviders) {
52+
this.contentSecurityProviders = contentSecurityProviders;
53+
return this;
54+
}
55+
56+
@Override
57+
public ContentSecurity set(String fieldName, Object value) {
58+
return (ContentSecurity) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ContentSecurity clone() {
63+
return (ContentSecurity) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.serviceusage.v1beta1.model;
18+
19+
/**
20+
* ContentSecurityProvider contains the name of content security provider.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ContentSecurityProvider extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Name of security service for content scanning, such as Google Cloud Model Armor or supported
34+
* third-party ISV solutions. If it is Google 1P service, the name should be prefixed with
35+
* `services/`. If it is a 3P service, the format needs to be documented. The currently supported
36+
* values are: - `services/modelarmor.googleapis.com` for Google Cloud Model Armor.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String name;
41+
42+
/**
43+
* Name of security service for content scanning, such as Google Cloud Model Armor or supported
44+
* third-party ISV solutions. If it is Google 1P service, the name should be prefixed with
45+
* `services/`. If it is a 3P service, the format needs to be documented. The currently supported
46+
* values are: - `services/modelarmor.googleapis.com` for Google Cloud Model Armor.
47+
* @return value or {@code null} for none
48+
*/
49+
public java.lang.String getName() {
50+
return name;
51+
}
52+
53+
/**
54+
* Name of security service for content scanning, such as Google Cloud Model Armor or supported
55+
* third-party ISV solutions. If it is Google 1P service, the name should be prefixed with
56+
* `services/`. If it is a 3P service, the format needs to be documented. The currently supported
57+
* values are: - `services/modelarmor.googleapis.com` for Google Cloud Model Armor.
58+
* @param name name or {@code null} for none
59+
*/
60+
public ContentSecurityProvider setName(java.lang.String name) {
61+
this.name = name;
62+
return this;
63+
}
64+
65+
@Override
66+
public ContentSecurityProvider set(String fieldName, Object value) {
67+
return (ContentSecurityProvider) super.set(fieldName, value);
68+
}
69+
70+
@Override
71+
public ContentSecurityProvider clone() {
72+
return (ContentSecurityProvider) super.clone();
73+
}
74+
75+
}

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/EnumValue.java

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

1919
/**
20-
* Enum value definition.
20+
* Enum value definition. New usages of this message as an alternative to EnumValueDescriptorProto
21+
* are strongly discouraged. This message does not reliability preserve all information necessary to
22+
* model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves
23+
* the necessary information.
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/Field.java

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

1919
/**
20-
* A single field of a message type.
20+
* A single field of a message type. New usages of this message as an alternative to
21+
* FieldDescriptorProto are strongly discouraged. This message does not reliability preserve all
22+
* information necessary to model the schema and preserve semantics. Instead make use of
23+
* FileDescriptorSet which preserves the necessary information.
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/GoSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class GoSettings extends com.google.api.client.json.GenericJson {
3838

3939
/**
4040
* Map of service names to renamed services. Keys are the package relative service names and
41-
* values are the name to be used for the service client and call options. publishing:
41+
* values are the name to be used for the service client and call options. Example: publishing:
4242
* go_settings: renamed_services: Publisher: TopicAdmin
4343
* The value may be {@code null}.
4444
*/
@@ -64,7 +64,7 @@ public GoSettings setCommon(CommonLanguageSettings common) {
6464

6565
/**
6666
* Map of service names to renamed services. Keys are the package relative service names and
67-
* values are the name to be used for the service client and call options. publishing:
67+
* values are the name to be used for the service client and call options. Example: publishing:
6868
* go_settings: renamed_services: Publisher: TopicAdmin
6969
* @return value or {@code null} for none
7070
*/
@@ -74,7 +74,7 @@ public java.util.Map<String, java.lang.String> getRenamedServices() {
7474

7575
/**
7676
* Map of service names to renamed services. Keys are the package relative service names and
77-
* values are the name to be used for the service client and call options. publishing:
77+
* values are the name to be used for the service client and call options. Example: publishing:
7878
* go_settings: renamed_services: Publisher: TopicAdmin
7979
* @param renamedServices renamedServices or {@code null} for none
8080
*/

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/GoogleApiServiceusageV2betaConsumerPolicy.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ public final class GoogleApiServiceusageV2betaConsumerPolicy extends com.google.
5656
private java.util.List<GoogleApiServiceusageV2betaEnableRule> enableRules;
5757

5858
/**
59-
* Output only. An opaque tag indicating the current version of the policy, used for concurrency
60-
* control.
59+
* An opaque tag indicating the current version of the policy, used for concurrency control.
6160
* The value may be {@code null}.
6261
*/
6362
@com.google.api.client.util.Key
@@ -139,17 +138,15 @@ public GoogleApiServiceusageV2betaConsumerPolicy setEnableRules(java.util.List<G
139138
}
140139

141140
/**
142-
* Output only. An opaque tag indicating the current version of the policy, used for concurrency
143-
* control.
141+
* An opaque tag indicating the current version of the policy, used for concurrency control.
144142
* @return value or {@code null} for none
145143
*/
146144
public java.lang.String getEtag() {
147145
return etag;
148146
}
149147

150148
/**
151-
* Output only. An opaque tag indicating the current version of the policy, used for concurrency
152-
* control.
149+
* An opaque tag indicating the current version of the policy, used for concurrency control.
153150
* @param etag etag or {@code null} for none
154151
*/
155152
public GoogleApiServiceusageV2betaConsumerPolicy setEtag(java.lang.String etag) {

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/GoogleApiServiceusageV2betaImpact.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class GoogleApiServiceusageV2betaImpact extends com.google.api.clie
4343
@com.google.api.client.util.Key
4444
private java.lang.String impactType;
4545

46+
/**
47+
* Output only. This field will be populated only for the `DEPENDENCY_MISSING_DEPENDENCIES` impact
48+
* type. Example: `services/compute.googleapis.com`. Impact.detail will be in format : `missing
49+
* service dependency: {missing_dependency}.`
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String missingDependency;
54+
4655
/**
4756
* Output only. User friendly impact detail in a free form message.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public GoogleApiServiceusageV2betaImpact setImpactType(java.lang.String impactTy
7786
return this;
7887
}
7988

89+
/**
90+
* Output only. This field will be populated only for the `DEPENDENCY_MISSING_DEPENDENCIES` impact
91+
* type. Example: `services/compute.googleapis.com`. Impact.detail will be in format : `missing
92+
* service dependency: {missing_dependency}.`
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getMissingDependency() {
96+
return missingDependency;
97+
}
98+
99+
/**
100+
* Output only. This field will be populated only for the `DEPENDENCY_MISSING_DEPENDENCIES` impact
101+
* type. Example: `services/compute.googleapis.com`. Impact.detail will be in format : `missing
102+
* service dependency: {missing_dependency}.`
103+
* @param missingDependency missingDependency or {@code null} for none
104+
*/
105+
public GoogleApiServiceusageV2betaImpact setMissingDependency(java.lang.String missingDependency) {
106+
this.missingDependency = missingDependency;
107+
return this;
108+
}
109+
80110
@Override
81111
public GoogleApiServiceusageV2betaImpact set(String fieldName, Object value) {
82112
return (GoogleApiServiceusageV2betaImpact) super.set(fieldName, value);

0 commit comments

Comments
 (0)