List Agent Revisions.
List Agent Revisions.
Path Parameters
The ID of the Agent to list revisions for.
Query Parameters
The maximum number of results to return. The service may return fewer than this value. If unspecified, the service will choose a sensible default. The maximum allowed value is 1000.
The number of entries in the result set to skip.
- 200
- default
OK
Schema
- Array [
- ]
revisions object[]
The list of AgentRevisions.
The ID of the Agent this revision belongs to.
The unique ID of this Agent revision.
Whether this is the current Agent revision for this Agent.
The creation time of this Agent revision.
runtime object
Parameters used by the Agent's runtime.
The JSON schema representation of runtime parameters used by this Agent's runtime.
The default parameters passed to the Agent runtime. Must conform to the JSON schema specified by the runtime.
deployment object
Represents the Agent's deployment environment.
external object
An externally-deployed Agent, that can be accessed via a URL.
The Agent's URL endpoint.
managed object
A managed Agent, that is deployed and managed by Fixie.
environmentVariables object
Environment variables passed to the Agent's runtime.
If provided by the client at creation time, the code package used for this AgentRevision. This must be a gzipped tar file containing the Agent's runtime code.
pageInfo object
Information about the page of results returned.
The number of results requested.
The offset specified in the request.
The total number of results available.
{
"revisions": [
{
"agentId": "string",
"revisionId": "string",
"isCurrent": true,
"created": "2024-03-07T22:56:07.907Z",
"runtime": {
"parametersSchema": {}
},
"defaultRuntimeParameters": {},
"deployment": {
"external": {
"url": "string"
},
"managed": {
"environmentVariables": {},
"codePackage": "string"
}
}
}
],
"pageInfo": {
"requestedPageSize": 0,
"requestedOffset": 0,
"totalResultCount": 0
}
}
Default error response
Schema
- Array [
- ]
The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
details object[]
A list of messages that carry the error details. There is a common set of message types for APIs to use.
The type of the serialized message.
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}