Skip to content

Commit 5de1784

Browse files
chore: regenerate apigee client
1 parent 38c1764 commit 5de1784

File tree

8 files changed

+242
-11
lines changed

8 files changed

+242
-11
lines changed

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

clients/google-api-services-apigee/v1/2.0.0/com/google/api/services/apigee/v1/Apigee.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Apigee extends com.google.api.client.googleapis.services.json.Abstr
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -64108,8 +64108,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
6410864108
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
6410964109
* <li>Android: {@code newCompatibleTransport} from
6411064110
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
64111-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
64112-
* </li>
64111+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
6411364112
* </ul>
6411464113
* @param jsonFactory JSON factory, which may be:
6411564114
* <ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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.apigee.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 Apigee API. For a detailed explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class ApiservingMcpMcpToolDataHandlingProfile extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* // The data access level of the tool's inputs.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String inputDataAccessLevel;
40+
41+
/**
42+
* The data access level of the tool's outputs.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String outputDataAccessLevel;
47+
48+
/**
49+
* // The data access level of the tool's inputs.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getInputDataAccessLevel() {
53+
return inputDataAccessLevel;
54+
}
55+
56+
/**
57+
* // The data access level of the tool's inputs.
58+
* @param inputDataAccessLevel inputDataAccessLevel or {@code null} for none
59+
*/
60+
public ApiservingMcpMcpToolDataHandlingProfile setInputDataAccessLevel(java.lang.String inputDataAccessLevel) {
61+
this.inputDataAccessLevel = inputDataAccessLevel;
62+
return this;
63+
}
64+
65+
/**
66+
* The data access level of the tool's outputs.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getOutputDataAccessLevel() {
70+
return outputDataAccessLevel;
71+
}
72+
73+
/**
74+
* The data access level of the tool's outputs.
75+
* @param outputDataAccessLevel outputDataAccessLevel or {@code null} for none
76+
*/
77+
public ApiservingMcpMcpToolDataHandlingProfile setOutputDataAccessLevel(java.lang.String outputDataAccessLevel) {
78+
this.outputDataAccessLevel = outputDataAccessLevel;
79+
return this;
80+
}
81+
82+
@Override
83+
public ApiservingMcpMcpToolDataHandlingProfile set(String fieldName, Object value) {
84+
return (ApiservingMcpMcpToolDataHandlingProfile) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public ApiservingMcpMcpToolDataHandlingProfile clone() {
89+
return (ApiservingMcpMcpToolDataHandlingProfile) super.clone();
90+
}
91+
92+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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.apigee.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 Apigee API. For a detailed explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class ApiservingMcpMcpToolLifecycleProfile extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. The current launch state of the MCP tool.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String launchState;
40+
41+
/**
42+
* Output only. The current launch state of the MCP tool.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getLaunchState() {
46+
return launchState;
47+
}
48+
49+
/**
50+
* Output only. The current launch state of the MCP tool.
51+
* @param launchState launchState or {@code null} for none
52+
*/
53+
public ApiservingMcpMcpToolLifecycleProfile setLaunchState(java.lang.String launchState) {
54+
this.launchState = launchState;
55+
return this;
56+
}
57+
58+
@Override
59+
public ApiservingMcpMcpToolLifecycleProfile set(String fieldName, Object value) {
60+
return (ApiservingMcpMcpToolLifecycleProfile) super.set(fieldName, value);
61+
}
62+
63+
@Override
64+
public ApiservingMcpMcpToolLifecycleProfile clone() {
65+
return (ApiservingMcpMcpToolLifecycleProfile) super.clone();
66+
}
67+
68+
}

clients/google-api-services-apigee/v1/2.0.0/com/google/api/services/apigee/v1/model/GoogleCloudApigeeV1RuntimeTraceConfig.java

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.apigee.v1.model;
1818

