import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Log Analytics Unprocessed Data Bucket Management resource in Oracle Cloud Infrastructure Log Analytics service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsUnprocessedDataBucketManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/log_analytics * * This API configures a bucket to store unprocessed payloads. * While processing there could be reasons a payload cannot be processed (mismatched structure, corrupted archive format, etc), * if configured the payload would be uploaded to the bucket for verification. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsUnprocessedDataBucketManagement = new oci.loganalytics.LogAnalyticsUnprocessedDataBucketManagement("test_log_analytics_unprocessed_data_bucket_management", { * bucket: logAnalyticsUnprocessedDataBucketManagementBucket, * namespace: logAnalyticsUnprocessedDataBucketManagementNamespace, * }); * ``` * * ## Import * * Import is not supported for LogAnalyticsUnprocessedDataBucketManagement */ export declare class LogAnalyticsUnprocessedDataBucketManagement extends pulumi.CustomResource { /** * Get an existing LogAnalyticsUnprocessedDataBucketManagement resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: LogAnalyticsUnprocessedDataBucketManagementState, opts?: pulumi.CustomResourceOptions): LogAnalyticsUnprocessedDataBucketManagement; /** * Returns true if the given object is an instance of LogAnalyticsUnprocessedDataBucketManagement. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LogAnalyticsUnprocessedDataBucketManagement; /** * Name of the Object Storage bucket. Bucket name can be obtained by running 'oci os bucket list --namespace-name --compartment-id '. The json output 'name' parameter value contains the bucket name. */ readonly bucket: pulumi.Output; /** * Flag that specifies if this configuration is enabled or not. */ readonly isEnabled: pulumi.Output; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly namespace: pulumi.Output; /** * The time when this record is created. An RFC3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * The latest time when this record is updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: pulumi.Output; /** * Create a LogAnalyticsUnprocessedDataBucketManagement resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LogAnalyticsUnprocessedDataBucketManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LogAnalyticsUnprocessedDataBucketManagement resources. */ export interface LogAnalyticsUnprocessedDataBucketManagementState { /** * Name of the Object Storage bucket. Bucket name can be obtained by running 'oci os bucket list --namespace-name --compartment-id '. The json output 'name' parameter value contains the bucket name. */ bucket?: pulumi.Input; /** * Flag that specifies if this configuration is enabled or not. */ isEnabled?: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ namespace?: pulumi.Input; /** * The time when this record is created. An RFC3339 formatted datetime string. */ timeCreated?: pulumi.Input; /** * The latest time when this record is updated. An RFC3339 formatted datetime string. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a LogAnalyticsUnprocessedDataBucketManagement resource. */ export interface LogAnalyticsUnprocessedDataBucketManagementArgs { /** * Name of the Object Storage bucket. Bucket name can be obtained by running 'oci os bucket list --namespace-name --compartment-id '. The json output 'name' parameter value contains the bucket name. */ bucket: pulumi.Input; /** * Flag that specifies if this configuration is enabled or not. */ isEnabled?: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ namespace: pulumi.Input; } //# sourceMappingURL=logAnalyticsUnprocessedDataBucketManagement.d.ts.map