Interface: ApiListOptions

    lib/k8s/cluster .ApiListOptions

    Hierarchy

    Properties

    allowWatchBookmarks

    Optional allowWatchBookmarks: string

    allowWatchBookmarks means watch events with type “BOOKMARK” will also be sent.

    Can be ‘true’

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#watch-bookmarks

    Inherited from

    QueryParameters . allowWatchBookmarks

    Defined in

    lib/k8s/apiProxy.ts:148


    cluster

    Optional cluster: string

    The cluster to list objects from. By default uses the current cluster being viewed.

    Defined in

    lib/k8s/cluster.ts:225


    continue

    Optional continue: string

    Continue token for paging through large result sets.

    The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the “next key”.

    This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#retrieving-large-results-sets-in-chunks

    Inherited from

    QueryParameters . continue

    Defined in

    lib/k8s/apiProxy.ts:96


    dryRun

    Optional dryRun: string

    dryRun causes apiserver to simulate the request, and report whether the object would be modified. Can be '' or ‘All’

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#dry-run

    Inherited from

    QueryParameters . dryRun

    Defined in

    lib/k8s/apiProxy.ts:103


    fieldSelector

    Optional fieldSelector: string

    fieldSeletor restricts the list of returned objects by their fields. Defaults to everything.

    see https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors/

    Inherited from

    QueryParameters . fieldSelector

    Defined in

    lib/k8s/apiProxy.ts:109


    labelSelector

    Optional labelSelector: string

    labelSelector restricts the list of returned objects by their labels. Defaults to everything.

    see https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#api

    see https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

    Inherited from

    QueryParameters . labelSelector

    Defined in

    lib/k8s/apiProxy.ts:116


    limit

    Optional limit: string | number

    limit is a maximum number of responses to return for a list call.

    If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available.

    This field is not supported if watch is true.

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#retrieving-large-results-sets-in-chunks

    Inherited from

    QueryParameters . limit

    Defined in

    lib/k8s/apiProxy.ts:133


    namespace

    Optional namespace: string | string[]

    The namespace to list objects from.

    Defined in

    lib/k8s/cluster.ts:223


    pretty

    Optional pretty: string

    If ‘true’, then the output is pretty printed. Can be '' or ‘true’

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#output-options

    Inherited from

    QueryParameters . pretty

    Defined in

    lib/k8s/apiProxy.ts:168


    resourceVersion

    Optional resourceVersion: string

    resourceVersion sets a constraint on what resource versions a request may be served from. Defaults to unset

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#efficient-detection-of-changes

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions

    Inherited from

    QueryParameters . resourceVersion

    Defined in

    lib/k8s/apiProxy.ts:141


    resourceVersionMatch

    Optional resourceVersionMatch: string

    The resource version to match.

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#semantics-for-get-and-list

    Inherited from

    QueryParameters . resourceVersionMatch

    Defined in

    lib/k8s/apiProxy.ts:162


    sendInitialEvents

    Optional sendInitialEvents: string

    sendInitialEvents controls whether the server will send the events for a watch before sending the current list state.

    Can be ‘true’.

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#streaming-lists

    Inherited from

    QueryParameters . sendInitialEvents

    Defined in

    lib/k8s/apiProxy.ts:156


    watch

    Optional watch: string

    watch instead of a list or get, watch for changes to the requested object(s).

    Can be 1.

    see https://kubernetes.io/docs/reference/using-api/api-concepts/#efficient-detection-of-changes

    Inherited from

    QueryParameters . watch

    Defined in

    lib/k8s/apiProxy.ts:175