datarobot.CustomApplicationFromEnvironment
Explore with Pulumi AI

Custom Application created from an Execution Environment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as datarobot from "@datarobot/pulumi-datarobot";
const example = new datarobot.CustomApplicationFromEnvironment("example", {
environmentId: "6542cd582a9d3d51bf4ac71e",
externalAccessEnabled: true,
externalAccessRecipients: ["recipient@example.com"],
});
export const datarobotCustomApplicationId = example.id;
export const datarobotCustomApplicationUrl = example.applicationUrl;
import pulumi
import pulumi_datarobot as datarobot
example = datarobot.CustomApplicationFromEnvironment("example",
environment_id="6542cd582a9d3d51bf4ac71e",
external_access_enabled=True,
external_access_recipients=["recipient@example.com"])
pulumi.export("datarobotCustomApplicationId", example.id)
pulumi.export("datarobotCustomApplicationUrl", example.application_url)
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 {
example, err := datarobot.NewCustomApplicationFromEnvironment(ctx, "example", &datarobot.CustomApplicationFromEnvironmentArgs{
EnvironmentId: pulumi.String("6542cd582a9d3d51bf4ac71e"),
ExternalAccessEnabled: pulumi.Bool(true),
ExternalAccessRecipients: pulumi.StringArray{
pulumi.String("recipient@example.com"),
},
})
if err != nil {
return err
}
ctx.Export("datarobotCustomApplicationId", example.ID())
ctx.Export("datarobotCustomApplicationUrl", example.ApplicationUrl)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datarobot = DataRobotPulumi.Datarobot;
return await Deployment.RunAsync(() =>
{
var example = new Datarobot.CustomApplicationFromEnvironment("example", new()
{
EnvironmentId = "6542cd582a9d3d51bf4ac71e",
ExternalAccessEnabled = true,
ExternalAccessRecipients = new[]
{
"recipient@example.com",
},
});
return new Dictionary<string, object?>
{
["datarobotCustomApplicationId"] = example.Id,
["datarobotCustomApplicationUrl"] = example.ApplicationUrl,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datarobot.CustomApplicationFromEnvironment;
import com.pulumi.datarobot.CustomApplicationFromEnvironmentArgs;
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 example = new CustomApplicationFromEnvironment("example", CustomApplicationFromEnvironmentArgs.builder()
.environmentId("6542cd582a9d3d51bf4ac71e")
.externalAccessEnabled(true)
.externalAccessRecipients("recipient@example.com")
.build());
ctx.export("datarobotCustomApplicationId", example.id());
ctx.export("datarobotCustomApplicationUrl", example.applicationUrl());
}
}
resources:
example:
type: datarobot:CustomApplicationFromEnvironment
properties:
environmentId: 6542cd582a9d3d51bf4ac71e
# optional settings
externalAccessEnabled: true
externalAccessRecipients:
- recipient@example.com
outputs:
datarobotCustomApplicationId: ${example.id}
datarobotCustomApplicationUrl: ${example.applicationUrl}
Create CustomApplicationFromEnvironment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomApplicationFromEnvironment(name: string, args: CustomApplicationFromEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def CustomApplicationFromEnvironment(resource_name: str,
args: CustomApplicationFromEnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomApplicationFromEnvironment(resource_name: str,
opts: Optional[ResourceOptions] = None,
environment_id: Optional[str] = None,
external_access_enabled: Optional[bool] = None,
external_access_recipients: Optional[Sequence[str]] = None,
name: Optional[str] = None,
use_case_ids: Optional[Sequence[str]] = None)
func NewCustomApplicationFromEnvironment(ctx *Context, name string, args CustomApplicationFromEnvironmentArgs, opts ...ResourceOption) (*CustomApplicationFromEnvironment, error)
public CustomApplicationFromEnvironment(string name, CustomApplicationFromEnvironmentArgs args, CustomResourceOptions? opts = null)
public CustomApplicationFromEnvironment(String name, CustomApplicationFromEnvironmentArgs args)
public CustomApplicationFromEnvironment(String name, CustomApplicationFromEnvironmentArgs args, CustomResourceOptions options)
type: datarobot:CustomApplicationFromEnvironment
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 CustomApplicationFromEnvironmentArgs
- 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 CustomApplicationFromEnvironmentArgs
- 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 CustomApplicationFromEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomApplicationFromEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomApplicationFromEnvironmentArgs
- 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 customApplicationFromEnvironmentResource = new Datarobot.CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource", new()
{
EnvironmentId = "string",
ExternalAccessEnabled = false,
ExternalAccessRecipients = new[]
{
"string",
},
Name = "string",
UseCaseIds = new[]
{
"string",
},
});
example, err := datarobot.NewCustomApplicationFromEnvironment(ctx, "customApplicationFromEnvironmentResource", &datarobot.CustomApplicationFromEnvironmentArgs{
EnvironmentId: pulumi.String("string"),
ExternalAccessEnabled: pulumi.Bool(false),
ExternalAccessRecipients: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
UseCaseIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var customApplicationFromEnvironmentResource = new CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource", CustomApplicationFromEnvironmentArgs.builder()
.environmentId("string")
.externalAccessEnabled(false)
.externalAccessRecipients("string")
.name("string")
.useCaseIds("string")
.build());
custom_application_from_environment_resource = datarobot.CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource",
environment_id="string",
external_access_enabled=False,
external_access_recipients=["string"],
name="string",
use_case_ids=["string"])
const customApplicationFromEnvironmentResource = new datarobot.CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource", {
environmentId: "string",
externalAccessEnabled: false,
externalAccessRecipients: ["string"],
name: "string",
useCaseIds: ["string"],
});
type: datarobot:CustomApplicationFromEnvironment
properties:
environmentId: string
externalAccessEnabled: false
externalAccessRecipients:
- string
name: string
useCaseIds:
- string
CustomApplicationFromEnvironment 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 CustomApplicationFromEnvironment resource accepts the following input properties:
- Environment
Id string - The ID of the Execution Environment used to create the Custom Application.
- External
Access boolEnabled - Whether external access is enabled for the Custom Application.
- External
Access List<string>Recipients - The list of external email addresses that have access to the Custom Application.
- Name string
- The name of the Custom Application.
- Use
Case List<string>Ids - The list of Use Case IDs to add the Custom Application to.
- Environment
Id string - The ID of the Execution Environment used to create the Custom Application.
- External
Access boolEnabled - Whether external access is enabled for the Custom Application.
- External
Access []stringRecipients - The list of external email addresses that have access to the Custom Application.
- Name string
- The name of the Custom Application.
- Use
Case []stringIds - The list of Use Case IDs to add the Custom Application to.
- environment
Id String - The ID of the Execution Environment used to create the Custom Application.
- external
Access BooleanEnabled - Whether external access is enabled for the Custom Application.
- external
Access List<String>Recipients - The list of external email addresses that have access to the Custom Application.
- name String
- The name of the Custom Application.
- use
Case List<String>Ids - The list of Use Case IDs to add the Custom Application to.
- environment
Id string - The ID of the Execution Environment used to create the Custom Application.
- external
Access booleanEnabled - Whether external access is enabled for the Custom Application.
- external
Access string[]Recipients - The list of external email addresses that have access to the Custom Application.
- name string
- The name of the Custom Application.
- use
Case string[]Ids - The list of Use Case IDs to add the Custom Application to.
- environment_
id str - The ID of the Execution Environment used to create the Custom Application.
- external_
access_ boolenabled - Whether external access is enabled for the Custom Application.
- external_
access_ Sequence[str]recipients - The list of external email addresses that have access to the Custom Application.
- name str
- The name of the Custom Application.
- use_
case_ Sequence[str]ids - The list of Use Case IDs to add the Custom Application to.
- environment
Id String - The ID of the Execution Environment used to create the Custom Application.
- external
Access BooleanEnabled - Whether external access is enabled for the Custom Application.
- external
Access List<String>Recipients - The list of external email addresses that have access to the Custom Application.
- name String
- The name of the Custom Application.
- use
Case List<String>Ids - The list of Use Case IDs to add the Custom Application to.
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomApplicationFromEnvironment resource produces the following output properties:
- Application
Url string - The URL of the Custom Application.
- Environment
Version stringId - The version ID of the Execution Environment used to create the Custom Application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Application
Url string - The URL of the Custom Application.
- Environment
Version stringId - The version ID of the Execution Environment used to create the Custom Application.
- Id string
- The provider-assigned unique ID for this managed resource.
- application
Url String - The URL of the Custom Application.
- environment
Version StringId - The version ID of the Execution Environment used to create the Custom Application.
- id String
- The provider-assigned unique ID for this managed resource.
- application
Url string - The URL of the Custom Application.
- environment
Version stringId - The version ID of the Execution Environment used to create the Custom Application.
- id string
- The provider-assigned unique ID for this managed resource.
- application_
url str - The URL of the Custom Application.
- environment_
version_ strid - The version ID of the Execution Environment used to create the Custom Application.
- id str
- The provider-assigned unique ID for this managed resource.
- application
Url String - The URL of the Custom Application.
- environment
Version StringId - The version ID of the Execution Environment used to create the Custom Application.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing CustomApplicationFromEnvironment Resource
Get an existing CustomApplicationFromEnvironment 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?: CustomApplicationFromEnvironmentState, opts?: CustomResourceOptions): CustomApplicationFromEnvironment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_url: Optional[str] = None,
environment_id: Optional[str] = None,
environment_version_id: Optional[str] = None,
external_access_enabled: Optional[bool] = None,
external_access_recipients: Optional[Sequence[str]] = None,
name: Optional[str] = None,
use_case_ids: Optional[Sequence[str]] = None) -> CustomApplicationFromEnvironment
func GetCustomApplicationFromEnvironment(ctx *Context, name string, id IDInput, state *CustomApplicationFromEnvironmentState, opts ...ResourceOption) (*CustomApplicationFromEnvironment, error)
public static CustomApplicationFromEnvironment Get(string name, Input<string> id, CustomApplicationFromEnvironmentState? state, CustomResourceOptions? opts = null)
public static CustomApplicationFromEnvironment get(String name, Output<String> id, CustomApplicationFromEnvironmentState state, CustomResourceOptions options)
resources: _: type: datarobot:CustomApplicationFromEnvironment get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Application
Url string - The URL of the Custom Application.
- Environment
Id string - The ID of the Execution Environment used to create the Custom Application.
- Environment
Version stringId - The version ID of the Execution Environment used to create the Custom Application.
- External
Access boolEnabled - Whether external access is enabled for the Custom Application.
- External
Access List<string>Recipients - The list of external email addresses that have access to the Custom Application.
- Name string
- The name of the Custom Application.
- Use
Case List<string>Ids - The list of Use Case IDs to add the Custom Application to.
- Application
Url string - The URL of the Custom Application.
- Environment
Id string - The ID of the Execution Environment used to create the Custom Application.
- Environment
Version stringId - The version ID of the Execution Environment used to create the Custom Application.
- External
Access boolEnabled - Whether external access is enabled for the Custom Application.
- External
Access []stringRecipients - The list of external email addresses that have access to the Custom Application.
- Name string
- The name of the Custom Application.
- Use
Case []stringIds - The list of Use Case IDs to add the Custom Application to.
- application
Url String - The URL of the Custom Application.
- environment
Id String - The ID of the Execution Environment used to create the Custom Application.
- environment
Version StringId - The version ID of the Execution Environment used to create the Custom Application.
- external
Access BooleanEnabled - Whether external access is enabled for the Custom Application.
- external
Access List<String>Recipients - The list of external email addresses that have access to the Custom Application.
- name String
- The name of the Custom Application.
- use
Case List<String>Ids - The list of Use Case IDs to add the Custom Application to.
- application
Url string - The URL of the Custom Application.
- environment
Id string - The ID of the Execution Environment used to create the Custom Application.
- environment
Version stringId - The version ID of the Execution Environment used to create the Custom Application.
- external
Access booleanEnabled - Whether external access is enabled for the Custom Application.
- external
Access string[]Recipients - The list of external email addresses that have access to the Custom Application.
- name string
- The name of the Custom Application.
- use
Case string[]Ids - The list of Use Case IDs to add the Custom Application to.
- application_
url str - The URL of the Custom Application.
- environment_
id str - The ID of the Execution Environment used to create the Custom Application.
- environment_
version_ strid - The version ID of the Execution Environment used to create the Custom Application.
- external_
access_ boolenabled - Whether external access is enabled for the Custom Application.
- external_
access_ Sequence[str]recipients - The list of external email addresses that have access to the Custom Application.
- name str
- The name of the Custom Application.
- use_
case_ Sequence[str]ids - The list of Use Case IDs to add the Custom Application to.
- application
Url String - The URL of the Custom Application.
- environment
Id String - The ID of the Execution Environment used to create the Custom Application.
- environment
Version StringId - The version ID of the Execution Environment used to create the Custom Application.
- external
Access BooleanEnabled - Whether external access is enabled for the Custom Application.
- external
Access List<String>Recipients - The list of external email addresses that have access to the Custom Application.
- name String
- The name of the Custom Application.
- use
Case List<String>Ids - The list of Use Case IDs to add the Custom Application to.
Package Details
- Repository
- datarobot datarobot-community/pulumi-datarobot
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
datarobot
Terraform Provider.
