gcp logo
Google Cloud Classic v6.52.0, Mar 22 23

gcp.alloydb.Cluster

Import

Cluster can be imported using any of these accepted formats

 $ pulumi import gcp:alloydb/cluster:Cluster default projects/{{project}}/locations/{{location}}/clusters/{{cluster_id}}
 $ pulumi import gcp:alloydb/cluster:Cluster default {{project}}/{{location}}/{{cluster_id}}
 $ pulumi import gcp:alloydb/cluster:Cluster default {{location}}/{{cluster_id}}
 $ pulumi import gcp:alloydb/cluster:Cluster default {{cluster_id}}

Example Usage

Alloydb Cluster Basic

using System.Collections.Generic;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var project = Gcp.Organizations.GetProject.Invoke();

    var defaultNetwork = new Gcp.Compute.Network("defaultNetwork");

    var defaultCluster = new Gcp.Alloydb.Cluster("defaultCluster", new()
    {
        ClusterId = "alloydb-cluster",
        Location = "us-central1",
        Network = Output.Tuple(project, defaultNetwork.Name).Apply(values =>
        {
            var project = values.Item1;
            var name = values.Item2;
            return $"projects/{project.Apply(getProjectResult => getProjectResult.Number)}/global/networks/{name}";
        }),
    });

});
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/alloydb"
	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/compute"
	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/organizations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		project, err := organizations.LookupProject(ctx, nil, nil)
		if err != nil {
			return err
		}
		defaultNetwork, err := compute.NewNetwork(ctx, "defaultNetwork", nil)
		if err != nil {
			return err
		}
		_, err = alloydb.NewCluster(ctx, "defaultCluster", &alloydb.ClusterArgs{
			ClusterId: pulumi.String("alloydb-cluster"),
			Location:  pulumi.String("us-central1"),
			Network: defaultNetwork.Name.ApplyT(func(name string) (string, error) {
				return fmt.Sprintf("projects/%v/global/networks/%v", project.Number, name), nil
			}).(pulumi.StringOutput),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
import com.pulumi.gcp.compute.Network;
import com.pulumi.gcp.alloydb.Cluster;
import com.pulumi.gcp.alloydb.ClusterArgs;
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 project = OrganizationsFunctions.getProject();

        var defaultNetwork = new Network("defaultNetwork");

        var defaultCluster = new Cluster("defaultCluster", ClusterArgs.builder()        
            .clusterId("alloydb-cluster")
            .location("us-central1")
            .network(defaultNetwork.name().applyValue(name -> String.format("projects/%s/global/networks/%s", project.applyValue(getProjectResult -> getProjectResult.number()),name)))
            .build());

    }
}
import pulumi
import pulumi_gcp as gcp

project = gcp.organizations.get_project()
default_network = gcp.compute.Network("defaultNetwork")
default_cluster = gcp.alloydb.Cluster("defaultCluster",
    cluster_id="alloydb-cluster",
    location="us-central1",
    network=default_network.name.apply(lambda name: f"projects/{project.number}/global/networks/{name}"))
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const project = gcp.organizations.getProject({});
const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
    clusterId: "alloydb-cluster",
    location: "us-central1",
    network: pulumi.all([project, defaultNetwork.name]).apply(([project, name]) => `projects/${project.number}/global/networks/${name}`),
});
resources:
  defaultCluster:
    type: gcp:alloydb:Cluster
    properties:
      clusterId: alloydb-cluster
      location: us-central1
      network: projects/${project.number}/global/networks/${defaultNetwork.name}
  defaultNetwork:
    type: gcp:compute:Network
variables:
  project:
    fn::invoke:
      Function: gcp:organizations:getProject
      Arguments: {}

