Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac3965d

Browse files
committedFeb 18, 2025
feat(apigee): update the api
#### apigee:v1 The following keys were added: - schemas.GoogleCloudApigeeV1ApiDebugSession (Total Keys: 6) The following keys were changed: - schemas.GoogleCloudApigeeV1ListApiDebugSessionsResponse.properties.sessions.items.$ref (Total Keys: 1)
1 parent a17243a commit ac3965d

File tree

2 files changed

+31
-5
lines changed

2 files changed

+31
-5
lines changed
 

‎docs/dyn/apigee_v1.organizations.apis.debugsessions.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,12 @@ <h3>Method Details</h3>
107107

108108
{ # Response for ListApiDebugSessions.
109109
&quot;nextPageToken&quot;: &quot;A String&quot;, # Page token that you can include in a ListApiDebugSessionsRequest to retrieve the next page. If omitted, no subsequent pages exist.
110-
&quot;sessions&quot;: [ # Session info that includes debug session ID and the first transaction creation timestamp.
110+
&quot;sessions&quot;: [ # Session info that includes debug session ID, environment ID, api proxy revision ID and the first transaction creation timestamp.
111111
{ # Session carries the debug session id and its creation time.
112+
&quot;apiProxyRevisionId&quot;: &quot;A String&quot;, # The revision ID of the deployed API proxy.
113+
&quot;createTime&quot;: &quot;A String&quot;, # The first transaction creation timestamp in millisecond, recorded by UAP.
114+
&quot;environmentId&quot;: &quot;A String&quot;, # The environment ID of the deployed API proxy.
112115
&quot;id&quot;: &quot;A String&quot;, # The debug session ID.
113-
&quot;timestampMs&quot;: &quot;A String&quot;, # The first transaction creation timestamp in millisecond, recorded by UAP.
114116
},
115117
],
116118
}</pre>

‎googleapiclient/discovery_cache/documents/apigee.v1.json

+27-3
Original file line numberDiff line numberDiff line change
@@ -10425,7 +10425,7 @@
1042510425
}
1042610426
}
1042710427
},
10428-
"revision": "20250129",
10428+
"revision": "20250207",
1042910429
"rootUrl": "https://apigee.googleapis.com/",
1043010430
"schemas": {
1043110431
"EdgeConfigstoreBundleBadBundle": {
@@ -10779,6 +10779,30 @@
1077910779
},
1078010780
"type": "object"
1078110781
},
10782+
"GoogleCloudApigeeV1ApiDebugSession": {
10783+
"description": "Session carries the debug session id and its creation time.",
10784+
"id": "GoogleCloudApigeeV1ApiDebugSession",
10785+
"properties": {
10786+
"apiProxyRevisionId": {
10787+
"description": "The revision ID of the deployed API proxy.",
10788+
"type": "string"
10789+
},
10790+
"createTime": {
10791+
"description": "The first transaction creation timestamp in millisecond, recorded by UAP.",
10792+
"format": "google-datetime",
10793+
"type": "string"
10794+
},
10795+
"environmentId": {
10796+
"description": "The environment ID of the deployed API proxy.",
10797+
"type": "string"
10798+
},
10799+
"id": {
10800+
"description": "The debug session ID.",
10801+
"type": "string"
10802+
}
10803+
},
10804+
"type": "object"
10805+
},
1078210806
"GoogleCloudApigeeV1ApiDoc": {
1078310807
"description": "`ApiDoc` represents an API catalog item. Catalog items are used in two ways in a portal: - Users can browse and interact with a visual representation of the API documentation - The `api_product_name` field provides a link to a backing [API product] (/apigee/docs/reference/apis/apigee/rest/v1/organizations.apiproducts). Through this link, portal users can create and manage developer apps linked to one or more API products.",
1078410808
"id": "GoogleCloudApigeeV1ApiDoc",
@@ -14526,9 +14550,9 @@
1452614550
"type": "string"
1452714551
},
1452814552
"sessions": {
14529-
"description": "Session info that includes debug session ID and the first transaction creation timestamp.",
14553+
"description": "Session info that includes debug session ID, environment ID, api proxy revision ID and the first transaction creation timestamp.",
1453014554
"items": {
14531-
"$ref": "GoogleCloudApigeeV1Session"
14555+
"$ref": "GoogleCloudApigeeV1ApiDebugSession"
1453214556
},
1453314557
"type": "array"
1453414558
}

0 commit comments

Comments
 (0)
Please sign in to comment.