@pulumi/openstack
Version:
A Pulumi package for creating and managing OpenStack cloud resources.
26 lines • 1.13 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.getAuthScopeOutput = exports.getAuthScope = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
function getAuthScope(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("openstack:identity/getAuthScope:getAuthScope", {
"name": args.name,
"region": args.region,
"setTokenId": args.setTokenId,
}, opts);
}
exports.getAuthScope = getAuthScope;
function getAuthScopeOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("openstack:identity/getAuthScope:getAuthScope", {
"name": args.name,
"region": args.region,
"setTokenId": args.setTokenId,
}, opts);
}
exports.getAuthScopeOutput = getAuthScopeOutput;
//# sourceMappingURL=getAuthScope.js.map