Alloydb Cluster Full

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
import com.pulumi.gcp.compute.Network;
import com.pulumi.gcp.alloydb.Cluster;
import com.pulumi.gcp.alloydb.ClusterArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterAutomatedBackupPolicyArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterAutomatedBackupPolicyQuantityBasedRetentionArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterAutomatedBackupPolicyWeeklyScheduleArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterInitialUserArgs;
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 project = OrganizationsFunctions.getProject();

        var default_ = new Network("default");

        var full = new Cluster("full", ClusterArgs.builder()        
            .automatedBackupPolicy(ClusterAutomatedBackupPolicyArgs.builder()
                .backupWindow("1800s")
                .enabled(true)
                .labels(Map.of("test", "alloydb-cluster-full"))
                .location("us-central1")
                .quantityBasedRetention(ClusterAutomatedBackupPolicyQuantityBasedRetentionArgs.builder()
                    .count(1)
                    .build())
                .weeklySchedule(ClusterAutomatedBackupPolicyWeeklyScheduleArgs.builder()
                    .daysOfWeek("MONDAY")
                    .startTimes(ClusterAutomatedBackupPolicyWeeklyScheduleStartTimeArgs.builder()
                        .hours(23)
                        .minutes(0)
                        .nanos(0)
                        .seconds(0)
                        .build())
                    .build())
                .build())
            .clusterId("alloydb-cluster-full")
            .initialUser(ClusterInitialUserArgs.builder()
                .password("alloydb-cluster-full")
                .user("alloydb-cluster-full")
                .build())
            .labels(Map.of("test", "alloydb-cluster-full"))
            .location("us-central1")
            .network(default_.name().applyValue(name -> String.format("projects/%s/global/networks/%s", project.applyValue(getProjectResult -> getProjectResult.number()),name)))
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  full:
    type: gcp:alloydb:Cluster
    properties:
      automatedBackupPolicy:
        backupWindow: 1800s
        enabled: true
        labels:
          test: alloydb-cluster-full
        location: us-central1
        quantityBasedRetention:
          count: 1
        weeklySchedule:
          daysOfWeek:
            - MONDAY
          startTimes:
            - hours: 23
              minutes: 0
              nanos: 0
              seconds: 0
      clusterId: alloydb-cluster-full
      initialUser:
        password: alloydb-cluster-full
        user: alloydb-cluster-full
      labels:
        test: alloydb-cluster-full
      location: us-central1
      network: projects/${project.number}/global/networks/${default.name}
  default:
    type: gcp:compute:Network
variables:
  project:
    fn::invoke:
      Function: gcp:organizations:getProject
      Arguments: {}

Create Cluster Resource

new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);
@overload
def Cluster(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            automated_backup_policy: Optional[ClusterAutomatedBackupPolicyArgs] = None,
            cluster_id: Optional[str] = None,
            display_name: Optional[str] = None,
            initial_user: Optional[ClusterInitialUserArgs] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            network: Optional[str] = None,
            project: Optional[str] = None)
@overload
def Cluster(resource_name: str,
            args: ClusterArgs,
            opts: Optional[ResourceOptions] = None)
func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)
public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)
public Cluster(String name, ClusterArgs args)
public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
type: gcp:alloydb:Cluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ClusterArgs
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 ClusterArgs
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 ClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ClusterArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

ClusterId string

The ID of the alloydb cluster.

Network string

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

AutomatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

DisplayName string

User-settable and human-readable display name for the Cluster.

InitialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

Labels Dictionary<string, string>

User-defined labels for the alloydb cluster.

Location string

The location where the alloydb cluster should reside.

Project string

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

ClusterId string

The ID of the alloydb cluster.

Network string

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

AutomatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

DisplayName string

User-settable and human-readable display name for the Cluster.

InitialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

Labels map[string]string

User-defined labels for the alloydb cluster.

Location string

The location where the alloydb cluster should reside.

Project string

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

clusterId String

The ID of the alloydb cluster.

network String

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

automatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

displayName String

User-settable and human-readable display name for the Cluster.

initialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

labels Map<String,String>

User-defined labels for the alloydb cluster.

location String

The location where the alloydb cluster should reside.

project String

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

clusterId string

The ID of the alloydb cluster.

network string

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

automatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

displayName string

User-settable and human-readable display name for the Cluster.

initialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

labels {[key: string]: string}

User-defined labels for the alloydb cluster.

location string

The location where the alloydb cluster should reside.

project string

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

cluster_id str

The ID of the alloydb cluster.

network str

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

automated_backup_policy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

display_name str

User-settable and human-readable display name for the Cluster.

initial_user ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

labels Mapping[str, str]

User-defined labels for the alloydb cluster.

location str

The location where the alloydb cluster should reside.

project str

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

clusterId String

The ID of the alloydb cluster.

network String

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

automatedBackupPolicy Property Map

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

displayName String

User-settable and human-readable display name for the Cluster.

initialUser Property Map

Initial user to setup during cluster creation. Structure is documented below.

labels Map<String>

User-defined labels for the alloydb cluster.

location String

The location where the alloydb cluster should reside.

project String

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Outputs

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

BackupSources List<ClusterBackupSource>

