gcp.alloydb.Instance
Explore with Pulumi AI
Example Usage
Alloydb Instance Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const defaultNetwork = new gcp.compute.Network("default", {name: "alloydb-network"});
const defaultCluster = new gcp.alloydb.Cluster("default", {
    clusterId: "alloydb-cluster",
    location: "us-central1",
    networkConfig: {
        network: defaultNetwork.id,
    },
    initialUser: {
        password: "alloydb-cluster",
    },
});
const privateIpAlloc = new gcp.compute.GlobalAddress("private_ip_alloc", {
    name: "alloydb-cluster",
    addressType: "INTERNAL",
    purpose: "VPC_PEERING",
    prefixLength: 16,
    network: defaultNetwork.id,
});
const vpcConnection = new gcp.servicenetworking.Connection("vpc_connection", {
    network: defaultNetwork.id,
    service: "servicenetworking.googleapis.com",
    reservedPeeringRanges: [privateIpAlloc.name],
});
const _default = new gcp.alloydb.Instance("default", {
    cluster: defaultCluster.name,
    instanceId: "alloydb-instance",
    instanceType: "PRIMARY",
    machineConfig: {
        cpuCount: 2,
    },
}, {
    dependsOn: [vpcConnection],
});
const project = gcp.organizations.getProject({});
import pulumi
import pulumi_gcp as gcp
default_network = gcp.compute.Network("default", name="alloydb-network")
default_cluster = gcp.alloydb.Cluster("default",
    cluster_id="alloydb-cluster",
    location="us-central1",
    network_config={
        "network": default_network.id,
    },
    initial_user={
        "password": "alloydb-cluster",
    })
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
    name="alloydb-cluster",
    address_type="INTERNAL",
    purpose="VPC_PEERING",
    prefix_length=16,
    network=default_network.id)
vpc_connection = gcp.servicenetworking.Connection("vpc_connection",
    network=default_network.id,
    service="servicenetworking.googleapis.com",
    reserved_peering_ranges=[private_ip_alloc.name])
default = gcp.alloydb.Instance("default",
    cluster=default_cluster.name,
    instance_id="alloydb-instance",
    instance_type="PRIMARY",
    machine_config={
        "cpu_count": 2,
    },
    opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
project = gcp.organizations.get_project()
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/alloydb"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/servicenetworking"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		defaultNetwork, err := compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
			Name: pulumi.String("alloydb-network"),
		})
		if err != nil {
			return err
		}
		defaultCluster, err := alloydb.NewCluster(ctx, "default", &alloydb.ClusterArgs{
			ClusterId: pulumi.String("alloydb-cluster"),
			Location:  pulumi.String("us-central1"),
			NetworkConfig: &alloydb.ClusterNetworkConfigArgs{
				Network: defaultNetwork.ID(),
			},
			InitialUser: &alloydb.ClusterInitialUserArgs{
				Password: pulumi.String("alloydb-cluster"),
			},
		})
		if err != nil {
			return err
		}
		privateIpAlloc, err := compute.NewGlobalAddress(ctx, "private_ip_alloc", &compute.GlobalAddressArgs{
			Name:         pulumi.String("alloydb-cluster"),
			AddressType:  pulumi.String("INTERNAL"),
			Purpose:      pulumi.String("VPC_PEERING"),
			PrefixLength: pulumi.Int(16),
			Network:      defaultNetwork.ID(),
		})
		if err != nil {
			return err
		}
		vpcConnection, err := servicenetworking.NewConnection(ctx, "vpc_connection", &servicenetworking.ConnectionArgs{
			Network: defaultNetwork.ID(),
			Service: pulumi.String("servicenetworking.googleapis.com"),
			ReservedPeeringRanges: pulumi.StringArray{
				privateIpAlloc.Name,
			},
		})
		if err != nil {
			return err
		}
		_, err = alloydb.NewInstance(ctx, "default", &alloydb.InstanceArgs{
			Cluster:      defaultCluster.Name,
			InstanceId:   pulumi.String("alloydb-instance"),
			InstanceType: pulumi.String("PRIMARY"),
			MachineConfig: &alloydb.InstanceMachineConfigArgs{
				CpuCount: pulumi.Int(2),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			vpcConnection,
		}))
		if err != nil {
			return err
		}
		_, err = organizations.LookupProject(ctx, &organizations.LookupProjectArgs{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var defaultNetwork = new Gcp.Compute.Network("default", new()
    {
        Name = "alloydb-network",
    });
    var defaultCluster = new Gcp.Alloydb.Cluster("default", new()
    {
        ClusterId = "alloydb-cluster",
        Location = "us-central1",
        NetworkConfig = new Gcp.Alloydb.Inputs.ClusterNetworkConfigArgs
        {
            Network = defaultNetwork.Id,
        },
        InitialUser = new Gcp.Alloydb.Inputs.ClusterInitialUserArgs
        {
            Password = "alloydb-cluster",
        },
    });
    var privateIpAlloc = new Gcp.Compute.GlobalAddress("private_ip_alloc", new()
    {
        Name = "alloydb-cluster",
        AddressType = "INTERNAL",
        Purpose = "VPC_PEERING",
        PrefixLength = 16,
        Network = defaultNetwork.Id,
    });
    var vpcConnection = new Gcp.ServiceNetworking.Connection("vpc_connection", new()
    {
        Network = defaultNetwork.Id,
        Service = "servicenetworking.googleapis.com",
        ReservedPeeringRanges = new[]
        {
            privateIpAlloc.Name,
        },
    });
    var @default = new Gcp.Alloydb.Instance("default", new()
    {
        Cluster = defaultCluster.Name,
        InstanceId = "alloydb-instance",
        InstanceType = "PRIMARY",
        MachineConfig = new Gcp.Alloydb.Inputs.InstanceMachineConfigArgs
        {
            CpuCount = 2,
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vpcConnection,
        },
    });
    var project = Gcp.Organizations.GetProject.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.Network;
import com.pulumi.gcp.compute.NetworkArgs;
import com.pulumi.gcp.alloydb.Cluster;
import com.pulumi.gcp.alloydb.ClusterArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterNetworkConfigArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterInitialUserArgs;
import com.pulumi.gcp.compute.GlobalAddress;
import com.pulumi.gcp.compute.GlobalAddressArgs;
import com.pulumi.gcp.servicenetworking.Connection;
import com.pulumi.gcp.servicenetworking.ConnectionArgs;
import com.pulumi.gcp.alloydb.Instance;
import com.pulumi.gcp.alloydb.InstanceArgs;
import com.pulumi.gcp.alloydb.inputs.InstanceMachineConfigArgs;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .name("alloydb-network")
            .build());
        var defaultCluster = new Cluster("defaultCluster", ClusterArgs.builder()
            .clusterId("alloydb-cluster")
            .location("us-central1")
            .networkConfig(ClusterNetworkConfigArgs.builder()
                .network(defaultNetwork.id())
                .build())
            .initialUser(ClusterInitialUserArgs.builder()
                .password("alloydb-cluster")
                .build())
            .build());
        var privateIpAlloc = new GlobalAddress("privateIpAlloc", GlobalAddressArgs.builder()
            .name("alloydb-cluster")
            .addressType("INTERNAL")
            .purpose("VPC_PEERING")
            .prefixLength(16)
            .network(defaultNetwork.id())
            .build());
        var vpcConnection = new Connection("vpcConnection", ConnectionArgs.builder()
            .network(defaultNetwork.id())
            .service("servicenetworking.googleapis.com")
            .reservedPeeringRanges(privateIpAlloc.name())
            .build());
        var default_ = new Instance("default", InstanceArgs.builder()
            .cluster(defaultCluster.name())
            .instanceId("alloydb-instance")
            .instanceType("PRIMARY")
            .machineConfig(InstanceMachineConfigArgs.builder()
                .cpuCount(2)
                .build())
            .build(), CustomResourceOptions.builder()
                .dependsOn(vpcConnection)
                .build());
        final var project = OrganizationsFunctions.getProject();
    }
}
resources:
  default:
    type: gcp:alloydb:Instance
    properties:
      cluster: ${defaultCluster.name}
      instanceId: alloydb-instance
      instanceType: PRIMARY
      machineConfig:
        cpuCount: 2
    options:
      dependsOn:
        - ${vpcConnection}
  defaultCluster:
    type: gcp:alloydb:Cluster
    name: default
    properties:
      clusterId: alloydb-cluster
      location: us-central1
      networkConfig:
        network: ${defaultNetwork.id}
      initialUser:
        password: alloydb-cluster
  defaultNetwork:
    type: gcp:compute:Network
    name: default
    properties:
      name: alloydb-network
  privateIpAlloc:
    type: gcp:compute:GlobalAddress
    name: private_ip_alloc
    properties:
      name: alloydb-cluster
      addressType: INTERNAL
      purpose: VPC_PEERING
      prefixLength: 16
      network: ${defaultNetwork.id}
  vpcConnection:
    type: gcp:servicenetworking:Connection
    name: vpc_connection
    properties:
      network: ${defaultNetwork.id}
      service: servicenetworking.googleapis.com
      reservedPeeringRanges:
        - ${privateIpAlloc.name}
