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 Object Storage Link Sync Jobs in Oracle Cloud Infrastructure Lustre File Storage service. * * Lists all sync jobs associated with the Object Storage link. Contains a unique ID for each sync job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testObjectStorageLinkSyncJobs = oci.lustre.getFileStorageObjectStorageLinkSyncJobs({ * objectStorageLinkId: testObjectStorageLink.id, * state: objectStorageLinkSyncJobState, * }); * ``` */ export declare function getFileStorageObjectStorageLinkSyncJobs(args: GetFileStorageObjectStorageLinkSyncJobsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFileStorageObjectStorageLinkSyncJobs. */ export interface GetFileStorageObjectStorageLinkSyncJobsArgs { filters?: inputs.Lustre.GetFileStorageObjectStorageLinkSyncJobsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Object Storage link. */ objectStorageLinkId: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getFileStorageObjectStorageLinkSyncJobs. */ export interface GetFileStorageObjectStorageLinkSyncJobsResult { readonly filters?: outputs.Lustre.GetFileStorageObjectStorageLinkSyncJobsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly objectStorageLinkId: string; /** * The current state of the sync job. */ readonly state?: string; /** * The list of sync_job_collection. */ readonly syncJobCollections: outputs.Lustre.GetFileStorageObjectStorageLinkSyncJobsSyncJobCollection[]; } /** * This data source provides the list of Object Storage Link Sync Jobs in Oracle Cloud Infrastructure Lustre File Storage service. * * Lists all sync jobs associated with the Object Storage link. Contains a unique ID for each sync job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testObjectStorageLinkSyncJobs = oci.lustre.getFileStorageObjectStorageLinkSyncJobs({ * objectStorageLinkId: testObjectStorageLink.id, * state: objectStorageLinkSyncJobState, * }); * ``` */ export declare function getFileStorageObjectStorageLinkSyncJobsOutput(args: GetFileStorageObjectStorageLinkSyncJobsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFileStorageObjectStorageLinkSyncJobs. */ export interface GetFileStorageObjectStorageLinkSyncJobsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Object Storage link. */ objectStorageLinkId: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getFileStorageObjectStorageLinkSyncJobs.d.ts.map