Cluster created from backup. Structure is documented below.

DatabaseVersion string

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

Id string

The provider-assigned unique ID for this managed resource.

MigrationSources List<ClusterMigrationSource>

Cluster created via DMS migration. Structure is documented below.

Name string

The name of the cluster resource.

Uid string

The system-generated UID of the resource.

BackupSources []ClusterBackupSource

Cluster created from backup. Structure is documented below.

DatabaseVersion string

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

Id string

The provider-assigned unique ID for this managed resource.

MigrationSources []ClusterMigrationSource

Cluster created via DMS migration. Structure is documented below.

Name string

The name of the cluster resource.

Uid string

The system-generated UID of the resource.

backupSources List<ClusterBackupSource>

Cluster created from backup. Structure is documented below.

databaseVersion String

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

id String

The provider-assigned unique ID for this managed resource.

migrationSources List<ClusterMigrationSource>

Cluster created via DMS migration. Structure is documented below.

name String

The name of the cluster resource.

uid String

The system-generated UID of the resource.

backupSources ClusterBackupSource[]

Cluster created from backup. Structure is documented below.

databaseVersion string

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

id string

The provider-assigned unique ID for this managed resource.

migrationSources ClusterMigrationSource[]

Cluster created via DMS migration. Structure is documented below.

name string

The name of the cluster resource.

uid string

The system-generated UID of the resource.

backup_sources Sequence[ClusterBackupSource]

Cluster created from backup. Structure is documented below.

database_version str

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

id str

The provider-assigned unique ID for this managed resource.

migration_sources Sequence[ClusterMigrationSource]

Cluster created via DMS migration. Structure is documented below.

name str

The name of the cluster resource.

uid str

The system-generated UID of the resource.

backupSources List<Property Map>

Cluster created from backup. Structure is documented below.

databaseVersion String

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

id String

The provider-assigned unique ID for this managed resource.

migrationSources List<Property Map>

Cluster created via DMS migration. Structure is documented below.

name String

The name of the cluster resource.

uid String

The system-generated UID of the resource.

Look up Existing Cluster Resource

Get an existing Cluster 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?: ClusterState, opts?: CustomResourceOptions): Cluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        automated_backup_policy: Optional[ClusterAutomatedBackupPolicyArgs] = None,
        backup_sources: Optional[Sequence[ClusterBackupSourceArgs]] = None,
        cluster_id: Optional[str] = None,
        database_version: Optional[str] = None,
        display_name: Optional[str] = None,
        initial_user: Optional[ClusterInitialUserArgs] = None,
        labels: Optional[Mapping[str, str]] = None,
        location: Optional[str] = None,
        migration_sources: Optional[Sequence[ClusterMigrationSourceArgs]] = None,
        name: Optional[str] = None,
        network: Optional[str] = None,
        project: Optional[str] = None,
        uid: Optional[str] = None) -> Cluster
