import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Deployment Peers in Oracle Cloud Infrastructure Golden Gate service. * * Lists the local and remote peers in a deployment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeploymentPeers = oci.goldengate.getDeploymentPeers({ * deploymentId: testDeployment.id, * displayName: deploymentPeerDisplayName, * state: deploymentPeerState, * }); * ``` */ export declare function getDeploymentPeers(args: GetDeploymentPeersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeploymentPeers. */ export interface GetDeploymentPeersArgs { /** * A unique Deployment identifier. */ deploymentId: string; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: string; filters?: inputs.GoldenGate.GetDeploymentPeersFilter[]; /** * A filter to return only the deployment peers having the 'lifecycleState' given. */ state?: string; } /** * A collection of values returned by getDeploymentPeers. */ export interface GetDeploymentPeersResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced. */ readonly deploymentId: string; /** * The list of deployment_peer_collection. */ readonly deploymentPeerCollections: outputs.GoldenGate.GetDeploymentPeersDeploymentPeerCollection[]; /** * An object's Display Name. */ readonly displayName?: string; readonly filters?: outputs.GoldenGate.GetDeploymentPeersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Possible lifecycle states for deployment peer. */ readonly state?: string; } /** * This data source provides the list of Deployment Peers in Oracle Cloud Infrastructure Golden Gate service. * * Lists the local and remote peers in a deployment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeploymentPeers = oci.goldengate.getDeploymentPeers({ * deploymentId: testDeployment.id, * displayName: deploymentPeerDisplayName, * state: deploymentPeerState, * }); * ``` */ export declare function getDeploymentPeersOutput(args: GetDeploymentPeersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeploymentPeers. */ export interface GetDeploymentPeersOutputArgs { /** * A unique Deployment identifier. */ deploymentId: pulumi.Input; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only the deployment peers having the 'lifecycleState' given. */ state?: pulumi.Input; } //# sourceMappingURL=getDeploymentPeers.d.ts.map