UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

60 lines 2.08 kB
"use strict"; // *** 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.getServiceOverridesV2Output = exports.getServiceOverridesV2 = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source for Harness service overrides V2. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const test = harness.platform.getServiceOverridesV2({ * identifier: "identifier", * orgId: "orgIdentifier", * projectId: "projectIdentifier", * }); * ``` */ function getServiceOverridesV2(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getServiceOverridesV2:getServiceOverridesV2", { "gitDetails": args.gitDetails, "identifier": args.identifier, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getServiceOverridesV2 = getServiceOverridesV2; /** * Data source for Harness service overrides V2. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const test = harness.platform.getServiceOverridesV2({ * identifier: "identifier", * orgId: "orgIdentifier", * projectId: "projectIdentifier", * }); * ``` */ function getServiceOverridesV2Output(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("harness:platform/getServiceOverridesV2:getServiceOverridesV2", { "gitDetails": args.gitDetails, "identifier": args.identifier, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getServiceOverridesV2Output = getServiceOverridesV2Output; //# sourceMappingURL=getServiceOverridesV2.js.map