func GetCluster(ctx *Context, name string, id IDInput, state *ClusterState, opts ...ResourceOption) (*Cluster, error)
public static Cluster Get(string name, Input<string> id, ClusterState? state, CustomResourceOptions? opts = null)
public static Cluster get(String name, Output<String> id, ClusterState 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:
AutomatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

BackupSources List<ClusterBackupSourceArgs>

Cluster created from backup. Structure is documented below.

ClusterId string

The ID of the alloydb cluster.

DatabaseVersion string

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

DisplayName string

User-settable and human-readable display name for the Cluster.

InitialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

Labels Dictionary<string, string>

User-defined labels for the alloydb cluster.

Location string

The location where the alloydb cluster should reside.

MigrationSources List<ClusterMigrationSourceArgs>

Cluster created via DMS migration. Structure is documented below.

Name string

The name of the cluster resource.

Network string

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

Project string

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Uid string

The system-generated UID of the resource.

AutomatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

BackupSources []ClusterBackupSourceArgs

Cluster created from backup. Structure is documented below.

ClusterId string

The ID of the alloydb cluster.

DatabaseVersion string

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

DisplayName string

User-settable and human-readable display name for the Cluster.

InitialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

Labels map[string]string

User-defined labels for the alloydb cluster.

Location string

The location where the alloydb cluster should reside.

MigrationSources []ClusterMigrationSourceArgs

Cluster created via DMS migration. Structure is documented below.

Name string

The name of the cluster resource.

Network string

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

Project string

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Uid string

The system-generated UID of the resource.

automatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

backupSources List<ClusterBackupSourceArgs>

Cluster created from backup. Structure is documented below.

clusterId String

The ID of the alloydb cluster.

databaseVersion String

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

displayName String

User-settable and human-readable display name for the Cluster.

initialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

labels Map<String,String>

User-defined labels for the alloydb cluster.

location String

The location where the alloydb cluster should reside.

migrationSources List<ClusterMigrationSourceArgs>

Cluster created via DMS migration. Structure is documented below.

name String

The name of the cluster resource.

network String

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

project String

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

uid String

The system-generated UID of the resource.

automatedBackupPolicy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

backupSources ClusterBackupSourceArgs[]

Cluster created from backup. Structure is documented below.

clusterId string

The ID of the alloydb cluster.

databaseVersion string

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

displayName string

User-settable and human-readable display name for the Cluster.

initialUser ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

labels {[key: string]: string}

User-defined labels for the alloydb cluster.

location string

The location where the alloydb cluster should reside.

migrationSources ClusterMigrationSourceArgs[]

Cluster created via DMS migration. Structure is documented below.

name string

The name of the cluster resource.

network string

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

project string

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

uid string

The system-generated UID of the resource.

automated_backup_policy ClusterAutomatedBackupPolicyArgs

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

backup_sources Sequence[ClusterBackupSourceArgs]

Cluster created from backup. Structure is documented below.

cluster_id str

The ID of the alloydb cluster.

database_version str

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

display_name str

User-settable and human-readable display name for the Cluster.

initial_user ClusterInitialUserArgs

Initial user to setup during cluster creation. Structure is documented below.

labels Mapping[str, str]

User-defined labels for the alloydb cluster.

location str

The location where the alloydb cluster should reside.

migration_sources Sequence[ClusterMigrationSourceArgs]

Cluster created via DMS migration. Structure is documented below.

name str

The name of the cluster resource.

network str

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

project str

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

uid str

The system-generated UID of the resource.

automatedBackupPolicy Property Map

The automated backup policy for this cluster. If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. Structure is documented below.

backupSources List<Property Map>

Cluster created from backup. Structure is documented below.

clusterId String

The ID of the alloydb cluster.

databaseVersion String

The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.

displayName String

User-settable and human-readable display name for the Cluster.

initialUser Property Map

Initial user to setup during cluster creation. Structure is documented below.

labels Map<String>

User-defined labels for the alloydb cluster.

location String

The location where the alloydb cluster should reside.

migrationSources List<Property Map>

Cluster created via DMS migration. Structure is documented below.

name String

The name of the cluster resource.

network String

The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form: "projects/{projectNumber}/global/networks/{network_id}".

project String

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

uid String

The system-generated UID of the resource.

Supporting Types

ClusterAutomatedBackupPolicy

BackupWindow string

The length of the time window during which a backup can be taken. If a backup does not succeed within this time window, it will be canceled and considered failed. The backup window must be at least 5 minutes long. There is no upper bound on the window. If not set, it will default to 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

Enabled bool

Whether automated backups are enabled.

Labels Dictionary<string, string>

Labels to apply to backups created using this configuration.

Location string

The location where the backup will be stored. Currently, the only supported option is to store the backup in the same region as the cluster.

QuantityBasedRetention ClusterAutomatedBackupPolicyQuantityBasedRetention

Quantity-based Backup retention policy to retain recent backups. Structure is documented below.

TimeBasedRetention ClusterAutomatedBackupPolicyTimeBasedRetention

Time-based Backup retention policy. Structure is documented below.

WeeklySchedule ClusterAutomatedBackupPolicyWeeklySchedule

Weekly schedule for the Backup. Structure is documented below.

BackupWindow string

The length of the time window during which a backup can be taken. If a backup does not succeed within this time window, it will be canceled and considered failed. The backup window must be at least 5 minutes long. There is no upper bound on the window. If not set, it will default to 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

Enabled bool

Whether automated backups are enabled.

Labels map[string]string

Labels to apply to backups created using this configuration.

Location string

The location where the backup will be stored. Currently, the only supported option is to store the backup in the same region as the cluster.

QuantityBasedRetention ClusterAutomatedBackupPolicyQuantityBasedRetention

Quantity-based Backup retention policy to retain recent backups. Structure is documented below.

TimeBasedRetention ClusterAutomatedBackupPolicyTimeBasedRetention

Time-based Backup retention policy. Structure is documented below.

WeeklySchedule ClusterAutomatedBackupPolicyWeeklySchedule

Weekly schedule for the Backup. Structure is documented below.

backupWindow String

The length of the time window during which a backup can be taken. If a backup does not succeed within this time window, it will be canceled and considered failed. The backup window must be at least 5 minutes long. There is no upper bound on the window. If not set, it will default to 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

enabled Boolean

Whether automated backups are enabled.

labels Map<String,String>

Labels to apply to backups created using this configuration.

location String

The location where the backup will be stored. Currently, the only supported option is to store the backup in the same region as the cluster.

quantityBasedRetention ClusterAutomatedBackupPolicyQuantityBasedRetention

Quantity-based Backup retention policy to retain recent backups. Structure is documented below.

timeBasedRetention ClusterAutomatedBackupPolicyTimeBasedRetention

Time-based Backup retention policy. Structure is documented below.

weeklySchedule ClusterAutomatedBackupPolicyWeeklySchedule

Weekly schedule for the Backup. Structure is documented below.

backupWindow string

The length of the time window during which a backup can be taken. If a backup does not succeed within this time window, it will be canceled and considered failed. The backup window must be at least 5 minutes long. There is no upper bound on the window. If not set, it will default to 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

enabled boolean

Whether automated backups are enabled.

labels {[key: string]: string}

Labels to apply to backups created using this configuration.

location string

The location where the backup will be stored. Currently, the only supported option is to store the backup in the same region as the cluster.

quantityBasedRetention ClusterAutomatedBackupPolicyQuantityBasedRetention

Quantity-based Backup retention policy to retain recent backups. Structure is documented below.

timeBasedRetention ClusterAutomatedBackupPolicyTimeBasedRetention

Time-based Backup retention policy. Structure is documented below.

weeklySchedule ClusterAutomatedBackupPolicyWeeklySchedule

Weekly schedule for the Backup. Structure is documented below.

backup_window str

The length of the time window during which a backup can be taken. If a backup does not succeed within this time window, it will be canceled and considered failed. The backup window must be at least 5 minutes long. There is no upper bound on the window. If not set, it will default to 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

enabled bool

Whether automated backups are enabled.

labels Mapping[str, str]

Labels to apply to backups created using this configuration.

location str

The location where the backup will be stored. Currently, the only supported option is to store the backup in the same region as the cluster.

quantity_based_retention ClusterAutomatedBackupPolicyQuantityBasedRetention

Quantity-based Backup retention policy to retain recent backups. Structure is documented below.

time_based_retention ClusterAutomatedBackupPolicyTimeBasedRetention

Time-based Backup retention policy. Structure is documented below.

weekly_schedule ClusterAutomatedBackupPolicyWeeklySchedule

Weekly schedule for the Backup. Structure is documented below.

backupWindow String

The length of the time window during which a backup can be taken. If a backup does not succeed within this time window, it will be canceled and considered failed. The backup window must be at least 5 minutes long. There is no upper bound on the window. If not set, it will default to 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

enabled Boolean

Whether automated backups are enabled.

labels Map<String>

Labels to apply to backups created using this configuration.

location String

The location where the backup will be stored. Currently, the only supported option is to store the backup in the same region as the cluster.

quantityBasedRetention Property Map

Quantity-based Backup retention policy to retain recent backups. Structure is documented below.

timeBasedRetention Property Map

Time-based Backup retention policy. Structure is documented below.

weeklySchedule Property Map

Weekly schedule for the Backup. Structure is documented below.

ClusterAutomatedBackupPolicyQuantityBasedRetention

Count int

The number of backups to retain.

Count int

The number of backups to retain.

count Integer

The number of backups to retain.

count number

The number of backups to retain.

count int

The number of backups to retain.

count Number

The number of backups to retain.

ClusterAutomatedBackupPolicyTimeBasedRetention

RetentionPeriod string

The retention period. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

RetentionPeriod string

The retention period. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

retentionPeriod String

The retention period. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

retentionPeriod string

The retention period. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

retention_period str

The retention period. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

retentionPeriod String

The retention period. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

ClusterAutomatedBackupPolicyWeeklySchedule

StartTimes List<ClusterAutomatedBackupPolicyWeeklyScheduleStartTime>

The times during the day to start a backup. At least one start time must be provided. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). Structure is documented below.

