1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. dataworks
  5. Project
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.dataworks.Project

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a Data Works Project resource.

    For information about Data Works Project and how to use it, see What is Project.

    NOTE: Available since v1.229.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    import * as random from "@pulumi/random";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf_example";
    const randint = new random.index.Integer("randint", {
        max: 999,
        min: 1,
    });
    const _default = alicloud.resourcemanager.getResourceGroups({});
    const defaultProject = new alicloud.dataworks.Project("default", {
        status: "Available",
        description: "tf_desc",
        projectName: `${name}${randint.id}`,
        paiTaskEnabled: false,
        displayName: "tf_new_api_display",
        devRoleDisabled: true,
        devEnvironmentEnabled: false,
        resourceGroupId: _default.then(_default => _default.ids?.[0]),
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    import pulumi_random as random
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf_example"
    randint = random.index.Integer("randint",
        max=999,
        min=1)
    default = alicloud.resourcemanager.get_resource_groups()
    default_project = alicloud.dataworks.Project("default",
        status="Available",
        description="tf_desc",
        project_name=f"{name}{randint['id']}",
        pai_task_enabled=False,
        display_name="tf_new_api_display",
        dev_role_disabled=True,
        dev_environment_enabled=False,
        resource_group_id=default.ids[0])
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/dataworks"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
    	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "tf_example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		randint, err := random.NewInteger(ctx, "randint", &random.IntegerArgs{
    			Max: 999,
    			Min: 1,
    		})
    		if err != nil {
    			return err
    		}
    		_default, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = dataworks.NewProject(ctx, "default", &dataworks.ProjectArgs{
    			Status:                pulumi.String("Available"),
    			Description:           pulumi.String("tf_desc"),
    			ProjectName:           pulumi.Sprintf("%v%v", name, randint.Id),
    			PaiTaskEnabled:        pulumi.Bool(false),
    			DisplayName:           pulumi.String("tf_new_api_display"),
    			DevRoleDisabled:       pulumi.Bool(true),
    			DevEnvironmentEnabled: pulumi.Bool(false),
    			ResourceGroupId:       pulumi.String(_default.Ids[0]),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    using Random = Pulumi.Random;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf_example";
        var randint = new Random.Index.Integer("randint", new()
        {
            Max = 999,
            Min = 1,
        });
    
        var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();
    
        var defaultProject = new AliCloud.DataWorks.Project("default", new()
        {
            Status = "Available",
            Description = "tf_desc",
            ProjectName = $"{name}{randint.Id}",
            PaiTaskEnabled = false,
            DisplayName = "tf_new_api_display",
            DevRoleDisabled = true,
            DevEnvironmentEnabled = false,
            ResourceGroupId = @default.Apply(@default => @default.Apply(getResourceGroupsResult => getResourceGroupsResult.Ids[0])),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.random.integer;
    import com.pulumi.random.IntegerArgs;
    import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
    import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
    import com.pulumi.alicloud.dataworks.Project;
    import com.pulumi.alicloud.dataworks.ProjectArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("tf_example");
            var randint = new Integer("randint", IntegerArgs.builder()
                .max(999)
                .min(1)
                .build());
    
            final var default = ResourcemanagerFunctions.getResourceGroups();
    
            var defaultProject = new Project("defaultProject", ProjectArgs.builder()
                .status("Available")
                .description("tf_desc")
                .projectName(String.format("%s%s", name,randint.id()))
                .paiTaskEnabled("false")
                .displayName("tf_new_api_display")
                .devRoleDisabled("true")
                .devEnvironmentEnabled("false")
                .resourceGroupId(default_.ids()[0])
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf_example
    resources:
      randint:
        type: random:integer
        properties:
          max: 999
          min: 1
      defaultProject:
        type: alicloud:dataworks:Project
        name: default
        properties:
          status: Available
          description: tf_desc
          projectName: ${name}${randint.id}
          paiTaskEnabled: 'false'
          displayName: tf_new_api_display
          devRoleDisabled: 'true'
          devEnvironmentEnabled: 'false'
          resourceGroupId: ${default.ids[0]}
    variables:
      default:
        fn::invoke:
          function: alicloud:resourcemanager:getResourceGroups
          arguments: {}
    

    Create Project Resource

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

    Constructor syntax

    new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
    @overload
    def Project(resource_name: str,
                args: ProjectArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Project(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                display_name: Optional[str] = None,
                pai_task_enabled: Optional[bool] = None,
                project_name: Optional[str] = None,
                description: Optional[str] = None,
                dev_environment_enabled: Optional[bool] = None,
                dev_role_disabled: Optional[bool] = None,
                resource_group_id: Optional[str] = None,
                status: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
    public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
    public Project(String name, ProjectArgs args)
    public Project(String name, ProjectArgs args, CustomResourceOptions options)
    
    type: alicloud:dataworks:Project
    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 ProjectArgs
    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 ProjectArgs
    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 ProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectArgs
    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 alicloudProjectResource = new AliCloud.DataWorks.Project("alicloudProjectResource", new()
    {
        DisplayName = "string",
        PaiTaskEnabled = false,
        ProjectName = "string",
        Description = "string",
        DevEnvironmentEnabled = false,
        DevRoleDisabled = false,
        ResourceGroupId = "string",
        Status = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := dataworks.NewProject(ctx, "alicloudProjectResource", &dataworks.ProjectArgs{
    	DisplayName:           pulumi.String("string"),
    	PaiTaskEnabled:        pulumi.Bool(false),
    	ProjectName:           pulumi.String("string"),
    	Description:           pulumi.String("string"),
    	DevEnvironmentEnabled: pulumi.Bool(false),
    	DevRoleDisabled:       pulumi.Bool(false),
    	ResourceGroupId:       pulumi.String("string"),
    	Status:                pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var alicloudProjectResource = new Project("alicloudProjectResource", ProjectArgs.builder()
        .displayName("string")
        .paiTaskEnabled(false)
        .projectName("string")
        .description("string")
        .devEnvironmentEnabled(false)
        .devRoleDisabled(false)
        .resourceGroupId("string")
        .status("string")
        .tags(Map.of("string", "string"))
        .build());
    
    alicloud_project_resource = alicloud.dataworks.Project("alicloudProjectResource",
        display_name="string",
        pai_task_enabled=False,
        project_name="string",
        description="string",
        dev_environment_enabled=False,
        dev_role_disabled=False,
        resource_group_id="string",
        status="string",
        tags={
            "string": "string",
        })
    
    const alicloudProjectResource = new alicloud.dataworks.Project("alicloudProjectResource", {
        displayName: "string",
        paiTaskEnabled: false,
        projectName: "string",
        description: "string",
        devEnvironmentEnabled: false,
        devRoleDisabled: false,
        resourceGroupId: "string",
        status: "string",
        tags: {
            string: "string",
        },
    });
    
    type: alicloud:dataworks:Project
    properties:
        description: string
        devEnvironmentEnabled: false
        devRoleDisabled: false
        displayName: string
        paiTaskEnabled: false
        projectName: string
        resourceGroupId: string
        status: string
        tags:
            string: string
    

    Project 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 Project resource accepts the following input properties:

    DisplayName string
    Workspace Display Name
    PaiTaskEnabled bool
    Create PAI Workspace Together
    ProjectName string
    Workspace Name
    Description string
    Workspace Description
    DevEnvironmentEnabled bool
    Is Development Environment Enabled
    DevRoleDisabled bool
    Is Development Role Disabled
    ResourceGroupId string
    Aliyun Resource Group Id
    Status string
    Workspace Status
    Tags Dictionary<string, string>
    Aliyun Resource Tag
    DisplayName string
    Workspace Display Name
    PaiTaskEnabled bool
    Create PAI Workspace Together
    ProjectName string
    Workspace Name
    Description string
    Workspace Description
    DevEnvironmentEnabled bool
    Is Development Environment Enabled
    DevRoleDisabled bool
    Is Development Role Disabled
    ResourceGroupId string
    Aliyun Resource Group Id
    Status string
    Workspace Status
    Tags map[string]string
    Aliyun Resource Tag
    displayName String
    Workspace Display Name
    paiTaskEnabled Boolean
    Create PAI Workspace Together
    projectName String
    Workspace Name
    description String
    Workspace Description
    devEnvironmentEnabled Boolean
    Is Development Environment Enabled
    devRoleDisabled Boolean
    Is Development Role Disabled
    resourceGroupId String
    Aliyun Resource Group Id
    status String
    Workspace Status
    tags Map<String,String>
    Aliyun Resource Tag
    displayName string
    Workspace Display Name
    paiTaskEnabled boolean
    Create PAI Workspace Together
    projectName string
    Workspace Name
    description string
    Workspace Description
    devEnvironmentEnabled boolean
    Is Development Environment Enabled
    devRoleDisabled boolean
    Is Development Role Disabled
    resourceGroupId string
    Aliyun Resource Group Id
    status string
    Workspace Status
    tags {[key: string]: string}
    Aliyun Resource Tag
    display_name str
    Workspace Display Name
    pai_task_enabled bool
    Create PAI Workspace Together
    project_name str
    Workspace Name
    description str
    Workspace Description
    dev_environment_enabled bool
    Is Development Environment Enabled
    dev_role_disabled bool
    Is Development Role Disabled
    resource_group_id str
    Aliyun Resource Group Id
    status str
    Workspace Status
    tags Mapping[str, str]
    Aliyun Resource Tag
    displayName String
    Workspace Display Name
    paiTaskEnabled Boolean
    Create PAI Workspace Together
    projectName String
    Workspace Name
    description String
    Workspace Description
    devEnvironmentEnabled Boolean
    Is Development Environment Enabled
    devRoleDisabled Boolean
    Is Development Role Disabled
    resourceGroupId String
    Aliyun Resource Group Id
    status String
    Workspace Status
    tags Map<String>
    Aliyun Resource Tag

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Project Resource

    Get an existing Project 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?: ProjectState, opts?: CustomResourceOptions): Project
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            dev_environment_enabled: Optional[bool] = None,
            dev_role_disabled: Optional[bool] = None,
            display_name: Optional[str] = None,
            pai_task_enabled: Optional[bool] = None,
            project_name: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> Project
    func GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)
    public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)
    public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:dataworks:Project    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:
    Description string
    Workspace Description
    DevEnvironmentEnabled bool
    Is Development Environment Enabled
    DevRoleDisabled bool
    Is Development Role Disabled
    DisplayName string
    Workspace Display Name
    PaiTaskEnabled bool
    Create PAI Workspace Together
    ProjectName string
    Workspace Name
    ResourceGroupId string
    Aliyun Resource Group Id
    Status string
    Workspace Status
    Tags Dictionary<string, string>
    Aliyun Resource Tag
    Description string
    Workspace Description
    DevEnvironmentEnabled bool
    Is Development Environment Enabled
    DevRoleDisabled bool
    Is Development Role Disabled
    DisplayName string
    Workspace Display Name
    PaiTaskEnabled bool
    Create PAI Workspace Together
    ProjectName string
    Workspace Name
    ResourceGroupId string
    Aliyun Resource Group Id
    Status string
    Workspace Status
    Tags map[string]string
    Aliyun Resource Tag
    description String
    Workspace Description
    devEnvironmentEnabled Boolean
    Is Development Environment Enabled
    devRoleDisabled Boolean
    Is Development Role Disabled
    displayName String
    Workspace Display Name
    paiTaskEnabled Boolean
    Create PAI Workspace Together
    projectName String
    Workspace Name
    resourceGroupId String
    Aliyun Resource Group Id
    status String
    Workspace Status
    tags Map<String,String>
    Aliyun Resource Tag
    description string
    Workspace Description
    devEnvironmentEnabled boolean
    Is Development Environment Enabled
    devRoleDisabled boolean
    Is Development Role Disabled
    displayName string
    Workspace Display Name
    paiTaskEnabled boolean
    Create PAI Workspace Together
    projectName string
    Workspace Name
    resourceGroupId string
    Aliyun Resource Group Id
    status string
    Workspace Status
    tags {[key: string]: string}
    Aliyun Resource Tag
    description str
    Workspace Description
    dev_environment_enabled bool
    Is Development Environment Enabled
    dev_role_disabled bool
    Is Development Role Disabled
    display_name str
    Workspace Display Name
    pai_task_enabled bool
    Create PAI Workspace Together
    project_name str
    Workspace Name
    resource_group_id str
    Aliyun Resource Group Id
    status str
    Workspace Status
    tags Mapping[str, str]
    Aliyun Resource Tag
    description String
    Workspace Description
    devEnvironmentEnabled Boolean
    Is Development Environment Enabled
    devRoleDisabled Boolean
    Is Development Role Disabled
    displayName String
    Workspace Display Name
    paiTaskEnabled Boolean
    Create PAI Workspace Together
    projectName String
    Workspace Name
    resourceGroupId String
    Aliyun Resource Group Id
    status String
    Workspace Status
    tags Map<String>
    Aliyun Resource Tag

    Import

    Data Works Project can be imported using the id, e.g.

    $ pulumi import alicloud:dataworks/project:Project example <id>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi