1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. datahub
  5. Project
Alibaba Cloud v3.73.0 published on Wednesday, Jan 15, 2025 by Pulumi

alicloud.datahub.Project

Explore with Pulumi AI

The project is the basic unit of resource management in Datahub Service and is used to isolate and control resources. It contains a set of Topics. You can manage the datahub sources of an application by using projects. Refer to details.

NOTE: Available since v1.19.0.

NOTE: Currently Datahub service only can be supported in the regions: cn-beijing, cn-hangzhou, cn-shanghai, cn-shenzhen, ap-southeast-1.

Example Usage

Basic Usage

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

const config = new pulumi.Config();
const name = config.get("name") || "tf_example";
const example = new alicloud.datahub.Project("example", {
    name: name,
    comment: "created by terraform",
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf_example"
example = alicloud.datahub.Project("example",
    name=name,
    comment="created by terraform")
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/datahub"
	"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
		}
		_, err := datahub.NewProject(ctx, "example", &datahub.ProjectArgs{
			Name:    pulumi.String(name),
			Comment: pulumi.String("created by terraform"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf_example";
    var example = new AliCloud.Datahub.Project("example", new()
    {
        Name = name,
        Comment = "created by terraform",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.datahub.Project;
import com.pulumi.alicloud.datahub.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 example = new Project("example", ProjectArgs.builder()
            .name(name)
            .comment("created by terraform")
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf_example
resources:
  example:
    type: alicloud:datahub:Project
    properties:
      name: ${name}
      comment: created by terraform
Copy

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: Optional[ProjectArgs] = None,
            opts: Optional[ResourceOptions] = None)

@overload
def Project(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            name: Optional[str] = None)
func NewProject(ctx *Context, name string, args *ProjectArgs, opts ...ResourceOption) (*Project, error)
public Project(string name, ProjectArgs? args = null, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: alicloud:datahub:Project
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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 projectResource = new AliCloud.Datahub.Project("projectResource", new()
{
    Comment = "string",
    Name = "string",
});
Copy
example, err := datahub.NewProject(ctx, "projectResource", &datahub.ProjectArgs{
	Comment: pulumi.String("string"),
	Name:    pulumi.String("string"),
})
Copy
var projectResource = new Project("projectResource", ProjectArgs.builder()
    .comment("string")
    .name("string")
    .build());
Copy
project_resource = alicloud.datahub.Project("projectResource",
    comment="string",
    name="string")
Copy
const projectResource = new alicloud.datahub.Project("projectResource", {
    comment: "string",
    name: "string",
});
Copy
type: alicloud:datahub:Project
properties:
    comment: string
    name: string
Copy

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:

Comment string
Comment of the datahub project. It cannot be longer than 255 characters.
Name Changes to this property will trigger replacement. string
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
Comment string
Comment of the datahub project. It cannot be longer than 255 characters.
Name Changes to this property will trigger replacement. string
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment String
Comment of the datahub project. It cannot be longer than 255 characters.
name Changes to this property will trigger replacement. String
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment string
Comment of the datahub project. It cannot be longer than 255 characters.
name Changes to this property will trigger replacement. string
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment str
Comment of the datahub project. It cannot be longer than 255 characters.
name Changes to this property will trigger replacement. str
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment String
Comment of the datahub project. It cannot be longer than 255 characters.
name Changes to this property will trigger replacement. String
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.

Outputs

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

CreateTime string
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
Id string
The provider-assigned unique ID for this managed resource.
LastModifyTime string
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
CreateTime string
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
Id string
The provider-assigned unique ID for this managed resource.
LastModifyTime string
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
createTime String
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
id String
The provider-assigned unique ID for this managed resource.
lastModifyTime String
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
createTime string
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
id string
The provider-assigned unique ID for this managed resource.
lastModifyTime string
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
create_time str
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
id str
The provider-assigned unique ID for this managed resource.
last_modify_time str
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
createTime String
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
id String
The provider-assigned unique ID for this managed resource.
lastModifyTime String
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.

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,
        comment: Optional[str] = None,
        create_time: Optional[str] = None,
        last_modify_time: Optional[str] = None,
        name: Optional[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)
Resource lookup is not supported in YAML
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Comment string
Comment of the datahub project. It cannot be longer than 255 characters.
CreateTime string
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
LastModifyTime string
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
Name Changes to this property will trigger replacement. string
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
Comment string
Comment of the datahub project. It cannot be longer than 255 characters.
CreateTime string
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
LastModifyTime string
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
Name Changes to this property will trigger replacement. string
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment String
Comment of the datahub project. It cannot be longer than 255 characters.
createTime String
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
lastModifyTime String
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
name Changes to this property will trigger replacement. String
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment string
Comment of the datahub project. It cannot be longer than 255 characters.
createTime string
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
lastModifyTime string
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
name Changes to this property will trigger replacement. string
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment str
Comment of the datahub project. It cannot be longer than 255 characters.
create_time str
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
last_modify_time str
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
name Changes to this property will trigger replacement. str
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.
comment String
Comment of the datahub project. It cannot be longer than 255 characters.
createTime String
Create time of the datahub project. It is a human-readable string rather than 64-bits UTC.
lastModifyTime String
Last modify time of the datahub project. It is the same as create_time at the beginning. It is also a human-readable string rather than 64-bits UTC.
name Changes to this property will trigger replacement. String
The name of the datahub project. Its length is limited to 3-32 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.

Import

Datahub project can be imported using the name or ID, e.g.

$ pulumi import alicloud:datahub/project:Project example tf_datahub_project
Copy

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.