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 Fleet Blocklists in Oracle Cloud Infrastructure Jms service. * * Returns a list of blocklist entities contained by a fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetBlocklists = oci.jms.getFleetBlocklists({ * fleetId: testFleet.id, * managedInstanceId: fleetBlocklistManagedInstanceId, * operation: fleetBlocklistOperation, * }); * ``` */ export declare function getFleetBlocklists(args: GetFleetBlocklistsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetBlocklists. */ export interface GetFleetBlocklistsArgs { filters?: inputs.Jms.GetFleetBlocklistsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: string; /** * The operation type. */ operation?: string; } /** * A collection of values returned by getFleetBlocklists. */ export interface GetFleetBlocklistsResult { readonly filters?: outputs.Jms.GetFleetBlocklistsFilter[]; /** * 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; /** * The blocklist */ readonly items: outputs.Jms.GetFleetBlocklistsItem[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related managed instance. */ readonly managedInstanceId?: string; /** * The operation type */ readonly operation?: string; } /** * This data source provides the list of Fleet Blocklists in Oracle Cloud Infrastructure Jms service. * * Returns a list of blocklist entities contained by a fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetBlocklists = oci.jms.getFleetBlocklists({ * fleetId: testFleet.id, * managedInstanceId: fleetBlocklistManagedInstanceId, * operation: fleetBlocklistOperation, * }); * ``` */ export declare function getFleetBlocklistsOutput(args: GetFleetBlocklistsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetBlocklists. */ export interface GetFleetBlocklistsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: pulumi.Input; /** * The operation type. */ operation?: pulumi.Input; } //# sourceMappingURL=getFleetBlocklists.d.ts.map