@pulumi/confluent
Version:
A Pulumi package for creating and managing confluent cloud resources.
24 lines • 967 B
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.getServiceAccountOutput = exports.getServiceAccount = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
function getServiceAccount(args, opts) {
if (!opts) {
opts = {};
}
if (!opts.version) {
opts.version = utilities.getVersion();
}
return pulumi.runtime.invoke("confluent:index/getServiceAccount:getServiceAccount", {
"name": args.name,
}, opts);
}
exports.getServiceAccount = getServiceAccount;
function getServiceAccountOutput(args, opts) {
return pulumi.output(args).apply(a => getServiceAccount(a, opts));
}
exports.getServiceAccountOutput = getServiceAccountOutput;
//# sourceMappingURL=getServiceAccount.js.map
;