import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to get a list of Fastly TSIG Keys. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const example = fastly.getTsigKeys({}); * export const fastlyTsigKeysAll = example.then(example => example.keys); * ``` */ export declare function getTsigKeys(args?: GetTsigKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTsigKeys. */ export interface GetTsigKeysArgs { /** * The total number of TSIG keys returned. */ total?: number; } /** * A collection of values returned by getTsigKeys. */ export interface GetTsigKeysResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of TSIG keys. */ readonly keys: outputs.GetTsigKeysKey[]; /** * The total number of TSIG keys returned. */ readonly total: number; } /** * Use this data source to get a list of Fastly TSIG Keys. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const example = fastly.getTsigKeys({}); * export const fastlyTsigKeysAll = example.then(example => example.keys); * ``` */ export declare function getTsigKeysOutput(args?: GetTsigKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTsigKeys. */ export interface GetTsigKeysOutputArgs { /** * The total number of TSIG keys returned. */ total?: pulumi.Input; } //# sourceMappingURL=getTsigKeys.d.ts.map