Skip to content

Commit 183ee64

Browse files
chore: regenerate travelimpactmodel client
1 parent 5ec85f7 commit 183ee64

File tree

5 files changed

+168
-6
lines changed

5 files changed

+168
-6
lines changed

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

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.travelimpactmodel.v1.model;
18+
19+
/**
20+
* Profile describing the data handling characteristics of an MCP tool. When used within the
21+
* McpTool.meta field, this message should be packed into a google.protobuf.Any and associated with
22+
* the key: "google.com/tool.profiles/data_handling"
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Travel Impact Model API. For a detailed explanation
26+
* see:
27+
* <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>
28+
* </p>
29+
*
30+
* @author Google, Inc.
31+
*/
32+
@SuppressWarnings("javadoc")
33+
public final class McpToolDataHandlingProfile extends com.google.api.client.json.GenericJson {
34+
35+
/**
36+
* // The data access level of the tool's inputs.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String inputDataAccessLevel;
41+
42+
/**
43+
* The data access level of the tool's outputs.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String outputDataAccessLevel;
48+
49+
/**
50+
* // The data access level of the tool's inputs.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getInputDataAccessLevel() {
54+
return inputDataAccessLevel;
55+
}
56+
57+
/**
58+
* // The data access level of the tool's inputs.
59+
* @param inputDataAccessLevel inputDataAccessLevel or {@code null} for none
60+
*/
61+
public McpToolDataHandlingProfile setInputDataAccessLevel(java.lang.String inputDataAccessLevel) {
62+
this.inputDataAccessLevel = inputDataAccessLevel;
63+
return this;
64+
}
65+
66+
/**
67+
* The data access level of the tool's outputs.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getOutputDataAccessLevel() {
71+
return outputDataAccessLevel;
72+
}
73+
74+
/**
75+
* The data access level of the tool's outputs.
76+
* @param outputDataAccessLevel outputDataAccessLevel or {@code null} for none
77+
*/
78+
public McpToolDataHandlingProfile setOutputDataAccessLevel(java.lang.String outputDataAccessLevel) {
79+
this.outputDataAccessLevel = outputDataAccessLevel;
80+
return this;
81+
}
82+
83+
@Override
84+
public McpToolDataHandlingProfile set(String fieldName, Object value) {
85+
return (McpToolDataHandlingProfile) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public McpToolDataHandlingProfile clone() {
90+
return (McpToolDataHandlingProfile) super.clone();
91+
}
92+
93+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.travelimpactmodel.v1.model;
18+
19+
/**
20+
* Profile describing the lifecycle stage of an MCP tool. When used within the McpTool.meta field,
21+
* this message should be packed into a google.protobuf.Any and associated with the key:
22+
* "google.com/tool.profiles/lifecycle"
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Travel Impact Model API. For a detailed explanation
26+
* see:
27+
* <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>
28+
* </p>
29+
*
30+
* @author Google, Inc.
31+
*/
32+
@SuppressWarnings("javadoc")
33+
public final class McpToolLifecycleProfile extends com.google.api.client.json.GenericJson {
34+
35+
/**
36+
* Output only. The current launch state of the MCP tool.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String launchState;
41+
42+
/**
43+
* Output only. The current launch state of the MCP tool.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getLaunchState() {
47+
return launchState;
48+
}
49+
50+
/**
51+
* Output only. The current launch state of the MCP tool.
52+
* @param launchState launchState or {@code null} for none
53+
*/
54+
public McpToolLifecycleProfile setLaunchState(java.lang.String launchState) {
55+
this.launchState = launchState;
56+
return this;
57+
}
58+
59+
@Override
60+
public McpToolLifecycleProfile set(String fieldName, Object value) {
61+
return (McpToolLifecycleProfile) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public McpToolLifecycleProfile clone() {
66+
return (McpToolLifecycleProfile) super.clone();
67+
}
68+
69+
}

clients/google-api-services-travelimpactmodel/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-travelimpactmodel</artifactId>
11-
<version>v1-rev20251102-2.0.0</version>
12-
<name>Travel Impact Model API v1-rev20251102-2.0.0</name>
11+
<version>v1-rev20260127-2.0.0</version>
12+
<name>Travel Impact Model API v1-rev20260127-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)