@lbrlabs/pulumi-harness
Version:
A Pulumi package for creating and managing Harness resources.
56 lines • 1.79 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.getManualFreezeOutput = exports.getManualFreeze = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* DataSource for deployment freeze in harness.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@pulumi/harness";
*
* const example = harness.platform.getManualFreeze({
* accountId: "account_id",
* identifier: "identifier",
* orgId: "org_id",
* projectId: "project_id",
* });
* ```
*/
function getManualFreeze(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("harness:platform/getManualFreeze:getManualFreeze", {
"accountId": args.accountId,
"identifier": args.identifier,
"orgId": args.orgId,
"projectId": args.projectId,
}, opts);
}
exports.getManualFreeze = getManualFreeze;
/**
* DataSource for deployment freeze in harness.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@pulumi/harness";
*
* const example = harness.platform.getManualFreeze({
* accountId: "account_id",
* identifier: "identifier",
* orgId: "org_id",
* projectId: "project_id",
* });
* ```
*/
function getManualFreezeOutput(args, opts) {
return pulumi.output(args).apply((a) => getManualFreeze(a, opts));
}
exports.getManualFreezeOutput = getManualFreezeOutput;
//# sourceMappingURL=getManualFreeze.js.map