Skip to content

Commit 722cf20

Browse files
1 parent ea60e6a commit 722cf20

File tree

5 files changed

+159
-12
lines changed

5 files changed

+159
-12
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-rev20250129-2.0.0</version>
25+
<version>v1-rev20250207-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-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20250207-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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+
* Session carries the debug session id and its creation time.
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 Apigee 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 GoogleCloudApigeeV1ApiDebugSession extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The revision ID of the deployed API proxy.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String apiProxyRevisionId;
38+
39+
/**
40+
* The first transaction creation timestamp in millisecond, recorded by UAP.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String createTime;
45+
46+
/**
47+
* The environment ID of the deployed API proxy.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String environmentId;
52+
53+
/**
54+
* The debug session ID.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String id;
59+
60+
/**
61+
* The revision ID of the deployed API proxy.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getApiProxyRevisionId() {
65+
return apiProxyRevisionId;
66+
}
67+
68+
/**
69+
* The revision ID of the deployed API proxy.
70+
* @param apiProxyRevisionId apiProxyRevisionId or {@code null} for none
71+
*/
72+
public GoogleCloudApigeeV1ApiDebugSession setApiProxyRevisionId(java.lang.String apiProxyRevisionId) {
73+
this.apiProxyRevisionId = apiProxyRevisionId;
74+
return this;
75+
}
76+
77+
/**
78+
* The first transaction creation timestamp in millisecond, recorded by UAP.
79+
* @return value or {@code null} for none
80+
*/
81+
public String getCreateTime() {
82+
return createTime;
83+
}
84+
85+
/**
86+
* The first transaction creation timestamp in millisecond, recorded by UAP.
87+
* @param createTime createTime or {@code null} for none
88+
*/
89+
public GoogleCloudApigeeV1ApiDebugSession setCreateTime(String createTime) {
90+
this.createTime = createTime;
91+
return this;
92+
}
93+
94+
/**
95+
* The environment ID of the deployed API proxy.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getEnvironmentId() {
99+
return environmentId;
100+
}
101+
102+
/**
103+
* The environment ID of the deployed API proxy.
104+
* @param environmentId environmentId or {@code null} for none
105+
*/
106+
public GoogleCloudApigeeV1ApiDebugSession setEnvironmentId(java.lang.String environmentId) {
107+
this.environmentId = environmentId;
108+
return this;
109+
}
110+
111+
/**
112+
* The debug session ID.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.String getId() {
116+
return id;
117+
}
118+
119+
/**
120+
* The debug session ID.
121+
* @param id id or {@code null} for none
122+
*/
123+
public GoogleCloudApigeeV1ApiDebugSession setId(java.lang.String id) {
124+
this.id = id;
125+
return this;
126+
}
127+
128+
@Override
129+
public GoogleCloudApigeeV1ApiDebugSession set(String fieldName, Object value) {
130+
return (GoogleCloudApigeeV1ApiDebugSession) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public GoogleCloudApigeeV1ApiDebugSession clone() {
135+
return (GoogleCloudApigeeV1ApiDebugSession) super.clone();
136+
}
137+
138+
}

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

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,18 @@ public final class GoogleCloudApigeeV1ListApiDebugSessionsResponse extends com.g
3838
private java.lang.String nextPageToken;
3939

4040
/**
41-
* Session info that includes debug session ID and the first transaction creation timestamp.
41+
* Session info that includes debug session ID, environment ID, api proxy revision ID and the
42+
* first transaction creation timestamp.
4243
* The value may be {@code null}.
4344
*/
4445
@com.google.api.client.util.Key
45-
private java.util.List<GoogleCloudApigeeV1Session> sessions;
46+
private java.util.List<GoogleCloudApigeeV1ApiDebugSession> sessions;
47+
48+
static {
49+
// hack to force ProGuard to consider GoogleCloudApigeeV1ApiDebugSession used, since otherwise it would be stripped out
50+
// see https://github.com/google/google-api-java-client/issues/543
51+
com.google.api.client.util.Data.nullOf(GoogleCloudApigeeV1ApiDebugSession.class);
52+
}
4653

4754
/**
4855
* Page token that you can include in a ListApiDebugSessionsRequest to retrieve the next page. If
@@ -64,18 +71,20 @@ public GoogleCloudApigeeV1ListApiDebugSessionsResponse setNextPageToken(java.lan
6471
}
6572

6673
/**
67-
* Session info that includes debug session ID and the first transaction creation timestamp.
74+
* Session info that includes debug session ID, environment ID, api proxy revision ID and the
75+
* first transaction creation timestamp.
6876
* @return value or {@code null} for none
6977
*/
70-
public java.util.List<GoogleCloudApigeeV1Session> getSessions() {
78+
public java.util.List<GoogleCloudApigeeV1ApiDebugSession> getSessions() {
7179
return sessions;
7280
}
7381

7482
/**
75-
* Session info that includes debug session ID and the first transaction creation timestamp.
83+
* Session info that includes debug session ID, environment ID, api proxy revision ID and the
84+
* first transaction creation timestamp.
7685
* @param sessions sessions or {@code null} for none
7786
*/
78-
public GoogleCloudApigeeV1ListApiDebugSessionsResponse setSessions(java.util.List<GoogleCloudApigeeV1Session> sessions) {
87+
public GoogleCloudApigeeV1ListApiDebugSessionsResponse setSessions(java.util.List<GoogleCloudApigeeV1ApiDebugSession> sessions) {
7988
this.sessions = sessions;
8089
return this;
8190
}

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-rev20250129-2.0.0</version>
12-
<name>Apigee API v1-rev20250129-2.0.0</name>
11+
<version>v1-rev20250207-2.0.0</version>
12+
<name>Apigee API v1-rev20250207-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-rev20250129-2.0.0</version>
25+
<version>v1-rev20250207-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-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20250207-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)