1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. GoldenGate
  5. getDeploymentTypes
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.GoldenGate.getDeploymentTypes

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Deployment Types in Oracle Cloud Infrastructure Golden Gate service.

Returns an array of DeploymentTypeDescriptor

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDeploymentTypes = oci.GoldenGate.getDeploymentTypes({
    compartmentId: compartmentId,
    deploymentType: deploymentTypeDeploymentType,
    displayName: deploymentTypeDisplayName,
    oggVersion: deploymentTypeOggVersion,
});
Copy
import pulumi
import pulumi_oci as oci

test_deployment_types = oci.GoldenGate.get_deployment_types(compartment_id=compartment_id,
    deployment_type=deployment_type_deployment_type,
    display_name=deployment_type_display_name,
    ogg_version=deployment_type_ogg_version)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/goldengate"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := goldengate.GetDeploymentTypes(ctx, &goldengate.GetDeploymentTypesArgs{
			CompartmentId:  compartmentId,
			DeploymentType: pulumi.StringRef(deploymentTypeDeploymentType),
			DisplayName:    pulumi.StringRef(deploymentTypeDisplayName),
			OggVersion:     pulumi.StringRef(deploymentTypeOggVersion),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDeploymentTypes = Oci.GoldenGate.GetDeploymentTypes.Invoke(new()
    {
        CompartmentId = compartmentId,
        DeploymentType = deploymentTypeDeploymentType,
        DisplayName = deploymentTypeDisplayName,
        OggVersion = deploymentTypeOggVersion,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GoldenGate.GoldenGateFunctions;
import com.pulumi.oci.GoldenGate.inputs.GetDeploymentTypesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testDeploymentTypes = GoldenGateFunctions.getDeploymentTypes(GetDeploymentTypesArgs.builder()
            .compartmentId(compartmentId)
            .deploymentType(deploymentTypeDeploymentType)
            .displayName(deploymentTypeDisplayName)
            .oggVersion(deploymentTypeOggVersion)
            .build());

    }
}
Copy
variables:
  testDeploymentTypes:
    fn::invoke:
      function: oci:GoldenGate:getDeploymentTypes
      arguments:
        compartmentId: ${compartmentId}
        deploymentType: ${deploymentTypeDeploymentType}
        displayName: ${deploymentTypeDisplayName}
        oggVersion: ${deploymentTypeOggVersion}
Copy

Using getDeploymentTypes

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 getDeploymentTypes(args: GetDeploymentTypesArgs, opts?: InvokeOptions): Promise<GetDeploymentTypesResult>
function getDeploymentTypesOutput(args: GetDeploymentTypesOutputArgs, opts?: InvokeOptions): Output<GetDeploymentTypesResult>
Copy
def get_deployment_types(compartment_id: Optional[str] = None,
                         deployment_type: Optional[str] = None,
                         display_name: Optional[str] = None,
                         filters: Optional[Sequence[_goldengate.GetDeploymentTypesFilter]] = None,
                         ogg_version: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetDeploymentTypesResult
def get_deployment_types_output(compartment_id: Optional[pulumi.Input[str]] = None,
                         deployment_type: Optional[pulumi.Input[str]] = None,
                         display_name: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_goldengate.GetDeploymentTypesFilterArgs]]]] = None,
                         ogg_version: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentTypesResult]
Copy
func GetDeploymentTypes(ctx *Context, args *GetDeploymentTypesArgs, opts ...InvokeOption) (*GetDeploymentTypesResult, error)
func GetDeploymentTypesOutput(ctx *Context, args *GetDeploymentTypesOutputArgs, opts ...InvokeOption) GetDeploymentTypesResultOutput
Copy

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

