Package version:

Interface ListSnapshotsOptions

Options for listConfigurationSettings that allow for filtering based on keys, labels and other fields. Also provides fields which allows you to selectively choose which fields are populated in the result.

interface ListSnapshotsOptions {
    fields?: (keyof ConfigurationSnapshot)[];
    nameFilter?: string;
    statusFilter?: string[];
}

Hierarchy (view full)

Properties

fields?: (keyof ConfigurationSnapshot)[]

Which fields to return for each ConfigurationSetting

nameFilter?: string

A filter for the name of the returned snapshots.

statusFilter?: string[]

Used to filter returned snapshots by their status property.