1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. oracledatabase
  6. getGoldengateDeploymentTypes
Viewing docs for Google Cloud v9.28.0
published on Monday, Jun 22, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.28.0
published on Monday, Jun 22, 2026 by Pulumi

    List all GoldenGate Deployment Types in a location.

    For more information see the API.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const myDeploymentTypes = gcp.oracledatabase.getGoldengateDeploymentTypes({
        location: "us-east4",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    my_deployment_types = gcp.oracledatabase.get_goldengate_deployment_types(location="us-east4")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/oracledatabase"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oracledatabase.GetGoldengateDeploymentTypes(ctx, &oracledatabase.GetGoldengateDeploymentTypesArgs{
    			Location: "us-east4",
    		}, 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 myDeploymentTypes = Gcp.OracleDatabase.GetGoldengateDeploymentTypes.Invoke(new()
        {
            Location = "us-east4",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.oracledatabase.OracledatabaseFunctions;
    import com.pulumi.gcp.oracledatabase.inputs.GetGoldengateDeploymentTypesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var myDeploymentTypes = OracledatabaseFunctions.getGoldengateDeploymentTypes(GetGoldengateDeploymentTypesArgs.builder()
                .location("us-east4")
                .build());
    
        }
    }
    
    variables:
      myDeploymentTypes:
        fn::invoke:
          function: gcp:oracledatabase:getGoldengateDeploymentTypes
          arguments:
            location: us-east4
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    data "gcp_oracledatabase_getgoldengatedeploymenttypes" "myDeploymentTypes" {
      location = "us-east4"
    }
    

    Attributes reference

    The following attributes are exported:

    • goldengateDeploymentTypes - List of GoldenGate Deployment Types. Structure is documented below.

    The goldengateDeploymentTypes block supports:

    • name - The name of the GoldenGate Deployment Type resource. Format: projects/{project}/locations/{location}/goldenGateDeploymentTypes/{golden_gate_deployment_type}

    • deploymentType - The deployment type of the GoldenGate Deployment Type resource.

    • category - The category of the GoldenGate Deployment Type resource.

    • connectionTypes - The connection types of the GoldenGate Deployment Type resource.

    • displayName - The display name of the GoldenGate Deployment Type resource.

    • oggVersion - The OGG version of the GoldenGate Deployment Type resource.

    • sourceTechnologies - The source technologies of the GoldenGate Deployment Type resource.

    • targetTechnologies - The target technologies of the GoldenGate Deployment Type resource.

    • supportedCapabilities - The supported capabilities of the GoldenGate Deployment Type resource.

    • supportedTechnologiesUrl - The supported technologies URL of the GoldenGate Deployment Type resource.

    • defaultUsername - The default username of the GoldenGate Deployment Type resource.

    Using getGoldengateDeploymentTypes

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getGoldengateDeploymentTypes(args: GetGoldengateDeploymentTypesArgs, opts?: InvokeOptions): Promise<GetGoldengateDeploymentTypesResult>
    function getGoldengateDeploymentTypesOutput(args: GetGoldengateDeploymentTypesOutputArgs, opts?: InvokeOptions): Output<GetGoldengateDeploymentTypesResult>
    def get_goldengate_deployment_types(location: Optional[str] = None,
                                        project: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetGoldengateDeploymentTypesResult
    def get_goldengate_deployment_types_output(location: pulumi.Input[Optional[str]] = None,
                                        project: pulumi.Input[Optional[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetGoldengateDeploymentTypesResult]
    func GetGoldengateDeploymentTypes(ctx *Context, args *GetGoldengateDeploymentTypesArgs, opts ...InvokeOption) (*GetGoldengateDeploymentTypesResult, error)
    func GetGoldengateDeploymentTypesOutput(ctx *Context, args *GetGoldengateDeploymentTypesOutputArgs, opts ...InvokeOption) GetGoldengateDeploymentTypesResultOutput

    > Note: This function is named GetGoldengateDeploymentTypes in the Go SDK.

    public static class GetGoldengateDeploymentTypes 
    {
        public static Task<GetGoldengateDeploymentTypesResult> InvokeAsync(GetGoldengateDeploymentTypesArgs args, InvokeOptions? opts = null)
        public static Output<GetGoldengateDeploymentTypesResult> Invoke(GetGoldengateDeploymentTypesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGoldengateDeploymentTypesResult> getGoldengateDeploymentTypes(GetGoldengateDeploymentTypesArgs args, InvokeOptions options)
    public static Output<GetGoldengateDeploymentTypesResult> getGoldengateDeploymentTypes(GetGoldengateDeploymentTypesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcp:oracledatabase/getGoldengateDeploymentTypes:getGoldengateDeploymentTypes
      arguments:
        # arguments dictionary
    data "gcp_oracledatabase_getgoldengatedeploymenttypes" "name" {
        # arguments
    }

    The following arguments are supported:

    Location string
    The location of resource.
    Project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    Location string
    The location of resource.
    Project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    location string
    The location of resource.
    project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    location String
    The location of resource.
    project String
    The project to which the resource belongs. If it is not provided, the provider project is used.
    location string
    The location of resource.
    project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    location str
    The location of resource.
    project str
    The project to which the resource belongs. If it is not provided, the provider project is used.
    location String
    The location of resource.
    project String
    The project to which the resource belongs. If it is not provided, the provider project is used.

    getGoldengateDeploymentTypes Result

    The following output properties are available:

    GoldengateDeploymentTypes List<GetGoldengateDeploymentTypesGoldengateDeploymentType>
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Project string
    GoldengateDeploymentTypes []GetGoldengateDeploymentTypesGoldengateDeploymentType
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Project string
    goldengate_deployment_types list(object)
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    project string
    goldengateDeploymentTypes List<GetGoldengateDeploymentTypesGoldengateDeploymentType>
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    project String
    goldengateDeploymentTypes GetGoldengateDeploymentTypesGoldengateDeploymentType[]
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    project string
    goldengate_deployment_types Sequence[GetGoldengateDeploymentTypesGoldengateDeploymentType]
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    project str
    goldengateDeploymentTypes List<Property Map>
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    project String

    Supporting Types

    GetGoldengateDeploymentTypesGoldengateDeploymentType

    Category string
    The category of the Goldengate Deployment Type resource.
    ConnectionTypes List<string>
    The connection types of the Goldengate Deployment Type resource.
    DefaultUsername string
    The default username of the Goldengate Deployment Type resource.
    DeploymentType string
    The deployment type of the Goldengate Deployment Type resource.
    DisplayName string
    The display name of the Goldengate Deployment Type resource.
    Name string
    The name of the Goldengate Deployment Type resource.
    OggVersion string
    The OGG version of the Goldengate Deployment Type resource.
    SourceTechnologies List<string>
    The source technologies of the Goldengate Deployment Type resource.
    SupportedCapabilities List<string>
    The supported capabilities of the Goldengate Deployment Type resource.
    SupportedTechnologiesUrl string
    The supported technologies URL of the Goldengate Deployment Type resource.
    TargetTechnologies List<string>
    The target technologies of the Goldengate Deployment Type resource.
    Category string
    The category of the Goldengate Deployment Type resource.
    ConnectionTypes []string
    The connection types of the Goldengate Deployment Type resource.
    DefaultUsername string
    The default username of the Goldengate Deployment Type resource.
    DeploymentType string
    The deployment type of the Goldengate Deployment Type resource.
    DisplayName string
    The display name of the Goldengate Deployment Type resource.
    Name string
    The name of the Goldengate Deployment Type resource.
    OggVersion string
    The OGG version of the Goldengate Deployment Type resource.
    SourceTechnologies []string
    The source technologies of the Goldengate Deployment Type resource.
    SupportedCapabilities []string
    The supported capabilities of the Goldengate Deployment Type resource.
    SupportedTechnologiesUrl string
    The supported technologies URL of the Goldengate Deployment Type resource.
    TargetTechnologies []string
    The target technologies of the Goldengate Deployment Type resource.
    category string
    The category of the Goldengate Deployment Type resource.
    connection_types list(string)
    The connection types of the Goldengate Deployment Type resource.
    default_username string
    The default username of the Goldengate Deployment Type resource.
    deployment_type string
    The deployment type of the Goldengate Deployment Type resource.
    display_name string
    The display name of the Goldengate Deployment Type resource.
    name string
    The name of the Goldengate Deployment Type resource.
    ogg_version string
    The OGG version of the Goldengate Deployment Type resource.
    source_technologies list(string)
    The source technologies of the Goldengate Deployment Type resource.
    supported_capabilities list(string)
    The supported capabilities of the Goldengate Deployment Type resource.
    supported_technologies_url string
    The supported technologies URL of the Goldengate Deployment Type resource.
    target_technologies list(string)
    The target technologies of the Goldengate Deployment Type resource.
    category String
    The category of the Goldengate Deployment Type resource.
    connectionTypes List<String>
    The connection types of the Goldengate Deployment Type resource.
    defaultUsername String
    The default username of the Goldengate Deployment Type resource.
    deploymentType String
    The deployment type of the Goldengate Deployment Type resource.
    displayName String
    The display name of the Goldengate Deployment Type resource.
    name String
    The name of the Goldengate Deployment Type resource.
    oggVersion String
    The OGG version of the Goldengate Deployment Type resource.
    sourceTechnologies List<String>
    The source technologies of the Goldengate Deployment Type resource.
    supportedCapabilities List<String>
    The supported capabilities of the Goldengate Deployment Type resource.
    supportedTechnologiesUrl String
    The supported technologies URL of the Goldengate Deployment Type resource.
    targetTechnologies List<String>
    The target technologies of the Goldengate Deployment Type resource.
    category string
    The category of the Goldengate Deployment Type resource.
    connectionTypes string[]
    The connection types of the Goldengate Deployment Type resource.
    defaultUsername string
    The default username of the Goldengate Deployment Type resource.
    deploymentType string
    The deployment type of the Goldengate Deployment Type resource.
    displayName string
    The display name of the Goldengate Deployment Type resource.
    name string
    The name of the Goldengate Deployment Type resource.
    oggVersion string
    The OGG version of the Goldengate Deployment Type resource.
    sourceTechnologies string[]
    The source technologies of the Goldengate Deployment Type resource.
    supportedCapabilities string[]
    The supported capabilities of the Goldengate Deployment Type resource.
    supportedTechnologiesUrl string
    The supported technologies URL of the Goldengate Deployment Type resource.
    targetTechnologies string[]
    The target technologies of the Goldengate Deployment Type resource.
    category str
    The category of the Goldengate Deployment Type resource.
    connection_types Sequence[str]
    The connection types of the Goldengate Deployment Type resource.
    default_username str
    The default username of the Goldengate Deployment Type resource.
    deployment_type str
    The deployment type of the Goldengate Deployment Type resource.
    display_name str
    The display name of the Goldengate Deployment Type resource.
    name str
    The name of the Goldengate Deployment Type resource.
    ogg_version str
    The OGG version of the Goldengate Deployment Type resource.
    source_technologies Sequence[str]
    The source technologies of the Goldengate Deployment Type resource.
    supported_capabilities Sequence[str]
    The supported capabilities of the Goldengate Deployment Type resource.
    supported_technologies_url str
    The supported technologies URL of the Goldengate Deployment Type resource.
    target_technologies Sequence[str]
    The target technologies of the Goldengate Deployment Type resource.
    category String
    The category of the Goldengate Deployment Type resource.
    connectionTypes List<String>
    The connection types of the Goldengate Deployment Type resource.
    defaultUsername String
    The default username of the Goldengate Deployment Type resource.
    deploymentType String
    The deployment type of the Goldengate Deployment Type resource.
    displayName String
    The display name of the Goldengate Deployment Type resource.
    name String
    The name of the Goldengate Deployment Type resource.
    oggVersion String
    The OGG version of the Goldengate Deployment Type resource.
    sourceTechnologies List<String>
    The source technologies of the Goldengate Deployment Type resource.
    supportedCapabilities List<String>
    The supported capabilities of the Goldengate Deployment Type resource.
    supportedTechnologiesUrl String
    The supported technologies URL of the Goldengate Deployment Type resource.
    targetTechnologies List<String>
    The target technologies of the Goldengate Deployment Type resource.

    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
    Viewing docs for Google Cloud v9.28.0
    published on Monday, Jun 22, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial