@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
30 lines • 1.25 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.getHostingChannelOutput = exports.getHostingChannel = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A Google Cloud Firebase Hosting Channel instance
*/
function getHostingChannel(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("gcp:firebase/getHostingChannel:getHostingChannel", {
"channelId": args.channelId,
"siteId": args.siteId,
}, opts);
}
exports.getHostingChannel = getHostingChannel;
/**
* A Google Cloud Firebase Hosting Channel instance
*/
function getHostingChannelOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("gcp:firebase/getHostingChannel:getHostingChannel", {
"channelId": args.channelId,
"siteId": args.siteId,
}, opts);
}
exports.getHostingChannelOutput = getHostingChannelOutput;
//# sourceMappingURL=getHostingChannel.js.map
;