1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. dataproc
  5. GdcApplicationEnvironment
Google Cloud v8.25.0 published on Thursday, Apr 3, 2025 by Pulumi

gcp.dataproc.GdcApplicationEnvironment

Explore with Pulumi AI

An ApplicationEnvironment contains shared configuration that may be referenced by multiple SparkApplications.

To get more information about ApplicationEnvironment, see:

Example Usage

Dataprocgdc Applicationenvironment Basic

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",
});
Copy
import pulumi
import pulumi_gcp as gcp

application_environment = gcp.dataproc.GdcApplicationEnvironment("application-environment",
    application_environment_id="dp-tf-e2e-application-environment-basic",
    serviceinstance="do-not-delete-dataproc-gdc-instance",
    project="my-project",
    location="us-west2",
    namespace="default")
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/dataproc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataproc.NewGdcApplicationEnvironment(ctx, "application-environment", &dataproc.GdcApplicationEnvironmentArgs{
			ApplicationEnvironmentId: pulumi.String("dp-tf-e2e-application-environment-basic"),
			Serviceinstance:          pulumi.String("do-not-delete-dataproc-gdc-instance"),
			Project:                  pulumi.String("my-project"),
			Location:                 pulumi.String("us-west2"),
			Namespace:                pulumi.String("default"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var application_environment = new Gcp.Dataproc.GdcApplicationEnvironment("application-environment", new()
    {
        ApplicationEnvironmentId = "dp-tf-e2e-application-environment-basic",
        Serviceinstance = "do-not-delete-dataproc-gdc-instance",
        Project = "my-project",
        Location = "us-west2",
        Namespace = "default",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.dataproc.GdcApplicationEnvironment;
import com.pulumi.gcp.dataproc.GdcApplicationEnvironmentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var application_environment = new GdcApplicationEnvironment("application-environment", GdcApplicationEnvironmentArgs.builder()
            .applicationEnvironmentId("dp-tf-e2e-application-environment-basic")
            .serviceinstance("do-not-delete-dataproc-gdc-instance")
            .project("my-project")
            .location("us-west2")
            .namespace("default")
            .build());

    }
}
Copy
resources:
  application-environment:
    type: gcp:dataproc:GdcApplicationEnvironment
    properties:
      applicationEnvironmentId: dp-tf-e2e-application-environment-basic
      serviceinstance: do-not-delete-dataproc-gdc-instance
      project: my-project
      location: us-west2
      namespace: default
Copy

Dataprocgdc Applicationenvironment

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",
    },
});
Copy
import pulumi
import pulumi_gcp as gcp

