Skip to content

Commit efd31b0

Browse files
1 parent 8b9709d commit efd31b0

File tree

58 files changed

+258544
-165062
lines changed

Some content is hidden

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

58 files changed

+258544
-165062
lines changed

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

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/Aiplatform.java

Lines changed: 113278 additions & 74362 deletions
Large diffs are not rendered by default.

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1EvaluationInstance.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleCloudAiplatformV1EvaluationInstance extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. Data used for agent evaluation.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleCloudAiplatformV1EvaluationInstanceAgentData agentData;
39+
3340
/**
3441
* Optional. Other data used to populate placeholders based on their key.
3542
* The value may be {@code null}.
@@ -67,6 +74,23 @@ public final class GoogleCloudAiplatformV1EvaluationInstance extends com.google.
6774
@com.google.api.client.util.Key
6875
private java.util.Map<String, GoogleCloudAiplatformV1RubricGroup> rubricGroups;
6976

77+
/**
78+
* Optional. Data used for agent evaluation.
79+
* @return value or {@code null} for none
80+
*/
81+
public GoogleCloudAiplatformV1EvaluationInstanceAgentData getAgentData() {
82+
return agentData;
83+
}
84+
85+
/**
86+
* Optional. Data used for agent evaluation.
87+
* @param agentData agentData or {@code null} for none
88+
*/
89+
public GoogleCloudAiplatformV1EvaluationInstance setAgentData(GoogleCloudAiplatformV1EvaluationInstanceAgentData agentData) {
90+
this.agentData = agentData;
91+
return this;
92+
}
93+
7094
/**
7195
* Optional. Other data used to populate placeholders based on their key.
7296
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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.aiplatform.v1.model;
18+
19+
/**
20+
* Configuration for an 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 Vertex AI 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 GoogleCloudAiplatformV1EvaluationInstanceAgentConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. A field containing instructions from the developer for the agent.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudAiplatformV1EvaluationInstanceInstanceData developerInstruction;
38+
39+
/**
40+
* List of tools.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools tools;
45+
46+
/**
47+
* A JSON string containing a list of tools available to an agent with info such as name,
48+
* description, parameters and required parameters.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String toolsText;
53+
54+
/**
55+
* Optional. A field containing instructions from the developer for the agent.
56+
* @return value or {@code null} for none
57+
*/
58+
public GoogleCloudAiplatformV1EvaluationInstanceInstanceData getDeveloperInstruction() {
59+
return developerInstruction;
60+
}
61+
62+
/**
63+
* Optional. A field containing instructions from the developer for the agent.
64+
* @param developerInstruction developerInstruction or {@code null} for none
65+
*/
66+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfig setDeveloperInstruction(GoogleCloudAiplatformV1EvaluationInstanceInstanceData developerInstruction) {
67+
this.developerInstruction = developerInstruction;
68+
return this;
69+
}
70+
71+
/**
72+
* List of tools.
73+
* @return value or {@code null} for none
74+
*/
75+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools getTools() {
76+
return tools;
77+
}
78+
79+
/**
80+
* List of tools.
81+
* @param tools tools or {@code null} for none
82+
*/
83+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfig setTools(GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools tools) {
84+
this.tools = tools;
85+
return this;
86+
}
87+
88+
/**
89+
* A JSON string containing a list of tools available to an agent with info such as name,
90+
* description, parameters and required parameters.
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.String getToolsText() {
94+
return toolsText;
95+
}
96+
97+
/**
98+
* A JSON string containing a list of tools available to an agent with info such as name,
99+
* description, parameters and required parameters.
100+
* @param toolsText toolsText or {@code null} for none
101+
*/
102+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfig setToolsText(java.lang.String toolsText) {
103+
this.toolsText = toolsText;
104+
return this;
105+
}
106+
107+
@Override
108+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfig set(String fieldName, Object value) {
109+
return (GoogleCloudAiplatformV1EvaluationInstanceAgentConfig) super.set(fieldName, value);
110+
}
111+
112+
@Override
113+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfig clone() {
114+
return (GoogleCloudAiplatformV1EvaluationInstanceAgentConfig) super.clone();
115+
}
116+
117+
}
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.aiplatform.v1.model;
18+
19+
/**
20+
* Represents a list of tools for an 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 Vertex AI 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 GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. List of tools: each tool can have multiple function declarations.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<GoogleCloudAiplatformV1Tool> tool;
38+
39+
/**
40+
* Optional. List of tools: each tool can have multiple function declarations.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<GoogleCloudAiplatformV1Tool> getTool() {
44+
return tool;
45+
}
46+
47+
/**
48+
* Optional. List of tools: each tool can have multiple function declarations.
49+
* @param tool tool or {@code null} for none
50+
*/
51+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools setTool(java.util.List<GoogleCloudAiplatformV1Tool> tool) {
52+
this.tool = tool;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools set(String fieldName, Object value) {
58+
return (GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools clone() {
63+
return (GoogleCloudAiplatformV1EvaluationInstanceAgentConfigTools) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)