1. Packages
  2. Alicloud Provider
  3. API Docs
  4. gpdb
  5. Account
Alibaba Cloud v3.63.1 published on Wednesday, Oct 16, 2024 by Pulumi

alicloud.gpdb.Account

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.63.1 published on Wednesday, Oct 16, 2024 by Pulumi

    Provides a GPDB Account resource.

    For information about GPDB Account and how to use it, see What is Account.

    NOTE: Available since v1.142.0.

    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") || "terraform-example";
    const default = alicloud.gpdb.getZones({});
    const defaultGetNetworks = alicloud.vpc.getNetworks({
        nameRegex: "^default-NODELETING$",
    });
    const defaultGetSwitches = Promise.all([defaultGetNetworks, _default]).then(([defaultGetNetworks, _default]) => alicloud.vpc.getSwitches({
        vpcId: defaultGetNetworks.ids?.[0],
        zoneId: _default.ids?.[0],
    }));
    const defaultInstance = new alicloud.gpdb.Instance("default", {
        dbInstanceCategory: "HighAvailability",
        dbInstanceClass: "gpdb.group.segsdx1",
        dbInstanceMode: "StorageElastic",
        description: name,
        engine: "gpdb",
        engineVersion: "6.0",
        zoneId: _default.then(_default => _default.ids?.[0]),
        instanceNetworkType: "VPC",
        instanceSpec: "2C16G",
        paymentType: "PayAsYouGo",
        segStorageType: "cloud_essd",
        segNodeNum: 4,
        storageSize: 50,
        vpcId: defaultGetNetworks.then(defaultGetNetworks => defaultGetNetworks.ids?.[0]),
        vswitchId: defaultGetSwitches.then(defaultGetSwitches => defaultGetSwitches.ids?.[0]),
        ipWhitelists: [{
            securityIpList: "127.0.0.1",
        }],
    });
    const defaultAccount = new alicloud.gpdb.Account("default", {
        accountName: "tf_example",
        dbInstanceId: defaultInstance.id,
        accountPassword: "Example1234",
        accountDescription: "tf_example",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.gpdb.get_zones()
    default_get_networks = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
    default_get_switches = alicloud.vpc.get_switches(vpc_id=default_get_networks.ids[0],
        zone_id=default.ids[0])
    default_instance = alicloud.gpdb.Instance("default",
        db_instance_category="HighAvailability",
        db_instance_class="gpdb.group.segsdx1",
        db_instance_mode="StorageElastic",
        description=name,
        engine="gpdb",
        engine_version="6.0",
        zone_id=default.ids[0],
        instance_network_type="VPC",
        instance_spec="2C16G",
        payment_type="PayAsYouGo",
        seg_storage_type="cloud_essd",
        seg_node_num=4,
        storage_size=50,
        vpc_id=default_get_networks.ids[0],
        vswitch_id=default_get_switches.ids[0],
        ip_whitelists=[{
            "security_ip_list": "127.0.0.1",
        }])
    default_account = alicloud.gpdb.Account("default",
        account_name="tf_example",
        db_instance_id=default_instance.id,
        account_password="Example1234",
        account_description="tf_example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/gpdb"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"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 := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_default, err := gpdb.GetZones(ctx, &gpdb.GetZonesArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		defaultGetNetworks, err := vpc.GetNetworks(ctx, &vpc.GetNetworksArgs{
    			NameRegex: pulumi.StringRef("^default-NODELETING$"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultGetSwitches, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
    			VpcId:  pulumi.StringRef(defaultGetNetworks.Ids[0]),
    			ZoneId: pulumi.StringRef(_default.Ids[0]),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultInstance, err := gpdb.NewInstance(ctx, "default", &gpdb.InstanceArgs{
    			DbInstanceCategory:  pulumi.String("HighAvailability"),
    			DbInstanceClass:     pulumi.String("gpdb.group.segsdx1"),
    			DbInstanceMode:      pulumi.String("StorageElastic"),
    			Description:         pulumi.String(name),
    			Engine:              pulumi.String("gpdb"),
    			EngineVersion:       pulumi.String("6.0"),
    			ZoneId:              pulumi.String(_default.Ids[0]),
    			InstanceNetworkType: pulumi.String("VPC"),
    			InstanceSpec:        pulumi.String("2C16G"),
    			PaymentType:         pulumi.String("PayAsYouGo"),
    			SegStorageType:      pulumi.String("cloud_essd"),
    			SegNodeNum:          pulumi.Int(4),
    			StorageSize:         pulumi.Int(50),
    			VpcId:               pulumi.String(defaultGetNetworks.Ids[0]),
    			VswitchId:           pulumi.String(defaultGetSwitches.Ids[0]),
    			IpWhitelists: gpdb.InstanceIpWhitelistArray{
    				&gpdb.InstanceIpWhitelistArgs{
    					SecurityIpList: pulumi.String("127.0.0.1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = gpdb.NewAccount(ctx, "default", &gpdb.AccountArgs{
    			AccountName:        pulumi.String("tf_example"),
    			DbInstanceId:       defaultInstance.ID(),
    			AccountPassword:    pulumi.String("Example1234"),
    			AccountDescription: pulumi.String("tf_example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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") ?? "terraform-example";
        var @default = AliCloud.Gpdb.GetZones.Invoke();
    
        var defaultGetNetworks = AliCloud.Vpc.GetNetworks.Invoke(new()
        {
            NameRegex = "^default-NODELETING$",
        });
    
        var defaultGetSwitches = AliCloud.Vpc.GetSwitches.Invoke(new()
        {
            VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            ZoneId = @default.Apply(getZonesResult => getZonesResult.Ids[0]),
        });
    
        var defaultInstance = new AliCloud.Gpdb.Instance("default", new()
        {
            DbInstanceCategory = "HighAvailability",
            DbInstanceClass = "gpdb.group.segsdx1",
            DbInstanceMode = "StorageElastic",
            Description = name,
            Engine = "gpdb",
            EngineVersion = "6.0",
            ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Ids[0])),
            InstanceNetworkType = "VPC",
            InstanceSpec = "2C16G",
            PaymentType = "PayAsYouGo",
            SegStorageType = "cloud_essd",
            SegNodeNum = 4,
            StorageSize = 50,
            VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            VswitchId = defaultGetSwitches.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
            IpWhitelists = new[]
            {
                new AliCloud.Gpdb.Inputs.InstanceIpWhitelistArgs
                {
                    SecurityIpList = "127.0.0.1",
                },
            },
        });
    
        var defaultAccount = new AliCloud.Gpdb.Account("default", new()
        {
            AccountName = "tf_example",
            DbInstanceId = defaultInstance.Id,
            AccountPassword = "Example1234",
            AccountDescription = "tf_example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.gpdb.GpdbFunctions;
    import com.pulumi.alicloud.gpdb.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.VpcFunctions;
    import com.pulumi.alicloud.vpc.inputs.GetNetworksArgs;
    import com.pulumi.alicloud.vpc.inputs.GetSwitchesArgs;
    import com.pulumi.alicloud.gpdb.Instance;
    import com.pulumi.alicloud.gpdb.InstanceArgs;
    import com.pulumi.alicloud.gpdb.inputs.InstanceIpWhitelistArgs;
    import com.pulumi.alicloud.gpdb.Account;
    import com.pulumi.alicloud.gpdb.AccountArgs;
    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("terraform-example");
            final var default = GpdbFunctions.getZones();
    
            final var defaultGetNetworks = VpcFunctions.getNetworks(GetNetworksArgs.builder()
                .nameRegex("^default-NODELETING$")
                .build());
    
            final var defaultGetSwitches = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
                .vpcId(defaultGetNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
                .zoneId(default_.ids()[0])
                .build());
    
            var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
                .dbInstanceCategory("HighAvailability")
                .dbInstanceClass("gpdb.group.segsdx1")
                .dbInstanceMode("StorageElastic")
                .description(name)
                .engine("gpdb")
                .engineVersion("6.0")
                .zoneId(default_.ids()[0])
                .instanceNetworkType("VPC")
                .instanceSpec("2C16G")
                .paymentType("PayAsYouGo")
                .segStorageType("cloud_essd")
                .segNodeNum(4)
                .storageSize(50)
                .vpcId(defaultGetNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
                .vswitchId(defaultGetSwitches.applyValue(getSwitchesResult -> getSwitchesResult.ids()[0]))
                .ipWhitelists(InstanceIpWhitelistArgs.builder()
                    .securityIpList("127.0.0.1")
                    .build())
                .build());
    
            var defaultAccount = new Account("defaultAccount", AccountArgs.builder()
                .accountName("tf_example")
                .dbInstanceId(defaultInstance.id())
                .accountPassword("Example1234")
                .accountDescription("tf_example")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      defaultInstance:
        type: alicloud:gpdb:Instance
        name: default
        properties:
          dbInstanceCategory: HighAvailability
          dbInstanceClass: gpdb.group.segsdx1
          dbInstanceMode: StorageElastic
          description: ${name}
          engine: gpdb
          engineVersion: '6.0'
          zoneId: ${default.ids[0]}
          instanceNetworkType: VPC
          instanceSpec: 2C16G
          paymentType: PayAsYouGo
          segStorageType: cloud_essd
          segNodeNum: 4
          storageSize: 50
          vpcId: ${defaultGetNetworks.ids[0]}
          vswitchId: ${defaultGetSwitches.ids[0]}
          ipWhitelists:
            - securityIpList: 127.0.0.1
      defaultAccount:
        type: alicloud:gpdb:Account
        name: default
        properties:
          accountName: tf_example
          dbInstanceId: ${defaultInstance.id}
          accountPassword: Example1234
          accountDescription: tf_example
    variables:
      default:
        fn::invoke:
          Function: alicloud:gpdb:getZones
          Arguments: {}
      defaultGetNetworks:
        fn::invoke:
          Function: alicloud:vpc:getNetworks
          Arguments:
            nameRegex: ^default-NODELETING$
      defaultGetSwitches:
        fn::invoke:
          Function: alicloud:vpc:getSwitches
          Arguments:
            vpcId: ${defaultGetNetworks.ids[0]}
            zoneId: ${default.ids[0]}
    

    Create Account Resource

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

    Constructor syntax

    new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
    @overload
    def Account(resource_name: str,
                args: AccountArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Account(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                account_name: Optional[str] = None,
                account_password: Optional[str] = None,
                db_instance_id: Optional[str] = None,
                account_description: Optional[str] = None,
                account_type: Optional[str] = None,
                database_name: Optional[str] = None)
    func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
    public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
    public Account(String name, AccountArgs args)
    public Account(String name, AccountArgs args, CustomResourceOptions options)
    
    type: alicloud:gpdb:Account
    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 AccountArgs
    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 AccountArgs
    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 AccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountArgs
    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 exampleaccountResourceResourceFromGpdbaccount = new AliCloud.Gpdb.Account("exampleaccountResourceResourceFromGpdbaccount", new()
    {
        AccountName = "string",
        AccountPassword = "string",
        DbInstanceId = "string",
        AccountDescription = "string",
        AccountType = "string",
        DatabaseName = "string",
    });
    
    example, err := gpdb.NewAccount(ctx, "exampleaccountResourceResourceFromGpdbaccount", &gpdb.AccountArgs{
    	AccountName:        pulumi.String("string"),
    	AccountPassword:    pulumi.String("string"),
    	DbInstanceId:       pulumi.String("string"),
    	AccountDescription: pulumi.String("string"),
    	AccountType:        pulumi.String("string"),
    	DatabaseName:       pulumi.String("string"),
    })
    
    var exampleaccountResourceResourceFromGpdbaccount = new Account("exampleaccountResourceResourceFromGpdbaccount", AccountArgs.builder()
        .accountName("string")
        .accountPassword("string")
        .dbInstanceId("string")
        .accountDescription("string")
        .accountType("string")
        .databaseName("string")
        .build());
    
    exampleaccount_resource_resource_from_gpdbaccount = alicloud.gpdb.Account("exampleaccountResourceResourceFromGpdbaccount",
        account_name="string",
        account_password="string",
        db_instance_id="string",
        account_description="string",
        account_type="string",
        database_name="string")
    
    const exampleaccountResourceResourceFromGpdbaccount = new alicloud.gpdb.Account("exampleaccountResourceResourceFromGpdbaccount", {
        accountName: "string",
        accountPassword: "string",
        dbInstanceId: "string",
        accountDescription: "string",
        accountType: "string",
        databaseName: "string",
    });
    
    type: alicloud:gpdb:Account
    properties:
        accountDescription: string
        accountName: string
        accountPassword: string
        accountType: string
        databaseName: string
        dbInstanceId: string
    

    Account Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Account resource accepts the following input properties:

    AccountName string
    The account name.
    AccountPassword string
    AccountPassword
    DbInstanceId string
    The Adb pg instance ID.
    AccountDescription string
    The description of the account.
    AccountType string

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    DatabaseName string
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    AccountName string
    The account name.
    AccountPassword string
    AccountPassword
    DbInstanceId string
    The Adb pg instance ID.
    AccountDescription string
    The description of the account.
    AccountType string

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    DatabaseName string
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    accountName String
    The account name.
    accountPassword String
    AccountPassword
    dbInstanceId String
    The Adb pg instance ID.
    accountDescription String
    The description of the account.
    accountType String

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    databaseName String
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    accountName string
    The account name.
    accountPassword string
    AccountPassword
    dbInstanceId string
    The Adb pg instance ID.
    accountDescription string
    The description of the account.
    accountType string

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    databaseName string
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    account_name str
    The account name.
    account_password str
    AccountPassword
    db_instance_id str
    The Adb pg instance ID.
    account_description str
    The description of the account.
    account_type str

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    database_name str
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    accountName String
    The account name.
    accountPassword String
    AccountPassword
    dbInstanceId String
    The Adb pg instance ID.
    accountDescription String
    The description of the account.
    accountType String

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    databaseName String
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.

    Outputs

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

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

    Look up Existing Account Resource

    Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_description: Optional[str] = None,
            account_name: Optional[str] = None,
            account_password: Optional[str] = None,
            account_type: Optional[str] = None,
            database_name: Optional[str] = None,
            db_instance_id: Optional[str] = None,
            status: Optional[str] = None) -> Account
    func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
    public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
    public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AccountDescription string
    The description of the account.
    AccountName string
    The account name.
    AccountPassword string
    AccountPassword
    AccountType string

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    DatabaseName string
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    DbInstanceId string
    The Adb pg instance ID.
    Status string
    The status of the resource
    AccountDescription string
    The description of the account.
    AccountName string
    The account name.
    AccountPassword string
    AccountPassword
    AccountType string

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    DatabaseName string
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    DbInstanceId string
    The Adb pg instance ID.
    Status string
    The status of the resource
    accountDescription String
    The description of the account.
    accountName String
    The account name.
    accountPassword String
    AccountPassword
    accountType String

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    databaseName String
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    dbInstanceId String
    The Adb pg instance ID.
    status String
    The status of the resource
    accountDescription string
    The description of the account.
    accountName string
    The account name.
    accountPassword string
    AccountPassword
    accountType string

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    databaseName string
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    dbInstanceId string
    The Adb pg instance ID.
    status string
    The status of the resource
    account_description str
    The description of the account.
    account_name str
    The account name.
    account_password str
    AccountPassword
    account_type str

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    database_name str
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    db_instance_id str
    The Adb pg instance ID.
    status str
    The status of the resource
    accountDescription String
    The description of the account.
    accountName String
    The account name.
    accountPassword String
    AccountPassword
    accountType String

    Account type. The value range is as follows:

    Normal: Normal account number.

    Super: a high-privilege account.

    databaseName String
    Database name, with the following restrictions:

    • Can only contain letters, numbers and underscores.
    • Must start with a letter.
    • Length cannot exceed 63 characters.
    dbInstanceId String
    The Adb pg instance ID.
    status String
    The status of the resource

    Import

    GPDB Account can be imported using the id, e.g.

    $ pulumi import alicloud:gpdb/account:Account example <db_instance_id>:<account_name>
    

    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.63.1 published on Wednesday, Oct 16, 2024 by Pulumi