import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Replication Target resource in Oracle Cloud Infrastructure File Storage service. * * Gets the specified replication target's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReplicationTarget = oci.filestorage.getReplicationTarget({ * replicationTargetId: testReplicationTargetOciFileStorageReplicationTarget.id, * }); * ``` */ export declare function getReplicationTarget(args: GetReplicationTargetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getReplicationTarget. */ export interface GetReplicationTargetArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target. */ replicationTargetId: string; } /** * A collection of values returned by getReplicationTarget. */ export interface GetReplicationTargetResult { /** * The availability domain the replication target is in. Must be in the same availability domain as the target file system. Example: `Uocm:PHX-AD-1` */ readonly availabilityDomain: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the replication. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Percentage progress of the current replication cycle. */ readonly deltaProgress: string; /** * The current state of the snapshot during replication operations. */ readonly deltaStatus: string; /** * A user-friendly name. This name is same as the replication display name for the associated resource. Example: `My Replication` */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last snapshot snapshot which was completely applied to the target file system. Empty while the initial snapshot is being applied. */ readonly lastSnapshotId: string; /** * Additional information about the current `lifecycleState`. */ readonly lifecycleDetails: string; /** * The snapshotTime of the most recent recoverable replication snapshot in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-04-04T20:01:29.100Z` */ readonly recoveryPointTime: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of replication. */ readonly replicationId: string; readonly replicationTargetId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of source filesystem. */ readonly sourceId: string; /** * The current state of this replication. */ readonly state: string; /** * System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services. */ readonly systemTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of target filesystem. */ readonly targetId: string; /** * The date and time the replication target was created in target region. in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Replication Target resource in Oracle Cloud Infrastructure File Storage service. * * Gets the specified replication target's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReplicationTarget = oci.filestorage.getReplicationTarget({ * replicationTargetId: testReplicationTargetOciFileStorageReplicationTarget.id, * }); * ``` */ export declare function getReplicationTargetOutput(args: GetReplicationTargetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getReplicationTarget. */ export interface GetReplicationTargetOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target. */ replicationTargetId: pulumi.Input; } //# sourceMappingURL=getReplicationTarget.d.ts.map