UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

112 lines 5.8 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.BillingAccountBucketConfig = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Manages a billing account level logging bucket config. For more information see * [the official logging documentation](https://cloud.google.com/logging/docs/) and * [Storing Logs](https://cloud.google.com/logging/docs/storage). * * > **Note:** Logging buckets are automatically created for a given folder, project, organization, billingAccount and cannot be deleted. Creating a resource of this type will acquire and update the resource that already exists at the desired location. These buckets cannot be removed so deleting this resource will remove the bucket config from your state but will leave the logging bucket unchanged. The buckets that are currently automatically created are "_Default" and "_Required". * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const _default = gcp.organizations.getBillingAccount({ * billingAccount: "00AA00-000AAA-00AA0A", * }); * const basic = new gcp.logging.BillingAccountBucketConfig("basic", { * billingAccount: _default.then(_default => _default.billingAccount), * location: "global", * retentionDays: 30, * bucketId: "_Default", * }); * ``` * * Create logging bucket with index configs * * ## Import * * This resource can be imported using the following format: * * * `billingAccounts/{{billingAccount}}/locations/{{location}}/buckets/{{bucket_id}}` * * When using the `pulumi import` command, this resource can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:logging/billingAccountBucketConfig:BillingAccountBucketConfig default billingAccounts/{{billingAccount}}/locations/{{location}}/buckets/{{bucket_id}} * ``` */ class BillingAccountBucketConfig extends pulumi.CustomResource { /** * Get an existing BillingAccountBucketConfig 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, id, state, opts) { return new BillingAccountBucketConfig(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of BillingAccountBucketConfig. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === BillingAccountBucketConfig.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["billingAccount"] = state ? state.billingAccount : undefined; resourceInputs["bucketId"] = state ? state.bucketId : undefined; resourceInputs["cmekSettings"] = state ? state.cmekSettings : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["indexConfigs"] = state ? state.indexConfigs : undefined; resourceInputs["lifecycleState"] = state ? state.lifecycleState : undefined; resourceInputs["location"] = state ? state.location : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["retentionDays"] = state ? state.retentionDays : undefined; } else { const args = argsOrState; if ((!args || args.billingAccount === undefined) && !opts.urn) { throw new Error("Missing required property 'billingAccount'"); } if ((!args || args.bucketId === undefined) && !opts.urn) { throw new Error("Missing required property 'bucketId'"); } if ((!args || args.location === undefined) && !opts.urn) { throw new Error("Missing required property 'location'"); } resourceInputs["billingAccount"] = args ? args.billingAccount : undefined; resourceInputs["bucketId"] = args ? args.bucketId : undefined; resourceInputs["cmekSettings"] = args ? args.cmekSettings : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["indexConfigs"] = args ? args.indexConfigs : undefined; resourceInputs["location"] = args ? args.location : undefined; resourceInputs["retentionDays"] = args ? args.retentionDays : undefined; resourceInputs["lifecycleState"] = undefined /*out*/; resourceInputs["name"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(BillingAccountBucketConfig.__pulumiType, name, resourceInputs, opts); } } exports.BillingAccountBucketConfig = BillingAccountBucketConfig; /** @internal */ BillingAccountBucketConfig.__pulumiType = 'gcp:logging/billingAccountBucketConfig:BillingAccountBucketConfig'; //# sourceMappingURL=billingAccountBucketConfig.js.map