UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

126 lines 5.28 kB
"use strict"; // *** 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.EnvironmentServiceOverrides = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Resource for creating a Harness environment service overrides. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@lbrlabs/pulumi-harness"; * * const example = new harness.platform.EnvironmentServiceOverrides("example", { * envId: "environmentIdentifier", * orgId: "orgIdentifier", * projectId: "projectIdentifier", * serviceId: "serviceIdentifier", * yaml: ` serviceOverrides: * environmentRef: environmentIdentifier * serviceRef: serviceIdentifier * variables: * - name: asda * type: String * value: asddad * manifests: * - manifest: * identifier: manifestEnv * type: Values * spec: * store: * type: Git * spec: * connectorRef: <+input> * gitFetchType: Branch * paths: * - file1 * repoName: <+input> * branch: master * configFiles: * - configFile: * identifier: configFileEnv * spec: * store: * type: Harness * spec: * files: * - account:/Add-ons/svcOverrideTest * secretFiles: [] * * `, * }); * ``` * * ## Import * * Import using serviceoverride id * * ```sh * $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <serviceoverride_id> * ``` */ class EnvironmentServiceOverrides extends pulumi.CustomResource { /** * Get an existing EnvironmentServiceOverrides resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new EnvironmentServiceOverrides(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of EnvironmentServiceOverrides. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === EnvironmentServiceOverrides.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["envId"] = state ? state.envId : undefined; resourceInputs["identifier"] = state ? state.identifier : undefined; resourceInputs["orgId"] = state ? state.orgId : undefined; resourceInputs["projectId"] = state ? state.projectId : undefined; resourceInputs["serviceId"] = state ? state.serviceId : undefined; resourceInputs["yaml"] = state ? state.yaml : undefined; } else { const args = argsOrState; if ((!args || args.envId === undefined) && !opts.urn) { throw new Error("Missing required property 'envId'"); } if ((!args || args.serviceId === undefined) && !opts.urn) { throw new Error("Missing required property 'serviceId'"); } if ((!args || args.yaml === undefined) && !opts.urn) { throw new Error("Missing required property 'yaml'"); } resourceInputs["envId"] = args ? args.envId : undefined; resourceInputs["identifier"] = args ? args.identifier : undefined; resourceInputs["orgId"] = args ? args.orgId : undefined; resourceInputs["projectId"] = args ? args.projectId : undefined; resourceInputs["serviceId"] = args ? args.serviceId : undefined; resourceInputs["yaml"] = args ? args.yaml : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(EnvironmentServiceOverrides.__pulumiType, name, resourceInputs, opts); } } exports.EnvironmentServiceOverrides = EnvironmentServiceOverrides; /** @internal */ EnvironmentServiceOverrides.__pulumiType = 'harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides'; //# sourceMappingURL=environmentServiceOverrides.js.map