UNPKG

@pulumi/gcp

Version:

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

181 lines 7.15 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! *** var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.EncryptionSpec = void 0; const pulumi = __importStar(require("@pulumi/pulumi")); const utilities = __importStar(require("../utilities")); /** * Initializes a location-level encryption key specification. * * To get more information about EncryptionSpec, see: * * * [API documentation](https://docs.cloud.google.com/contact-center/insights/docs/reference/rest/v1/projects.locations.encryptionSpec) * * How-to Guides * * [Official Documentation](https://docs.cloud.google.com/contact-center/insights/docs/cmek) * * ## Example Usage * * ### Contact Center Insights Encryption Spec Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * import * as std from "@pulumi/std"; * import * as time from "@pulumiverse/time"; * * const project = new gcp.organizations.Project("project", { * projectId: "my-proj", * name: "my-proj", * orgId: "123456789", * billingAccount: "000000-0000000-0000000-000000", * deletionPolicy: "DELETE", * }); * const cloudkms = new gcp.projects.Service("cloudkms", { * project: project.projectId, * service: "cloudkms.googleapis.com", * }); * const contactcenterinsights = new gcp.projects.Service("contactcenterinsights", { * project: project.projectId, * service: "contactcenterinsights.googleapis.com", * }, { * dependsOn: [cloudkms], * }); * const waitEnableServiceApi = new time.Sleep("wait_enable_service_api", {createDuration: "30s"}, { * dependsOn: [ * cloudkms, * contactcenterinsights, * ], * }); * const gcpSa = new gcp.projects.ServiceIdentity("gcp_sa", { * service: "contactcenterinsights.googleapis.com", * project: project.projectId, * }, { * dependsOn: [waitEnableServiceApi], * }); * const waitCreateSa = new time.Sleep("wait_create_sa", {createDuration: "30s"}, { * dependsOn: [gcpSa], * }); * const keyring = new gcp.kms.KeyRing("keyring", { * name: "my-keyring", * location: "us-east1", * project: project.projectId, * }, { * dependsOn: [waitEnableServiceApi], * }); * const key = new gcp.kms.CryptoKey("key", { * name: "my-key", * keyRing: keyring.id, * purpose: "ENCRYPT_DECRYPT", * }); * const cryptoKey = new gcp.kms.CryptoKeyIAMMember("crypto_key", { * cryptoKeyId: key.id, * member: std.replaceOutput({ * text: gcpSa.member, * search: "@gcp-sa-contactcenterinsights.iam", * replace: "@gcp-sa-ccai-cmek.iam", * }).apply(invoke => invoke.result), * role: "roles/cloudkms.cryptoKeyEncrypterDecrypter", * }, { * dependsOn: [waitCreateSa], * }); * const my_encryption_spec = new gcp.contactcenterinsights.EncryptionSpec("my-encryption-spec", { * project: project.projectId, * location: "us-east1", * kmsKey: key.id, * }, { * dependsOn: [cryptoKey], * }); * ``` * * ## Import * * EncryptionSpec can be imported using any of these accepted formats: * * * `projects/{{project}}/locations/{{location}}/encryptionSpec/{{name}}` * * `{{project}}/{{location}}/{{name}}` * * `{{location}}/{{name}}` * * When using the `pulumi import` command, EncryptionSpec can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:contactcenterinsights/encryptionSpec:EncryptionSpec default projects/{{project}}/locations/{{location}}/encryptionSpec/{{name}} * $ pulumi import gcp:contactcenterinsights/encryptionSpec:EncryptionSpec default {{project}}/{{location}}/{{name}} * $ pulumi import gcp:contactcenterinsights/encryptionSpec:EncryptionSpec default {{location}}/{{name}} * ``` */ class EncryptionSpec extends pulumi.CustomResource { /** * Get an existing EncryptionSpec 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 EncryptionSpec(name, state, { ...opts, id: id }); } /** @internal */ static __pulumiType = 'gcp:contactcenterinsights/encryptionSpec:EncryptionSpec'; /** * Returns true if the given object is an instance of EncryptionSpec. 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'] === EncryptionSpec.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["kmsKey"] = state?.kmsKey; resourceInputs["location"] = state?.location; resourceInputs["project"] = state?.project; } else { const args = argsOrState; if (args?.kmsKey === undefined && !opts.urn) { throw new Error("Missing required property 'kmsKey'"); } if (args?.location === undefined && !opts.urn) { throw new Error("Missing required property 'location'"); } resourceInputs["kmsKey"] = args?.kmsKey; resourceInputs["location"] = args?.location; resourceInputs["project"] = args?.project; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(EncryptionSpec.__pulumiType, name, resourceInputs, opts); } } exports.EncryptionSpec = EncryptionSpec; //# sourceMappingURL=encryptionSpec.js.map