@huaweicloudos/pulumi
Version:
A Pulumi package for creating and managing Huaweicloud cloud resources.
102 lines • 4.25 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.KafkaPermissions = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use the resource to grant user permissions of a kafka topic within HuaweiCloud.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as pulumi from "@huaweicloudos/pulumi";
*
* const config = new pulumi.Config();
* const kafkaInstanceId = config.requireObject("kafkaInstanceId");
* const kafkaTopicName = config.requireObject("kafkaTopicName");
* const user1 = config.requireObject("user1");
* const user2 = config.requireObject("user2");
* const test = new huaweicloud.dms.KafkaPermissions("test", {
* instanceId: kafkaInstanceId,
* topicName: kafkaTopicName,
* policies: [
* {
* userName: user1,
* accessPolicy: "all",
* },
* {
* userName: user2,
* accessPolicy: "pub",
* },
* ],
* });
* ```
*
* ## Import
*
* DMS kafka permissions can be imported using the kafka instance ID and topic name separated by a slash, e.g.bash
*
* ```sh
* $ pulumi import huaweicloud:Dms/kafkaPermissions:KafkaPermissions permissions c8057fe5-23a8-46ef-ad83-c0055b4e0c5c/topic_1
* ```
*/
class KafkaPermissions extends pulumi.CustomResource {
/**
* Get an existing KafkaPermissions 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 KafkaPermissions(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of KafkaPermissions. 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'] === KafkaPermissions.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
resourceInputs["policies"] = state ? state.policies : undefined;
resourceInputs["region"] = state ? state.region : undefined;
resourceInputs["topicName"] = state ? state.topicName : undefined;
}
else {
const args = argsOrState;
if ((!args || args.instanceId === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceId'");
}
if ((!args || args.policies === undefined) && !opts.urn) {
throw new Error("Missing required property 'policies'");
}
if ((!args || args.topicName === undefined) && !opts.urn) {
throw new Error("Missing required property 'topicName'");
}
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
resourceInputs["policies"] = args ? args.policies : undefined;
resourceInputs["region"] = args ? args.region : undefined;
resourceInputs["topicName"] = args ? args.topicName : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(KafkaPermissions.__pulumiType, name, resourceInputs, opts);
}
}
exports.KafkaPermissions = KafkaPermissions;
/** @internal */
KafkaPermissions.__pulumiType = 'huaweicloud:Dms/kafkaPermissions:KafkaPermissions';
//# sourceMappingURL=kafkaPermissions.js.map