Skip to content

Commit 99073e0

Browse files
chore: regenerate discoveryengine client
1 parent 38c1764 commit 99073e0

File tree

124 files changed

+9793
-2355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+9793
-2355
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-rev20260209-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-rev20260209-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 363 additions & 9 deletions
Large diffs are not rendered by default.

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

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,21 @@ public final class GoogleCloudDiscoveryengineV1LicenseConfig extends com.google.
3636
@com.google.api.client.util.Key
3737
private java.lang.Boolean autoRenew;
3838

39+
/**
40+
* Output only. Indication of whether the subscription is terminated earlier than the expiration
41+
* date. This is usually terminated by pipeline once the subscription gets terminated from subsv3.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean earlyTerminated;
46+
47+
/**
48+
* Output only. The date when the subscription is terminated earlier than the expiration date.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private GoogleTypeDate earlyTerminationDate;
53+
3954
/**
4055
* Optional. The planed end date.
4156
* The value may be {@code null}.
@@ -117,6 +132,42 @@ public GoogleCloudDiscoveryengineV1LicenseConfig setAutoRenew(java.lang.Boolean
117132
return this;
118133
}
119134

135+
/**
136+
* Output only. Indication of whether the subscription is terminated earlier than the expiration
137+
* date. This is usually terminated by pipeline once the subscription gets terminated from subsv3.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.Boolean getEarlyTerminated() {
141+
return earlyTerminated;
142+
}
143+
144+
/**
145+
* Output only. Indication of whether the subscription is terminated earlier than the expiration
146+
* date. This is usually terminated by pipeline once the subscription gets terminated from subsv3.
147+
* @param earlyTerminated earlyTerminated or {@code null} for none
148+
*/
149+
public GoogleCloudDiscoveryengineV1LicenseConfig setEarlyTerminated(java.lang.Boolean earlyTerminated) {
150+
this.earlyTerminated = earlyTerminated;
151+
return this;
152+
}
153+
154+
/**
155+
* Output only. The date when the subscription is terminated earlier than the expiration date.
156+
* @return value or {@code null} for none
157+
*/
158+
public GoogleTypeDate getEarlyTerminationDate() {
159+
return earlyTerminationDate;
160+
}
161+
162+
/**
163+
* Output only. The date when the subscription is terminated earlier than the expiration date.
164+
* @param earlyTerminationDate earlyTerminationDate or {@code null} for none
165+
*/
166+
public GoogleCloudDiscoveryengineV1LicenseConfig setEarlyTerminationDate(GoogleTypeDate earlyTerminationDate) {
167+
this.earlyTerminationDate = earlyTerminationDate;
168+
return this;
169+
}
170+
120171
/**
121172
* Optional. The planed end date.
122173
* @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: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,27 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Specifies the data protection policy for NotebookLM.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy dataProtectionPolicy;
38+
3239
/**
3340
* Model Armor configuration to be used for sanitizing user prompts and LLM responses.
3441
* The value may be {@code null}.
3542
*/
3643
@com.google.api.client.util.Key
3744
private GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig modelArmorConfig;
3845

46+
/**
47+
* Optional. Observability config for NotebookLM.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private GoogleCloudDiscoveryengineV1ObservabilityConfig observabilityConfig;
52+
3953
/**
4054
* Optional. Whether to disable the notebook sharing feature for the project. Default to false if
4155
* not specified.
@@ -44,6 +58,23 @@ public final class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNote
4458
@com.google.api.client.util.Key
4559
private java.lang.Boolean optOutNotebookSharing;
4660

61+
/**
62+
* Optional. Specifies the data protection policy for NotebookLM.
63+
* @return value or {@code null} for none
64+
*/
65+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy getDataProtectionPolicy() {
66+
return dataProtectionPolicy;
67+
}
68+
69+
/**
70+
* Optional. Specifies the data protection policy for NotebookLM.
71+
* @param dataProtectionPolicy dataProtectionPolicy or {@code null} for none
72+
*/
73+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig setDataProtectionPolicy(GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy dataProtectionPolicy) {
74+
this.dataProtectionPolicy = dataProtectionPolicy;
75+
return this;
76+
}
77+
4778
/**
4879
* Model Armor configuration to be used for sanitizing user prompts and LLM responses.
4980
* @return value or {@code null} for none
@@ -61,6 +92,23 @@ public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig
6192
return this;
6293
}
6394

95+
/**
96+
* Optional. Observability config for NotebookLM.
97+
* @return value or {@code null} for none
98+
*/
99+
public GoogleCloudDiscoveryengineV1ObservabilityConfig getObservabilityConfig() {
100+
return observabilityConfig;
101+
}
102+
103+
/**
104+
* Optional. Observability config for NotebookLM.
105+
* @param observabilityConfig observabilityConfig or {@code null} for none
106+
*/
107+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig setObservabilityConfig(GoogleCloudDiscoveryengineV1ObservabilityConfig observabilityConfig) {
108+
this.observabilityConfig = observabilityConfig;
109+
return this;
110+
}
111+
64112
/**
65113
* Optional. Whether to disable the notebook sharing feature for the project. Default to false if
66114
* not specified.
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.discoveryengine.v1.model;
18+
19+
/**
20+
* Data protection policy config for NotebookLM.
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 GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The sensitive data protection policy.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicySensitiveDataProtectionPolicy sensitiveDataProtectionPolicy;
38+
39+
/**
40+
* Optional. The sensitive data protection policy.
41+
* @return value or {@code null} for none
42+
*/
43+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicySensitiveDataProtectionPolicy getSensitiveDataProtectionPolicy() {
44+
return sensitiveDataProtectionPolicy;
45+
}
46+
47+
/**
48+
* Optional. The sensitive data protection policy.
49+
* @param sensitiveDataProtectionPolicy sensitiveDataProtectionPolicy or {@code null} for none
50+
*/
51+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy setSensitiveDataProtectionPolicy(GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicySensitiveDataProtectionPolicy sensitiveDataProtectionPolicy) {
52+
this.sensitiveDataProtectionPolicy = sensitiveDataProtectionPolicy;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy set(String fieldName, Object value) {
58+
return (GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy clone() {
63+
return (GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigDataProtectionPolicy) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)