@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
121 lines • 4.78 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.Channel = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* The Eventarc Channel resource
*
* To get more information about Channel, see:
*
* * [API documentation](https://cloud.google.com/eventarc/docs/reference/rest/v1/projects.locations.channels)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/eventarc/standard/docs/third-parties/create-channels)
*
* ## Example Usage
*
* ### Eventarc Channel With Cmek
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const primary = new gcp.eventarc.Channel("primary", {
* location: "us-central1",
* name: "some-channel",
* cryptoKeyName: "some-key",
* thirdPartyProvider: "projects/my-project-name/locations/us-central1/providers/datadog",
* });
* ```
*
* ## Import
*
* Channel can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/{{location}}/channels/{{name}}`
*
* * `{{project}}/{{location}}/{{name}}`
*
* * `{{location}}/{{name}}`
*
* When using the `pulumi import` command, Channel can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:eventarc/channel:Channel default projects/{{project}}/locations/{{location}}/channels/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:eventarc/channel:Channel default {{project}}/{{location}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:eventarc/channel:Channel default {{location}}/{{name}}
* ```
*/
class Channel extends pulumi.CustomResource {
/**
* Get an existing Channel 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 Channel(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of Channel. 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'] === Channel.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["activationToken"] = state?.activationToken;
resourceInputs["createTime"] = state?.createTime;
resourceInputs["cryptoKeyName"] = state?.cryptoKeyName;
resourceInputs["location"] = state?.location;
resourceInputs["name"] = state?.name;
resourceInputs["project"] = state?.project;
resourceInputs["pubsubTopic"] = state?.pubsubTopic;
resourceInputs["state"] = state?.state;
resourceInputs["thirdPartyProvider"] = state?.thirdPartyProvider;
resourceInputs["uid"] = state?.uid;
resourceInputs["updateTime"] = state?.updateTime;
}
else {
const args = argsOrState;
if (args?.location === undefined && !opts.urn) {
throw new Error("Missing required property 'location'");
}
resourceInputs["cryptoKeyName"] = args?.cryptoKeyName;
resourceInputs["location"] = args?.location;
resourceInputs["name"] = args?.name;
resourceInputs["project"] = args?.project;
resourceInputs["thirdPartyProvider"] = args?.thirdPartyProvider;
resourceInputs["activationToken"] = undefined /*out*/;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["pubsubTopic"] = undefined /*out*/;
resourceInputs["state"] = undefined /*out*/;
resourceInputs["uid"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Channel.__pulumiType, name, resourceInputs, opts);
}
}
exports.Channel = Channel;
/** @internal */
Channel.__pulumiType = 'gcp:eventarc/channel:Channel';
//# sourceMappingURL=channel.js.map
;