variables:
  project:
    fn::invoke:
      function: gcp:organizations:getProject
      arguments: {}
Alloydb Secondary Instance Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.compute.Network("default", {name: "alloydb-secondary-network"});
const primary = new gcp.alloydb.Cluster("primary", {
    clusterId: "alloydb-primary-cluster",
    location: "us-central1",
    networkConfig: {
        network: _default.id,
    },
});
const privateIpAlloc = new gcp.compute.GlobalAddress("private_ip_alloc", {
    name: "alloydb-secondary-instance",
    addressType: "INTERNAL",
    purpose: "VPC_PEERING",
    prefixLength: 16,
    network: _default.id,
});
const vpcConnection = new gcp.servicenetworking.Connection("vpc_connection", {
    network: _default.id,
    service: "servicenetworking.googleapis.com",
    reservedPeeringRanges: [privateIpAlloc.name],
});
const primaryInstance = new gcp.alloydb.Instance("primary", {
    cluster: primary.name,
    instanceId: "alloydb-primary-instance",
    instanceType: "PRIMARY",
    machineConfig: {
        cpuCount: 2,
    },
}, {
    dependsOn: [vpcConnection],
});
const secondary = new gcp.alloydb.Cluster("secondary", {
    clusterId: "alloydb-secondary-cluster",
    location: "us-east1",
    networkConfig: {
        network: defaultGoogleComputeNetwork.id,
    },
    clusterType: "SECONDARY",
    continuousBackupConfig: {
        enabled: false,
    },
    secondaryConfig: {
        primaryClusterName: primary.name,
    },
    deletionPolicy: "FORCE",
}, {
    dependsOn: [primaryInstance],
});
const secondaryInstance = new gcp.alloydb.Instance("secondary", {
    cluster: secondary.name,
    instanceId: "alloydb-secondary-instance",
    instanceType: secondary.clusterType,
    machineConfig: {
        cpuCount: 2,
    },
}, {
    dependsOn: [vpcConnection],
});
const project = gcp.organizations.getProject({});
import pulumi
import pulumi_gcp as gcp
default = gcp.compute.Network("default", name="alloydb-secondary-network")
primary = gcp.alloydb.Cluster("primary",
    cluster_id="alloydb-primary-cluster",
    location="us-central1",
    network_config={
        "network": default.id,
    })
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
    name="alloydb-secondary-instance",
    address_type="INTERNAL",
    purpose="VPC_PEERING",
    prefix_length=16,
    network=default.id)
vpc_connection = gcp.servicenetworking.Connection("vpc_connection",
    network=default.id,
    service="servicenetworking.googleapis.com",
    reserved_peering_ranges=[private_ip_alloc.name])
