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 Discovery Schedules in Oracle Cloud Infrastructure Cloud Bridge service. * * Lists discovery schedules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDiscoverySchedules = oci.cloudbridge.getDiscoverySchedules({ * compartmentId: compartmentId, * discoveryScheduleId: testDiscoverySchedule.id, * displayName: discoveryScheduleDisplayName, * state: discoveryScheduleState, * }); * ``` */ export declare function getDiscoverySchedules(args: GetDiscoverySchedulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDiscoverySchedules. */ export interface GetDiscoverySchedulesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the discovery schedule. */ discoveryScheduleId?: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.CloudBridge.GetDiscoverySchedulesFilter[]; /** * The current state of the discovery schedule. */ state?: string; } /** * A collection of values returned by getDiscoverySchedules. */ export interface GetDiscoverySchedulesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the discovery schedule exists. */ readonly compartmentId: string; /** * The list of discovery_schedule_collection. */ readonly discoveryScheduleCollections: outputs.CloudBridge.GetDiscoverySchedulesDiscoveryScheduleCollection[]; readonly discoveryScheduleId?: string; /** * A user-friendly name for the discovery schedule. Does not have to be unique, and it's mutable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.CloudBridge.GetDiscoverySchedulesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Current state of the discovery schedule. */ readonly state?: string; } /** * This data source provides the list of Discovery Schedules in Oracle Cloud Infrastructure Cloud Bridge service. * * Lists discovery schedules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDiscoverySchedules = oci.cloudbridge.getDiscoverySchedules({ * compartmentId: compartmentId, * discoveryScheduleId: testDiscoverySchedule.id, * displayName: discoveryScheduleDisplayName, * state: discoveryScheduleState, * }); * ``` */ export declare function getDiscoverySchedulesOutput(args: GetDiscoverySchedulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDiscoverySchedules. */ export interface GetDiscoverySchedulesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the discovery schedule. */ discoveryScheduleId?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The current state of the discovery schedule. */ state?: pulumi.Input; } //# sourceMappingURL=getDiscoverySchedules.d.ts.map