Loading...
Skip to main content

List Agent Revisions.

List Agent Revisions.

Path Parameters
    agentId string required

    The ID of the Agent to list revisions for.

Query Parameters
    limit int32

    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.

    offset int32

    The number of entries in the result set to skip.

Responses

OK


Schema
    revisions object[]

    The list of AgentRevisions.

  • Array [
  • agentId string

    The ID of the Agent this revision belongs to.

    revisionId string

    The unique ID of this Agent revision.

    isCurrent boolean

    Whether this is the current Agent revision for this Agent.

    created date-time

    The creation time of this Agent revision.

    runtime object

    Parameters used by the Agent's runtime.

    parametersSchema object

    The JSON schema representation of runtime parameters used by this Agent's runtime.

    defaultRuntimeParameters object

    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.

    url string required

    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.

    property name* string
    codePackage bytes

    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.

    requestedPageSize int32

    The number of results requested.

    requestedOffset int32

    The offset specified in the request.

    totalResultCount int32

    The total number of results available.

Loading...