primary_instance = gcp.alloydb.Instance("primary",
    cluster=primary.name,
    instance_id="alloydb-primary-instance",
    instance_type="PRIMARY",
    machine_config={
        "cpu_count": 2,
    },
    opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
secondary = gcp.alloydb.Cluster("secondary",
    cluster_id="alloydb-secondary-cluster",
    location="us-east1",
    network_config={
        "network": default_google_compute_network["id"],
    },
    cluster_type="SECONDARY",
    continuous_backup_config={
        "enabled": False,
    },
    secondary_config={
        "primary_cluster_name": primary.name,
    },
    deletion_policy="FORCE",
    opts = pulumi.ResourceOptions(depends_on=[primary_instance]))
secondary_instance = gcp.alloydb.Instance("secondary",
    cluster=secondary.name,
    instance_id="alloydb-secondary-instance",
    instance_type=secondary.cluster_type,
    machine_config={
        "cpu_count": 2,
    },
    opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
project = gcp.organizations.get_project()
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/alloydb"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/servicenetworking"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
			Name: pulumi.String("alloydb-secondary-network"),
		})
		if err != nil {
			return err
		}
		primary, err := alloydb.NewCluster(ctx, "primary", &alloydb.ClusterArgs{
			ClusterId: pulumi.String("alloydb-primary-cluster"),
			Location:  pulumi.String("us-central1"),
			NetworkConfig: &alloydb.ClusterNetworkConfigArgs{
				Network: _default.ID(),
			},
		})
		if err != nil {
			return err
		}
		privateIpAlloc, err := compute.NewGlobalAddress(ctx, "private_ip_alloc", &compute.GlobalAddressArgs{
			Name:         pulumi.String("alloydb-secondary-instance"),
			AddressType:  pulumi.String("INTERNAL"),
			Purpose:      pulumi.String("VPC_PEERING"),
			PrefixLength: pulumi.Int(16),
			Network:      _default.ID(),
		})
		if err != nil {
			return err
		}
		vpcConnection, err := servicenetworking.NewConnection(ctx, "vpc_connection", &servicenetworking.ConnectionArgs{
			Network: _default.ID(),
			Service: pulumi.String("servicenetworking.googleapis.com"),
			ReservedPeeringRanges: pulumi.StringArray{
				privateIpAlloc.Name,
			},
		})
		if err != nil {
			return err
		}
		primaryInstance, err := alloydb.NewInstance(ctx, "primary", &alloydb.InstanceArgs{
			Cluster:      primary.Name,
			InstanceId:   pulumi.String("alloydb-primary-instance"),
			InstanceType: pulumi.String("PRIMARY"),
			MachineConfig: &alloydb.InstanceMachineConfigArgs{
				CpuCount: pulumi.Int(2),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			vpcConnection,
		}))
		if err != nil {
			return err
		}
		secondary, err := alloydb.NewCluster(ctx, "secondary", &alloydb.ClusterArgs{
			ClusterId: pulumi.String("alloydb-secondary-cluster"),
			Location:  pulumi.String("us-east1"),
			NetworkConfig: &alloydb.ClusterNetworkConfigArgs{
				Network: pulumi.Any(defaultGoogleComputeNetwork.Id),
			},
			ClusterType: pulumi.String("SECONDARY"),
			ContinuousBackupConfig: &alloydb.ClusterContinuousBackupConfigArgs{
				Enabled: pulumi.Bool(false),
			},
			SecondaryConfig: &alloydb.ClusterSecondaryConfigArgs{
				PrimaryClusterName: primary.Name,
			},
			DeletionPolicy: pulumi.String("FORCE"),
		}, pulumi.DependsOn([]pulumi.Resource{
			primaryInstance,
		}))
		if err != nil {
			return err
		}
		_, err = alloydb.NewInstance(ctx, "secondary", &alloydb.InstanceArgs{
			Cluster:      secondary.Name,
			InstanceId:   pulumi.String("alloydb-secondary-instance"),
			InstanceType: secondary.ClusterType,
			MachineConfig: &alloydb.InstanceMachineConfigArgs{
				CpuCount: pulumi.Int(2),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			vpcConnection,
		}))
		if err != nil {
			return err
		}
		_, err = organizations.LookupProject(ctx, &organizations.LookupProjectArgs{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var @default = new Gcp.Compute.Network("default", new()
    {
        Name = "alloydb-secondary-network",
    });
    var primary = new Gcp.Alloydb.Cluster("primary", new()
    {
        ClusterId = "alloydb-primary-cluster",
        Location = "us-central1",
        NetworkConfig = new Gcp.Alloydb.Inputs.ClusterNetworkConfigArgs
        {
            Network = @default.Id,
        },
    });
    var privateIpAlloc = new Gcp.Compute.GlobalAddress("private_ip_alloc", new()
    {
        Name = "alloydb-secondary-instance",
        AddressType = "INTERNAL",
        Purpose = "VPC_PEERING",
        PrefixLength = 16,
        Network = @default.Id,
    });
    var vpcConnection = new Gcp.ServiceNetworking.Connection("vpc_connection", new()
    {
        Network = @default.Id,
        Service = "servicenetworking.googleapis.com",
        ReservedPeeringRanges = new[]
        {
            privateIpAlloc.Name,
        },
    });
    var primaryInstance = new Gcp.Alloydb.Instance("primary", new()
    {
        Cluster = primary.Name,
        InstanceId = "alloydb-primary-instance",
        InstanceType = "PRIMARY",
        MachineConfig = new Gcp.Alloydb.Inputs.InstanceMachineConfigArgs
        {
            CpuCount = 2,
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vpcConnection,
        },
    });
    var secondary = new Gcp.Alloydb.Cluster("secondary", new()
    {
        ClusterId = "alloydb-secondary-cluster",
        Location = "us-east1",
        NetworkConfig = new Gcp.Alloydb.Inputs.ClusterNetworkConfigArgs
        {
            Network = defaultGoogleComputeNetwork.Id,
        },
        ClusterType = "SECONDARY",
        ContinuousBackupConfig = new Gcp.Alloydb.Inputs.ClusterContinuousBackupConfigArgs
        {
            Enabled = false,
        },
        SecondaryConfig = new Gcp.Alloydb.Inputs.ClusterSecondaryConfigArgs
        {
            PrimaryClusterName = primary.Name,
        },
        DeletionPolicy = "FORCE",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            primaryInstance,
        },
    });
    var secondaryInstance = new Gcp.Alloydb.Instance("secondary", new()
    {
        Cluster = secondary.Name,
        InstanceId = "alloydb-secondary-instance",
        InstanceType = secondary.ClusterType,
        MachineConfig = new Gcp.Alloydb.Inputs.InstanceMachineConfigArgs
        {
            CpuCount = 2,
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vpcConnection,
        },
    });
    var project = Gcp.Organizations.GetProject.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.Network;
import com.pulumi.gcp.compute.NetworkArgs;
import com.pulumi.gcp.alloydb.Cluster;
import com.pulumi.gcp.alloydb.ClusterArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterNetworkConfigArgs;
import com.pulumi.gcp.compute.GlobalAddress;
import com.pulumi.gcp.compute.GlobalAddressArgs;
import com.pulumi.gcp.servicenetworking.Connection;
import com.pulumi.gcp.servicenetworking.ConnectionArgs;
import com.pulumi.gcp.alloydb.Instance;
import com.pulumi.gcp.alloydb.InstanceArgs;
import com.pulumi.gcp.alloydb.inputs.InstanceMachineConfigArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterContinuousBackupConfigArgs;
import com.pulumi.gcp.alloydb.inputs.ClusterSecondaryConfigArgs;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
        var default_ = new Network("default", NetworkArgs.builder()
            .name("alloydb-secondary-network")
            .build());
        var primary = new Cluster("primary", ClusterArgs.builder()
            .clusterId("alloydb-primary-cluster")
            .location("us-central1")
            .networkConfig(ClusterNetworkConfigArgs.builder()
                .network(default_.id())
                .build())
            .build());
        var privateIpAlloc = new GlobalAddress("privateIpAlloc", GlobalAddressArgs.builder()
            .name("alloydb-secondary-instance")
            .addressType("INTERNAL")
            .purpose("VPC_PEERING")
            .prefixLength(16)
            .network(default_.id())
            .build());
        var vpcConnection = new Connection("vpcConnection", ConnectionArgs.builder()
            .network(default_.id())
            .service("servicenetworking.googleapis.com")
            .reservedPeeringRanges(privateIpAlloc.name())
            .build());
        var primaryInstance = new Instance("primaryInstance", InstanceArgs.builder()
            .cluster(primary.name())
            .instanceId("alloydb-primary-instance")
            .instanceType("PRIMARY")
            .machineConfig(InstanceMachineConfigArgs.builder()
                .cpuCount(2)
                .build())
            .build(), CustomResourceOptions.builder()
                .dependsOn(vpcConnection)
                .build());
        var secondary = new Cluster("secondary", ClusterArgs.builder()
            .clusterId("alloydb-secondary-cluster")
            .location("us-east1")
            .networkConfig(ClusterNetworkConfigArgs.builder()
                .network(defaultGoogleComputeNetwork.id())
                .build())
            .clusterType("SECONDARY")
            .continuousBackupConfig(ClusterContinuousBackupConfigArgs.builder()
                .enabled(false)
                .build())
            .secondaryConfig(ClusterSecondaryConfigArgs.builder()
                .primaryClusterName(primary.name())
                .build())
            .deletionPolicy("FORCE")
            .build(), CustomResourceOptions.builder()
                .dependsOn(primaryInstance)
                .build());
        var secondaryInstance = new Instance("secondaryInstance", InstanceArgs.builder()
            .cluster(secondary.name())
            .instanceId("alloydb-secondary-instance")
            .instanceType(secondary.clusterType())
            .machineConfig(InstanceMachineConfigArgs.builder()
                .cpuCount(2)
                .build())
            .build(), CustomResourceOptions.builder()
                .dependsOn(vpcConnection)
                .build());
        final var project = OrganizationsFunctions.getProject();
    }
}
resources:
  primary:
    type: gcp:alloydb:Cluster
    properties:
      clusterId: alloydb-primary-cluster
      location: us-central1
      networkConfig:
        network: ${default.id}
  primaryInstance:
    type: gcp:alloydb:Instance
    name: primary
    properties:
      cluster: ${primary.name}
      instanceId: alloydb-primary-instance
      instanceType: PRIMARY
      machineConfig:
        cpuCount: 2
    options:
      dependsOn:
        - ${vpcConnection}
  secondary:
    type: gcp:alloydb:Cluster
    properties:
      clusterId: alloydb-secondary-cluster
      location: us-east1
      networkConfig:
        network: ${defaultGoogleComputeNetwork.id}
      clusterType: SECONDARY
      continuousBackupConfig:
        enabled: false
      secondaryConfig:
        primaryClusterName: ${primary.name}
      deletionPolicy: FORCE
    options:
      dependsOn:
        - ${primaryInstance}
  secondaryInstance:
    type: gcp:alloydb:Instance
    name: secondary
    properties:
      cluster: ${secondary.name}
      instanceId: alloydb-secondary-instance
      instanceType: ${secondary.clusterType}
      machineConfig:
        cpuCount: 2
    options:
      dependsOn:
        - ${vpcConnection}
  default:
    type: gcp:compute:Network
    properties:
      name: alloydb-secondary-network
  privateIpAlloc:
    type: gcp:compute:GlobalAddress
    name: private_ip_alloc
    properties:
      name: alloydb-secondary-instance
      addressType: INTERNAL
      purpose: VPC_PEERING
      prefixLength: 16
      network: ${default.id}
  vpcConnection:
    type: gcp:servicenetworking:Connection
    name: vpc_connection
    properties:
      network: ${default.id}
      service: servicenetworking.googleapis.com
      reservedPeeringRanges:
        - ${privateIpAlloc.name}
variables:
  project:
    fn::invoke:
      function: gcp:organizations:getProject
      arguments: {}
