1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. sql
  5. SourceRepresentationInstance
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

gcp.sql.SourceRepresentationInstance

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

    A source representation instance is a Cloud SQL instance that represents the source database server to the Cloud SQL replica. It is visible in the Cloud Console and appears the same as a regular Cloud SQL instance, but it contains no data, requires no configuration or maintenance, and does not affect billing. You cannot update the source representation instance.

    Example Usage

    Sql Source Representation Instance Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const instance = new gcp.sql.SourceRepresentationInstance("instance", {
        name: "my-instance",
        region: "us-central1",
        databaseVersion: "MYSQL_8_0",
        host: "10.20.30.40",
        port: 3306,
        username: "some-user",
        password: "password-for-the-user",
        dumpFilePath: "gs://replica-bucket/source-database.sql.gz",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    instance = gcp.sql.SourceRepresentationInstance("instance",
        name="my-instance",
        region="us-central1",
        database_version="MYSQL_8_0",
        host="10.20.30.40",
        port=3306,
        username="some-user",
        password="password-for-the-user",
        dump_file_path="gs://replica-bucket/source-database.sql.gz")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/sql"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sql.NewSourceRepresentationInstance(ctx, "instance", &sql.SourceRepresentationInstanceArgs{
    			Name:            pulumi.String("my-instance"),
    			Region:          pulumi.String("us-central1"),
    			DatabaseVersion: pulumi.String("MYSQL_8_0"),
    			Host:            pulumi.String("10.20.30.40"),
    			Port:            pulumi.Int(3306),
    			Username:        pulumi.String("some-user"),
    			Password:        pulumi.String("password-for-the-user"),
    			DumpFilePath:    pulumi.String("gs://replica-bucket/source-database.sql.gz"),
    		})
    		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 instance = new Gcp.Sql.SourceRepresentationInstance("instance", new()
        {
            Name = "my-instance",
            Region = "us-central1",
            DatabaseVersion = "MYSQL_8_0",
            Host = "10.20.30.40",
            Port = 3306,
            Username = "some-user",
            Password = "password-for-the-user",
            DumpFilePath = "gs://replica-bucket/source-database.sql.gz",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.sql.SourceRepresentationInstance;
    import com.pulumi.gcp.sql.SourceRepresentationInstanceArgs;
    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 instance = new SourceRepresentationInstance("instance", SourceRepresentationInstanceArgs.builder()        
                .name("my-instance")
                .region("us-central1")
                .databaseVersion("MYSQL_8_0")
                .host("10.20.30.40")
                .port(3306)
                .username("some-user")
                .password("password-for-the-user")
                .dumpFilePath("gs://replica-bucket/source-database.sql.gz")
                .build());
    
        }
    }
    
    resources:
      instance:
        type: gcp:sql:SourceRepresentationInstance
        properties:
          name: my-instance
          region: us-central1
          databaseVersion: MYSQL_8_0
          host: 10.20.30.40
          port: 3306
          username: some-user
          password: password-for-the-user
          dumpFilePath: gs://replica-bucket/source-database.sql.gz
    

    Sql Source Representation Instance Postgres

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const instance = new gcp.sql.SourceRepresentationInstance("instance", {
        name: "my-instance",
        region: "us-central1",
        databaseVersion: "POSTGRES_9_6",
        host: "10.20.30.40",
        port: 3306,
        username: "some-user",
        password: "password-for-the-user",
        dumpFilePath: "gs://replica-bucket/source-database.sql.gz",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    instance = gcp.sql.SourceRepresentationInstance("instance",
        name="my-instance",
        region="us-central1",
        database_version="POSTGRES_9_6",
        host="10.20.30.40",
        port=3306,
        username="some-user",
        password="password-for-the-user",
        dump_file_path="gs://replica-bucket/source-database.sql.gz")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/sql"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sql.NewSourceRepresentationInstance(ctx, "instance", &sql.SourceRepresentationInstanceArgs{
    			Name:            pulumi.String("my-instance"),
    			Region:          pulumi.String("us-central1"),
    			DatabaseVersion: pulumi.String("POSTGRES_9_6"),
    			Host:            pulumi.String("10.20.30.40"),
    			Port:            pulumi.Int(3306),
    			Username:        pulumi.String("some-user"),
    			Password:        pulumi.String("password-for-the-user"),
    			DumpFilePath:    pulumi.String("gs://replica-bucket/source-database.sql.gz"),
    		})
    		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 instance = new Gcp.Sql.SourceRepresentationInstance("instance", new()
        {
            Name = "my-instance",
            Region = "us-central1",
            DatabaseVersion = "POSTGRES_9_6",
            Host = "10.20.30.40",
            Port = 3306,
            Username = "some-user",
            Password = "password-for-the-user",
            DumpFilePath = "gs://replica-bucket/source-database.sql.gz",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.sql.SourceRepresentationInstance;
    import com.pulumi.gcp.sql.SourceRepresentationInstanceArgs;
    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 instance = new SourceRepresentationInstance("instance", SourceRepresentationInstanceArgs.builder()        
                .name("my-instance")
                .region("us-central1")
                .databaseVersion("POSTGRES_9_6")
                .host("10.20.30.40")
                .port(3306)
                .username("some-user")
                .password("password-for-the-user")
                .dumpFilePath("gs://replica-bucket/source-database.sql.gz")
                .build());
    
        }
    }
    
    resources:
      instance:
        type: gcp:sql:SourceRepresentationInstance
        properties:
          name: my-instance
          region: us-central1
          databaseVersion: POSTGRES_9_6
          host: 10.20.30.40
          port: 3306
          username: some-user
          password: password-for-the-user
          dumpFilePath: gs://replica-bucket/source-database.sql.gz
    

    Create SourceRepresentationInstance Resource

    new SourceRepresentationInstance(name: string, args: SourceRepresentationInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def SourceRepresentationInstance(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     ca_certificate: Optional[str] = None,
                                     client_certificate: Optional[str] = None,
                                     client_key: Optional[str] = None,
                                     database_version: Optional[str] = None,
                                     dump_file_path: Optional[str] = None,
                                     host: Optional[str] = None,
                                     name: Optional[str] = None,
                                     password: Optional[str] = None,
                                     port: Optional[int] = None,
                                     project: Optional[str] = None,
                                     region: Optional[str] = None,
                                     username: Optional[str] = None)
    @overload
    def SourceRepresentationInstance(resource_name: str,
                                     args: SourceRepresentationInstanceArgs,
                                     opts: Optional[ResourceOptions] = None)
    func NewSourceRepresentationInstance(ctx *Context, name string, args SourceRepresentationInstanceArgs, opts ...ResourceOption) (*SourceRepresentationInstance, error)
    public SourceRepresentationInstance(string name, SourceRepresentationInstanceArgs args, CustomResourceOptions? opts = null)
    public SourceRepresentationInstance(String name, SourceRepresentationInstanceArgs args)
    public SourceRepresentationInstance(String name, SourceRepresentationInstanceArgs args, CustomResourceOptions options)
    
    type: gcp:sql:SourceRepresentationInstance
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SourceRepresentationInstanceArgs
    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 SourceRepresentationInstanceArgs
    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 SourceRepresentationInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceRepresentationInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceRepresentationInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    SourceRepresentationInstance Resource Properties

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

    Inputs

    The SourceRepresentationInstance resource accepts the following input properties:

    DatabaseVersion string
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    Host string
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    CaCertificate string
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    ClientCertificate string
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    ClientKey string
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    DumpFilePath string
    A file in the bucket that contains the data from the external server.
    Name string
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    Password string
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    Port int
    The externally accessible port for the source database server. Defaults to 3306.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Region string
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    Username string
    The replication user account on the external server.
    DatabaseVersion string
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    Host string
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    CaCertificate string
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    ClientCertificate string
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    ClientKey string
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    DumpFilePath string
    A file in the bucket that contains the data from the external server.
    Name string
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    Password string
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    Port int
    The externally accessible port for the source database server. Defaults to 3306.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Region string
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    Username string
    The replication user account on the external server.
    databaseVersion String
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    host String
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    caCertificate String
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    clientCertificate String
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    clientKey String
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    dumpFilePath String
    A file in the bucket that contains the data from the external server.
    name String
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password String
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port Integer
    The externally accessible port for the source database server. Defaults to 3306.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region String
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username String
    The replication user account on the external server.
    databaseVersion string
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    host string
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    caCertificate string
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    clientCertificate string
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    clientKey string
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    dumpFilePath string
    A file in the bucket that contains the data from the external server.
    name string
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password string
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port number
    The externally accessible port for the source database server. Defaults to 3306.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region string
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username string
    The replication user account on the external server.
    database_version str
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    host str
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    ca_certificate str
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    client_certificate str
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    client_key str
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    dump_file_path str
    A file in the bucket that contains the data from the external server.
    name str
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password str
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port int
    The externally accessible port for the source database server. Defaults to 3306.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region str
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username str
    The replication user account on the external server.
    databaseVersion String
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    host String
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    caCertificate String
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    clientCertificate String
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    clientKey String
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    dumpFilePath String
    A file in the bucket that contains the data from the external server.
    name String
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password String
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port Number
    The externally accessible port for the source database server. Defaults to 3306.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region String
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username String
    The replication user account on the external server.

    Outputs

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

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

    Look up Existing SourceRepresentationInstance Resource

    Get an existing SourceRepresentationInstance 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?: SourceRepresentationInstanceState, opts?: CustomResourceOptions): SourceRepresentationInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ca_certificate: Optional[str] = None,
            client_certificate: Optional[str] = None,
            client_key: Optional[str] = None,
            database_version: Optional[str] = None,
            dump_file_path: Optional[str] = None,
            host: Optional[str] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            port: Optional[int] = None,
            project: Optional[str] = None,
            region: Optional[str] = None,
            username: Optional[str] = None) -> SourceRepresentationInstance
    func GetSourceRepresentationInstance(ctx *Context, name string, id IDInput, state *SourceRepresentationInstanceState, opts ...ResourceOption) (*SourceRepresentationInstance, error)
    public static SourceRepresentationInstance Get(string name, Input<string> id, SourceRepresentationInstanceState? state, CustomResourceOptions? opts = null)
    public static SourceRepresentationInstance get(String name, Output<String> id, SourceRepresentationInstanceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CaCertificate string
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    ClientCertificate string
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    ClientKey string
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    DatabaseVersion string
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    DumpFilePath string
    A file in the bucket that contains the data from the external server.
    Host string
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    Name string
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    Password string
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    Port int
    The externally accessible port for the source database server. Defaults to 3306.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Region string
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    Username string
    The replication user account on the external server.
    CaCertificate string
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    ClientCertificate string
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    ClientKey string
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    DatabaseVersion string
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    DumpFilePath string
    A file in the bucket that contains the data from the external server.
    Host string
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    Name string
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    Password string
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    Port int
    The externally accessible port for the source database server. Defaults to 3306.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Region string
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    Username string
    The replication user account on the external server.
    caCertificate String
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    clientCertificate String
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    clientKey String
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    databaseVersion String
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    dumpFilePath String
    A file in the bucket that contains the data from the external server.
    host String
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    name String
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password String
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port Integer
    The externally accessible port for the source database server. Defaults to 3306.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region String
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username String
    The replication user account on the external server.
    caCertificate string
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    clientCertificate string
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    clientKey string
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    databaseVersion string
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    dumpFilePath string
    A file in the bucket that contains the data from the external server.
    host string
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    name string
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password string
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port number
    The externally accessible port for the source database server. Defaults to 3306.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region string
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username string
    The replication user account on the external server.
    ca_certificate str
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    client_certificate str
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    client_key str
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    database_version str
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    dump_file_path str
    A file in the bucket that contains the data from the external server.
    host str
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    name str
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password str
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port int
    The externally accessible port for the source database server. Defaults to 3306.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region str
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username str
    The replication user account on the external server.
    caCertificate String
    The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
    clientCertificate String
    The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    clientKey String
    The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
    databaseVersion String
    The MySQL version running on your source database server. Possible values are: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14.
    dumpFilePath String
    A file in the bucket that contains the data from the external server.
    host String
    The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.


    name String
    The name of the source representation instance. Use any valid Cloud SQL instance name.
    password String
    The password for the replication user account. Note: This property is sensitive and will not be displayed in the plan.
    port Number
    The externally accessible port for the source database server. Defaults to 3306.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    region String
    The Region in which the created instance should reside. If it is not provided, the provider region is used.
    username String
    The replication user account on the external server.

    Import

    SourceRepresentationInstance can be imported using any of these accepted formats:

    • projects/{{project}}/instances/{{name}}

    • {{project}}/{{name}}

    • {{name}}

    When using the pulumi import command, SourceRepresentationInstance can be imported using one of the formats above. For example:

    $ pulumi import gcp:sql/sourceRepresentationInstance:SourceRepresentationInstance default projects/{{project}}/instances/{{name}}
    
    $ pulumi import gcp:sql/sourceRepresentationInstance:SourceRepresentationInstance default {{project}}/{{name}}
    
    $ pulumi import gcp:sql/sourceRepresentationInstance:SourceRepresentationInstance default {{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi