Skip to content

Commit db2c6d9

Browse files
chore: regenerate discoveryengine client
1 parent 5ec85f7 commit db2c6d9

File tree

36 files changed

+1287
-18
lines changed

36 files changed

+1287
-18
lines changed

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

clients/google-api-services-discoveryengine/v1/2.0.0/com/google/api/services/discoveryengine/v1/model/GoogleCloudDiscoveryengineV1Engine.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,13 @@ public final class GoogleCloudDiscoveryengineV1Engine extends com.google.api.cli
167167
@com.google.api.client.util.Key
168168
private java.lang.String name;
169169

170+
/**
171+
* Optional. Observability config for the engine.
172+
* The value may be {@code null}.
173+
*/
174+
@com.google.api.client.util.Key
175+
private GoogleCloudDiscoveryengineV1ObservabilityConfig observabilityConfig;
176+
170177
/**
171178
* Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH.
172179
* The value may be {@code null}.
@@ -512,6 +519,23 @@ public GoogleCloudDiscoveryengineV1Engine setName(java.lang.String name) {
512519
return this;
513520
}
514521

522+
/**
523+
* Optional. Observability config for the engine.
524+
* @return value or {@code null} for none
525+
*/
526+
public GoogleCloudDiscoveryengineV1ObservabilityConfig getObservabilityConfig() {
527+
return observabilityConfig;
528+
}
529+
530+
/**
531+
* Optional. Observability config for the engine.
532+
* @param observabilityConfig observabilityConfig or {@code null} for none
533+
*/
534+
public GoogleCloudDiscoveryengineV1Engine setObservabilityConfig(GoogleCloudDiscoveryengineV1ObservabilityConfig observabilityConfig) {
535+
this.observabilityConfig = observabilityConfig;
536+
return this;
537+
}
538+
515539
/**
516540
* Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH.
517541
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.discoveryengine.v1.model;
18+
19+
/**
20+
* Observability config for a resource.
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 Discovery Engine 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 GoogleCloudDiscoveryengineV1ObservabilityConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Enables observability. If false, all other flags are ignored.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean observabilityEnabled;
38+
39+
/**
40+
* Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g.
41+
* prompts, responses). If false, will sanitize all sensitive fields.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean sensitiveLoggingEnabled;
46+
47+
/**
48+
* Optional. Enables observability. If false, all other flags are ignored.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Boolean getObservabilityEnabled() {
52+
return observabilityEnabled;
53+
}
54+
55+
/**
56+
* Optional. Enables observability. If false, all other flags are ignored.
57+
* @param observabilityEnabled observabilityEnabled or {@code null} for none
58+
*/
59+
public GoogleCloudDiscoveryengineV1ObservabilityConfig setObservabilityEnabled(java.lang.Boolean observabilityEnabled) {
60+
this.observabilityEnabled = observabilityEnabled;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g.
66+
* prompts, responses). If false, will sanitize all sensitive fields.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Boolean getSensitiveLoggingEnabled() {
70+
return sensitiveLoggingEnabled;
71+
}
72+
73+
/**
74+
* Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g.
75+
* prompts, responses). If false, will sanitize all sensitive fields.
76+
* @param sensitiveLoggingEnabled sensitiveLoggingEnabled or {@code null} for none
77+
*/
78+
public GoogleCloudDiscoveryengineV1ObservabilityConfig setSensitiveLoggingEnabled(java.lang.Boolean sensitiveLoggingEnabled) {
79+
this.sensitiveLoggingEnabled = sensitiveLoggingEnabled;
80+
return this;
81+
}
82+
83+
@Override
84+
public GoogleCloudDiscoveryengineV1ObservabilityConfig set(String fieldName, Object value) {
85+
return (GoogleCloudDiscoveryengineV1ObservabilityConfig) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public GoogleCloudDiscoveryengineV1ObservabilityConfig clone() {
90+
return (GoogleCloudDiscoveryengineV1ObservabilityConfig) super.clone();
91+
}
92+
93+
}

clients/google-api-services-discoveryengine/v1/2.0.0/com/google/api/services/discoveryengine/v1/model/GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNote
3636
@com.google.api.client.util.Key
3737
private GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig modelArmorConfig;
3838