application_environment = gcp.dataproc.GdcApplicationEnvironment("application-environment",
    application_environment_id="dp-tf-e2e-application-environment",
    serviceinstance="do-not-delete-dataproc-gdc-instance",
    project="my-project",
    location="us-west2",
    namespace="default",
    display_name="An application environment",
    labels={
        "test-label": "label-value",
    },
    annotations={
        "an_annotation": "annotation_value",
    },
    spark_application_environment_config={
        "default_properties": {
            "spark.executor.memory": "4g",
        },
        "default_version": "1.2",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/dataproc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataproc.NewGdcApplicationEnvironment(ctx, "application-environment", &dataproc.GdcApplicationEnvironmentArgs{
			ApplicationEnvironmentId: pulumi.String("dp-tf-e2e-application-environment"),
			Serviceinstance:          pulumi.String("do-not-delete-dataproc-gdc-instance"),
			Project:                  pulumi.String("my-project"),
			Location:                 pulumi.String("us-west2"),
			Namespace:                pulumi.String("default"),
			DisplayName:              pulumi.String("An application environment"),
			Labels: pulumi.StringMap{
				"test-label": pulumi.String("label-value"),
			},
			Annotations: pulumi.StringMap{
				"an_annotation": pulumi.String("annotation_value"),
			},
			SparkApplicationEnvironmentConfig: &dataproc.GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs{
				DefaultProperties: pulumi.StringMap{
					"spark.executor.memory": pulumi.String("4g"),
				},
				DefaultVersion: pulumi.String("1.2"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var application_environment = new Gcp.Dataproc.GdcApplicationEnvironment("application-environment", new()
    {
        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 = new Gcp.Dataproc.Inputs.GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs
        {
            DefaultProperties = 
            {
                { "spark.executor.memory", "4g" },
            },
            DefaultVersion = "1.2",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.dataproc.GdcApplicationEnvironment;
import com.pulumi.gcp.dataproc.GdcApplicationEnvironmentArgs;
import com.pulumi.gcp.dataproc.inputs.GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var application_environment = new GdcApplicationEnvironment("application-environment", GdcApplicationEnvironmentArgs.builder()
            .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(Map.of("test-label", "label-value"))
            .annotations(Map.of("an_annotation", "annotation_value"))
            .sparkApplicationEnvironmentConfig(GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs.builder()
                .defaultProperties(Map.of("spark.executor.memory", "4g"))
                .defaultVersion("1.2")
                .build())
            .build());

    }
}
Copy
resources:
  application-environment:
    type: gcp:dataproc:GdcApplicationEnvironment
    properties:
      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'
Copy

Create GdcApplicationEnvironment Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new GdcApplicationEnvironment(name: string, args: GdcApplicationEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def GdcApplicationEnvironment(resource_name: str,
                              args: GdcApplicationEnvironmentArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def GdcApplicationEnvironment(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              location: Optional[str] = None,
                              serviceinstance: Optional[str] = None,
                              annotations: Optional[Mapping[str, str]] = None,
                              application_environment_id: Optional[str] = None,
                              display_name: Optional[str] = None,
                              labels: Optional[Mapping[str, str]] = None,
                              namespace: Optional[str] = None,
                              project: Optional[str] = None,
                              spark_application_environment_config: Optional[GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs] = None)
func NewGdcApplicationEnvironment(ctx *Context, name string, args GdcApplicationEnvironmentArgs, opts ...ResourceOption) (*GdcApplicationEnvironment, error)
public GdcApplicationEnvironment(string name, GdcApplicationEnvironmentArgs args, CustomResourceOptions? opts = null)
public GdcApplicationEnvironment(String name, GdcApplicationEnvironmentArgs args)
public GdcApplicationEnvironment(String name, GdcApplicationEnvironmentArgs args, CustomResourceOptions options)
type: gcp:dataproc:GdcApplicationEnvironment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GdcApplicationEnvironmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GdcApplicationEnvironmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GdcApplicationEnvironmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GdcApplicationEnvironmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GdcApplicationEnvironmentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var gdcApplicationEnvironmentResource = new Gcp.Dataproc.GdcApplicationEnvironment("gdcApplicationEnvironmentResource", new()
{
    Location = "string",
    Serviceinstance = "string",
    Annotations = 
    {
        { "string", "string" },
    },
    ApplicationEnvironmentId = "string",
    DisplayName = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Namespace = "string",
    Project = "string",
    SparkApplicationEnvironmentConfig = new Gcp.Dataproc.Inputs.GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs
    {
        DefaultProperties = 
        {
            { "string", "string" },
        },
        DefaultVersion = "string",
    },
});
Copy
example, err := dataproc.NewGdcApplicationEnvironment(ctx, "gdcApplicationEnvironmentResource", &dataproc.GdcApplicationEnvironmentArgs{
	Location:        pulumi.String("string"),
	Serviceinstance: pulumi.String("string"),
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ApplicationEnvironmentId: pulumi.String("string"),
	DisplayName:              pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Namespace: pulumi.String("string"),
	Project:   pulumi.String("string"),
	SparkApplicationEnvironmentConfig: &dataproc.GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs{
		DefaultProperties: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		DefaultVersion: pulumi.String("string"),
	},
})
Copy
var gdcApplicationEnvironmentResource = new GdcApplicationEnvironment("gdcApplicationEnvironmentResource", GdcApplicationEnvironmentArgs.builder()
    .location("string")
    .serviceinstance("string")
    .annotations(Map.of("string", "string"))
    .applicationEnvironmentId("string")
    .displayName("string")
    .labels(Map.of("string", "string"))
    .namespace("string")
    .project("string")
    .sparkApplicationEnvironmentConfig(GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs.builder()
        .defaultProperties(Map.of("string", "string"))
        .defaultVersion("string")
        .build())
    .build());
Copy
gdc_application_environment_resource = gcp.dataproc.GdcApplicationEnvironment("gdcApplicationEnvironmentResource",
    location="string",
    serviceinstance="string",
    annotations={
        "string": "string",
    },
    application_environment_id="string",
    display_name="string",
    labels={
        "string": "string",
    },
    namespace="string",
    project="string",
    spark_application_environment_config={
        "default_properties": {
            "string": "string",
        },
        "default_version": "string",
    })
Copy
const gdcApplicationEnvironmentResource = new gcp.dataproc.GdcApplicationEnvironment("gdcApplicationEnvironmentResource", {
    location: "string",
    serviceinstance: "string",
    annotations: {
        string: "string",
    },
    applicationEnvironmentId: "string",
    displayName: "string",
    labels: {
        string: "string",
    },
    namespace: "string",
    project: "string",
    sparkApplicationEnvironmentConfig: {
        defaultProperties: {
            string: "string",
        },
        defaultVersion: "string",
    },
});
Copy
type: gcp:dataproc:GdcApplicationEnvironment
properties:
    annotations:
        string: string
    applicationEnvironmentId: string
    displayName: string
    labels:
        string: string
    location: string
    namespace: string
    project: string
    serviceinstance: string
    sparkApplicationEnvironmentConfig:
        defaultProperties:
            string: string
        defaultVersion: string
Copy

GdcApplicationEnvironment Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The GdcApplicationEnvironment resource accepts the following input properties:

Location
This property is required.
Changes to this property will trigger replacement.
string
The location of the application environment
Serviceinstance
This property is required.
Changes to this property will trigger replacement.
string
The id of the service instance to which this application environment belongs.


Annotations Dictionary<string, string>
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
ApplicationEnvironmentId Changes to this property will trigger replacement. string
The id of the application environment
DisplayName string
User-provided human-readable name to be used in user interfaces.
Labels Dictionary<string, string>
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
Namespace string
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
SparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
Location
This property is required.
Changes to this property will trigger replacement.
string
The location of the application environment
Serviceinstance
This property is required.
Changes to this property will trigger replacement.
string
The id of the service instance to which this application environment belongs.


Annotations map[string]string
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
ApplicationEnvironmentId Changes to this property will trigger replacement. string
The id of the application environment
DisplayName string
User-provided human-readable name to be used in user interfaces.
Labels map[string]string
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
Namespace string
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
SparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
location
This property is required.
Changes to this property will trigger replacement.
String
The location of the application environment
serviceinstance
This property is required.
Changes to this property will trigger replacement.
String
The id of the service instance to which this application environment belongs.


annotations Map<String,String>
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
applicationEnvironmentId Changes to this property will trigger replacement. String
The id of the application environment
displayName String
User-provided human-readable name to be used in user interfaces.
labels Map<String,String>
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
namespace String
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
sparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
location
This property is required.
Changes to this property will trigger replacement.
string
The location of the application environment
serviceinstance
This property is required.
Changes to this property will trigger replacement.
string
The id of the service instance to which this application environment belongs.


annotations {[key: string]: string}
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
applicationEnvironmentId Changes to this property will trigger replacement. string
The id of the application environment
displayName string
User-provided human-readable name to be used in user interfaces.
labels {[key: string]: string}
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
namespace string
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
sparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
location
This property is required.
Changes to this property will trigger replacement.
str
The location of the application environment
serviceinstance
This property is required.
Changes to this property will trigger replacement.
str
The id of the service instance to which this application environment belongs.


annotations Mapping[str, str]
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
application_environment_id Changes to this property will trigger replacement. str
The id of the application environment
display_name str
User-provided human-readable name to be used in user interfaces.
labels Mapping[str, str]
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
namespace str
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
spark_application_environment_config GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
location
This property is required.
Changes to this property will trigger replacement.
String
The location of the application environment
serviceinstance
This property is required.
Changes to this property will trigger replacement.
String
The id of the service instance to which this application environment belongs.


annotations Map<String>
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
applicationEnvironmentId Changes to this property will trigger replacement. String
The id of the application environment
displayName String
User-provided human-readable name to be used in user interfaces.
labels Map<String>
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
namespace String
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
sparkApplicationEnvironmentConfig Property Map
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.

Outputs

All input properties are implicitly available as output properties. Additionally, the GdcApplicationEnvironment resource produces the following output properties:

CreateTime string
The timestamp when the resource was created.
EffectiveAnnotations Dictionary<string, string>
EffectiveLabels Dictionary<string, string>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
PulumiLabels Dictionary<string, string>
The combination of labels configured directly on the resource and default labels configured on the provider.
Uid string
System generated unique identifier for this application environment, formatted as UUID4.
UpdateTime string
The timestamp when the resource was most recently updated.
CreateTime string
The timestamp when the resource was created.
EffectiveAnnotations map[string]string
EffectiveLabels map[string]string
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
PulumiLabels map[string]string
The combination of labels configured directly on the resource and default labels configured on the provider.
Uid string
System generated unique identifier for this application environment, formatted as UUID4.
UpdateTime string
The timestamp when the resource was most recently updated.
createTime String
The timestamp when the resource was created.
effectiveAnnotations Map<String,String>
effectiveLabels Map<String,String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id String
The provider-assigned unique ID for this managed resource.
name String
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
pulumiLabels Map<String,String>
The combination of labels configured directly on the resource and default labels configured on the provider.
uid String
System generated unique identifier for this application environment, formatted as UUID4.
updateTime String
The timestamp when the resource was most recently updated.
createTime string
The timestamp when the resource was created.
effectiveAnnotations {[key: string]: string}
effectiveLabels {[key: string]: string}
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id string
The provider-assigned unique ID for this managed resource.
name string
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
pulumiLabels {[key: string]: string}
The combination of labels configured directly on the resource and default labels configured on the provider.
uid string
System generated unique identifier for this application environment, formatted as UUID4.
updateTime string
The timestamp when the resource was most recently updated.
create_time str
The timestamp when the resource was created.
effective_annotations Mapping[str, str]
effective_labels Mapping[str, str]
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id str
The provider-assigned unique ID for this managed resource.
name str
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
pulumi_labels Mapping[str, str]
The combination of labels configured directly on the resource and default labels configured on the provider.
uid str
System generated unique identifier for this application environment, formatted as UUID4.
update_time str
The timestamp when the resource was most recently updated.
createTime String
The timestamp when the resource was created.
effectiveAnnotations Map<String>
effectiveLabels Map<String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id String
The provider-assigned unique ID for this managed resource.
name String
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
pulumiLabels Map<String>
The combination of labels configured directly on the resource and default labels configured on the provider.
uid String
System generated unique identifier for this application environment, formatted as UUID4.
updateTime String
The timestamp when the resource was most recently updated.

Look up Existing GdcApplicationEnvironment Resource

Get an existing GdcApplicationEnvironment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: GdcApplicationEnvironmentState, opts?: CustomResourceOptions): GdcApplicationEnvironment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        annotations: Optional[Mapping[str, str]] = None,
        application_environment_id: Optional[str] = None,
        create_time: Optional[str] = None,
        display_name: Optional[str] = None,
        effective_annotations: Optional[Mapping[str, str]] = None,
        effective_labels: Optional[Mapping[str, str]] = None,
        labels: Optional[Mapping[str, str]] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        namespace: Optional[str] = None,
        project: Optional[str] = None,
        pulumi_labels: Optional[Mapping[str, str]] = None,
        serviceinstance: Optional[str] = None,
        spark_application_environment_config: Optional[GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs] = None,
        uid: Optional[str] = None,
        update_time: Optional[str] = None) -> GdcApplicationEnvironment
func GetGdcApplicationEnvironment(ctx *Context, name string, id IDInput, state *GdcApplicationEnvironmentState, opts ...ResourceOption) (*GdcApplicationEnvironment, error)
public static GdcApplicationEnvironment Get(string name, Input<string> id, GdcApplicationEnvironmentState? state, CustomResourceOptions? opts = null)
public static GdcApplicationEnvironment get(String name, Output<String> id, GdcApplicationEnvironmentState state, CustomResourceOptions options)
resources:  _:    type: gcp:dataproc:GdcApplicationEnvironment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Annotations Dictionary<string, string>
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
ApplicationEnvironmentId Changes to this property will trigger replacement. string
The id of the application environment
CreateTime string
The timestamp when the resource was created.
DisplayName string
User-provided human-readable name to be used in user interfaces.
EffectiveAnnotations Dictionary<string, string>
EffectiveLabels Dictionary<string, string>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Labels Dictionary<string, string>
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
Location Changes to this property will trigger replacement. string
The location of the application environment
Name string
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
Namespace string
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
PulumiLabels Dictionary<string, string>
The combination of labels configured directly on the resource and default labels configured on the provider.
Serviceinstance Changes to this property will trigger replacement. string
The id of the service instance to which this application environment belongs.


SparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
Uid string
System generated unique identifier for this application environment, formatted as UUID4.
UpdateTime string
The timestamp when the resource was most recently updated.
Annotations map[string]string
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
ApplicationEnvironmentId Changes to this property will trigger replacement. string
The id of the application environment
CreateTime string
The timestamp when the resource was created.
DisplayName string
User-provided human-readable name to be used in user interfaces.
EffectiveAnnotations map[string]string
EffectiveLabels map[string]string
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Labels map[string]string
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
Location Changes to this property will trigger replacement. string
The location of the application environment
Name string
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
Namespace string
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
PulumiLabels map[string]string
The combination of labels configured directly on the resource and default labels configured on the provider.
Serviceinstance Changes to this property will trigger replacement. string
The id of the service instance to which this application environment belongs.


SparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
Uid string
System generated unique identifier for this application environment, formatted as UUID4.
UpdateTime string
The timestamp when the resource was most recently updated.
annotations Map<String,String>
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
applicationEnvironmentId Changes to this property will trigger replacement. String
The id of the application environment
createTime String
The timestamp when the resource was created.
displayName String
User-provided human-readable name to be used in user interfaces.
effectiveAnnotations Map<String,String>
effectiveLabels Map<String,String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels Map<String,String>
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
location Changes to this property will trigger replacement. String
The location of the application environment
name String
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
namespace String
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
pulumiLabels Map<String,String>
The combination of labels configured directly on the resource and default labels configured on the provider.
serviceinstance Changes to this property will trigger replacement. String
The id of the service instance to which this application environment belongs.


sparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
uid String
System generated unique identifier for this application environment, formatted as UUID4.
updateTime String
The timestamp when the resource was most recently updated.
annotations {[key: string]: string}
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
applicationEnvironmentId Changes to this property will trigger replacement. string
The id of the application environment
createTime string
The timestamp when the resource was created.
displayName string
User-provided human-readable name to be used in user interfaces.
effectiveAnnotations {[key: string]: string}
effectiveLabels {[key: string]: string}
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels {[key: string]: string}
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
location Changes to this property will trigger replacement. string
The location of the application environment
name string
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
namespace string
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
pulumiLabels {[key: string]: string}
The combination of labels configured directly on the resource and default labels configured on the provider.
serviceinstance Changes to this property will trigger replacement. string
The id of the service instance to which this application environment belongs.


sparkApplicationEnvironmentConfig GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
uid string
System generated unique identifier for this application environment, formatted as UUID4.
updateTime string
The timestamp when the resource was most recently updated.
annotations Mapping[str, str]
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
application_environment_id Changes to this property will trigger replacement. str
The id of the application environment
create_time str
The timestamp when the resource was created.
display_name str
User-provided human-readable name to be used in user interfaces.
effective_annotations Mapping[str, str]
effective_labels Mapping[str, str]
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels Mapping[str, str]
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
location Changes to this property will trigger replacement. str
The location of the application environment
name str
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
namespace str
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
pulumi_labels Mapping[str, str]
The combination of labels configured directly on the resource and default labels configured on the provider.
serviceinstance Changes to this property will trigger replacement. str
The id of the service instance to which this application environment belongs.


spark_application_environment_config GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
uid str
System generated unique identifier for this application environment, formatted as UUID4.
update_time str
The timestamp when the resource was most recently updated.
annotations Map<String>
The annotations to associate with this application environment. Annotations may be used to store client information, but are not used by the server. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
applicationEnvironmentId Changes to this property will trigger replacement. String
The id of the application environment
createTime String
The timestamp when the resource was created.
displayName String
User-provided human-readable name to be used in user interfaces.
effectiveAnnotations Map<String>
effectiveLabels Map<String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels Map<String>
The labels to associate with this application environment. Labels may be used for filtering and billing tracking. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
location Changes to this property will trigger replacement. String
The location of the application environment
name String
Identifier. The name of the application environment. Format: projects/{project}/locations/{location}/serviceInstances/{service_instance}/applicationEnvironments/{application_environment_id}
namespace String
The name of the namespace in which to create this ApplicationEnvironment. This namespace must already exist in the cluster
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
pulumiLabels Map<String>
The combination of labels configured directly on the resource and default labels configured on the provider.
serviceinstance Changes to this property will trigger replacement. String
The id of the service instance to which this application environment belongs.


sparkApplicationEnvironmentConfig Property Map
Represents the SparkApplicationEnvironmentConfig. Structure is documented below.
uid String
System generated unique identifier for this application environment, formatted as UUID4.
updateTime String
The timestamp when the resource was most recently updated.

Supporting Types

GdcApplicationEnvironmentSparkApplicationEnvironmentConfig
, GdcApplicationEnvironmentSparkApplicationEnvironmentConfigArgs

DefaultProperties Dictionary<string, string>
A map of default Spark properties to apply to workloads in this application environment. These defaults may be overridden by per-application properties.
DefaultVersion string
The default Dataproc version to use for applications submitted to this application environment
DefaultProperties map[string]string
A map of default Spark properties to apply to workloads in this application environment. These defaults may be overridden by per-application properties.
DefaultVersion string
The default Dataproc version to use for applications submitted to this application environment
defaultProperties Map<String,String>
A map of default Spark properties to apply to workloads in this application environment. These defaults may be overridden by per-application properties.
defaultVersion String
The default Dataproc version to use for applications submitted to this application environment
defaultProperties {[key: string]: string}
A map of default Spark properties to apply to workloads in this application environment. These defaults may be overridden by per-application properties.
defaultVersion string
The default Dataproc version to use for applications submitted to this application environment
default_properties Mapping[str, str]
A map of default Spark properties to apply to workloads in this application environment. These defaults may be overridden by per-application properties.
default_version str
The default Dataproc version to use for applications submitted to this application environment
defaultProperties Map<String>
A map of default Spark properties to apply to workloads in this application environment. These defaults may be overridden by per-application properties.
defaultVersion String
The default Dataproc version to use for applications submitted to this application environment

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:

$ pulumi import gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment default projects/{{project}}/locations/{{location}}/serviceInstances/{{serviceinstance}}/applicationEnvironments/{{application_environment_id}}
Copy
$ pulumi import gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment default {{project}}/{{location}}/{{serviceinstance}}/{{application_environment_id}}
Copy
$ pulumi import gcp:dataproc/gdcApplicationEnvironment:GdcApplicationEnvironment default {{location}}/{{serviceinstance}}/{{application_environment_id}}
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.