Skip to content

Commit 37be0dd

Browse files
chore: regenerate discoveryengine client
1 parent 38c1764 commit 37be0dd

File tree

162 files changed

+16989
-2356
lines changed

Some content is hidden

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

162 files changed

+16989
-2356
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-rev20260215-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-rev20260215-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: 2173 additions & 9 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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+
* Model definition for A2aV1APIKeySecurityScheme.
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 A2aV1APIKeySecurityScheme extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Description of this security scheme.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String description;
38+
39+
/**
40+
* Location of the API key, valid values are "query", "header", or "cookie"
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String location;
45+
46+
/**
47+
* Name of the header, query or cookie parameter to be used.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String name;
52+
53+
/**
54+
* Description of this security scheme.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getDescription() {
58+
return description;
59+
}
60+
61+
/**
62+
* Description of this security scheme.
63+
* @param description description or {@code null} for none
64+
*/
65+
public A2aV1APIKeySecurityScheme setDescription(java.lang.String description) {
66+
this.description = description;
67+
return this;
68+
}
69+
70+
/**
71+
* Location of the API key, valid values are "query", "header", or "cookie"
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getLocation() {
75+
return location;
76+
}
77+
78+
/**
79+
* Location of the API key, valid values are "query", "header", or "cookie"
80+
* @param location location or {@code null} for none
81+
*/
82+
public A2aV1APIKeySecurityScheme setLocation(java.lang.String location) {
83+
this.location = location;
84+
return this;
85+
}
86+
87+
/**
88+
* Name of the header, query or cookie parameter to be used.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getName() {
92+
return name;
93+
}
94+
95+
/**
96+
* Name of the header, query or cookie parameter to be used.
97+
* @param name name or {@code null} for none
98+
*/
99+
public A2aV1APIKeySecurityScheme setName(java.lang.String name) {
100+
this.name = name;
101+
return this;
102+
}
103+
104+
@Override
105+
public A2aV1APIKeySecurityScheme set(String fieldName, Object value) {
106+
return (A2aV1APIKeySecurityScheme) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public A2aV1APIKeySecurityScheme clone() {
111+
return (A2aV1APIKeySecurityScheme) super.clone();
112+
}
113+
114+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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+
* Defines the A2A feature set supported by the agent
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 A2aV1AgentCapabilities extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Extensions supported by this agent.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<A2aV1AgentExtension> extensions;
38+
39+
/**
40+
* If the agent can send push notifications to the clients webhook
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.Boolean pushNotifications;
45+
46+
/**
47+
* If the agent will support streaming responses
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.Boolean streaming;
52+
53+
/**
54+
* Extensions supported by this agent.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.util.List<A2aV1AgentExtension> getExtensions() {
58+
return extensions;
59+
}
60+
61+
/**
62+
* Extensions supported by this agent.
63+
* @param extensions extensions or {@code null} for none
64+
*/
65+
public A2aV1AgentCapabilities setExtensions(java.util.List<A2aV1AgentExtension> extensions) {
66+
this.extensions = extensions;
67+
return this;
68+
}
69+
70+
/**
71+
* If the agent can send push notifications to the clients webhook
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.Boolean getPushNotifications() {
75+
return pushNotifications;
76+
}
77+
78+
/**
79+
* If the agent can send push notifications to the clients webhook
80+
* @param pushNotifications pushNotifications or {@code null} for none
81+
*/
82+
public A2aV1AgentCapabilities setPushNotifications(java.lang.Boolean pushNotifications) {
83+
this.pushNotifications = pushNotifications;
84+
return this;
85+
}
86+
87+
/**
88+
* If the agent will support streaming responses
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.Boolean getStreaming() {
92+
return streaming;
93+
}
94+
95+
/**
96+
* If the agent will support streaming responses
97+
* @param streaming streaming or {@code null} for none
98+
*/
99+
public A2aV1AgentCapabilities setStreaming(java.lang.Boolean streaming) {
100+
this.streaming = streaming;
101+
return this;
102+
}
103+
104+
@Override
105+
public A2aV1AgentCapabilities set(String fieldName, Object value) {
106+
return (A2aV1AgentCapabilities) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public A2aV1AgentCapabilities clone() {
111+
return (A2aV1AgentCapabilities) super.clone();
112+
}
113+
114+
}

0 commit comments

Comments
 (0)