import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Namespace Storage Encryption Key Info resource in Oracle Cloud Infrastructure Log Analytics service. * * This API returns the list of customer owned encryption key info. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceStorageEncryptionKeyInfo = oci.loganalytics.getNamespaceStorageEncryptionKeyInfo({ * namespace: namespaceStorageEncryptionKeyInfoNamespace, * }); * ``` */ export declare function getNamespaceStorageEncryptionKeyInfo(args: GetNamespaceStorageEncryptionKeyInfoArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNamespaceStorageEncryptionKeyInfo. */ export interface GetNamespaceStorageEncryptionKeyInfoArgs { /** * The Logging Analytics namespace used for the request. */ namespace: string; } /** * A collection of values returned by getNamespaceStorageEncryptionKeyInfo. */ export interface GetNamespaceStorageEncryptionKeyInfoResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * This is an array of encryption key info. There are at most 2 items in the list. */ readonly items: outputs.LogAnalytics.GetNamespaceStorageEncryptionKeyInfoItem[]; readonly namespace: string; } /** * This data source provides details about a specific Namespace Storage Encryption Key Info resource in Oracle Cloud Infrastructure Log Analytics service. * * This API returns the list of customer owned encryption key info. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceStorageEncryptionKeyInfo = oci.loganalytics.getNamespaceStorageEncryptionKeyInfo({ * namespace: namespaceStorageEncryptionKeyInfoNamespace, * }); * ``` */ export declare function getNamespaceStorageEncryptionKeyInfoOutput(args: GetNamespaceStorageEncryptionKeyInfoOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNamespaceStorageEncryptionKeyInfo. */ export interface GetNamespaceStorageEncryptionKeyInfoOutputArgs { /** * The Logging Analytics namespace used for the request. */ namespace: pulumi.Input; } //# sourceMappingURL=getNamespaceStorageEncryptionKeyInfo.d.ts.map