Create Instance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);@overload
def Instance(resource_name: str,
             args: InstanceArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def Instance(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             cluster: Optional[str] = None,
             instance_type: Optional[str] = None,
             instance_id: Optional[str] = None,
             database_flags: Optional[Mapping[str, str]] = None,
             annotations: Optional[Mapping[str, str]] = None,
             display_name: Optional[str] = None,
             gce_zone: Optional[str] = None,
             client_connection_config: Optional[InstanceClientConnectionConfigArgs] = None,
             availability_type: Optional[str] = None,
             labels: Optional[Mapping[str, str]] = None,
             machine_config: Optional[InstanceMachineConfigArgs] = None,
             network_config: Optional[InstanceNetworkConfigArgs] = None,
             observability_config: Optional[InstanceObservabilityConfigArgs] = None,
             psc_instance_config: Optional[InstancePscInstanceConfigArgs] = None,
             query_insights_config: Optional[InstanceQueryInsightsConfigArgs] = None,
             read_pool_config: Optional[InstanceReadPoolConfigArgs] = None)func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: gcp:alloydb:Instance
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 InstanceArgs
- 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 InstanceArgs
- 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 InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- 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 instanceResource = new Gcp.Alloydb.Instance("instanceResource", new()
{
    Cluster = "string",
    InstanceType = "string",
    InstanceId = "string",
    DatabaseFlags = 
    {
        { "string", "string" },
    },
    Annotations = 
    {
        { "string", "string" },
    },
    DisplayName = "string",
    GceZone = "string",
    ClientConnectionConfig = new Gcp.Alloydb.Inputs.InstanceClientConnectionConfigArgs
    {
        RequireConnectors = false,
        SslConfig = new Gcp.Alloydb.Inputs.InstanceClientConnectionConfigSslConfigArgs
        {
            SslMode = "string",
        },
    },
    AvailabilityType = "string",
    Labels = 
    {
        { "string", "string" },
    },
    MachineConfig = new Gcp.Alloydb.Inputs.InstanceMachineConfigArgs
    {
        CpuCount = 0,
    },
    NetworkConfig = new Gcp.Alloydb.Inputs.InstanceNetworkConfigArgs
    {
        AuthorizedExternalNetworks = new[]
        {
            new Gcp.Alloydb.Inputs.InstanceNetworkConfigAuthorizedExternalNetworkArgs
            {
                CidrRange = "string",
            },
        },
        EnableOutboundPublicIp = false,
        EnablePublicIp = false,
    },
    ObservabilityConfig = new Gcp.Alloydb.Inputs.InstanceObservabilityConfigArgs
    {
        Enabled = false,
        MaxQueryStringLength = 0,
        PreserveComments = false,
        QueryPlansPerMinute = 0,
        RecordApplicationTags = false,
        TrackActiveQueries = false,
        TrackWaitEventTypes = false,
        TrackWaitEvents = false,
    },
    PscInstanceConfig = new Gcp.Alloydb.Inputs.InstancePscInstanceConfigArgs
    {
        AllowedConsumerProjects = new[]
        {
            "string",
        },
        PscDnsName = "string",
        ServiceAttachmentLink = "string",
    },
    QueryInsightsConfig = new Gcp.Alloydb.Inputs.InstanceQueryInsightsConfigArgs
    {
        QueryPlansPerMinute = 0,
        QueryStringLength = 0,
        RecordApplicationTags = false,
        RecordClientAddress = false,
    },
    ReadPoolConfig = new Gcp.Alloydb.Inputs.InstanceReadPoolConfigArgs
    {
        NodeCount = 0,
    },
});
example, err := alloydb.NewInstance(ctx, "instanceResource", &alloydb.InstanceArgs{
	Cluster:      pulumi.String("string"),
	InstanceType: pulumi.String("string"),
	InstanceId:   pulumi.String("string"),
	DatabaseFlags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	GceZone:     pulumi.String("string"),
	ClientConnectionConfig: &alloydb.InstanceClientConnectionConfigArgs{
		RequireConnectors: pulumi.Bool(false),
		SslConfig: &alloydb.InstanceClientConnectionConfigSslConfigArgs{
			SslMode: pulumi.String("string"),
		},
	},
	AvailabilityType: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	MachineConfig: &alloydb.InstanceMachineConfigArgs{
		CpuCount: pulumi.Int(0),
	},
	NetworkConfig: &alloydb.InstanceNetworkConfigArgs{
		AuthorizedExternalNetworks: alloydb.InstanceNetworkConfigAuthorizedExternalNetworkArray{
			&alloydb.InstanceNetworkConfigAuthorizedExternalNetworkArgs{
				CidrRange: pulumi.String("string"),
			},
		},
		EnableOutboundPublicIp: pulumi.Bool(false),
		EnablePublicIp:         pulumi.Bool(false),
	},
	ObservabilityConfig: &alloydb.InstanceObservabilityConfigArgs{
		Enabled:               pulumi.Bool(false),
		MaxQueryStringLength:  pulumi.Int(0),
		PreserveComments:      pulumi.Bool(false),
		QueryPlansPerMinute:   pulumi.Int(0),
		RecordApplicationTags: pulumi.Bool(false),
		TrackActiveQueries:    pulumi.Bool(false),
		TrackWaitEventTypes:   pulumi.Bool(false),
		TrackWaitEvents:       pulumi.Bool(false),
	},
	PscInstanceConfig: &alloydb.InstancePscInstanceConfigArgs{
		AllowedConsumerProjects: pulumi.StringArray{
			pulumi.String("string"),
		},
		PscDnsName:            pulumi.String("string"),
		ServiceAttachmentLink: pulumi.String("string"),
	},
	QueryInsightsConfig: &alloydb.InstanceQueryInsightsConfigArgs{
		QueryPlansPerMinute:   pulumi.Int(0),
		QueryStringLength:     pulumi.Int(0),
		RecordApplicationTags: pulumi.Bool(false),
		RecordClientAddress:   pulumi.Bool(false),
	},
	ReadPoolConfig: &alloydb.InstanceReadPoolConfigArgs{
		NodeCount: pulumi.Int(0),
	},
})
var instanceResource = new Instance("instanceResource", InstanceArgs.builder()
    .cluster("string")
    .instanceType("string")
    .instanceId("string")
    .databaseFlags(Map.of("string", "string"))
    .annotations(Map.of("string", "string"))
    .displayName("string")
    .gceZone("string")
    .clientConnectionConfig(InstanceClientConnectionConfigArgs.builder()
        .requireConnectors(false)
        .sslConfig(InstanceClientConnectionConfigSslConfigArgs.builder()
            .sslMode("string")
            .build())
        .build())
    .availabilityType("string")
    .labels(Map.of("string", "string"))
    .machineConfig(InstanceMachineConfigArgs.builder()
        .cpuCount(0)
        .build())
    .networkConfig(InstanceNetworkConfigArgs.builder()
        .authorizedExternalNetworks(InstanceNetworkConfigAuthorizedExternalNetworkArgs.builder()
            .cidrRange("string")
            .build())
        .enableOutboundPublicIp(false)
        .enablePublicIp(false)
        .build())
    .observabilityConfig(InstanceObservabilityConfigArgs.builder()
        .enabled(false)
        .maxQueryStringLength(0)
        .preserveComments(false)
        .queryPlansPerMinute(0)
        .recordApplicationTags(false)
        .trackActiveQueries(false)
        .trackWaitEventTypes(false)
        .trackWaitEvents(false)
        .build())
    .pscInstanceConfig(InstancePscInstanceConfigArgs.builder()
        .allowedConsumerProjects("string")
        .pscDnsName("string")
        .serviceAttachmentLink("string")
        .build())
    .queryInsightsConfig(InstanceQueryInsightsConfigArgs.builder()
        .queryPlansPerMinute(0)
        .queryStringLength(0)
        .recordApplicationTags(false)
        .recordClientAddress(false)
        .build())
    .readPoolConfig(InstanceReadPoolConfigArgs.builder()
        .nodeCount(0)
        .build())
    .build());
instance_resource = gcp.alloydb.Instance("instanceResource",
    cluster="string",
    instance_type="string",
    instance_id="string",
    database_flags={
        "string": "string",
    },
    annotations={
        "string": "string",
    },
    display_name="string",
    gce_zone="string",
    client_connection_config={
        "require_connectors": False,
        "ssl_config": {
            "ssl_mode": "string",
        },
    },
    availability_type="string",
    labels={
        "string": "string",
    },
    machine_config={
        "cpu_count": 0,
    },
    network_config={
        "authorized_external_networks": [{
            "cidr_range": "string",
        }],
        "enable_outbound_public_ip": False,
        "enable_public_ip": False,
    },
    observability_config={
        "enabled": False,
        "max_query_string_length": 0,
        "preserve_comments": False,
        "query_plans_per_minute": 0,
        "record_application_tags": False,
        "track_active_queries": False,
        "track_wait_event_types": False,
        "track_wait_events": False,
    },
    psc_instance_config={
        "allowed_consumer_projects": ["string"],
        "psc_dns_name": "string",
        "service_attachment_link": "string",
    },
    query_insights_config={
        "query_plans_per_minute": 0,
        "query_string_length": 0,
        "record_application_tags": False,
        "record_client_address": False,
    },
    read_pool_config={
        "node_count": 0,
    })
const instanceResource = new gcp.alloydb.Instance("instanceResource", {
    cluster: "string",
    instanceType: "string",
    instanceId: "string",
    databaseFlags: {
        string: "string",
    },
    annotations: {
        string: "string",
    },
    displayName: "string",
    gceZone: "string",
    clientConnectionConfig: {
        requireConnectors: false,
        sslConfig: {
            sslMode: "string",
        },
    },
    availabilityType: "string",
    labels: {
        string: "string",
    },
    machineConfig: {
        cpuCount: 0,
    },
    networkConfig: {
        authorizedExternalNetworks: [{
            cidrRange: "string",
        }],
        enableOutboundPublicIp: false,
        enablePublicIp: false,
    },
    observabilityConfig: {
        enabled: false,
        maxQueryStringLength: 0,
        preserveComments: false,
        queryPlansPerMinute: 0,
        recordApplicationTags: false,
        trackActiveQueries: false,
        trackWaitEventTypes: false,
        trackWaitEvents: false,
    },
    pscInstanceConfig: {
        allowedConsumerProjects: ["string"],
        pscDnsName: "string",
        serviceAttachmentLink: "string",
    },
    queryInsightsConfig: {
        queryPlansPerMinute: 0,
        queryStringLength: 0,
        recordApplicationTags: false,
        recordClientAddress: false,
    },
    readPoolConfig: {
        nodeCount: 0,
    },
});
type: gcp:alloydb:Instance
properties:
    annotations:
        string: string
    availabilityType: string
    clientConnectionConfig:
        requireConnectors: false
        sslConfig:
            sslMode: string
    cluster: string
    databaseFlags:
        string: string
    displayName: string
    gceZone: string
    instanceId: string
    instanceType: string
    labels:
        string: string
    machineConfig:
        cpuCount: 0
    networkConfig:
        authorizedExternalNetworks:
            - cidrRange: string
        enableOutboundPublicIp: false
        enablePublicIp: false
    observabilityConfig:
        enabled: false
        maxQueryStringLength: 0
        preserveComments: false
        queryPlansPerMinute: 0
        recordApplicationTags: false
        trackActiveQueries: false
        trackWaitEventTypes: false
        trackWaitEvents: false
    pscInstanceConfig:
        allowedConsumerProjects:
            - string
        pscDnsName: string
        serviceAttachmentLink: string
    queryInsightsConfig:
        queryPlansPerMinute: 0
        queryStringLength: 0
        recordApplicationTags: false
        recordClientAddress: false
    readPoolConfig:
        nodeCount: 0
Instance 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 Instance resource accepts the following input properties:
- Cluster string
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- InstanceId string
- The ID of the alloydb instance.
- InstanceType string
- Annotations Dictionary<string, string>
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- AvailabilityType string
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- ClientConnection InstanceConfig Client Connection Config 
- Client connection specific configurations. Structure is documented below.
- DatabaseFlags Dictionary<string, string>
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- DisplayName string
- User-settable and human-readable display name for the Instance.
- GceZone string
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- Labels Dictionary<string, string>
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- MachineConfig InstanceMachine Config 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- NetworkConfig InstanceNetwork Config 
- Instance level network configuration. Structure is documented below.
- ObservabilityConfig InstanceObservability Config 
- Configuration for enhanced query insights. Structure is documented below.
- PscInstance InstanceConfig Psc Instance Config 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- QueryInsights InstanceConfig Query Insights Config 
- Configuration for query insights. Structure is documented below.
- ReadPool InstanceConfig Read Pool Config 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- Cluster string
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- InstanceId string
- The ID of the alloydb instance.
- InstanceType string
- Annotations map[string]string
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- AvailabilityType string
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- ClientConnection InstanceConfig Client Connection Config Args 
- Client connection specific configurations. Structure is documented below.
- DatabaseFlags map[string]string
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- DisplayName string
- User-settable and human-readable display name for the Instance.
- GceZone string
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- Labels map[string]string
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- MachineConfig InstanceMachine Config Args 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- NetworkConfig InstanceNetwork Config Args 
- Instance level network configuration. Structure is documented below.
- ObservabilityConfig InstanceObservability Config Args 
- Configuration for enhanced query insights. Structure is documented below.
- PscInstance InstanceConfig Psc Instance Config Args 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- QueryInsights InstanceConfig Query Insights Config Args 
- Configuration for query insights. Structure is documented below.
- ReadPool InstanceConfig Read Pool Config Args 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- cluster String
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- instanceId String
- The ID of the alloydb instance.
- instanceType String
- annotations Map<String,String>
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availabilityType String
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- clientConnection InstanceConfig Client Connection Config 
- Client connection specific configurations. Structure is documented below.
- databaseFlags Map<String,String>
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- displayName String
- User-settable and human-readable display name for the Instance.
- gceZone String
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- labels Map<String,String>
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machineConfig InstanceMachine Config 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- networkConfig InstanceNetwork Config 
- Instance level network configuration. Structure is documented below.
- observabilityConfig InstanceObservability Config 
- Configuration for enhanced query insights. Structure is documented below.
- pscInstance InstanceConfig Psc Instance Config 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- queryInsights InstanceConfig Query Insights Config 
- Configuration for query insights. Structure is documented below.
- readPool InstanceConfig Read Pool Config 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- cluster string
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- instanceId string
- The ID of the alloydb instance.
- instanceType string
- annotations {[key: string]: string}
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availabilityType string
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- clientConnection InstanceConfig Client Connection Config 
- Client connection specific configurations. Structure is documented below.
- databaseFlags {[key: string]: string}
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- displayName string
- User-settable and human-readable display name for the Instance.
- gceZone string
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- labels {[key: string]: string}
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machineConfig InstanceMachine Config 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- networkConfig InstanceNetwork Config 
- Instance level network configuration. Structure is documented below.
- observabilityConfig InstanceObservability Config 
- Configuration for enhanced query insights. Structure is documented below.
- pscInstance InstanceConfig Psc Instance Config 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- queryInsights InstanceConfig Query Insights Config 
- Configuration for query insights. Structure is documented below.
- readPool InstanceConfig Read Pool Config 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- cluster str
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- instance_id str
- The ID of the alloydb instance.
- instance_type str
- annotations Mapping[str, str]
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availability_type str
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- client_connection_ Instanceconfig Client Connection Config Args 
- Client connection specific configurations. Structure is documented below.
- database_flags Mapping[str, str]
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- display_name str
- User-settable and human-readable display name for the Instance.
- gce_zone str
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- labels Mapping[str, str]
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machine_config InstanceMachine Config Args 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- network_config InstanceNetwork Config Args 
- Instance level network configuration. Structure is documented below.
- observability_config InstanceObservability Config Args 
- Configuration for enhanced query insights. Structure is documented below.
- psc_instance_ Instanceconfig Psc Instance Config Args 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- query_insights_ Instanceconfig Query Insights Config Args 
- Configuration for query insights. Structure is documented below.
- read_pool_ Instanceconfig Read Pool Config Args 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- cluster String
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- instanceId String
- The ID of the alloydb instance.
- instanceType String
- annotations Map<String>
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availabilityType String
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- clientConnection Property MapConfig 
- Client connection specific configurations. Structure is documented below.
- databaseFlags Map<String>
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- displayName String
- User-settable and human-readable display name for the Instance.
- gceZone String
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- labels Map<String>
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machineConfig Property Map
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- networkConfig Property Map
- Instance level network configuration. Structure is documented below.
- observabilityConfig Property Map
- Configuration for enhanced query insights. Structure is documented below.
- pscInstance Property MapConfig 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- queryInsights Property MapConfig 
- Configuration for query insights. Structure is documented below.
- readPool Property MapConfig 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
- CreateTime string
- Time the Instance was created in UTC.
- EffectiveAnnotations Dictionary<string, string>
- EffectiveLabels Dictionary<string, string>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- IpAddress string
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- Name string
- The name of the instance resource.
- OutboundPublic List<string>Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- PublicIp stringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- PulumiLabels Dictionary<string, string>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- State string
- The current state of the alloydb instance.
- Uid string
- The system-generated UID of the resource.
- UpdateTime string
- Time the Instance was updated in UTC.
- CreateTime string
- Time the Instance was created in UTC.
- EffectiveAnnotations map[string]string
- EffectiveLabels map[string]string
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- IpAddress string
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- Name string
- The name of the instance resource.
- OutboundPublic []stringIp Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- PublicIp stringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- PulumiLabels map[string]string
- The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- State string
- The current state of the alloydb instance.
- Uid string
- The system-generated UID of the resource.
- UpdateTime string
- Time the Instance was updated in UTC.
- createTime String
- Time the Instance was created in UTC.
- effectiveAnnotations Map<String,String>
- effectiveLabels Map<String,String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- ipAddress String
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- name String
- The name of the instance resource.
- outboundPublic List<String>Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- publicIp StringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumiLabels Map<String,String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state String
- The current state of the alloydb instance.
- uid String
- The system-generated UID of the resource.
- updateTime String
- Time the Instance was updated in UTC.
- createTime string
- Time the Instance was created in UTC.
- effectiveAnnotations {[key: string]: string}
- effectiveLabels {[key: string]: string}
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- ipAddress string
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- name string
- The name of the instance resource.
- outboundPublic string[]Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- publicIp stringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumiLabels {[key: string]: string}
- The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling boolean
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state string
- The current state of the alloydb instance.
- uid string
- The system-generated UID of the resource.
- updateTime string
- Time the Instance was updated in UTC.
- create_time str
- Time the Instance was created in UTC.
- effective_annotations Mapping[str, str]
- effective_labels Mapping[str, str]
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id str
- The provider-assigned unique ID for this managed resource.
- ip_address str
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- name str
- The name of the instance resource.
- outbound_public_ Sequence[str]ip_ addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- public_ip_ straddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumi_labels Mapping[str, str]
- The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling bool
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state str
- The current state of the alloydb instance.
- uid str
- The system-generated UID of the resource.
- update_time str
- Time the Instance was updated in UTC.
- createTime String
- Time the Instance was created in UTC.
- effectiveAnnotations Map<String>
- effectiveLabels Map<String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- ipAddress String
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- name String
- The name of the instance resource.
- outboundPublic List<String>Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- publicIp StringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumiLabels Map<String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state String
- The current state of the alloydb instance.
- uid String
- The system-generated UID of the resource.
- updateTime String
- Time the Instance was updated in UTC.
Look up Existing Instance Resource
Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        annotations: Optional[Mapping[str, str]] = None,
        availability_type: Optional[str] = None,
        client_connection_config: Optional[InstanceClientConnectionConfigArgs] = None,
        cluster: Optional[str] = None,
        create_time: Optional[str] = None,
        database_flags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        effective_annotations: Optional[Mapping[str, str]] = None,
        effective_labels: Optional[Mapping[str, str]] = None,
        gce_zone: Optional[str] = None,
        instance_id: Optional[str] = None,
        instance_type: Optional[str] = None,
        ip_address: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        machine_config: Optional[InstanceMachineConfigArgs] = None,
        name: Optional[str] = None,
        network_config: Optional[InstanceNetworkConfigArgs] = None,
        observability_config: Optional[InstanceObservabilityConfigArgs] = None,
        outbound_public_ip_addresses: Optional[Sequence[str]] = None,
        psc_instance_config: Optional[InstancePscInstanceConfigArgs] = None,
        public_ip_address: Optional[str] = None,
        pulumi_labels: Optional[Mapping[str, str]] = None,
        query_insights_config: Optional[InstanceQueryInsightsConfigArgs] = None,
        read_pool_config: Optional[InstanceReadPoolConfigArgs] = None,
        reconciling: Optional[bool] = None,
        state: Optional[str] = None,
        uid: Optional[str] = None,
        update_time: Optional[str] = None) -> Instancefunc GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)resources:  _:    type: gcp:alloydb:Instance    get:      id: ${id}- 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.
