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 Replication Schedules in Oracle Cloud Infrastructure Cloud Migrations service. * * Returns a list of replication schedules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReplicationSchedules = oci.cloudmigrations.getReplicationSchedules({ * compartmentId: compartmentId, * displayName: replicationScheduleDisplayName, * replicationScheduleId: testReplicationSchedule.id, * state: replicationScheduleState, * }); * ``` */ export declare function getReplicationSchedules(args?: GetReplicationSchedulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getReplicationSchedules. */ export interface GetReplicationSchedulesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the entire given display name. */ displayName?: string; filters?: inputs.CloudMigrations.GetReplicationSchedulesFilter[]; /** * Unique replication schedule identifier in query */ replicationScheduleId?: string; /** * The current state of the replication schedule. */ state?: string; } /** * A collection of values returned by getReplicationSchedules. */ export interface GetReplicationSchedulesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the replication schedule exists. */ readonly compartmentId?: string; /** * A name of the replication schedule. */ readonly displayName?: string; readonly filters?: outputs.CloudMigrations.GetReplicationSchedulesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of replication_schedule_collection. */ readonly replicationScheduleCollections: outputs.CloudMigrations.GetReplicationSchedulesReplicationScheduleCollection[]; readonly replicationScheduleId?: string; /** * Current state of the replication schedule. */ readonly state?: string; } /** * This data source provides the list of Replication Schedules in Oracle Cloud Infrastructure Cloud Migrations service. * * Returns a list of replication schedules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReplicationSchedules = oci.cloudmigrations.getReplicationSchedules({ * compartmentId: compartmentId, * displayName: replicationScheduleDisplayName, * replicationScheduleId: testReplicationSchedule.id, * state: replicationScheduleState, * }); * ``` */ export declare function getReplicationSchedulesOutput(args?: GetReplicationSchedulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getReplicationSchedules. */ export interface GetReplicationSchedulesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the entire given display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique replication schedule identifier in query */ replicationScheduleId?: pulumi.Input; /** * The current state of the replication schedule. */ state?: pulumi.Input; } //# sourceMappingURL=getReplicationSchedules.d.ts.map