1919
/**
20-
* NEXT ID: 8 RuntimeTraceConfig defines the configurations for distributed trace in an environment.
20+
* NEXT ID: 9 RuntimeTraceConfig defines the configurations for distributed trace in an environment.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Apigee API. For a detailed explanation see:
@@ -53,6 +53,17 @@ public final class GoogleCloudApigeeV1RuntimeTraceConfig extends com.google.api.
5353
@com.google.api.client.util.Key
5454
private java.lang.String name;
5555

56+
/**
57+
* If `true`, the runtime uses OpenTelemetry Protocol (OTLP) to send trace data. Configuration
58+
* Requirements (if `open_telemetry_protocol_enabled` is `true`): - Allowed `Exporter`s:
59+
* `CLOUD_TRACE` or `OPEN_TELEMETRY_COLLECTOR`. - If `Exporter` is `OPEN_TELEMETRY_COLLECTOR`: -
60+
* `endpoint` refers to a valid OTLP collector URL. - If `Exporter` is `CLOUD_TRACE`: - `endpoint`
61+
* refers to a valid project ID
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private java.lang.Boolean openTelemetryProtocolEnabled;
66+
5667
/**
5768
* List of trace configuration overrides for spicific API proxies.
5869
* The value may be {@code null}.
@@ -139,6 +150,31 @@ public GoogleCloudApigeeV1RuntimeTraceConfig setName(java.lang.String name) {
139150
return this;
140151
}
141152

153+
/**
154+
* If `true`, the runtime uses OpenTelemetry Protocol (OTLP) to send trace data. Configuration
155+
* Requirements (if `open_telemetry_protocol_enabled` is `true`): - Allowed `Exporter`s:
156+
* `CLOUD_TRACE` or `OPEN_TELEMETRY_COLLECTOR`. - If `Exporter` is `OPEN_TELEMETRY_COLLECTOR`: -
157+
* `endpoint` refers to a valid OTLP collector URL. - If `Exporter` is `CLOUD_TRACE`: - `endpoint`
158+
* refers to a valid project ID
159+
* @return value or {@code null} for none
160+
*/
161+
public java.lang.Boolean getOpenTelemetryProtocolEnabled() {
162+
return openTelemetryProtocolEnabled;
163+
}
164+
165+
/**
166+
* If `true`, the runtime uses OpenTelemetry Protocol (OTLP) to send trace data. Configuration
167+
* Requirements (if `open_telemetry_protocol_enabled` is `true`): - Allowed `Exporter`s:
168+
* `CLOUD_TRACE` or `OPEN_TELEMETRY_COLLECTOR`. - If `Exporter` is `OPEN_TELEMETRY_COLLECTOR`: -
169+
* `endpoint` refers to a valid OTLP collector URL. - If `Exporter` is `CLOUD_TRACE`: - `endpoint`
170+
* refers to a valid project ID
171+
* @param openTelemetryProtocolEnabled openTelemetryProtocolEnabled or {@code null} for none
172+
*/
173+
public GoogleCloudApigeeV1RuntimeTraceConfig setOpenTelemetryProtocolEnabled(java.lang.Boolean openTelemetryProtocolEnabled) {
174+
this.openTelemetryProtocolEnabled = openTelemetryProtocolEnabled;
175+
return this;
176+
}
177+
142178
/**
143179
* List of trace configuration overrides for spicific API proxies.
144180
* @return value or {@code null} for none

clients/google-api-services-apigee/v1/2.0.0/com/google/api/services/apigee/v1/model/GoogleCloudApigeeV1RuntimeTraceConfigOverride.java

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.apigee.v1.model;
1818

1919
/**
20-
* NEXT ID: 7 Trace configuration override for a specific API proxy in an environment.
20+
* NEXT ID: 8 Trace configuration override for a specific API proxy in an environment.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Apigee API. For a detailed explanation see:
@@ -45,6 +45,17 @@ public final class GoogleCloudApigeeV1RuntimeTraceConfigOverride extends com.goo
4545
@com.google.api.client.util.Key
4646
private java.lang.String name;
4747

48+
/**
49+
* If `true`, the runtime uses OpenTelemetry Protocol (OTLP) to send trace data. Configuration
50+
* Requirements (if `open_telemetry_protocol_enabled` is `true`): - Allowed `Exporter`s:
51+
* `CLOUD_TRACE` or `OPEN_TELEMETRY_COLLECTOR`. - If `Exporter` is `OPEN_TELEMETRY_COLLECTOR`: -
52+
* `endpoint` refers to a valid OTLP collector URL. - If `Exporter` is `CLOUD_TRACE`: - `endpoint`
53+
* refers to a valid project ID
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.lang.Boolean openTelemetryProtocolEnabled;
58+
4859
/**
4960
* The timestamp that the revision was created or updated.
5061
* The value may be {@code null}.
@@ -113,6 +124,31 @@ public GoogleCloudApigeeV1RuntimeTraceConfigOverride setName(java.lang.String na
113124
return this;
114125
}
115126

127+
/**
128+
* If `true`, the runtime uses OpenTelemetry Protocol (OTLP) to send trace data. Configuration
129+
* Requirements (if `open_telemetry_protocol_enabled` is `true`): - Allowed `Exporter`s:
130+
* `CLOUD_TRACE` or `OPEN_TELEMETRY_COLLECTOR`. - If `Exporter` is `OPEN_TELEMETRY_COLLECTOR`: -
131+
* `endpoint` refers to a valid OTLP collector URL. - If `Exporter` is `CLOUD_TRACE`: - `endpoint`
132+
* refers to a valid project ID
133+
* @return value or {@code null} for none
134+
*/
135+
public java.lang.Boolean getOpenTelemetryProtocolEnabled() {
136+
return openTelemetryProtocolEnabled;
137+
}
138+
139+
/**
140+
* If `true`, the runtime uses OpenTelemetry Protocol (OTLP) to send trace data. Configuration
141+
* Requirements (if `open_telemetry_protocol_enabled` is `true`): - Allowed `Exporter`s:
142+
* `CLOUD_TRACE` or `OPEN_TELEMETRY_COLLECTOR`. - If `Exporter` is `OPEN_TELEMETRY_COLLECTOR`: -
143+
* `endpoint` refers to a valid OTLP collector URL. - If `Exporter` is `CLOUD_TRACE`: - `endpoint`
144+
* refers to a valid project ID
145+
* @param openTelemetryProtocolEnabled openTelemetryProtocolEnabled or {@code null} for none
146+
*/
147+
public GoogleCloudApigeeV1RuntimeTraceConfigOverride setOpenTelemetryProtocolEnabled(java.lang.Boolean openTelemetryProtocolEnabled) {
148+
this.openTelemetryProtocolEnabled = openTelemetryProtocolEnabled;
149+
return this;
150+
}
151+
116152
/**
117153
* The timestamp that the revision was created or updated.
118154
* @return value or {@code null} for none

clients/google-api-services-apigee/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-apigee</artifactId>
11-
<version>v1-rev20260106-2.0.0</version>
12-
<name>Apigee API v1-rev20260106-2.0.0</name>
11+
<version>v1-rev20260130-2.0.0</version>
12+
<name>Apigee API v1-rev20260130-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)