import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Fleet Export Setting resource in Oracle Cloud Infrastructure Jms service. * * Returns export setting for the specified fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetExportSetting = oci.jms.getFleetExportSetting({ * fleetId: testFleet.id, * }); * ``` */ export declare function getFleetExportSetting(args: GetFleetExportSettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetExportSetting. */ export interface GetFleetExportSettingArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; } /** * A collection of values returned by getFleetExportSetting. */ export interface GetFleetExportSettingResult { /** * Filters applied when exporting data */ readonly exportDataFilters: outputs.Jms.GetFleetExportSettingExportDataFilter[]; /** * The duration of data to be exported for fleets. */ readonly exportDuration: string; /** * Schedule at which data will be exported. */ readonly exportFrequency: string; /** * Resource to export data associated from the fleets. */ readonly exportResources: string; /** * The internal identifier of the export setting. */ readonly exportSettingKey: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet. */ readonly fleetId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Acknowledgement for cross region target bucket configuration. */ readonly isCrossRegionAcknowledged: boolean; /** * ExportSetting flag to store enabled or disabled status. */ readonly isEnabled: boolean; /** * The name of the bucket where data will be exported. */ readonly targetBucketName: string; /** * The namespace of the bucket where data will be exported. */ readonly targetBucketNamespace: string; /** * The id of the region of the target bucket. */ readonly targetBucketRegion: string; /** * The creation date and time of the export setting (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ readonly timeCreated: string; /** * The update date and time of the export setting (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ readonly timeLastModified: string; } /** * This data source provides details about a specific Fleet Export Setting resource in Oracle Cloud Infrastructure Jms service. * * Returns export setting for the specified fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetExportSetting = oci.jms.getFleetExportSetting({ * fleetId: testFleet.id, * }); * ``` */ export declare function getFleetExportSettingOutput(args: GetFleetExportSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetExportSetting. */ export interface GetFleetExportSettingOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; } //# sourceMappingURL=getFleetExportSetting.d.ts.map