1. Packages
  2. Google Cloud Native
  3. API Docs
  4. dataplex
  5. dataplex/v1
  6. Environment

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.dataplex/v1.Environment

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Create an environment resource. Auto-naming is currently not supported for this resource.

    Create Environment Resource

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

    Constructor syntax

    new Environment(name: string, args: EnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def Environment(resource_name: str,
                    args: EnvironmentArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Environment(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    environment_id: Optional[str] = None,
                    infrastructure_spec: Optional[GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs] = None,
                    lake_id: Optional[str] = None,
                    description: Optional[str] = None,
                    display_name: Optional[str] = None,
                    labels: Optional[Mapping[str, str]] = None,
                    location: Optional[str] = None,
                    project: Optional[str] = None,
                    session_spec: Optional[GoogleCloudDataplexV1EnvironmentSessionSpecArgs] = None)
    func NewEnvironment(ctx *Context, name string, args EnvironmentArgs, opts ...ResourceOption) (*Environment, error)
    public Environment(string name, EnvironmentArgs args, CustomResourceOptions? opts = null)
    public Environment(String name, EnvironmentArgs args)
    public Environment(String name, EnvironmentArgs args, CustomResourceOptions options)
    
    type: google-native:dataplex/v1:Environment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

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

    var exampleenvironmentResourceResourceFromDataplexv1 = new GoogleNative.Dataplex.V1.Environment("exampleenvironmentResourceResourceFromDataplexv1", new()
    {
        EnvironmentId = "string",
        InfrastructureSpec = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs
        {
            OsImage = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeArgs
            {
                ImageVersion = "string",
                JavaLibraries = new[]
                {
                    "string",
                },
                Properties = 
                {
                    { "string", "string" },
                },
                PythonPackages = new[]
                {
                    "string",
                },
            },
            Compute = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesArgs
            {
                DiskSizeGb = 0,
                MaxNodeCount = 0,
                NodeCount = 0,
            },
        },
        LakeId = "string",
        Description = "string",
        DisplayName = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Location = "string",
        Project = "string",
        SessionSpec = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1EnvironmentSessionSpecArgs
        {
            EnableFastStartup = false,
            MaxIdleDuration = "string",
        },
    });
    
    example, err := dataplex.NewEnvironment(ctx, "exampleenvironmentResourceResourceFromDataplexv1", &dataplex.EnvironmentArgs{
    EnvironmentId: pulumi.String("string"),
    InfrastructureSpec: &dataplex.GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs{
    OsImage: &dataplex.GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeArgs{
    ImageVersion: pulumi.String("string"),
    JavaLibraries: pulumi.StringArray{
    pulumi.String("string"),
    },
    Properties: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    PythonPackages: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    Compute: &dataplex.GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesArgs{
    DiskSizeGb: pulumi.Int(0),
    MaxNodeCount: pulumi.Int(0),
    NodeCount: pulumi.Int(0),
    },
    },
    LakeId: pulumi.String("string"),
    Description: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    Labels: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    Project: pulumi.String("string"),
    SessionSpec: &dataplex.GoogleCloudDataplexV1EnvironmentSessionSpecArgs{
    EnableFastStartup: pulumi.Bool(false),
    MaxIdleDuration: pulumi.String("string"),
    },
    })
    
    var exampleenvironmentResourceResourceFromDataplexv1 = new Environment("exampleenvironmentResourceResourceFromDataplexv1", EnvironmentArgs.builder()        
        .environmentId("string")
        .infrastructureSpec(GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs.builder()
            .osImage(GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeArgs.builder()
                .imageVersion("string")
                .javaLibraries("string")
                .properties(Map.of("string", "string"))
                .pythonPackages("string")
                .build())
            .compute(GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesArgs.builder()
                .diskSizeGb(0)
                .maxNodeCount(0)
                .nodeCount(0)
                .build())
            .build())
        .lakeId("string")
        .description("string")
        .displayName("string")
        .labels(Map.of("string", "string"))
        .location("string")
        .project("string")
        .sessionSpec(GoogleCloudDataplexV1EnvironmentSessionSpecArgs.builder()
            .enableFastStartup(false)
            .maxIdleDuration("string")
            .build())
        .build());
    
    exampleenvironment_resource_resource_from_dataplexv1 = google_native.dataplex.v1.Environment("exampleenvironmentResourceResourceFromDataplexv1",
        environment_id="string",
        infrastructure_spec=google_native.dataplex.v1.GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs(
            os_image=google_native.dataplex.v1.GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeArgs(
                image_version="string",
                java_libraries=["string"],
                properties={
                    "string": "string",
                },
                python_packages=["string"],
            ),
            compute=google_native.dataplex.v1.GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesArgs(
                disk_size_gb=0,
                max_node_count=0,
                node_count=0,
            ),
        ),
        lake_id="string",
        description="string",
        display_name="string",
        labels={
            "string": "string",
        },
        location="string",
        project="string",
        session_spec=google_native.dataplex.v1.GoogleCloudDataplexV1EnvironmentSessionSpecArgs(
            enable_fast_startup=False,
            max_idle_duration="string",
        ))
    
    const exampleenvironmentResourceResourceFromDataplexv1 = new google_native.dataplex.v1.Environment("exampleenvironmentResourceResourceFromDataplexv1", {
        environmentId: "string",
        infrastructureSpec: {
            osImage: {
                imageVersion: "string",
                javaLibraries: ["string"],
                properties: {
                    string: "string",
                },
                pythonPackages: ["string"],
            },
            compute: {
                diskSizeGb: 0,
                maxNodeCount: 0,
                nodeCount: 0,
            },
        },
        lakeId: "string",
        description: "string",
        displayName: "string",
        labels: {
            string: "string",
        },
        location: "string",
        project: "string",
        sessionSpec: {
            enableFastStartup: false,
            maxIdleDuration: "string",
        },
    });
    
    type: google-native:dataplex/v1:Environment
    properties:
        description: string
        displayName: string
        environmentId: string
        infrastructureSpec:
            compute:
                diskSizeGb: 0
                maxNodeCount: 0
                nodeCount: 0
            osImage:
                imageVersion: string
                javaLibraries:
                    - string
                properties:
                    string: string
                pythonPackages:
                    - string
        labels:
            string: string
        lakeId: string
        location: string
        project: string
        sessionSpec:
            enableFastStartup: false
            maxIdleDuration: string
    

    Environment Resource Properties

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

    Inputs

    The Environment resource accepts the following input properties:

    EnvironmentId string
    Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake.
    InfrastructureSpec Pulumi.GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1EnvironmentInfrastructureSpec
    Infrastructure specification for the Environment.
    LakeId string
    Description string
    Optional. Description of the environment.
    DisplayName string
    Optional. User friendly display name.
    Labels Dictionary<string, string>
    Optional. User defined labels for the environment.
    Location string
    Project string
    SessionSpec Pulumi.GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1EnvironmentSessionSpec
    Optional. Configuration for sessions created for this environment.
    EnvironmentId string
    Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake.
    InfrastructureSpec GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs
    Infrastructure specification for the Environment.
    LakeId string
    Description string
    Optional. Description of the environment.
    DisplayName string
    Optional. User friendly display name.
    Labels map[string]string
    Optional. User defined labels for the environment.
    Location string
    Project string
    SessionSpec GoogleCloudDataplexV1EnvironmentSessionSpecArgs
    Optional. Configuration for sessions created for this environment.
    environmentId String
    Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake.
    infrastructureSpec GoogleCloudDataplexV1EnvironmentInfrastructureSpec
    Infrastructure specification for the Environment.
    lakeId String
    description String
    Optional. Description of the environment.
    displayName String
    Optional. User friendly display name.
    labels Map<String,String>
    Optional. User defined labels for the environment.
    location String
    project String
    sessionSpec GoogleCloudDataplexV1EnvironmentSessionSpec
    Optional. Configuration for sessions created for this environment.
    environmentId string
    Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake.
    infrastructureSpec GoogleCloudDataplexV1EnvironmentInfrastructureSpec
    Infrastructure specification for the Environment.
    lakeId string
    description string
    Optional. Description of the environment.
    displayName string
    Optional. User friendly display name.
    labels {[key: string]: string}
    Optional. User defined labels for the environment.
    location string
    project string
    sessionSpec GoogleCloudDataplexV1EnvironmentSessionSpec
    Optional. Configuration for sessions created for this environment.
    environment_id str
    Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake.
    infrastructure_spec GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs
    Infrastructure specification for the Environment.
    lake_id str
    description str
    Optional. Description of the environment.
    display_name str
    Optional. User friendly display name.
    labels Mapping[str, str]
    Optional. User defined labels for the environment.
    location str
    project str
    session_spec GoogleCloudDataplexV1EnvironmentSessionSpecArgs
    Optional. Configuration for sessions created for this environment.
    environmentId String
    Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake.
    infrastructureSpec Property Map
    Infrastructure specification for the Environment.
    lakeId String
    description String
    Optional. Description of the environment.
    displayName String
    Optional. User friendly display name.
    labels Map<String>
    Optional. User defined labels for the environment.
    location String
    project String
    sessionSpec Property Map
    Optional. Configuration for sessions created for this environment.

    Outputs

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

    CreateTime string
    Environment creation time.
    Endpoints Pulumi.GoogleNative.Dataplex.V1.Outputs.GoogleCloudDataplexV1EnvironmentEndpointsResponse
    URI Endpoints to access sessions associated with the Environment.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}
    SessionStatus Pulumi.GoogleNative.Dataplex.V1.Outputs.GoogleCloudDataplexV1EnvironmentSessionStatusResponse
    Status of sessions created for this environment.
    State string
    Current state of the environment.
    Uid string
    System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name.
    UpdateTime string
    The time when the environment was last updated.
    CreateTime string
    Environment creation time.
    Endpoints GoogleCloudDataplexV1EnvironmentEndpointsResponse
    URI Endpoints to access sessions associated with the Environment.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}
    SessionStatus GoogleCloudDataplexV1EnvironmentSessionStatusResponse
    Status of sessions created for this environment.
    State string
    Current state of the environment.
    Uid string
    System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name.
    UpdateTime string
    The time when the environment was last updated.
    createTime String
    Environment creation time.
    endpoints GoogleCloudDataplexV1EnvironmentEndpointsResponse
    URI Endpoints to access sessions associated with the Environment.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}
    sessionStatus GoogleCloudDataplexV1EnvironmentSessionStatusResponse
    Status of sessions created for this environment.
    state String
    Current state of the environment.
    uid String
    System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name.
    updateTime String
    The time when the environment was last updated.
    createTime string
    Environment creation time.
    endpoints GoogleCloudDataplexV1EnvironmentEndpointsResponse
    URI Endpoints to access sessions associated with the Environment.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}
    sessionStatus GoogleCloudDataplexV1EnvironmentSessionStatusResponse
    Status of sessions created for this environment.
    state string
    Current state of the environment.
    uid string
    System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name.
    updateTime string
    The time when the environment was last updated.
    create_time str
    Environment creation time.
    endpoints GoogleCloudDataplexV1EnvironmentEndpointsResponse
    URI Endpoints to access sessions associated with the Environment.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}
    session_status GoogleCloudDataplexV1EnvironmentSessionStatusResponse
    Status of sessions created for this environment.
    state str
    Current state of the environment.
    uid str
    System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name.
    update_time str
    The time when the environment was last updated.
    createTime String
    Environment creation time.
    endpoints Property Map
    URI Endpoints to access sessions associated with the Environment.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}
    sessionStatus Property Map
    Status of sessions created for this environment.
    state String
    Current state of the environment.
    uid String
    System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name.
    updateTime String
    The time when the environment was last updated.

    Supporting Types

    GoogleCloudDataplexV1EnvironmentEndpointsResponse, GoogleCloudDataplexV1EnvironmentEndpointsResponseArgs

    Notebooks string
    URI to serve notebook APIs
    Sql string
    URI to serve SQL APIs
    Notebooks string
    URI to serve notebook APIs
    Sql string
    URI to serve SQL APIs
    notebooks String
    URI to serve notebook APIs
    sql String
    URI to serve SQL APIs
    notebooks string
    URI to serve notebook APIs
    sql string
    URI to serve SQL APIs
    notebooks str
    URI to serve notebook APIs
    sql str
    URI to serve SQL APIs
    notebooks String
    URI to serve notebook APIs
    sql String
    URI to serve SQL APIs

    GoogleCloudDataplexV1EnvironmentInfrastructureSpec, GoogleCloudDataplexV1EnvironmentInfrastructureSpecArgs

    OsImage GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
    Software Runtime Configuration for analyze interactive workloads.
    Compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources
    Optional. Compute resources needed for analyze interactive workloads.
    osImage GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
    Software Runtime Configuration for analyze interactive workloads.
    compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources
    Optional. Compute resources needed for analyze interactive workloads.
    osImage GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
    Software Runtime Configuration for analyze interactive workloads.
    compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources
    Optional. Compute resources needed for analyze interactive workloads.
    os_image GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
    Software Runtime Configuration for analyze interactive workloads.
    compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources
    Optional. Compute resources needed for analyze interactive workloads.
    osImage Property Map
    Software Runtime Configuration for analyze interactive workloads.
    compute Property Map
    Optional. Compute resources needed for analyze interactive workloads.

    GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources, GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesArgs

    DiskSizeGb int
    Optional. Size in GB of the disk. Default is 100 GB.
    MaxNodeCount int
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    NodeCount int
    Optional. Total number of nodes in the sessions created for this environment.
    DiskSizeGb int
    Optional. Size in GB of the disk. Default is 100 GB.
    MaxNodeCount int
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    NodeCount int
    Optional. Total number of nodes in the sessions created for this environment.
    diskSizeGb Integer
    Optional. Size in GB of the disk. Default is 100 GB.
    maxNodeCount Integer
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    nodeCount Integer
    Optional. Total number of nodes in the sessions created for this environment.
    diskSizeGb number
    Optional. Size in GB of the disk. Default is 100 GB.
    maxNodeCount number
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    nodeCount number
    Optional. Total number of nodes in the sessions created for this environment.
    disk_size_gb int
    Optional. Size in GB of the disk. Default is 100 GB.
    max_node_count int
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    node_count int
    Optional. Total number of nodes in the sessions created for this environment.
    diskSizeGb Number
    Optional. Size in GB of the disk. Default is 100 GB.
    maxNodeCount Number
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    nodeCount Number
    Optional. Total number of nodes in the sessions created for this environment.

    GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesResponse, GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesResponseArgs

    DiskSizeGb int
    Optional. Size in GB of the disk. Default is 100 GB.
    MaxNodeCount int
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    NodeCount int
    Optional. Total number of nodes in the sessions created for this environment.
    DiskSizeGb int
    Optional. Size in GB of the disk. Default is 100 GB.
    MaxNodeCount int
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    NodeCount int
    Optional. Total number of nodes in the sessions created for this environment.
    diskSizeGb Integer
    Optional. Size in GB of the disk. Default is 100 GB.
    maxNodeCount Integer
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    nodeCount Integer
    Optional. Total number of nodes in the sessions created for this environment.
    diskSizeGb number
    Optional. Size in GB of the disk. Default is 100 GB.
    maxNodeCount number
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    nodeCount number
    Optional. Total number of nodes in the sessions created for this environment.
    disk_size_gb int
    Optional. Size in GB of the disk. Default is 100 GB.
    max_node_count int
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    node_count int
    Optional. Total number of nodes in the sessions created for this environment.
    diskSizeGb Number
    Optional. Size in GB of the disk. Default is 100 GB.
    maxNodeCount Number
    Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
    nodeCount Number
    Optional. Total number of nodes in the sessions created for this environment.

    GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime, GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeArgs

    ImageVersion string
    Dataplex Image version.
    JavaLibraries List<string>
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    Properties Dictionary<string, string>
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    PythonPackages List<string>
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    ImageVersion string
    Dataplex Image version.
    JavaLibraries []string
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    Properties map[string]string
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    PythonPackages []string
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    imageVersion String
    Dataplex Image version.
    javaLibraries List<String>
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties Map<String,String>
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    pythonPackages List<String>
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    imageVersion string
    Dataplex Image version.
    javaLibraries string[]
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties {[key: string]: string}
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    pythonPackages string[]
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    image_version str
    Dataplex Image version.
    java_libraries Sequence[str]
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties Mapping[str, str]
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    python_packages Sequence[str]
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    imageVersion String
    Dataplex Image version.
    javaLibraries List<String>
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties Map<String>
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    pythonPackages List<String>
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz

    GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeResponse, GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeResponseArgs

    ImageVersion string
    Dataplex Image version.
    JavaLibraries List<string>
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    Properties Dictionary<string, string>
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    PythonPackages List<string>
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    ImageVersion string
    Dataplex Image version.
    JavaLibraries []string
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    Properties map[string]string
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    PythonPackages []string
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    imageVersion String
    Dataplex Image version.
    javaLibraries List<String>
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties Map<String,String>
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    pythonPackages List<String>
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    imageVersion string
    Dataplex Image version.
    javaLibraries string[]
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties {[key: string]: string}
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    pythonPackages string[]
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    image_version str
    Dataplex Image version.
    java_libraries Sequence[str]
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties Mapping[str, str]
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    python_packages Sequence[str]
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
    imageVersion String
    Dataplex Image version.
    javaLibraries List<String>
    Optional. List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
    properties Map<String>
    Optional. Spark properties to provide configuration for use in sessions created for this environment. The properties to set on daemon config files. Property keys are specified in prefix:property format. The prefix must be "spark".
    pythonPackages List<String>
    Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz

    GoogleCloudDataplexV1EnvironmentInfrastructureSpecResponse, GoogleCloudDataplexV1EnvironmentInfrastructureSpecResponseArgs

    Compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesResponse
    Optional. Compute resources needed for analyze interactive workloads.
    OsImage GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeResponse
    Software Runtime Configuration for analyze interactive workloads.
    compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesResponse
    Optional. Compute resources needed for analyze interactive workloads.
    osImage GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeResponse
    Software Runtime Configuration for analyze interactive workloads.
    compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesResponse
    Optional. Compute resources needed for analyze interactive workloads.
    osImage GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeResponse
    Software Runtime Configuration for analyze interactive workloads.
    compute GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResourcesResponse
    Optional. Compute resources needed for analyze interactive workloads.
    os_image GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntimeResponse
    Software Runtime Configuration for analyze interactive workloads.
    compute Property Map
    Optional. Compute resources needed for analyze interactive workloads.
    osImage Property Map
    Software Runtime Configuration for analyze interactive workloads.

    GoogleCloudDataplexV1EnvironmentSessionSpec, GoogleCloudDataplexV1EnvironmentSessionSpecArgs

    EnableFastStartup bool
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    MaxIdleDuration string
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    EnableFastStartup bool
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    MaxIdleDuration string
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enableFastStartup Boolean
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    maxIdleDuration String
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enableFastStartup boolean
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    maxIdleDuration string
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enable_fast_startup bool
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    max_idle_duration str
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enableFastStartup Boolean
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    maxIdleDuration String
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.

    GoogleCloudDataplexV1EnvironmentSessionSpecResponse, GoogleCloudDataplexV1EnvironmentSessionSpecResponseArgs

    EnableFastStartup bool
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    MaxIdleDuration string
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    EnableFastStartup bool
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    MaxIdleDuration string
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enableFastStartup Boolean
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    maxIdleDuration String
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enableFastStartup boolean
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    maxIdleDuration string
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enable_fast_startup bool
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    max_idle_duration str
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.
    enableFastStartup Boolean
    Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.
    maxIdleDuration String
    Optional. The idle time configuration of the session. The session will be auto-terminated at the end of this period.

    GoogleCloudDataplexV1EnvironmentSessionStatusResponse, GoogleCloudDataplexV1EnvironmentSessionStatusResponseArgs

    Active bool
    Queries over sessions to mark whether the environment is currently active or not
    Active bool
    Queries over sessions to mark whether the environment is currently active or not
    active Boolean
    Queries over sessions to mark whether the environment is currently active or not
    active boolean
    Queries over sessions to mark whether the environment is currently active or not
    active bool
    Queries over sessions to mark whether the environment is currently active or not
    active Boolean
    Queries over sessions to mark whether the environment is currently active or not

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi