import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Namespace resource in Oracle Cloud Infrastructure Log Analytics service. * * This API gets the namespace details of a tenancy already onboarded in Log Analytics Application * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespace = oci.loganalytics.getNamespace({ * namespace: namespaceNamespace, * }); * ``` */ export declare function getNamespace(args: GetNamespaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNamespace. */ export interface GetNamespaceArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: string; } /** * A collection of values returned by getNamespace. */ export interface GetNamespaceResult { /** * This is the tenancy ID */ readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * This indicates if old data can be archived for a tenancy */ readonly isArchivingEnabled: boolean; /** * This indicates if the tenancy is data ever ingested */ readonly isDataEverIngested: boolean; readonly isLogsetEnabled: boolean; /** * This indicates if the tenancy is onboarded to Log Analytics */ readonly isOnboarded: boolean; /** * This is the namespace name of a tenancy */ readonly namespace: string; /** * The current state of the compartment. * * `is_logSet_enabled` - This indicates if the tenancy is logSet enable */ readonly state: string; } /** * This data source provides details about a specific Namespace resource in Oracle Cloud Infrastructure Log Analytics service. * * This API gets the namespace details of a tenancy already onboarded in Log Analytics Application * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespace = oci.loganalytics.getNamespace({ * namespace: namespaceNamespace, * }); * ``` */ export declare function getNamespaceOutput(args: GetNamespaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNamespace. */ export interface GetNamespaceOutputArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getNamespace.d.ts.map