39+
/**
40+
* Optional. Observability config for NotebookLM.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudDiscoveryengineV1ObservabilityConfig observabilityConfig;
45+
3946
/**
4047
* Optional. Whether to disable the notebook sharing feature for the project. Default to false if
4148
* not specified.
@@ -61,6 +68,23 @@ public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig
6168
return this;
6269
}
6370

71+
/**
72+
* Optional. Observability config for NotebookLM.
73+
* @return value or {@code null} for none
74+
*/
75+
public GoogleCloudDiscoveryengineV1ObservabilityConfig getObservabilityConfig() {
76+
return observabilityConfig;
77+
}
78+
79+
/**
80+
* Optional. Observability config for NotebookLM.
81+
* @param observabilityConfig observabilityConfig or {@code null} for none
82+
*/
83+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig setObservabilityConfig(GoogleCloudDiscoveryengineV1ObservabilityConfig observabilityConfig) {
84+
this.observabilityConfig = observabilityConfig;
85+
return this;
86+
}
87+
6488
/**
6589
* Optional. Whether to disable the notebook sharing feature for the project. Default to false if
6690
* not specified.

clients/google-api-services-discoveryengine/v1/2.0.0/com/google/api/services/discoveryengine/v1/model/GoogleCloudDiscoveryengineV1alphaEngine.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,13 @@ public final class GoogleCloudDiscoveryengineV1alphaEngine extends com.google.ap
167167
@com.google.api.client.util.Key
168168
private java.lang.String name;
169169

170+
/**
171+
* Optional. Observability config for the engine.
172+
* The value may be {@code null}.
173+
*/
174+
@com.google.api.client.util.Key
175+
private GoogleCloudDiscoveryengineV1alphaObservabilityConfig observabilityConfig;
176+
170177
/**
171178
* Output only. Additional information of a recommendation engine. Only applicable if
172179
* solution_type is SOLUTION_TYPE_RECOMMENDATION.
@@ -527,6 +534,23 @@ public GoogleCloudDiscoveryengineV1alphaEngine setName(java.lang.String name) {
527534
return this;
528535
}
529536

537+
/**
538+
* Optional. Observability config for the engine.
539+
* @return value or {@code null} for none
540+
*/
541+
public GoogleCloudDiscoveryengineV1alphaObservabilityConfig getObservabilityConfig() {
542+
return observabilityConfig;
543+
}
544+
545+
/**
546+
* Optional. Observability config for the engine.
547+
* @param observabilityConfig observabilityConfig or {@code null} for none
548+
*/
549+
public GoogleCloudDiscoveryengineV1alphaEngine setObservabilityConfig(GoogleCloudDiscoveryengineV1alphaObservabilityConfig observabilityConfig) {
550+
this.observabilityConfig = observabilityConfig;
551+
return this;
552+
}
553+
530554
/**
531555
* Output only. Additional information of a recommendation engine. Only applicable if
532556
* solution_type is SOLUTION_TYPE_RECOMMENDATION.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.discoveryengine.v1.model;
18+
19+
/**
20+
* Observability config for a resource.
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 Discovery Engine 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 GoogleCloudDiscoveryengineV1alphaObservabilityConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Enables observability. If false, all other flags are ignored.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean observabilityEnabled;
38+
39+
/**
40+
* Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g.
41+
* prompts, responses). If false, will sanitize all sensitive fields.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean sensitiveLoggingEnabled;
46+
47+
/**
48+
* Optional. Enables observability. If false, all other flags are ignored.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Boolean getObservabilityEnabled() {
52+
return observabilityEnabled;
53+
}
54+
55+
/**
56+
* Optional. Enables observability. If false, all other flags are ignored.
57+
* @param observabilityEnabled observabilityEnabled or {@code null} for none
58+
*/
59+
public GoogleCloudDiscoveryengineV1alphaObservabilityConfig setObservabilityEnabled(java.lang.Boolean observabilityEnabled) {
60+
this.observabilityEnabled = observabilityEnabled;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g.
66+
* prompts, responses). If false, will sanitize all sensitive fields.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Boolean getSensitiveLoggingEnabled() {
70+
return sensitiveLoggingEnabled;
71+
}
72+
73+
/**
74+
* Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g.
75+
* prompts, responses). If false, will sanitize all sensitive fields.
76+
* @param sensitiveLoggingEnabled sensitiveLoggingEnabled or {@code null} for none
77+
*/
78+
public GoogleCloudDiscoveryengineV1alphaObservabilityConfig setSensitiveLoggingEnabled(java.lang.Boolean sensitiveLoggingEnabled) {
79+
this.sensitiveLoggingEnabled = sensitiveLoggingEnabled;
80+
return this;
81+
}
82+
83+
@Override
84+
public GoogleCloudDiscoveryengineV1alphaObservabilityConfig set(String fieldName, Object value) {
85+
return (GoogleCloudDiscoveryengineV1alphaObservabilityConfig) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public GoogleCloudDiscoveryengineV1alphaObservabilityConfig clone() {
90+
return (GoogleCloudDiscoveryengineV1alphaObservabilityConfig) super.clone();
91+
}
92+
93+
}

