@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
121 lines • 5.14 kB
JavaScript
;
// *** 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.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, Object.assign(Object.assign({}, 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 ? state.activationToken : undefined;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["cryptoKeyName"] = state ? state.cryptoKeyName : undefined;
resourceInputs["location"] = state ? state.location : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["project"] = state ? state.project : undefined;
resourceInputs["pubsubTopic"] = state ? state.pubsubTopic : undefined;
resourceInputs["state"] = state ? state.state : undefined;
resourceInputs["thirdPartyProvider"] = state ? state.thirdPartyProvider : undefined;
resourceInputs["uid"] = state ? state.uid : undefined;
resourceInputs["updateTime"] = state ? state.updateTime : undefined;
}
else {
const args = argsOrState;
if ((!args || args.location === undefined) && !opts.urn) {
throw new Error("Missing required property 'location'");
}
resourceInputs["cryptoKeyName"] = args ? args.cryptoKeyName : undefined;
resourceInputs["location"] = args ? args.location : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["project"] = args ? args.project : undefined;
resourceInputs["thirdPartyProvider"] = args ? args.thirdPartyProvider : undefined;
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