@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
164 lines • 8.13 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.GdcApplicationEnvironment = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* An ApplicationEnvironment contains shared configuration that may be referenced by multiple SparkApplications.
*
* To get more information about ApplicationEnvironment, see:
*
* * [API documentation](https://cloud.google.com/dataproc-gdc/docs/reference/rest/v1/projects.locations.applicationEnvironments)
* * How-to Guides
* * [Dataproc Intro](https://cloud.google.com/dataproc/)
*
* ## Example Usage
*
* ### Dataprocgdc Applicationenvironment Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const application_environment = new gcp.dataproc.GdcApplicationEnvironment("application-environment", {
* applicationEnvironmentId: "dp-tf-e2e-application-environment-basic",
* serviceinstance: "do-not-delete-dataproc-gdc-instance",
* project: "my-project",
* location: "us-west2",
* namespace: "default",
* });
* ```
* ### Dataprocgdc Applicationenvironment
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const application_environment = new gcp.dataproc.GdcApplicationEnvironment("application-environment", {
* applicationEnvironmentId: "dp-tf-e2e-application-environment",
* serviceinstance: "do-not-delete-dataproc-gdc-instance",
* project: "my-project",
* location: "us-west2",
* namespace: "default",
* displayName: "An application environment",
* labels: {
* "test-label": "label-value",
* },
* annotations: {
* an_annotation: "annotation_value",
* },
* sparkApplicationEnvironmentConfig: {
* defaultProperties: {
* "spark.executor.memory": "4g",
* },
* defaultVersion: "1.2",
* },
* });
* ```
*
* ## Import
*
* ApplicationEnvironment can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/{{location}}/serviceInstances/{{serviceinstance}}/applicationEnvironments/{{application_environment_id}}`
*
* * `{{project}}/{{location}}/{{serviceinstance}}/{{application_environment_id}}`
*
* * `{{location}}/{{serviceinstance}}/{{application_environment_id}}`
*
* When using the `pulumi import` command, ApplicationEnvironment can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment default projects/{{project}}/locations/{{location}}/serviceInstances/{{serviceinstance}}/applicationEnvironments/{{application_environment_id}}
* ```
*
* ```sh
* $ pulumi import gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment default {{project}}/{{location}}/{{serviceinstance}}/{{application_environment_id}}
* ```
*
* ```sh
* $ pulumi import gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment default {{location}}/{{serviceinstance}}/{{application_environment_id}}
* ```
*/
class GdcApplicationEnvironment extends pulumi.CustomResource {
/**
* Get an existing GdcApplicationEnvironment 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 GdcApplicationEnvironment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of GdcApplicationEnvironment. 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'] === GdcApplicationEnvironment.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["annotations"] = state ? state.annotations : undefined;
resourceInputs["applicationEnvironmentId"] = state ? state.applicationEnvironmentId : undefined;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["displayName"] = state ? state.displayName : undefined;
resourceInputs["effectiveAnnotations"] = state ? state.effectiveAnnotations : undefined;
resourceInputs["effectiveLabels"] = state ? state.effectiveLabels : undefined;
resourceInputs["labels"] = state ? state.labels : undefined;
resourceInputs["location"] = state ? state.location : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["namespace"] = state ? state.namespace : undefined;
resourceInputs["project"] = state ? state.project : undefined;
resourceInputs["pulumiLabels"] = state ? state.pulumiLabels : undefined;
resourceInputs["serviceinstance"] = state ? state.serviceinstance : undefined;
resourceInputs["sparkApplicationEnvironmentConfig"] = state ? state.sparkApplicationEnvironmentConfig : undefined;
resourceInputs["uid"] = state ? state.uid : undefined;
resourceInputs["updateTime"] = state ? state.updateTime : undefined;
}
else {
const args = argsOrState;
if ((!args || args.location === undefined) && !opts.urn) {
throw new Error("Missing required property 'location'");
}
if ((!args || args.serviceinstance === undefined) && !opts.urn) {
throw new Error("Missing required property 'serviceinstance'");
}
resourceInputs["annotations"] = args ? args.annotations : undefined;
resourceInputs["applicationEnvironmentId"] = args ? args.applicationEnvironmentId : undefined;
resourceInputs["displayName"] = args ? args.displayName : undefined;
resourceInputs["labels"] = args ? args.labels : undefined;
resourceInputs["location"] = args ? args.location : undefined;
resourceInputs["namespace"] = args ? args.namespace : undefined;
resourceInputs["project"] = args ? args.project : undefined;
resourceInputs["serviceinstance"] = args ? args.serviceinstance : undefined;
resourceInputs["sparkApplicationEnvironmentConfig"] = args ? args.sparkApplicationEnvironmentConfig : undefined;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["effectiveAnnotations"] = undefined /*out*/;
resourceInputs["effectiveLabels"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["pulumiLabels"] = undefined /*out*/;
resourceInputs["uid"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(GdcApplicationEnvironment.__pulumiType, name, resourceInputs, opts);
}
}
exports.GdcApplicationEnvironment = GdcApplicationEnvironment;
/** @internal */
GdcApplicationEnvironment.__pulumiType = 'gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment';
//# sourceMappingURL=gdcApplicationEnvironment.js.map