public static class GetDeploymentTypes 
{
    public static Task<GetDeploymentTypesResult> InvokeAsync(GetDeploymentTypesArgs args, InvokeOptions? opts = null)
    public static Output<GetDeploymentTypesResult> Invoke(GetDeploymentTypesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDeploymentTypesResult> getDeploymentTypes(GetDeploymentTypesArgs args, InvokeOptions options)
public static Output<GetDeploymentTypesResult> getDeploymentTypes(GetDeploymentTypesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:GoldenGate/getDeploymentTypes:getDeploymentTypes
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
DeploymentType string
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
DisplayName string
A filter to return only the resources that match the entire 'displayName' given.
Filters Changes to this property will trigger replacement. List<GetDeploymentTypesFilter>
OggVersion string
Allows to query by a specific GoldenGate version.
CompartmentId This property is required. string
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
DeploymentType string
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
DisplayName string
A filter to return only the resources that match the entire 'displayName' given.
Filters Changes to this property will trigger replacement. []GetDeploymentTypesFilter
OggVersion string
Allows to query by a specific GoldenGate version.
compartmentId This property is required. String
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
deploymentType String
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
displayName String
A filter to return only the resources that match the entire 'displayName' given.
filters Changes to this property will trigger replacement. List<GetDeploymentTypesFilter>
oggVersion String
Allows to query by a specific GoldenGate version.
compartmentId This property is required. string
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
deploymentType string
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
displayName string
A filter to return only the resources that match the entire 'displayName' given.
filters Changes to this property will trigger replacement. GetDeploymentTypesFilter[]
oggVersion string
Allows to query by a specific GoldenGate version.
compartment_id This property is required. str
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
deployment_type str
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
display_name str
A filter to return only the resources that match the entire 'displayName' given.
filters Changes to this property will trigger replacement. Sequence[goldengate.GetDeploymentTypesFilter]
ogg_version str
Allows to query by a specific GoldenGate version.
compartmentId This property is required. String
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
deploymentType String
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
displayName String
A filter to return only the resources that match the entire 'displayName' given.
filters Changes to this property will trigger replacement. List<Property Map>
oggVersion String
Allows to query by a specific GoldenGate version.

getDeploymentTypes Result

The following output properties are available:

CompartmentId string
DeploymentTypeCollections List<GetDeploymentTypesDeploymentTypeCollection>
The list of deployment_type_collection.
Id string
The provider-assigned unique ID for this managed resource.
DeploymentType string
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
DisplayName string
An object's Display Name.
Filters List<GetDeploymentTypesFilter>
OggVersion string
Version of OGG
CompartmentId string
DeploymentTypeCollections []GetDeploymentTypesDeploymentTypeCollection
The list of deployment_type_collection.
Id string
The provider-assigned unique ID for this managed resource.
DeploymentType string
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
DisplayName string
An object's Display Name.
Filters []GetDeploymentTypesFilter
OggVersion string
Version of OGG
compartmentId String
deploymentTypeCollections List<GetDeploymentTypesDeploymentTypeCollection>
The list of deployment_type_collection.
id String
The provider-assigned unique ID for this managed resource.
deploymentType String
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
displayName String
An object's Display Name.
filters List<GetDeploymentTypesFilter>
oggVersion String
Version of OGG
compartmentId string
deploymentTypeCollections GetDeploymentTypesDeploymentTypeCollection[]
The list of deployment_type_collection.
id string
The provider-assigned unique ID for this managed resource.
deploymentType string
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
displayName string
An object's Display Name.
filters GetDeploymentTypesFilter[]
oggVersion string
Version of OGG
compartment_id str
deployment_type_collections Sequence[goldengate.GetDeploymentTypesDeploymentTypeCollection]
The list of deployment_type_collection.
id str
The provider-assigned unique ID for this managed resource.
deployment_type str
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
display_name str
An object's Display Name.
filters Sequence[goldengate.GetDeploymentTypesFilter]
ogg_version str
Version of OGG
compartmentId String
deploymentTypeCollections List<Property Map>
The list of deployment_type_collection.
id String
The provider-assigned unique ID for this managed resource.
deploymentType String
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
displayName String
An object's Display Name.
filters List<Property Map>
oggVersion String
Version of OGG

Supporting Types

GetDeploymentTypesDeploymentTypeCollection

Items This property is required. List<GetDeploymentTypesDeploymentTypeCollectionItem>
Array of DeploymentTypeSummary
Items This property is required. []GetDeploymentTypesDeploymentTypeCollectionItem
Array of DeploymentTypeSummary
items This property is required. List<GetDeploymentTypesDeploymentTypeCollectionItem>
Array of DeploymentTypeSummary
items This property is required. GetDeploymentTypesDeploymentTypeCollectionItem[]
Array of DeploymentTypeSummary
items This property is required. Sequence[goldengate.GetDeploymentTypesDeploymentTypeCollectionItem]
Array of DeploymentTypeSummary
items This property is required. List<Property Map>
Array of DeploymentTypeSummary

GetDeploymentTypesDeploymentTypeCollectionItem

Category This property is required. string
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
ConnectionTypes This property is required. List<string>
An array of connectionTypes.
DefaultUsername This property is required. string
The default admin username used by deployment.
DeploymentType This property is required. string
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
DisplayName This property is required. string
A filter to return only the resources that match the entire 'displayName' given.
OggVersion This property is required. string
Allows to query by a specific GoldenGate version.
SourceTechnologies This property is required. List<string>
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
SupportedTechnologiesUrl This property is required. string
The URL to the webpage listing the supported technologies.
TargetTechnologies This property is required. List<string>
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
Category This property is required. string
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
ConnectionTypes This property is required. []string
An array of connectionTypes.
DefaultUsername This property is required. string
The default admin username used by deployment.
DeploymentType This property is required. string
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
DisplayName This property is required. string
A filter to return only the resources that match the entire 'displayName' given.
OggVersion This property is required. string
Allows to query by a specific GoldenGate version.
SourceTechnologies This property is required. []string
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
SupportedTechnologiesUrl This property is required. string
The URL to the webpage listing the supported technologies.
TargetTechnologies This property is required. []string
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
category This property is required. String
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
connectionTypes This property is required. List<String>
An array of connectionTypes.
defaultUsername This property is required. String
The default admin username used by deployment.
deploymentType This property is required. String
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
displayName This property is required. String
A filter to return only the resources that match the entire 'displayName' given.
oggVersion This property is required. String
Allows to query by a specific GoldenGate version.
sourceTechnologies This property is required. List<String>
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
supportedTechnologiesUrl This property is required. String
The URL to the webpage listing the supported technologies.
targetTechnologies This property is required. List<String>
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
category This property is required. string
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
connectionTypes This property is required. string[]
An array of connectionTypes.
defaultUsername This property is required. string
The default admin username used by deployment.
deploymentType This property is required. string
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
displayName This property is required. string
A filter to return only the resources that match the entire 'displayName' given.
oggVersion This property is required. string
Allows to query by a specific GoldenGate version.
sourceTechnologies This property is required. string[]
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
supportedTechnologiesUrl This property is required. string
The URL to the webpage listing the supported technologies.
targetTechnologies This property is required. string[]
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
category This property is required. str
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
connection_types This property is required. Sequence[str]
An array of connectionTypes.
default_username This property is required. str
The default admin username used by deployment.
deployment_type This property is required. str
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
display_name This property is required. str
A filter to return only the resources that match the entire 'displayName' given.
ogg_version This property is required. str
Allows to query by a specific GoldenGate version.
source_technologies This property is required. Sequence[str]
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
supported_technologies_url This property is required. str
The URL to the webpage listing the supported technologies.
target_technologies This property is required. Sequence[str]
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
category This property is required. String
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
connectionTypes This property is required. List<String>
An array of connectionTypes.
defaultUsername This property is required. String
The default admin username used by deployment.
deploymentType This property is required. String
The type of deployment, the value determines the exact 'type' of the service executed in the deployment. Default value is DATABASE_ORACLE.
displayName This property is required. String
A filter to return only the resources that match the entire 'displayName' given.
oggVersion This property is required. String
Allows to query by a specific GoldenGate version.
sourceTechnologies This property is required. List<String>
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
supportedTechnologiesUrl This property is required. String
The URL to the webpage listing the supported technologies.
targetTechnologies This property is required. List<String>
List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]

GetDeploymentTypesFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi