UNPKG

@pulumi/gcp

Version:

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

106 lines 4.41 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.ControlOrganizationIntelligenceConfig = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Example Usage * * ### Storage Control Organization Intelligence Config Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const example = new gcp.storage.ControlOrganizationIntelligenceConfig("example", { * name: "12345678", * editionConfig: "STANDARD", * filter: { * excludedCloudStorageBuckets: { * bucketIdRegexes: [ * "test-id-1*", * "test-id-2*", * ], * }, * includedCloudStorageLocations: { * locations: [ * "test-location-1*", * "test-locations-2*", * ], * }, * }, * }); * ``` * * ## Import * * OrganizationIntelligenceConfig can be imported using any of these accepted formats: * * * `organizations/{{name}}/locations/global/intelligenceConfig` * * * `{{name}}` * * When using the `pulumi import` command, OrganizationIntelligenceConfig can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:storage/controlOrganizationIntelligenceConfig:ControlOrganizationIntelligenceConfig default organizations/{{name}}/locations/global/intelligenceConfig * ``` * * ```sh * $ pulumi import gcp:storage/controlOrganizationIntelligenceConfig:ControlOrganizationIntelligenceConfig default {{name}} * ``` */ class ControlOrganizationIntelligenceConfig extends pulumi.CustomResource { /** * Get an existing ControlOrganizationIntelligenceConfig 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 ControlOrganizationIntelligenceConfig(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of ControlOrganizationIntelligenceConfig. 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'] === ControlOrganizationIntelligenceConfig.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["editionConfig"] = state?.editionConfig; resourceInputs["effectiveIntelligenceConfigs"] = state?.effectiveIntelligenceConfigs; resourceInputs["filter"] = state?.filter; resourceInputs["name"] = state?.name; resourceInputs["trialConfigs"] = state?.trialConfigs; resourceInputs["updateTime"] = state?.updateTime; } else { const args = argsOrState; resourceInputs["editionConfig"] = args?.editionConfig; resourceInputs["filter"] = args?.filter; resourceInputs["name"] = args?.name; resourceInputs["effectiveIntelligenceConfigs"] = undefined /*out*/; resourceInputs["trialConfigs"] = undefined /*out*/; resourceInputs["updateTime"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(ControlOrganizationIntelligenceConfig.__pulumiType, name, resourceInputs, opts); } } exports.ControlOrganizationIntelligenceConfig = ControlOrganizationIntelligenceConfig; /** @internal */ ControlOrganizationIntelligenceConfig.__pulumiType = 'gcp:storage/controlOrganizationIntelligenceConfig:ControlOrganizationIntelligenceConfig'; //# sourceMappingURL=controlOrganizationIntelligenceConfig.js.map