Module maxcompute
This page documents the language specification for the alicloud package. If you're looking for help working with the inputs, outputs, or functions of alicloud resources in a Pulumi program, please see the resource documentation for examples and API reference.
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the
pulumi/pulumi-alicloudrepo; however, if that doesn’t turn up anything, please consult the sourceterraform-providers/terraform-provider-alicloudrepo.
Resources
Others
Resources
Resource Project
class Project extends CustomResourceThe project is the basic unit of operation in maxcompute. It is similar to the concept of Database or Schema in traditional databases, and sets the boundary for maxcompute multi-user isolation and access control. Refer to details.
->NOTE: Available in 1.77.0+.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = new alicloud.maxcompute.Project("example", {
orderType: "PayAsYouGo",
specificationType: "OdpsStandard",
});constructor
new Project(name: string, args: ProjectArgs, opts?: pulumi.CustomResourceOptions)Create a Project resource with the given unique name, arguments, and options.
nameThe unique name of the resource.argsThe arguments to use to populate this resource's properties.optsA bag of options that control this resource's behavior.
method get
public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ProjectState, opts?: pulumi.CustomResourceOptions): ProjectGet an existing Project resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
method getProvider
getProvider(moduleMember: string): ProviderResource | undefinedmethod isInstance
public static isInstance(obj: any): obj is ProjectReturns true if the given object is an instance of Project. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.
property id
id: Output<ID>;id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.
property name
public name: pulumi.Output<string>;The name of the maxcompute project.
property orderType
public orderType: pulumi.Output<string>;The type of payment, only PayAsYouGo supported currently.
property specificationType
public specificationType: pulumi.Output<string>;The type of resource Specification, only OdpsStandard supported currently.
property urn
urn: Output<URN>;urn is the stable logical URN used to distinctly address a resource, both before and after deployments.
Others
interface ProjectArgs
interface ProjectArgsThe set of arguments for constructing a Project resource.
property name
name?: pulumi.Input<string>;The name of the maxcompute project.
property orderType
orderType: pulumi.Input<string>;The type of payment, only PayAsYouGo supported currently.
property specificationType
specificationType: pulumi.Input<string>;The type of resource Specification, only OdpsStandard supported currently.
interface ProjectState
interface ProjectStateInput properties used for looking up and filtering Project resources.
property name
name?: pulumi.Input<string>;The name of the maxcompute project.
property orderType
orderType?: pulumi.Input<string>;The type of payment, only PayAsYouGo supported currently.
property specificationType
specificationType?: pulumi.Input<string>;The type of resource Specification, only OdpsStandard supported currently.