DaysOfWeeks List<string>

The days of the week to perform a backup. At least one day of the week must be provided. Each value may be one of MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

StartTimes []ClusterAutomatedBackupPolicyWeeklyScheduleStartTime

The times during the day to start a backup. At least one start time must be provided. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). Structure is documented below.

DaysOfWeeks []string

The days of the week to perform a backup. At least one day of the week must be provided. Each value may be one of MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

startTimes List<ClusterAutomatedBackupPolicyWeeklyScheduleStartTime>

The times during the day to start a backup. At least one start time must be provided. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). Structure is documented below.

daysOfWeeks List<String>

The days of the week to perform a backup. At least one day of the week must be provided. Each value may be one of MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

startTimes ClusterAutomatedBackupPolicyWeeklyScheduleStartTime[]

The times during the day to start a backup. At least one start time must be provided. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). Structure is documented below.

daysOfWeeks string[]

The days of the week to perform a backup. At least one day of the week must be provided. Each value may be one of MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

start_times Sequence[ClusterAutomatedBackupPolicyWeeklyScheduleStartTime]

The times during the day to start a backup. At least one start time must be provided. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). Structure is documented below.

days_of_weeks Sequence[str]

The days of the week to perform a backup. At least one day of the week must be provided. Each value may be one of MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

