@pulumi/harness
Version:
A Pulumi package for creating and managing Harness resources.
139 lines • 5.28 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.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 "@pulumi/harness";
*
* const example = new harness.platform.EnvironmentServiceOverrides("example", {
* orgId: "orgIdentifier",
* projectId: "projectIdentifier",
* envId: "environmentIdentifier",
* 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
*
* The `pulumi import` command can be used, for example:
*
* Import list of account level service overrides using the env id associated with them
*
* ```sh
* $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <env_id>
* ```
*
* Import list of org level service overrides using the env id associated with them
*
* ```sh
* $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <org_id>/<env_id>
* ```
*
* Import list of project level service overrides using the env id associated with them
*
* ```sh
* $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <org_id>/<project_id>/<env_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, { ...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?.envId;
resourceInputs["identifier"] = state?.identifier;
resourceInputs["orgId"] = state?.orgId;
resourceInputs["projectId"] = state?.projectId;
resourceInputs["serviceId"] = state?.serviceId;
resourceInputs["yaml"] = state?.yaml;
}
else {
const args = argsOrState;
if (args?.envId === undefined && !opts.urn) {
throw new Error("Missing required property 'envId'");
}
if (args?.serviceId === undefined && !opts.urn) {
throw new Error("Missing required property 'serviceId'");
}
if (args?.yaml === undefined && !opts.urn) {
throw new Error("Missing required property 'yaml'");
}
resourceInputs["envId"] = args?.envId;
resourceInputs["identifier"] = args?.identifier;
resourceInputs["orgId"] = args?.orgId;
resourceInputs["projectId"] = args?.projectId;
resourceInputs["serviceId"] = args?.serviceId;
resourceInputs["yaml"] = args?.yaml;
}
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