@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
147 lines • 5.41 kB
JavaScript
// *** 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.EncryptionSpec = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Initializes a location-level encryption key specification.
*
* To get more information about EncryptionSpec, see:
*
* * [API documentation](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.locations.encryptionSpec)
* * How-to Guides
* * [Official CX Documentation](https://cloud.google.com/dialogflow/cx/docs)
* * [Official ES Documentation](https://cloud.google.com/dialogflow/es/docs)
*
* ## Example Usage
*
* ### Dialogflow 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 dialogflow = new gcp.projects.Service("dialogflow", {
* project: project.projectId,
* service: "dialogflow.googleapis.com",
* });
* const waitEnableServiceApi = new time.index.Sleep("wait_enable_service_api", {createDuration: "30s"}, {
* dependsOn: [
* cloudkms,
* dialogflow,
* ],
* });
* const gcpSa = new gcp.projects.ServiceIdentity("gcp_sa", {
* service: "dialogflow.googleapis.com",
* project: project.projectId,
* }, {
* dependsOn: [waitEnableServiceApi],
* });
* const waitCreateSa = new time.index.Sleep("wait_create_sa", {createDuration: "30s"}, {
* dependsOn: [gcpSa],
* });
* const keyring = new gcp.kms.KeyRing("keyring", {
* name: "my-keyring",
* location: "us-central1",
* 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-dialogflow.iam",
* replace: "@gcp-sa-ccai-cmek.iam",
* }).apply(invoke => invoke.result),
* role: "roles/cloudkms.cryptoKeyEncrypterDecrypter",
* }, {
* dependsOn: [waitCreateSa],
* });
* const my_encryption_spec = new gcp.diagflow.EncryptionSpec("my-encryption-spec", {
* project: project.projectId,
* location: "us-central1",
* encryptionSpec: {
* kmsKey: key.id,
* },
* }, {
* dependsOn: [cryptoKey],
* });
* ```
*
* ## Import
*
* This resource does not support import.
*/
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 });
}
/**
* 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["encryptionSpec"] = state?.encryptionSpec;
resourceInputs["location"] = state?.location;
resourceInputs["project"] = state?.project;
}
else {
const args = argsOrState;
if (args?.encryptionSpec === undefined && !opts.urn) {
throw new Error("Missing required property 'encryptionSpec'");
}
if (args?.location === undefined && !opts.urn) {
throw new Error("Missing required property 'location'");
}
resourceInputs["encryptionSpec"] = args?.encryptionSpec;
resourceInputs["location"] = args?.location;
resourceInputs["project"] = args?.project;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(EncryptionSpec.__pulumiType, name, resourceInputs, opts);
}
}
exports.EncryptionSpec = EncryptionSpec;
/** @internal */
EncryptionSpec.__pulumiType = 'gcp:diagflow/encryptionSpec:EncryptionSpec';
//# sourceMappingURL=encryptionSpec.js.map
;