import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Tsig Keys in Oracle Cloud Infrastructure DNS service. * * Gets a list of all TSIG keys in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTsigKeys = oci.dns.getTsigKeys({ * compartmentId: compartmentId, * id: tsigKeyId, * name: tsigKeyName, * state: tsigKeyState, * }); * ``` */ export declare function getTsigKeys(args: GetTsigKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTsigKeys. */ export interface GetTsigKeysArgs { /** * The OCID of the compartment the resource belongs to. */ compartmentId: string; filters?: inputs.Dns.GetTsigKeysFilter[]; /** * The OCID of a resource. */ id?: string; /** * The name of a resource. */ name?: string; /** * The state of a resource. */ state?: string; } /** * A collection of values returned by getTsigKeys. */ export interface GetTsigKeysResult { /** * The OCID of the compartment containing the TSIG key. */ readonly compartmentId: string; readonly filters?: outputs.Dns.GetTsigKeysFilter[]; /** * The OCID of the resource. */ readonly id?: string; /** * A globally unique domain name identifying the key for a given pair of hosts. */ readonly name?: string; /** * The current state of the resource. */ readonly state?: string; /** * The list of tsig_keys. */ readonly tsigKeys: outputs.Dns.GetTsigKeysTsigKey[]; } /** * This data source provides the list of Tsig Keys in Oracle Cloud Infrastructure DNS service. * * Gets a list of all TSIG keys in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTsigKeys = oci.dns.getTsigKeys({ * compartmentId: compartmentId, * id: tsigKeyId, * name: tsigKeyName, * state: tsigKeyState, * }); * ``` */ export declare function getTsigKeysOutput(args: GetTsigKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTsigKeys. */ export interface GetTsigKeysOutputArgs { /** * The OCID of the compartment the resource belongs to. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The OCID of a resource. */ id?: pulumi.Input; /** * The name of a resource. */ name?: pulumi.Input; /** * The state of a resource. */ state?: pulumi.Input; } //# sourceMappingURL=getTsigKeys.d.ts.map