import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Deployment Type resource in Oracle Cloud Infrastructure Golden Gate service. * * Returns an array of DeploymentTypeDescriptor * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeploymentType = oci.goldengate.getDeploymentType({ * compartmentId: compartmentId, * displayName: deploymentTypeDisplayName, * }); * ``` */ export declare function getDeploymentType(args: GetDeploymentTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeploymentType. */ export interface GetDeploymentTypeArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: string; } /** * A collection of values returned by getDeploymentType. */ export interface GetDeploymentTypeResult { readonly compartmentId: string; /** * An object's Display Name. */ readonly displayName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of DeploymentTypeSummary */ readonly items: outputs.GoldenGate.GetDeploymentTypeItem[]; } /** * This data source provides details about a specific Deployment Type resource in Oracle Cloud Infrastructure Golden Gate service. * * Returns an array of DeploymentTypeDescriptor * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeploymentType = oci.goldengate.getDeploymentType({ * compartmentId: compartmentId, * displayName: deploymentTypeDisplayName, * }); * ``` */ export declare function getDeploymentTypeOutput(args: GetDeploymentTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeploymentType. */ export interface GetDeploymentTypeOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: pulumi.Input; } //# sourceMappingURL=getDeploymentType.d.ts.map