1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. oracledatabase
  6. getGoldengateDeploymentEnvironments
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 Environments in a location.

    For more information see the API.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const myEnvironments = gcp.oracledatabase.getGoldengateDeploymentEnvironments({
        location: "us-east4",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    my_environments = gcp.oracledatabase.get_goldengate_deployment_environments(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.GetGoldengateDeploymentEnvironments(ctx, &oracledatabase.GetGoldengateDeploymentEnvironmentsArgs{
    			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 myEnvironments = Gcp.OracleDatabase.GetGoldengateDeploymentEnvironments.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.GetGoldengateDeploymentEnvironmentsArgs;
    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 myEnvironments = OracledatabaseFunctions.getGoldengateDeploymentEnvironments(GetGoldengateDeploymentEnvironmentsArgs.builder()
                .location("us-east4")
                .build());
    
        }
    }
    
    variables:
      myEnvironments:
        fn::invoke:
          function: gcp:oracledatabase:getGoldengateDeploymentEnvironments
          arguments:
            location: us-east4
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    data "gcp_oracledatabase_getgoldengatedeploymentenvironments" "myEnvironments" {
      location = "us-east4"
    }
    

    Attributes reference

    The following attributes are exported:

    • goldengateDeploymentEnvironments - List of GoldenGate Deployment Environments. Structure is documented below.

    The goldengateDeploymentEnvironments block supports:

    • name - The name of the GoldenGate Deployment Environment resource. Format: projects/{project}/locations/{location}/goldenGateDeploymentEnvironments/{golden_gate_deployment_environment}

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

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

    • defaultCpuCoreCount - The default CPU core count of the GoldenGate Deployment Environment resource.

    • environmentType - The environment type of the GoldenGate Deployment Environment resource.

    • autoScalingEnabled - Whether auto scaling is enabled by default for the GoldenGate Deployment Environment resource.

    • maxCpuCoreCount - The max CPU core count of the GoldenGate Deployment Environment resource.

    • memoryGbPerCpuCore - The memory per CPU core in GBs of the GoldenGate Deployment Environment resource.

    • minCpuCoreCount - The min CPU core count of the GoldenGate Deployment Environment resource.

    • networkBandwidthGbpsPerCpuCore - The network bandwidth per CPU core in Gbps of the GoldenGate Deployment Environment resource.

    • storageUsageLimitGbPerCpuCore - The storage usage limit per CPU core in GBs of the GoldenGate Deployment Environment resource.

    Using getGoldengateDeploymentEnvironments

    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 getGoldengateDeploymentEnvironments(args: GetGoldengateDeploymentEnvironmentsArgs, opts?: InvokeOptions): Promise<GetGoldengateDeploymentEnvironmentsResult>
    function getGoldengateDeploymentEnvironmentsOutput(args: GetGoldengateDeploymentEnvironmentsOutputArgs, opts?: InvokeOptions): Output<GetGoldengateDeploymentEnvironmentsResult>
    def get_goldengate_deployment_environments(location: Optional[str] = None,
                                               project: Optional[str] = None,
                                               opts: Optional[InvokeOptions] = None) -> GetGoldengateDeploymentEnvironmentsResult
    def get_goldengate_deployment_environments_output(location: pulumi.Input[Optional[str]] = None,
                                               project: pulumi.Input[Optional[str]] = None,
                                               opts: Optional[InvokeOptions] = None) -> Output[GetGoldengateDeploymentEnvironmentsResult]
    func GetGoldengateDeploymentEnvironments(ctx *Context, args *GetGoldengateDeploymentEnvironmentsArgs, opts ...InvokeOption) (*GetGoldengateDeploymentEnvironmentsResult, error)
    func GetGoldengateDeploymentEnvironmentsOutput(ctx *Context, args *GetGoldengateDeploymentEnvironmentsOutputArgs, opts ...InvokeOption) GetGoldengateDeploymentEnvironmentsResultOutput

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

    public static class GetGoldengateDeploymentEnvironments 
    {
        public static Task<GetGoldengateDeploymentEnvironmentsResult> InvokeAsync(GetGoldengateDeploymentEnvironmentsArgs args, InvokeOptions? opts = null)
        public static Output<GetGoldengateDeploymentEnvironmentsResult> Invoke(GetGoldengateDeploymentEnvironmentsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGoldengateDeploymentEnvironmentsResult> getGoldengateDeploymentEnvironments(GetGoldengateDeploymentEnvironmentsArgs args, InvokeOptions options)
    public static Output<GetGoldengateDeploymentEnvironmentsResult> getGoldengateDeploymentEnvironments(GetGoldengateDeploymentEnvironmentsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcp:oracledatabase/getGoldengateDeploymentEnvironments:getGoldengateDeploymentEnvironments
      arguments:
        # arguments dictionary
    data "gcp_oracledatabase_getgoldengatedeploymentenvironments" "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.

    getGoldengateDeploymentEnvironments Result

    The following output properties are available:

    GoldengateDeploymentEnvironments []GetGoldengateDeploymentEnvironmentsGoldengateDeploymentEnvironment
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Project string
    goldengate_deployment_environments list(object)
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    project string
    goldengateDeploymentEnvironments GetGoldengateDeploymentEnvironmentsGoldengateDeploymentEnvironment[]
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    project string
    goldengateDeploymentEnvironments List<Property Map>
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    project String

    Supporting Types

    GetGoldengateDeploymentEnvironmentsGoldengateDeploymentEnvironment

    AutoScalingEnabled bool
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    Category string
    The category of the Goldengate Deployment Environment resource.
    DefaultCpuCoreCount int
    The default CPU core count of the Goldengate Deployment Environment resource.
    DisplayName string
    The display name of the Goldengate Deployment Environment resource.
    EnvironmentType string
    The environment type of the Goldengate Deployment Environment resource.
    MaxCpuCoreCount int
    The max CPU core count of the Goldengate Deployment Environment resource.
    MemoryGbPerCpuCore int
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    MinCpuCoreCount int
    The min CPU core count of the Goldengate Deployment Environment resource.
    Name string
    The name of the Goldengate Deployment Environment resource.
    NetworkBandwidthGbpsPerCpuCore int
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    StorageUsageLimitGbPerCpuCore int
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment resource.
    AutoScalingEnabled bool
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    Category string
    The category of the Goldengate Deployment Environment resource.
    DefaultCpuCoreCount int
    The default CPU core count of the Goldengate Deployment Environment resource.
    DisplayName string
    The display name of the Goldengate Deployment Environment resource.
    EnvironmentType string
    The environment type of the Goldengate Deployment Environment resource.
    MaxCpuCoreCount int
    The max CPU core count of the Goldengate Deployment Environment resource.
    MemoryGbPerCpuCore int
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    MinCpuCoreCount int
    The min CPU core count of the Goldengate Deployment Environment resource.
    Name string
    The name of the Goldengate Deployment Environment resource.
    NetworkBandwidthGbpsPerCpuCore int
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    StorageUsageLimitGbPerCpuCore int
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment resource.
    auto_scaling_enabled bool
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    category string
    The category of the Goldengate Deployment Environment resource.
    default_cpu_core_count number
    The default CPU core count of the Goldengate Deployment Environment resource.
    display_name string
    The display name of the Goldengate Deployment Environment resource.
    environment_type string
    The environment type of the Goldengate Deployment Environment resource.
    max_cpu_core_count number
    The max CPU core count of the Goldengate Deployment Environment resource.
    memory_gb_per_cpu_core number
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    min_cpu_core_count number
    The min CPU core count of the Goldengate Deployment Environment resource.
    name string
    The name of the Goldengate Deployment Environment resource.
    network_bandwidth_gbps_per_cpu_core number
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    storage_usage_limit_gb_per_cpu_core number
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment resource.
    autoScalingEnabled Boolean
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    category String
    The category of the Goldengate Deployment Environment resource.
    defaultCpuCoreCount Integer
    The default CPU core count of the Goldengate Deployment Environment resource.
    displayName String
    The display name of the Goldengate Deployment Environment resource.
    environmentType String
    The environment type of the Goldengate Deployment Environment resource.
    maxCpuCoreCount Integer
    The max CPU core count of the Goldengate Deployment Environment resource.
    memoryGbPerCpuCore Integer
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    minCpuCoreCount Integer
    The min CPU core count of the Goldengate Deployment Environment resource.
    name String
    The name of the Goldengate Deployment Environment resource.
    networkBandwidthGbpsPerCpuCore Integer
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    storageUsageLimitGbPerCpuCore Integer
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment resource.
    autoScalingEnabled boolean
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    category string
    The category of the Goldengate Deployment Environment resource.
    defaultCpuCoreCount number
    The default CPU core count of the Goldengate Deployment Environment resource.
    displayName string
    The display name of the Goldengate Deployment Environment resource.
    environmentType string
    The environment type of the Goldengate Deployment Environment resource.
    maxCpuCoreCount number
    The max CPU core count of the Goldengate Deployment Environment resource.
    memoryGbPerCpuCore number
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    minCpuCoreCount number
    The min CPU core count of the Goldengate Deployment Environment resource.
    name string
    The name of the Goldengate Deployment Environment resource.
    networkBandwidthGbpsPerCpuCore number
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    storageUsageLimitGbPerCpuCore number
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment resource.
    auto_scaling_enabled bool
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    category str
    The category of the Goldengate Deployment Environment resource.
    default_cpu_core_count int
    The default CPU core count of the Goldengate Deployment Environment resource.
    display_name str
    The display name of the Goldengate Deployment Environment resource.
    environment_type str
    The environment type of the Goldengate Deployment Environment resource.
    max_cpu_core_count int
    The max CPU core count of the Goldengate Deployment Environment resource.
    memory_gb_per_cpu_core int
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    min_cpu_core_count int
    The min CPU core count of the Goldengate Deployment Environment resource.
    name str
    The name of the Goldengate Deployment Environment resource.
    network_bandwidth_gbps_per_cpu_core int
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    storage_usage_limit_gb_per_cpu_core int
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment resource.
    autoScalingEnabled Boolean
    Whether auto scaling is enabled by default for the Goldengate Deployment Environment resource.
    category String
    The category of the Goldengate Deployment Environment resource.
    defaultCpuCoreCount Number
    The default CPU core count of the Goldengate Deployment Environment resource.
    displayName String
    The display name of the Goldengate Deployment Environment resource.
    environmentType String
    The environment type of the Goldengate Deployment Environment resource.
    maxCpuCoreCount Number
    The max CPU core count of the Goldengate Deployment Environment resource.
    memoryGbPerCpuCore Number
    The memory per CPU core in GBs of the Goldengate Deployment Environment resource.
    minCpuCoreCount Number
    The min CPU core count of the Goldengate Deployment Environment resource.
    name String
    The name of the Goldengate Deployment Environment resource.
    networkBandwidthGbpsPerCpuCore Number
    The network bandwidth per CPU core in Gbps of the Goldengate Deployment Environment resource.
    storageUsageLimitGbPerCpuCore Number
    The storage usage limit per CPU core in GBs of the Goldengate Deployment Environment 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