clients/google-api-services-discoveryengine/v1/2.0.0/com/google/api/services/discoveryengine/v1/model/GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfig.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfi
3636
@com.google.api.client.util.Key
3737
private GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig modelArmorConfig;
3838

39+
/**
40+
* Optional. Observability config for NotebookLM.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudDiscoveryengineV1alphaObservabilityConfig observabilityConfig;
45+
3946
/**
4047
* Optional. Whether to disable the notebook sharing feature for the project. Default to false if
4148
* not specified.
@@ -61,6 +68,23 @@ public GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmC
6168
return this;
6269
}
6370

71+
/**
72+
* Optional. Observability config for NotebookLM.
73+
* @return value or {@code null} for none
74+
*/
75+
public GoogleCloudDiscoveryengineV1alphaObservabilityConfig getObservabilityConfig() {
76+
return observabilityConfig;
77+
}
78+
79+
/**
80+
* Optional. Observability config for NotebookLM.
81+
* @param observabilityConfig observabilityConfig or {@code null} for none
82+
*/
83+
public GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfig setObservabilityConfig(GoogleCloudDiscoveryengineV1alphaObservabilityConfig observabilityConfig) {
84+
this.observabilityConfig = observabilityConfig;
85+
return this;
86+
}
87+
6488
/**
6589
* Optional. Whether to disable the notebook sharing feature for the project. Default to false if
6690
* not specified.

clients/google-api-services-discoveryengine/v1/2.0.0/com/google/api/services/discoveryengine/v1/model/GoogleCloudDiscoveryengineV1betaEngine.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,13 @@ public final class GoogleCloudDiscoveryengineV1betaEngine extends com.google.api
167167
@com.google.api.client.util.Key
168168
private java.lang.String name;
169169

170+
/**
171+
* Optional. Observability config for the engine.
172+
* The value may be {@code null}.
173+
*/
174+
@com.google.api.client.util.Key
175+
private GoogleCloudDiscoveryengineV1betaObservabilityConfig observabilityConfig;
176+
170177
/**
171178
* Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH.
172179
* The value may be {@code null}.
@@ -512,6 +519,23 @@ public GoogleCloudDiscoveryengineV1betaEngine setName(java.lang.String name) {
512519
return this;
513520
}
514521

522+
/**
523+
* Optional. Observability config for the engine.
524+
* @return value or {@code null} for none
525+
*/
526+
public GoogleCloudDiscoveryengineV1betaObservabilityConfig getObservabilityConfig() {
527+
return observabilityConfig;
528+
}
529+
530+
/**
531+
* Optional. Observability config for the engine.
532+
* @param observabilityConfig observabilityConfig or {@code null} for none
533+
*/
534+
public GoogleCloudDiscoveryengineV1betaEngine setObservabilityConfig(GoogleCloudDiscoveryengineV1betaObservabilityConfig observabilityConfig) {
535+
this.observabilityConfig = observabilityConfig;
536+
return this;
537+
}
538+
515539
/**
516540
* Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH.
517541
* @return value or {@code null} for none

0 commit comments

Comments
 (0)