startTimes List<Property Map>

The times during the day to start a backup. At least one start time must be provided. The start times are assumed to be in UTC and to be an exact hour (e.g., 04:00:00). Structure is documented below.

daysOfWeeks List<String>

The days of the week to perform a backup. At least one day of the week must be provided. Each value may be one of MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

ClusterAutomatedBackupPolicyWeeklyScheduleStartTime

Hours int

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Minutes int

Minutes of hour of day. Must be from 0 to 59.

Nanos int

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

Seconds int

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

Hours int

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Minutes int

Minutes of hour of day. Must be from 0 to 59.

Nanos int

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

Seconds int

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

hours Integer

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

minutes Integer

Minutes of hour of day. Must be from 0 to 59.

nanos Integer

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

seconds Integer

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

hours number

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

minutes number

Minutes of hour of day. Must be from 0 to 59.

nanos number

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

seconds number

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

hours int

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

minutes int

Minutes of hour of day. Must be from 0 to 59.

nanos int

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

seconds int

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

hours Number

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

minutes Number

Minutes of hour of day. Must be from 0 to 59.

nanos Number

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

seconds Number

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

ClusterBackupSource

BackupName string

The name of the backup resource.

BackupName string

The name of the backup resource.

backupName String

The name of the backup resource.

backupName string

The name of the backup resource.

backup_name str

The name of the backup resource.

backupName String

The name of the backup resource.

ClusterInitialUser

Password string

The initial password for the user. Note: This property is sensitive and will not be displayed in the plan.

User string

The database username.

Password string

The initial password for the user. Note: This property is sensitive and will not be displayed in the plan.

User string

The database username.

password String

The initial password for the user. Note: This property is sensitive and will not be displayed in the plan.

user String

The database username.

password string

The initial password for the user. Note: This property is sensitive and will not be displayed in the plan.

user string

The database username.

password str

The initial password for the user. Note: This property is sensitive and will not be displayed in the plan.

user str

The database username.

password String

The initial password for the user. Note: This property is sensitive and will not be displayed in the plan.

user String

The database username.

ClusterMigrationSource

HostPort string

The host and port of the on-premises instance in host:port format

ReferenceId string

Place holder for the external source identifier(e.g DMS job name) that created the cluster.

SourceType string

Type of migration source.

HostPort string

The host and port of the on-premises instance in host:port format

ReferenceId string

Place holder for the external source identifier(e.g DMS job name) that created the cluster.

SourceType string

Type of migration source.

hostPort String

The host and port of the on-premises instance in host:port format

referenceId String

Place holder for the external source identifier(e.g DMS job name) that created the cluster.

sourceType String

Type of migration source.

hostPort string

The host and port of the on-premises instance in host:port format

referenceId string

Place holder for the external source identifier(e.g DMS job name) that created the cluster.

sourceType string

Type of migration source.

host_port str

The host and port of the on-premises instance in host:port format

reference_id str

Place holder for the external source identifier(e.g DMS job name) that created the cluster.

source_type str

Type of migration source.

hostPort String

The host and port of the on-premises instance in host:port format

referenceId String

Place holder for the external source identifier(e.g DMS job name) that created the cluster.

sourceType String

Type of migration source.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes

This Pulumi package is based on the google-beta Terraform Provider.