@lbrlabs/pulumi-harness
Version:
A Pulumi package for creating and managing Harness resources.
99 lines • 4.07 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.EnvironmentGroup = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Resource for creating a Harness environment group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@lbrlabs/pulumi-harness";
*
* const example = new harness.platform.EnvironmentGroup("example", {
* color: "#0063F7",
* identifier: "identifier",
* orgId: "orgIdentifer",
* projectId: "projectIdentifier",
* yaml: ` environmentGroup:
* name: "name"
* identifier: "identifier"
* description: "temp"
* orgIdentifier: "orgIdentifer"
* projectIdentifier: "projectIdentifier"
* envIdentifiers: []
*
* `,
* });
* ```
*
* ## Import
*
* Import using the environment group id.
*
* ```sh
* $ pulumi import harness:platform/environmentGroup:EnvironmentGroup example <org_id>/<project_id>/<environment_group_id>
* ```
*/
class EnvironmentGroup extends pulumi.CustomResource {
/**
* Get an existing EnvironmentGroup 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 EnvironmentGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of EnvironmentGroup. 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'] === EnvironmentGroup.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["color"] = state ? state.color : undefined;
resourceInputs["forceDelete"] = state ? state.forceDelete : undefined;
resourceInputs["identifier"] = state ? state.identifier : undefined;
resourceInputs["orgId"] = state ? state.orgId : undefined;
resourceInputs["projectId"] = state ? state.projectId : undefined;
resourceInputs["yaml"] = state ? state.yaml : undefined;
}
else {
const args = argsOrState;
if ((!args || args.identifier === undefined) && !opts.urn) {
throw new Error("Missing required property 'identifier'");
}
if ((!args || args.yaml === undefined) && !opts.urn) {
throw new Error("Missing required property 'yaml'");
}
resourceInputs["color"] = args ? args.color : undefined;
resourceInputs["forceDelete"] = args ? args.forceDelete : undefined;
resourceInputs["identifier"] = args ? args.identifier : undefined;
resourceInputs["orgId"] = args ? args.orgId : undefined;
resourceInputs["projectId"] = args ? args.projectId : undefined;
resourceInputs["yaml"] = args ? args.yaml : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(EnvironmentGroup.__pulumiType, name, resourceInputs, opts);
}
}
exports.EnvironmentGroup = EnvironmentGroup;
/** @internal */
EnvironmentGroup.__pulumiType = 'harness:platform/environmentGroup:EnvironmentGroup';
//# sourceMappingURL=environmentGroup.js.map