import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Log Analytics Unprocessed Data Bucket resource in Oracle Cloud Infrastructure Log Analytics service. * * This API retrieves details of the configured bucket that stores unprocessed payloads. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsUnprocessedDataBucket = oci.loganalytics.getLogAnalyticsUnprocessedDataBucket({ * namespace: logAnalyticsUnprocessedDataBucketNamespace, * }); * ``` */ export declare function getLogAnalyticsUnprocessedDataBucket(args: GetLogAnalyticsUnprocessedDataBucketArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogAnalyticsUnprocessedDataBucket. */ export interface GetLogAnalyticsUnprocessedDataBucketArgs { /** * 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 getLogAnalyticsUnprocessedDataBucket. */ export interface GetLogAnalyticsUnprocessedDataBucketResult { /** * Name of the Object Storage bucket. */ readonly bucket: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Flag that specifies if this configuration is enabled or not. */ readonly isEnabled: boolean; /** * Object Storage namespace. */ readonly namespace: string; /** * The time when this record is created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The latest time when this record is updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Log Analytics Unprocessed Data Bucket resource in Oracle Cloud Infrastructure Log Analytics service. * * This API retrieves details of the configured bucket that stores unprocessed payloads. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsUnprocessedDataBucket = oci.loganalytics.getLogAnalyticsUnprocessedDataBucket({ * namespace: logAnalyticsUnprocessedDataBucketNamespace, * }); * ``` */ export declare function getLogAnalyticsUnprocessedDataBucketOutput(args: GetLogAnalyticsUnprocessedDataBucketOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogAnalyticsUnprocessedDataBucket. */ export interface GetLogAnalyticsUnprocessedDataBucketOutputArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getLogAnalyticsUnprocessedDataBucket.d.ts.map