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 Properties in Oracle Cloud Infrastructure Fleet Apps Management service. * * List properties associated with a fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProperties = oci.fleetappsmanagement.getFleetProperties({ * fleetId: testFleet.id, * displayName: fleetPropertyDisplayName, * id: fleetPropertyId, * state: fleetPropertyState, * }); * ``` */ export declare function getFleetProperties(args: GetFleetPropertiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetProperties. */ export interface GetFleetPropertiesArgs { /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.FleetAppsManagement.GetFleetPropertiesFilter[]; /** * Unique Fleet identifier. */ fleetId: string; /** * A filter to return only resources whose fleetProperty identifier matches the given identifier. */ id?: string; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getFleetProperties. */ export interface GetFleetPropertiesResult { /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName?: string; readonly filters?: outputs.FleetAppsManagement.GetFleetPropertiesFilter[]; readonly fleetId: string; /** * The list of fleet_property_collection. */ readonly fleetPropertyCollections: outputs.FleetAppsManagement.GetFleetPropertiesFleetPropertyCollection[]; /** * The unique id of the resource. */ readonly id?: string; /** * The current state of the FleetProperty. */ readonly state?: string; } /** * This data source provides the list of Fleet Properties in Oracle Cloud Infrastructure Fleet Apps Management service. * * List properties associated with a fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProperties = oci.fleetappsmanagement.getFleetProperties({ * fleetId: testFleet.id, * displayName: fleetPropertyDisplayName, * id: fleetPropertyId, * state: fleetPropertyState, * }); * ``` */ export declare function getFleetPropertiesOutput(args: GetFleetPropertiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetProperties. */ export interface GetFleetPropertiesOutputArgs { /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Fleet identifier. */ fleetId: pulumi.Input; /** * A filter to return only resources whose fleetProperty identifier matches the given identifier. */ id?: pulumi.Input; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getFleetProperties.d.ts.map