1. Packages
  2. DataRobot
  3. API Docs
  4. getExecutionEnvironment
DataRobot v0.9.0 published on Tuesday, Apr 8, 2025 by DataRobot, Inc.

datarobot.getExecutionEnvironment

Explore with Pulumi AI

DataRobot v0.9.0 published on Tuesday, Apr 8, 2025 by DataRobot, Inc.

Execution Environment

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as datarobot from "@pulumi/datarobot";

const example = datarobot.getExecutionEnvironment({
    name: "DataRobot] Python 3.12",
});
Copy
import pulumi
import pulumi_datarobot as datarobot

example = datarobot.get_execution_environment(name="DataRobot] Python 3.12")
Copy
package main

import (
	"github.com/datarobot-community/pulumi-datarobot/sdk/go/datarobot"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datarobot.LookupExecutionEnvironment(ctx, &datarobot.LookupExecutionEnvironmentArgs{
			Name: "DataRobot] Python 3.12",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datarobot = Pulumi.Datarobot;

return await Deployment.RunAsync(() => 
{
    var example = Datarobot.GetExecutionEnvironment.Invoke(new()
    {
        Name = "DataRobot] Python 3.12",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datarobot.DatarobotFunctions;
import com.pulumi.datarobot.inputs.GetExecutionEnvironmentArgs;
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) {
        final var example = DatarobotFunctions.getExecutionEnvironment(GetExecutionEnvironmentArgs.builder()
            .name("DataRobot] Python 3.12")
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: datarobot:getExecutionEnvironment
      arguments:
        name: DataRobot] Python 3.12
Copy

Using getExecutionEnvironment

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getExecutionEnvironment(args: GetExecutionEnvironmentArgs, opts?: InvokeOptions): Promise<GetExecutionEnvironmentResult>
function getExecutionEnvironmentOutput(args: GetExecutionEnvironmentOutputArgs, opts?: InvokeOptions): Output<GetExecutionEnvironmentResult>
Copy
def get_execution_environment(name: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetExecutionEnvironmentResult
def get_execution_environment_output(name: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetExecutionEnvironmentResult]
Copy
func LookupExecutionEnvironment(ctx *Context, args *LookupExecutionEnvironmentArgs, opts ...InvokeOption) (*LookupExecutionEnvironmentResult, error)
func LookupExecutionEnvironmentOutput(ctx *Context, args *LookupExecutionEnvironmentOutputArgs, opts ...InvokeOption) LookupExecutionEnvironmentResultOutput
Copy

> Note: This function is named LookupExecutionEnvironment in the Go SDK.

public static class GetExecutionEnvironment 
{
    public static Task<GetExecutionEnvironmentResult> InvokeAsync(GetExecutionEnvironmentArgs args, InvokeOptions? opts = null)
    public static Output<GetExecutionEnvironmentResult> Invoke(GetExecutionEnvironmentInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetExecutionEnvironmentResult> getExecutionEnvironment(GetExecutionEnvironmentArgs args, InvokeOptions options)
public static Output<GetExecutionEnvironmentResult> getExecutionEnvironment(GetExecutionEnvironmentArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: datarobot:index/getExecutionEnvironment:getExecutionEnvironment
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Name This property is required. string
The name of the Execution Environment.
Name This property is required. string
The name of the Execution Environment.
name This property is required. String
The name of the Execution Environment.
name This property is required. string
The name of the Execution Environment.
name This property is required. str
The name of the Execution Environment.
name This property is required. String
The name of the Execution Environment.

getExecutionEnvironment Result

The following output properties are available:

Description string
The description of the Execution Environment.
Id string
The ID of the Execution Environment.
Name string
The name of the Execution Environment.
ProgrammingLanguage string
The programming language of the Execution Environment.
VersionId string
The ID of the Execution Environment Version.
Description string
The description of the Execution Environment.
Id string
The ID of the Execution Environment.
Name string
The name of the Execution Environment.
ProgrammingLanguage string
The programming language of the Execution Environment.
VersionId string
The ID of the Execution Environment Version.
description String
The description of the Execution Environment.
id String
The ID of the Execution Environment.
name String
The name of the Execution Environment.
programmingLanguage String
The programming language of the Execution Environment.
versionId String
The ID of the Execution Environment Version.
description string
The description of the Execution Environment.
id string
The ID of the Execution Environment.
name string
The name of the Execution Environment.
programmingLanguage string
The programming language of the Execution Environment.
versionId string
The ID of the Execution Environment Version.
description str
The description of the Execution Environment.
id str
The ID of the Execution Environment.
name str
The name of the Execution Environment.
programming_language str
The programming language of the Execution Environment.
version_id str
The ID of the Execution Environment Version.
description String
The description of the Execution Environment.
id String
The ID of the Execution Environment.
name String
The name of the Execution Environment.
programmingLanguage String
The programming language of the Execution Environment.
versionId String
The ID of the Execution Environment Version.

Package Details

Repository
datarobot datarobot-community/pulumi-datarobot
License
Apache-2.0
Notes
This Pulumi package is based on the datarobot Terraform Provider.
DataRobot v0.9.0 published on Tuesday, Apr 8, 2025 by DataRobot, Inc.