@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
51 lines • 1.93 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.groupsOutput = exports.groups = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of rocketmq groups
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.rocketmq.getGroups({
* instanceId: "rocketmq-cnoeea6b32118fc2",
* });
* ```
*/
/** @deprecated volcengine.rocketmq.Groups has been deprecated in favor of volcengine.rocketmq.getGroups */
function groups(args, opts) {
pulumi.log.warn("groups is deprecated: volcengine.rocketmq.Groups has been deprecated in favor of volcengine.rocketmq.getGroups");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:rocketmq/groups:Groups", {
"groupId": args.groupId,
"groupType": args.groupType,
"instanceId": args.instanceId,
"outputFile": args.outputFile,
}, opts);
}
exports.groups = groups;
/**
* Use this data source to query detailed information of rocketmq groups
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.rocketmq.getGroups({
* instanceId: "rocketmq-cnoeea6b32118fc2",
* });
* ```
*/
/** @deprecated volcengine.rocketmq.Groups has been deprecated in favor of volcengine.rocketmq.getGroups */
function groupsOutput(args, opts) {
return pulumi.output(args).apply((a) => groups(a, opts));
}
exports.groupsOutput = groupsOutput;
//# sourceMappingURL=groups.js.map