Skip to content

Commit 88cd1a1

Browse files
1 parent 1caceab commit 88cd1a1

File tree

104 files changed

+10974
-186
lines changed

Some content is hidden

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

104 files changed

+10974
-186
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-rev20250924-2.0.0</version>
25+
<version>v1-rev20250929-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-rev20250924-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250929-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: 507 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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+
* The resource level alert config. Used in: * UserLicense * EngineUserData The AlertPolicyConfig in
21+
* data connector is of same usage. No easy way to migrate.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Discovery Engine API. For a detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The enrollment state of each alert.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment> alertEnrollments;
39+
40+
/**
41+
* Immutable. The fully qualified resource name of the AlertPolicy.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String alertPolicy;
46+
47+
/**
48+
* Optional. The contact details for each alert policy.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<GoogleCloudDiscoveryengineV1ContactDetails> contactDetails;
53+
54+
/**
55+
* Optional. The language code used for notifications
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String languageCode;
60+
61+
/**
62+
* Optional. The enrollment state of each alert.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.util.List<GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment> getAlertEnrollments() {
66+
return alertEnrollments;
67+
}
68+
69+
/**
70+
* Optional. The enrollment state of each alert.
71+
* @param alertEnrollments alertEnrollments or {@code null} for none
72+
*/
73+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig setAlertEnrollments(java.util.List<GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment> alertEnrollments) {
74+
this.alertEnrollments = alertEnrollments;
75+
return this;
76+
}
77+
78+
/**
79+
* Immutable. The fully qualified resource name of the AlertPolicy.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.String getAlertPolicy() {
83+
return alertPolicy;
84+
}
85+
86+
/**
87+
* Immutable. The fully qualified resource name of the AlertPolicy.
88+
* @param alertPolicy alertPolicy or {@code null} for none
89+
*/
90+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig setAlertPolicy(java.lang.String alertPolicy) {
91+
this.alertPolicy = alertPolicy;
92+
return this;
93+
}
94+
95+
/**
96+
* Optional. The contact details for each alert policy.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.util.List<GoogleCloudDiscoveryengineV1ContactDetails> getContactDetails() {
100+
return contactDetails;
101+
}
102+
103+
/**
104+
* Optional. The contact details for each alert policy.
105+
* @param contactDetails contactDetails or {@code null} for none
106+
*/
107+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig setContactDetails(java.util.List<GoogleCloudDiscoveryengineV1ContactDetails> contactDetails) {
108+
this.contactDetails = contactDetails;
109+
return this;
110+
}
111+
112+
/**
113+
* Optional. The language code used for notifications
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.String getLanguageCode() {
117+
return languageCode;
118+
}
119+
120+
/**
121+
* Optional. The language code used for notifications
122+
* @param languageCode languageCode or {@code null} for none
123+
*/
124+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig setLanguageCode(java.lang.String languageCode) {
125+
this.languageCode = languageCode;
126+
return this;
127+
}
128+
129+
@Override
130+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig set(String fieldName, Object value) {
131+
return (GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig clone() {
136+
return (GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig) super.clone();
137+
}
138+
139+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
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+
* The alert enrollment status.
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 GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Immutable. The id of an alert.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String alertId;
38+
39+
/**
40+
* Required. The enrollment status of a customer.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String enrollState;
45+
46+
/**
47+
* Optional. Parameters used to instantiate a notification. Used for notifications that are
48+
* triggered when registered. Not stored. * Gemini Business welcome emails. * Gemini Business user
49+
* invitation emails.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.Map<String, java.lang.String> notificationParams;
54+
55+
/**
56+
* Immutable. The id of an alert.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getAlertId() {
60+
return alertId;
61+
}
62+
63+
/**
64+
* Immutable. The id of an alert.
65+
* @param alertId alertId or {@code null} for none
66+
*/
67+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment setAlertId(java.lang.String alertId) {
68+
this.alertId = alertId;
69+
return this;
70+
}
71+
72+
/**
73+
* Required. The enrollment status of a customer.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getEnrollState() {
77+
return enrollState;
78+
}
79+
80+
/**
81+
* Required. The enrollment status of a customer.
82+
* @param enrollState enrollState or {@code null} for none
83+
*/
84+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment setEnrollState(java.lang.String enrollState) {
85+
this.enrollState = enrollState;
86+
return this;
87+
}
88+
89+
/**
90+
* Optional. Parameters used to instantiate a notification. Used for notifications that are
91+
* triggered when registered. Not stored. * Gemini Business welcome emails. * Gemini Business user
92+
* invitation emails.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.Map<String, java.lang.String> getNotificationParams() {
96+
return notificationParams;
97+
}
98+
99+
/**
100+
* Optional. Parameters used to instantiate a notification. Used for notifications that are
101+
* triggered when registered. Not stored. * Gemini Business welcome emails. * Gemini Business user
102+
* invitation emails.
103+
* @param notificationParams notificationParams or {@code null} for none
104+
*/
105+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment setNotificationParams(java.util.Map<String, java.lang.String> notificationParams) {
106+
this.notificationParams = notificationParams;
107+
return this;
108+
}
109+
110+
@Override
111+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment set(String fieldName, Object value) {
112+
return (GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment) super.set(fieldName, value);
113+
}
114+
115+
@Override
116+
public GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment clone() {
117+
return (GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment) super.clone();
118+
}
119+
120+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
* The contact info stored in resource level. If both project level and resource level is populated,
21+
* the resource level contact info will override the project level contact info.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Discovery Engine API. For a detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudDiscoveryengineV1ContactDetails extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The email address of the contact.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String emailAddress;
39+
40+
/**
41+
* Optional. The email address of the contact.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getEmailAddress() {
45+
return emailAddress;
46+
}
47+
48+
/**
49+
* Optional. The email address of the contact.
50+
* @param emailAddress emailAddress or {@code null} for none
51+
*/
52+
public GoogleCloudDiscoveryengineV1ContactDetails setEmailAddress(java.lang.String emailAddress) {
53+
this.emailAddress = emailAddress;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleCloudDiscoveryengineV1ContactDetails set(String fieldName, Object value) {
59+
return (GoogleCloudDiscoveryengineV1ContactDetails) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleCloudDiscoveryengineV1ContactDetails clone() {
64+
return (GoogleCloudDiscoveryengineV1ContactDetails) super.clone();
65+
}
66+
67+
}

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ public final class GoogleCloudDiscoveryengineV1DataStore extends com.google.api.
6262
private GoogleCloudDiscoveryengineV1CmekConfig cmekConfig;
6363

6464
/**
65-
* Optional. Configuration for configurable billing approach. See go/vais-repricing-billing-dd for
66-
* more details, only apply to non-Spark UCS Search.
65+
* Optional. Configuration for configurable billing approach. See
6766
* The value may be {@code null}.
6867
*/
6968
@com.google.api.client.util.Key
@@ -268,17 +267,15 @@ public GoogleCloudDiscoveryengineV1DataStore setCmekConfig(GoogleCloudDiscoverye
268267
}
269268

270269
/**
271-
* Optional. Configuration for configurable billing approach. See go/vais-repricing-billing-dd for
272-
* more details, only apply to non-Spark UCS Search.
270+
* Optional. Configuration for configurable billing approach. See
273271
* @return value or {@code null} for none
274272
*/
275273
public java.lang.String getConfigurableBillingApproach() {
276274
return configurableBillingApproach;
277275
}
278276

279277
/**
280-
* Optional. Configuration for configurable billing approach. See go/vais-repricing-billing-dd for
281-
* more details, only apply to non-Spark UCS Search.
278+
* Optional. Configuration for configurable billing approach. See
282279
* @param configurableBillingApproach configurableBillingApproach or {@code null} for none
283280
*/
284281
public GoogleCloudDiscoveryengineV1DataStore setConfigurableBillingApproach(java.lang.String configurableBillingApproach) {

0 commit comments

Comments
 (0)