- Annotations Dictionary<string, string>
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- AvailabilityType string
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- ClientConnection InstanceConfig Client Connection Config 
- Client connection specific configurations. Structure is documented below.
- Cluster string
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- CreateTime string
- Time the Instance was created in UTC.
- DatabaseFlags Dictionary<string, string>
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- DisplayName string
- User-settable and human-readable display name for the Instance.
- EffectiveAnnotations Dictionary<string, string>
- EffectiveLabels Dictionary<string, string>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- GceZone string
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- InstanceId string
- The ID of the alloydb instance.
- InstanceType string
- IpAddress string
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- Labels Dictionary<string, string>
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- MachineConfig InstanceMachine Config 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- Name string
- The name of the instance resource.
- NetworkConfig InstanceNetwork Config 
- Instance level network configuration. Structure is documented below.
- ObservabilityConfig InstanceObservability Config 
- Configuration for enhanced query insights. Structure is documented below.
- OutboundPublic List<string>Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- PscInstance InstanceConfig Psc Instance Config 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- PublicIp stringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- PulumiLabels Dictionary<string, string>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- QueryInsights InstanceConfig Query Insights Config 
- Configuration for query insights. Structure is documented below.
- ReadPool InstanceConfig Read Pool Config 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- Reconciling bool
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- State string
- The current state of the alloydb instance.
- Uid string
- The system-generated UID of the resource.
- UpdateTime string
- Time the Instance was updated in UTC.
- Annotations map[string]string
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- AvailabilityType string
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- ClientConnection InstanceConfig Client Connection Config Args 
- Client connection specific configurations. Structure is documented below.
- Cluster string
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- CreateTime string
- Time the Instance was created in UTC.
- DatabaseFlags map[string]string
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- DisplayName string
- User-settable and human-readable display name for the Instance.
- EffectiveAnnotations map[string]string
- EffectiveLabels map[string]string
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- GceZone string
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- InstanceId string
- The ID of the alloydb instance.
- InstanceType string
- IpAddress string
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- Labels map[string]string
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- MachineConfig InstanceMachine Config Args 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- Name string
- The name of the instance resource.
- NetworkConfig InstanceNetwork Config Args 
- Instance level network configuration. Structure is documented below.
- ObservabilityConfig InstanceObservability Config Args 
- Configuration for enhanced query insights. Structure is documented below.
- OutboundPublic []stringIp Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- PscInstance InstanceConfig Psc Instance Config Args 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- PublicIp stringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- PulumiLabels map[string]string
- The combination of labels configured directly on the resource and default labels configured on the provider.
- QueryInsights InstanceConfig Query Insights Config Args 
- Configuration for query insights. Structure is documented below.
- ReadPool InstanceConfig Read Pool Config Args 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- Reconciling bool
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- State string
- The current state of the alloydb instance.
- Uid string
- The system-generated UID of the resource.
- UpdateTime string
- Time the Instance was updated in UTC.
- annotations Map<String,String>
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availabilityType String
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- clientConnection InstanceConfig Client Connection Config 
- Client connection specific configurations. Structure is documented below.
- cluster String
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- createTime String
- Time the Instance was created in UTC.
- databaseFlags Map<String,String>
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- displayName String
- User-settable and human-readable display name for the Instance.
- effectiveAnnotations Map<String,String>
- effectiveLabels Map<String,String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- gceZone String
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- instanceId String
- The ID of the alloydb instance.
- instanceType String
- ipAddress String
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- labels Map<String,String>
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machineConfig InstanceMachine Config 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- name String
- The name of the instance resource.
- networkConfig InstanceNetwork Config 
- Instance level network configuration. Structure is documented below.
- observabilityConfig InstanceObservability Config 
- Configuration for enhanced query insights. Structure is documented below.
- outboundPublic List<String>Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- pscInstance InstanceConfig Psc Instance Config 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- publicIp StringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumiLabels Map<String,String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- queryInsights InstanceConfig Query Insights Config 
- Configuration for query insights. Structure is documented below.
- readPool InstanceConfig Read Pool Config 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- reconciling Boolean
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state String
- The current state of the alloydb instance.
- uid String
- The system-generated UID of the resource.
- updateTime String
- Time the Instance was updated in UTC.
- annotations {[key: string]: string}
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availabilityType string
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- clientConnection InstanceConfig Client Connection Config 
- Client connection specific configurations. Structure is documented below.
- cluster string
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- createTime string
- Time the Instance was created in UTC.
- databaseFlags {[key: string]: string}
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- displayName string
- User-settable and human-readable display name for the Instance.
- effectiveAnnotations {[key: string]: string}
- effectiveLabels {[key: string]: string}
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- gceZone string
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- instanceId string
- The ID of the alloydb instance.
- instanceType string
- ipAddress string
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- labels {[key: string]: string}
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machineConfig InstanceMachine Config 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- name string
- The name of the instance resource.
- networkConfig InstanceNetwork Config 
- Instance level network configuration. Structure is documented below.
- observabilityConfig InstanceObservability Config 
- Configuration for enhanced query insights. Structure is documented below.
- outboundPublic string[]Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- pscInstance InstanceConfig Psc Instance Config 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- publicIp stringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumiLabels {[key: string]: string}
- The combination of labels configured directly on the resource and default labels configured on the provider.
- queryInsights InstanceConfig Query Insights Config 
- Configuration for query insights. Structure is documented below.
- readPool InstanceConfig Read Pool Config 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- reconciling boolean
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state string
- The current state of the alloydb instance.
- uid string
- The system-generated UID of the resource.
- updateTime string
- Time the Instance was updated in UTC.
- annotations Mapping[str, str]
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availability_type str
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- client_connection_ Instanceconfig Client Connection Config Args 
- Client connection specific configurations. Structure is documented below.
- cluster str
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- create_time str
- Time the Instance was created in UTC.
- database_flags Mapping[str, str]
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- display_name str
- User-settable and human-readable display name for the Instance.
- effective_annotations Mapping[str, str]
- effective_labels Mapping[str, str]
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- gce_zone str
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- instance_id str
- The ID of the alloydb instance.
- instance_type str
- ip_address str
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- labels Mapping[str, str]
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machine_config InstanceMachine Config Args 
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- name str
- The name of the instance resource.
- network_config InstanceNetwork Config Args 
- Instance level network configuration. Structure is documented below.
- observability_config InstanceObservability Config Args 
- Configuration for enhanced query insights. Structure is documented below.
- outbound_public_ Sequence[str]ip_ addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- psc_instance_ Instanceconfig Psc Instance Config Args 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- public_ip_ straddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumi_labels Mapping[str, str]
- The combination of labels configured directly on the resource and default labels configured on the provider.
- query_insights_ Instanceconfig Query Insights Config Args 
- Configuration for query insights. Structure is documented below.
- read_pool_ Instanceconfig Read Pool Config Args 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- reconciling bool
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state str
- The current state of the alloydb instance.
- uid str
- The system-generated UID of the resource.
- update_time str
- Time the Instance was updated in UTC.
- annotations Map<String>
- Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
Note: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field effective_annotationsfor all of the annotations present on the resource.
- availabilityType String
- 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
Note that primary and read instances can have different availability types.
Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
can have regional availability (nodes are present in 2 or more zones in a region).
Possible values are: AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.' Possible values are:AVAILABILITY_TYPE_UNSPECIFIED,ZONAL,REGIONAL.
- clientConnection Property MapConfig 
- Client connection specific configurations. Structure is documented below.
- cluster String
- Identifies the alloydb cluster. Must be in the format 'projects/{project}/locations/{location}/clusters/{cluster_id}'
- createTime String
- Time the Instance was created in UTC.
- databaseFlags Map<String>
- Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
- displayName String
- User-settable and human-readable display name for the Instance.
- effectiveAnnotations Map<String>
- effectiveLabels Map<String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- gceZone String
- The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
- instanceId String
- The ID of the alloydb instance.
- instanceType String
- ipAddress String
- The IP address for the Instance. This is the connection endpoint for an end-user application.
- labels Map<String>
- User-defined labels for the alloydb instance.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field effective_labelsfor all of the labels present on the resource.
- machineConfig Property Map
- Configurations for the machines that host the underlying database engine. Structure is documented below.
- name String
- The name of the instance resource.
- networkConfig Property Map
- Instance level network configuration. Structure is documented below.
- observabilityConfig Property Map
- Configuration for enhanced query insights. Structure is documented below.
- outboundPublic List<String>Ip Addresses 
- The outbound public IP addresses for the instance. This is available ONLY when networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used for outbound connections.
- pscInstance Property MapConfig 
- Configuration for Private Service Connect (PSC) for the instance. Structure is documented below.
- publicIp StringAddress 
- The public IP addresses for the Instance. This is available ONLY when networkConfig.enablePublicIp is set to true. This is the connection endpoint for an end-user application.
- pulumiLabels Map<String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- queryInsights Property MapConfig 
- Configuration for query insights. Structure is documented below.
- readPool Property MapConfig 
- Read pool specific config. If the instance type is READ_POOL, this configuration must be provided. Structure is documented below.
- reconciling Boolean
- Set to true if the current state of Instance does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
- state String
- The current state of the alloydb instance.
- uid String
- The system-generated UID of the resource.
- updateTime String
- Time the Instance was updated in UTC.
Supporting Types
InstanceClientConnectionConfig, InstanceClientConnectionConfigArgs        
- RequireConnectors bool
- Configuration to enforce connectors only (ex: AuthProxy) connections to the database.
- SslConfig InstanceClient Connection Config Ssl Config 
- SSL config option for this instance. Structure is documented below.
- RequireConnectors bool
- Configuration to enforce connectors only (ex: AuthProxy) connections to the database.
- SslConfig InstanceClient Connection Config Ssl Config 
- SSL config option for this instance. Structure is documented below.
- requireConnectors Boolean
- Configuration to enforce connectors only (ex: AuthProxy) connections to the database.
- sslConfig InstanceClient Connection Config Ssl Config 
- SSL config option for this instance. Structure is documented below.
- requireConnectors boolean
- Configuration to enforce connectors only (ex: AuthProxy) connections to the database.
- sslConfig InstanceClient Connection Config Ssl Config 
- SSL config option for this instance. Structure is documented below.
- require_connectors bool
- Configuration to enforce connectors only (ex: AuthProxy) connections to the database.
- ssl_config InstanceClient Connection Config Ssl Config 
- SSL config option for this instance. Structure is documented below.
- requireConnectors Boolean
- Configuration to enforce connectors only (ex: AuthProxy) connections to the database.
- sslConfig Property Map
- SSL config option for this instance. Structure is documented below.
InstanceClientConnectionConfigSslConfig, InstanceClientConnectionConfigSslConfigArgs            
- SslMode string
- SSL mode. Specifies client-server SSL/TLS connection behavior.
Possible values are: ENCRYPTED_ONLY,ALLOW_UNENCRYPTED_AND_ENCRYPTED.
- SslMode string
- SSL mode. Specifies client-server SSL/TLS connection behavior.
Possible values are: ENCRYPTED_ONLY,ALLOW_UNENCRYPTED_AND_ENCRYPTED.
- sslMode String
- SSL mode. Specifies client-server SSL/TLS connection behavior.
Possible values are: ENCRYPTED_ONLY,ALLOW_UNENCRYPTED_AND_ENCRYPTED.
- sslMode string
- SSL mode. Specifies client-server SSL/TLS connection behavior.
Possible values are: ENCRYPTED_ONLY,ALLOW_UNENCRYPTED_AND_ENCRYPTED.
- ssl_mode str
- SSL mode. Specifies client-server SSL/TLS connection behavior.
Possible values are: ENCRYPTED_ONLY,ALLOW_UNENCRYPTED_AND_ENCRYPTED.
- sslMode String
- SSL mode. Specifies client-server SSL/TLS connection behavior.
Possible values are: ENCRYPTED_ONLY,ALLOW_UNENCRYPTED_AND_ENCRYPTED.
InstanceMachineConfig, InstanceMachineConfigArgs      
- CpuCount int
- The number of CPU's in the VM instance.
- CpuCount int
- The number of CPU's in the VM instance.
- cpuCount Integer
- The number of CPU's in the VM instance.
- cpuCount number
- The number of CPU's in the VM instance.
- cpu_count int
- The number of CPU's in the VM instance.
- cpuCount Number
- The number of CPU's in the VM instance.
InstanceNetworkConfig, InstanceNetworkConfigArgs      
- 
List<InstanceNetwork Config Authorized External Network> 
- A list of external networks authorized to access this instance. This
field is only allowed to be set when enable_public_ipis set to true. Structure is documented below.
- EnableOutbound boolPublic Ip 
- Enabling outbound public ip for the instance.
- EnablePublic boolIp 
- Enabling public ip for the instance. If a user wishes to disable this, please also clear the list of the authorized external networks set on the same instance.
- 
[]InstanceNetwork Config Authorized External Network 
- A list of external networks authorized to access this instance. This
field is only allowed to be set when enable_public_ipis set to true. Structure is documented below.
- EnableOutbound boolPublic Ip 
- Enabling outbound public ip for the instance.
- EnablePublic boolIp 
- Enabling public ip for the instance. If a user wishes to disable this, please also clear the list of the authorized external networks set on the same instance.
- 
List<InstanceNetwork Config Authorized External Network> 
- A list of external networks authorized to access this instance. This
field is only allowed to be set when enable_public_ipis set to true. Structure is documented below.
- enableOutbound BooleanPublic Ip 
- Enabling outbound public ip for the instance.
- enablePublic BooleanIp 
- Enabling public ip for the instance. If a user wishes to disable this, please also clear the list of the authorized external networks set on the same instance.
- 
InstanceNetwork Config Authorized External Network[] 
- A list of external networks authorized to access this instance. This
field is only allowed to be set when enable_public_ipis set to true. Structure is documented below.
- enableOutbound booleanPublic Ip 
- Enabling outbound public ip for the instance.
- enablePublic booleanIp 
- Enabling public ip for the instance. If a user wishes to disable this, please also clear the list of the authorized external networks set on the same instance.
- 
Sequence[InstanceNetwork Config Authorized External Network] 
- A list of external networks authorized to access this instance. This
field is only allowed to be set when enable_public_ipis set to true. Structure is documented below.
- enable_outbound_ boolpublic_ ip 
- Enabling outbound public ip for the instance.
- enable_public_ boolip 
- Enabling public ip for the instance. If a user wishes to disable this, please also clear the list of the authorized external networks set on the same instance.
- List<Property Map>
- A list of external networks authorized to access this instance. This
field is only allowed to be set when enable_public_ipis set to true. Structure is documented below.
- enableOutbound BooleanPublic Ip 
- Enabling outbound public ip for the instance.
- enablePublic BooleanIp 
- Enabling public ip for the instance. If a user wishes to disable this, please also clear the list of the authorized external networks set on the same instance.
InstanceNetworkConfigAuthorizedExternalNetwork, InstanceNetworkConfigAuthorizedExternalNetworkArgs            
- CidrRange string
- CIDR range for one authorized network of the instance.
- CidrRange string
- CIDR range for one authorized network of the instance.
- cidrRange String
- CIDR range for one authorized network of the instance.
- cidrRange string
- CIDR range for one authorized network of the instance.
- cidr_range str
- CIDR range for one authorized network of the instance.
- cidrRange String
- CIDR range for one authorized network of the instance.
InstanceObservabilityConfig, InstanceObservabilityConfigArgs      
- Enabled bool
- Observability feature status for an instance.
- MaxQuery intString Length 
- Query string length. The default value is 10240. Any integer between 1024 and 100000 is considered valid.
- PreserveComments bool
- Preserve comments in the query string.
- QueryPlans intPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 200 is considered valid.
- bool
- Record application tags for an instance. This flag is turned "on" by default.
- TrackActive boolQueries 
- Track actively running queries. If not set, default value is "off".
- TrackWait boolEvent Types 
- Record wait event types during query execution for an instance.
- TrackWait boolEvents 
- Record wait events during query execution for an instance.
- Enabled bool
- Observability feature status for an instance.
- MaxQuery intString Length 
- Query string length. The default value is 10240. Any integer between 1024 and 100000 is considered valid.
- PreserveComments bool
- Preserve comments in the query string.
- QueryPlans intPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 200 is considered valid.
- bool
- Record application tags for an instance. This flag is turned "on" by default.
- TrackActive boolQueries 
- Track actively running queries. If not set, default value is "off".
- TrackWait boolEvent Types 
- Record wait event types during query execution for an instance.
- TrackWait boolEvents 
- Record wait events during query execution for an instance.
- enabled Boolean
- Observability feature status for an instance.
- maxQuery IntegerString Length 
- Query string length. The default value is 10240. Any integer between 1024 and 100000 is considered valid.
- preserveComments Boolean
- Preserve comments in the query string.
- queryPlans IntegerPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 200 is considered valid.
- Boolean
- Record application tags for an instance. This flag is turned "on" by default.
- trackActive BooleanQueries 
- Track actively running queries. If not set, default value is "off".
- trackWait BooleanEvent Types 
- Record wait event types during query execution for an instance.
- trackWait BooleanEvents 
- Record wait events during query execution for an instance.
- enabled boolean
- Observability feature status for an instance.
- maxQuery numberString Length 
- Query string length. The default value is 10240. Any integer between 1024 and 100000 is considered valid.
- preserveComments boolean
- Preserve comments in the query string.
- queryPlans numberPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 200 is considered valid.
- boolean
- Record application tags for an instance. This flag is turned "on" by default.
- trackActive booleanQueries 
- Track actively running queries. If not set, default value is "off".
- trackWait booleanEvent Types 
- Record wait event types during query execution for an instance.
- trackWait booleanEvents 
- Record wait events during query execution for an instance.
- enabled bool
- Observability feature status for an instance.
- max_query_ intstring_ length 
- Query string length. The default value is 10240. Any integer between 1024 and 100000 is considered valid.
- preserve_comments bool
- Preserve comments in the query string.
- query_plans_ intper_ minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 200 is considered valid.
- bool
- Record application tags for an instance. This flag is turned "on" by default.
- track_active_ boolqueries 
- Track actively running queries. If not set, default value is "off".
- track_wait_ boolevent_ types 
- Record wait event types during query execution for an instance.
- track_wait_ boolevents 
- Record wait events during query execution for an instance.
- enabled Boolean
- Observability feature status for an instance.
- maxQuery NumberString Length 
- Query string length. The default value is 10240. Any integer between 1024 and 100000 is considered valid.
- preserveComments Boolean
- Preserve comments in the query string.
- queryPlans NumberPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 200 is considered valid.
- Boolean
- Record application tags for an instance. This flag is turned "on" by default.
- trackActive BooleanQueries 
- Track actively running queries. If not set, default value is "off".
- trackWait BooleanEvent Types 
- Record wait event types during query execution for an instance.
- trackWait BooleanEvents 
- Record wait events during query execution for an instance.
InstancePscInstanceConfig, InstancePscInstanceConfigArgs        
- AllowedConsumer List<string>Projects 
- List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance. These should be specified as project numbers only.
- PscDns stringName 
- (Output) The DNS name of the instance for PSC connectivity. Name convention: ...alloydb-psc.goog
- ServiceAttachment stringLink 
- (Output)
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
The name of the resource will be in the format of
projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>
- AllowedConsumer []stringProjects 
- List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance. These should be specified as project numbers only.
- PscDns stringName 
- (Output) The DNS name of the instance for PSC connectivity. Name convention: ...alloydb-psc.goog
- ServiceAttachment stringLink 
- (Output)
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
The name of the resource will be in the format of
projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>
- allowedConsumer List<String>Projects 
- List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance. These should be specified as project numbers only.
- pscDns StringName 
- (Output) The DNS name of the instance for PSC connectivity. Name convention: ...alloydb-psc.goog
- serviceAttachment StringLink 
- (Output)
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
The name of the resource will be in the format of
projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>
- allowedConsumer string[]Projects 
- List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance. These should be specified as project numbers only.
- pscDns stringName 
- (Output) The DNS name of the instance for PSC connectivity. Name convention: ...alloydb-psc.goog
- serviceAttachment stringLink 
- (Output)
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
The name of the resource will be in the format of
projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>
- allowed_consumer_ Sequence[str]projects 
- List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance. These should be specified as project numbers only.
- psc_dns_ strname 
- (Output) The DNS name of the instance for PSC connectivity. Name convention: ...alloydb-psc.goog
- service_attachment_ strlink 
- (Output)
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
The name of the resource will be in the format of
projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>
- allowedConsumer List<String>Projects 
- List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance. These should be specified as project numbers only.
- pscDns StringName 
- (Output) The DNS name of the instance for PSC connectivity. Name convention: ...alloydb-psc.goog
- serviceAttachment StringLink 
- (Output)
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
The name of the resource will be in the format of
projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>
InstanceQueryInsightsConfig, InstanceQueryInsightsConfigArgs        
- QueryPlans intPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
- QueryString intLength 
- Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
- bool
- Record application tags for an instance. This flag is turned "on" by default.
- RecordClient boolAddress 
- Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
- QueryPlans intPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
- QueryString intLength 
- Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
- bool
- Record application tags for an instance. This flag is turned "on" by default.
- RecordClient boolAddress 
- Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
- queryPlans IntegerPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
- queryString IntegerLength 
- Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
- Boolean
- Record application tags for an instance. This flag is turned "on" by default.
- recordClient BooleanAddress 
- Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
- queryPlans numberPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
- queryString numberLength 
- Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
- boolean
- Record application tags for an instance. This flag is turned "on" by default.
- recordClient booleanAddress 
- Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
- query_plans_ intper_ minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
- query_string_ intlength 
- Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
- bool
- Record application tags for an instance. This flag is turned "on" by default.
- record_client_ booladdress 
- Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
- queryPlans NumberPer Minute 
- Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
- queryString NumberLength 
- Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
- Boolean
- Record application tags for an instance. This flag is turned "on" by default.
- recordClient BooleanAddress 
- Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
InstanceReadPoolConfig, InstanceReadPoolConfigArgs        
- NodeCount int
- Read capacity, i.e. number of nodes in a read pool instance.
- NodeCount int
- Read capacity, i.e. number of nodes in a read pool instance.
- nodeCount Integer
- Read capacity, i.e. number of nodes in a read pool instance.
- nodeCount number
- Read capacity, i.e. number of nodes in a read pool instance.
- node_count int
- Read capacity, i.e. number of nodes in a read pool instance.
- nodeCount Number
- Read capacity, i.e. number of nodes in a read pool instance.
Import
Instance can be imported using any of these accepted formats:
- projects/{{project}}/locations/{{location}}/clusters/{{cluster}}/instances/{{instance_id}}
- {{project}}/{{location}}/{{cluster}}/{{instance_id}}
- {{location}}/{{cluster}}/{{instance_id}}
When using the pulumi import command, Instance can be imported using one of the formats above. For example:
$ pulumi import gcp:alloydb/instance:Instance default projects/{{project}}/locations/{{location}}/clusters/{{cluster}}/instances/{{instance_id}}
$ pulumi import gcp:alloydb/instance:Instance default {{project}}/{{location}}/{{cluster}}/{{instance_id}}
$ pulumi import gcp:alloydb/instance:Instance default {{location}}/{{cluster}}/{{instance_id}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the google-betaTerraform Provider.