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.

maxcompute

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-alicloud repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-alicloud repo.

class pulumi_alicloud.maxcompute.Project(resource_name, opts=None, name=None, order_type=None, specification_type=None, __props__=None, __name__=None, __opts__=None)

The 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+.

import pulumi
import pulumi_alicloud as alicloud

example = alicloud.maxcompute.Project("example",
    order_type="PayAsYouGo",
    specification_type="OdpsStandard")
Parameters
  • resource_name (str) – The name of the resource.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • name (pulumi.Input[str]) – The name of the maxcompute project.

  • order_type (pulumi.Input[str]) – The type of payment, only PayAsYouGo supported currently.

  • specification_type (pulumi.Input[str]) – The type of resource Specification, only OdpsStandard supported currently.

name: pulumi.Output[str] = None

The name of the maxcompute project.

order_type: pulumi.Output[str] = None

The type of payment, only PayAsYouGo supported currently.

specification_type: pulumi.Output[str] = None

The type of resource Specification, only OdpsStandard supported currently.

static get(resource_name, id, opts=None, name=None, order_type=None, specification_type=None)

Get an existing Project resource’s state with the given name, id, and optional extra properties used to qualify the lookup.

Parameters
  • resource_name (str) – The unique name of the resulting resource.

  • id (str) – The unique provider ID of the resource to lookup.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • name (pulumi.Input[str]) – The name of the maxcompute project.

  • order_type (pulumi.Input[str]) – The type of payment, only PayAsYouGo supported currently.

  • specification_type (pulumi.Input[str]) – The type of resource Specification, only OdpsStandard supported currently.

translate_output_property(prop)

Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str

translate_input_property(prop)

Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str