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 Data Keys in Oracle Cloud Infrastructure Apm service. * * Lists all Data Keys for the specified APM domain. The caller may filter the list by specifying the 'dataKeyType' * query parameter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataKeys = oci.apm.getDataKeys({ * apmDomainId: testApmDomain.id, * dataKeyType: dataKeyDataKeyType, * }); * ``` */ export declare function getDataKeys(args: GetDataKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataKeys. */ export interface GetDataKeysArgs { /** * The OCID of the APM domain. */ apmDomainId: string; /** * Data key type. */ dataKeyType?: string; filters?: inputs.Apm.GetDataKeysFilter[]; } /** * A collection of values returned by getDataKeys. */ export interface GetDataKeysResult { readonly apmDomainId: string; readonly dataKeyType?: string; /** * The list of data_keys. */ readonly dataKeys: outputs.Apm.GetDataKeysDataKey[]; readonly filters?: outputs.Apm.GetDataKeysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Data Keys in Oracle Cloud Infrastructure Apm service. * * Lists all Data Keys for the specified APM domain. The caller may filter the list by specifying the 'dataKeyType' * query parameter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataKeys = oci.apm.getDataKeys({ * apmDomainId: testApmDomain.id, * dataKeyType: dataKeyDataKeyType, * }); * ``` */ export declare function getDataKeysOutput(args: GetDataKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataKeys. */ export interface GetDataKeysOutputArgs { /** * The OCID of the APM domain. */ apmDomainId: pulumi.Input; /** * Data key type. */ dataKeyType?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDataKeys.d.ts.map