1. Packages
  2. DataRobot
  3. API Docs
  4. CustomApplicationFromEnvironment
DataRobot v0.10.8 published on Monday, Jun 23, 2025 by DataRobot, Inc.

datarobot.CustomApplicationFromEnvironment

Explore with Pulumi AI

datarobot logo
DataRobot v0.10.8 published on Monday, Jun 23, 2025 by DataRobot, Inc.

    Custom Application created from an Execution Environment.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      example:
        type: datarobot:CustomApplicationFromEnvironment
        properties:
          environmentId: ${datarobot_execution_environment.example.id}
          # optional settings
          externalAccessEnabled: true
          externalAccessRecipients:
            - recipient@example.com
          allowAutoStopping: false
          resources:
            - replicas: 1
              resourceLabel: cpu.small
              sessionAffinity: false
              serviceWebRequestsOnRootPath: true
    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,
                                         allow_auto_stopping: Optional[bool] = None,
                                         external_access_enabled: Optional[bool] = None,
                                         external_access_recipients: Optional[Sequence[str]] = None,
                                         name: Optional[str] = None,
                                         resources: Optional[CustomApplicationFromEnvironmentResourcesArgs] = 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",
        AllowAutoStopping = false,
        ExternalAccessEnabled = false,
        ExternalAccessRecipients = new[]
        {
            "string",
        },
        Name = "string",
        Resources = new Datarobot.Inputs.CustomApplicationFromEnvironmentResourcesArgs
        {
            Replicas = 0,
            ResourceLabel = "string",
            ServiceWebRequestsOnRootPath = false,
            SessionAffinity = false,
        },
        UseCaseIds = new[]
        {
            "string",
        },
    });
    
    example, err := datarobot.NewCustomApplicationFromEnvironment(ctx, "customApplicationFromEnvironmentResource", &datarobot.CustomApplicationFromEnvironmentArgs{
    	EnvironmentId:         pulumi.String("string"),
    	AllowAutoStopping:     pulumi.Bool(false),
    	ExternalAccessEnabled: pulumi.Bool(false),
    	ExternalAccessRecipients: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	Resources: &datarobot.CustomApplicationFromEnvironmentResourcesArgs{
    		Replicas:                     pulumi.Int(0),
    		ResourceLabel:                pulumi.String("string"),
    		ServiceWebRequestsOnRootPath: pulumi.Bool(false),
    		SessionAffinity:              pulumi.Bool(false),
    	},
    	UseCaseIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var customApplicationFromEnvironmentResource = new CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource", CustomApplicationFromEnvironmentArgs.builder()
        .environmentId("string")
        .allowAutoStopping(false)
        .externalAccessEnabled(false)
        .externalAccessRecipients("string")
        .name("string")
        .resources(CustomApplicationFromEnvironmentResourcesArgs.builder()
            .replicas(0)
            .resourceLabel("string")
            .serviceWebRequestsOnRootPath(false)
            .sessionAffinity(false)
            .build())
        .useCaseIds("string")
        .build());
    
    custom_application_from_environment_resource = datarobot.CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource",
        environment_id="string",
        allow_auto_stopping=False,
        external_access_enabled=False,
        external_access_recipients=["string"],
        name="string",
        resources={
            "replicas": 0,
            "resource_label": "string",
            "service_web_requests_on_root_path": False,
            "session_affinity": False,
        },
        use_case_ids=["string"])
    
    const customApplicationFromEnvironmentResource = new datarobot.CustomApplicationFromEnvironment("customApplicationFromEnvironmentResource", {
        environmentId: "string",
        allowAutoStopping: false,
        externalAccessEnabled: false,
        externalAccessRecipients: ["string"],
        name: "string",
        resources: {
            replicas: 0,
            resourceLabel: "string",
            serviceWebRequestsOnRootPath: false,
            sessionAffinity: false,
        },
        useCaseIds: ["string"],
    });
    
    type: datarobot:CustomApplicationFromEnvironment
    properties:
        allowAutoStopping: false
        environmentId: string
        externalAccessEnabled: false
        externalAccessRecipients:
            - string
        name: string
        resources:
            replicas: 0
            resourceLabel: string
            serviceWebRequestsOnRootPath: false
            sessionAffinity: false
        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:

    EnvironmentId string
    The ID of the Execution Environment used to create the Custom Application.
    AllowAutoStopping bool
    Whether auto stopping is allowed for the Custom Application.
    ExternalAccessEnabled bool
    Whether external access is enabled for the Custom Application.
    ExternalAccessRecipients List<string>
    The list of external email addresses that have access to the Custom Application.
    Name string
    The name of the Custom Application.
    Resources DataRobotCustomApplicationFromEnvironmentResources
    The resources for the Custom Application.
    UseCaseIds List<string>
    The list of Use Case IDs to add the Custom Application to.
    EnvironmentId string
    The ID of the Execution Environment used to create the Custom Application.
    AllowAutoStopping bool
    Whether auto stopping is allowed for the Custom Application.
    ExternalAccessEnabled bool
    Whether external access is enabled for the Custom Application.
    ExternalAccessRecipients []string
    The list of external email addresses that have access to the Custom Application.
    Name string
    The name of the Custom Application.
    Resources CustomApplicationFromEnvironmentResourcesArgs
    The resources for the Custom Application.
    UseCaseIds []string
    The list of Use Case IDs to add the Custom Application to.
    environmentId String
    The ID of the Execution Environment used to create the Custom Application.
    allowAutoStopping Boolean
    Whether auto stopping is allowed for the Custom Application.
    externalAccessEnabled Boolean
    Whether external access is enabled for the Custom Application.
    externalAccessRecipients List<String>
    The list of external email addresses that have access to the Custom Application.
    name String
    The name of the Custom Application.
    resources CustomApplicationFromEnvironmentResources
    The resources for the Custom Application.
    useCaseIds List<String>
    The list of Use Case IDs to add the Custom Application to.
    environmentId string
    The ID of the Execution Environment used to create the Custom Application.
    allowAutoStopping boolean
    Whether auto stopping is allowed for the Custom Application.
    externalAccessEnabled boolean
    Whether external access is enabled for the Custom Application.
    externalAccessRecipients string[]
    The list of external email addresses that have access to the Custom Application.
    name string
    The name of the Custom Application.
    resources CustomApplicationFromEnvironmentResources
    The resources for the Custom Application.
    useCaseIds string[]
    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.
    allow_auto_stopping bool
    Whether auto stopping is allowed for the Custom Application.
    external_access_enabled bool
    Whether external access is enabled for the Custom Application.
    external_access_recipients Sequence[str]
    The list of external email addresses that have access to the Custom Application.
    name str
    The name of the Custom Application.
    resources CustomApplicationFromEnvironmentResourcesArgs
    The resources for the Custom Application.
    use_case_ids Sequence[str]
    The list of Use Case IDs to add the Custom Application to.
    environmentId String
    The ID of the Execution Environment used to create the Custom Application.
    allowAutoStopping Boolean
    Whether auto stopping is allowed for the Custom Application.
    externalAccessEnabled Boolean
    Whether external access is enabled for the Custom Application.
    externalAccessRecipients List<String>
    The list of external email addresses that have access to the Custom Application.
    name String
    The name of the Custom Application.
    resources Property Map
    The resources for the Custom Application.
    useCaseIds List<String>
    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:

    ApplicationUrl string
    The URL of the Custom Application.
    EnvironmentVersionId string
    The version ID of the Execution Environment used to create the Custom Application.
    Id string
    The provider-assigned unique ID for this managed resource.
    ApplicationUrl string
    The URL of the Custom Application.
    EnvironmentVersionId string
    The version ID of the Execution Environment used to create the Custom Application.
    Id string
    The provider-assigned unique ID for this managed resource.
    applicationUrl String
    The URL of the Custom Application.
    environmentVersionId String
    The version ID of the Execution Environment used to create the Custom Application.
    id String
    The provider-assigned unique ID for this managed resource.
    applicationUrl string
    The URL of the Custom Application.
    environmentVersionId string
    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_id str
    The version ID of the Execution Environment used to create the Custom Application.
    id str
    The provider-assigned unique ID for this managed resource.
    applicationUrl String
    The URL of the Custom Application.
    environmentVersionId String
    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,
            allow_auto_stopping: Optional[bool] = 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,
            resources: Optional[CustomApplicationFromEnvironmentResourcesArgs] = 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.
    The following state arguments are supported:
    AllowAutoStopping bool
    Whether auto stopping is allowed for the Custom Application.
    ApplicationUrl string
    The URL of the Custom Application.
    EnvironmentId string
    The ID of the Execution Environment used to create the Custom Application.
    EnvironmentVersionId string
    The version ID of the Execution Environment used to create the Custom Application.
    ExternalAccessEnabled bool
    Whether external access is enabled for the Custom Application.
    ExternalAccessRecipients List<string>
    The list of external email addresses that have access to the Custom Application.
    Name string
    The name of the Custom Application.
    Resources DataRobotCustomApplicationFromEnvironmentResources
    The resources for the Custom Application.
    UseCaseIds List<string>
    The list of Use Case IDs to add the Custom Application to.
    AllowAutoStopping bool
    Whether auto stopping is allowed for the Custom Application.
    ApplicationUrl string
    The URL of the Custom Application.
    EnvironmentId string
    The ID of the Execution Environment used to create the Custom Application.
    EnvironmentVersionId string
    The version ID of the Execution Environment used to create the Custom Application.
    ExternalAccessEnabled bool
    Whether external access is enabled for the Custom Application.
    ExternalAccessRecipients []string
    The list of external email addresses that have access to the Custom Application.
    Name string
    The name of the Custom Application.
    Resources CustomApplicationFromEnvironmentResourcesArgs
    The resources for the Custom Application.
    UseCaseIds []string
    The list of Use Case IDs to add the Custom Application to.
    allowAutoStopping Boolean
    Whether auto stopping is allowed for the Custom Application.
    applicationUrl String
    The URL of the Custom Application.
    environmentId String
    The ID of the Execution Environment used to create the Custom Application.
    environmentVersionId String
    The version ID of the Execution Environment used to create the Custom Application.
    externalAccessEnabled Boolean
    Whether external access is enabled for the Custom Application.
    externalAccessRecipients List<String>
    The list of external email addresses that have access to the Custom Application.
    name String
    The name of the Custom Application.
    resources CustomApplicationFromEnvironmentResources
    The resources for the Custom Application.
    useCaseIds List<String>
    The list of Use Case IDs to add the Custom Application to.
    allowAutoStopping boolean
    Whether auto stopping is allowed for the Custom Application.
    applicationUrl string
    The URL of the Custom Application.
    environmentId string
    The ID of the Execution Environment used to create the Custom Application.
    environmentVersionId string
    The version ID of the Execution Environment used to create the Custom Application.
    externalAccessEnabled boolean
    Whether external access is enabled for the Custom Application.
    externalAccessRecipients string[]
    The list of external email addresses that have access to the Custom Application.
    name string
    The name of the Custom Application.
    resources CustomApplicationFromEnvironmentResources
    The resources for the Custom Application.
    useCaseIds string[]
    The list of Use Case IDs to add the Custom Application to.
    allow_auto_stopping bool
    Whether auto stopping is allowed for the Custom Application.
    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_id str
    The version ID of the Execution Environment used to create the Custom Application.
    external_access_enabled bool
    Whether external access is enabled for the Custom Application.
    external_access_recipients Sequence[str]
    The list of external email addresses that have access to the Custom Application.
    name str
    The name of the Custom Application.
    resources CustomApplicationFromEnvironmentResourcesArgs
    The resources for the Custom Application.
    use_case_ids Sequence[str]
    The list of Use Case IDs to add the Custom Application to.
    allowAutoStopping Boolean
    Whether auto stopping is allowed for the Custom Application.
    applicationUrl String
    The URL of the Custom Application.
    environmentId String
    The ID of the Execution Environment used to create the Custom Application.
    environmentVersionId String
    The version ID of the Execution Environment used to create the Custom Application.
    externalAccessEnabled Boolean
    Whether external access is enabled for the Custom Application.
    externalAccessRecipients List<String>
    The list of external email addresses that have access to the Custom Application.
    name String
    The name of the Custom Application.
    resources Property Map
    The resources for the Custom Application.
    useCaseIds List<String>
    The list of Use Case IDs to add the Custom Application to.

    Supporting Types

    CustomApplicationFromEnvironmentResources, CustomApplicationFromEnvironmentResourcesArgs

    Replicas int
    The number of replicas for the Custom Application.
    ResourceLabel string
    The resource label for the Custom Application.
    ServiceWebRequestsOnRootPath bool
    Whether to service web requests on the root path for the Custom Application.
    SessionAffinity bool
    Whether session affinity is enabled for the Custom Application.
    Replicas int
    The number of replicas for the Custom Application.
    ResourceLabel string
    The resource label for the Custom Application.
    ServiceWebRequestsOnRootPath bool
    Whether to service web requests on the root path for the Custom Application.
    SessionAffinity bool
    Whether session affinity is enabled for the Custom Application.
    replicas Integer
    The number of replicas for the Custom Application.
    resourceLabel String
    The resource label for the Custom Application.
    serviceWebRequestsOnRootPath Boolean
    Whether to service web requests on the root path for the Custom Application.
    sessionAffinity Boolean
    Whether session affinity is enabled for the Custom Application.
    replicas number
    The number of replicas for the Custom Application.
    resourceLabel string
    The resource label for the Custom Application.
    serviceWebRequestsOnRootPath boolean
    Whether to service web requests on the root path for the Custom Application.
    sessionAffinity boolean
    Whether session affinity is enabled for the Custom Application.
    replicas int
    The number of replicas for the Custom Application.
    resource_label str
    The resource label for the Custom Application.
    service_web_requests_on_root_path bool
    Whether to service web requests on the root path for the Custom Application.
    session_affinity bool
    Whether session affinity is enabled for the Custom Application.
    replicas Number
    The number of replicas for the Custom Application.
    resourceLabel String
    The resource label for the Custom Application.
    serviceWebRequestsOnRootPath Boolean
    Whether to service web requests on the root path for the Custom Application.
    sessionAffinity Boolean
    Whether session affinity is enabled for the Custom Application.

    Package Details

    Repository
    datarobot datarobot-community/pulumi-datarobot
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datarobot Terraform Provider.
    datarobot logo
    DataRobot v0.10.8 published on Monday, Jun 23, 2025 by DataRobot, Inc.