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 Properties in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of all the Properties in the specified compartment. * The query parameter `compartmentId` is required unless the query parameter `id` is specified. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProperties = oci.fleetappsmanagement.getProperties({ * compartmentId: compartmentId, * displayName: propertyDisplayName, * id: propertyId, * scope: propertyScope, * state: propertyState, * type: propertyType, * }); * ``` */ export declare function getProperties(args?: GetPropertiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProperties. */ export interface GetPropertiesArgs { /** * The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified. */ compartmentId?: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.FleetAppsManagement.GetPropertiesFilter[]; /** * Unique identifier or OCID for listing a single Property by id. Either compartmentId or id must be provided. */ id?: string; /** * A filter to return only resources their scope matches the given scope. */ scope?: string; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; /** * A filter to return properties whose type matches the given type. */ type?: string; } /** * A collection of values returned by getProperties. */ export interface GetPropertiesResult { /** * Compartment OCID */ readonly compartmentId?: string; /** * 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.GetPropertiesFilter[]; /** * The OCID of the resource. */ readonly id?: string; /** * The list of property_collection. */ readonly propertyCollections: outputs.FleetAppsManagement.GetPropertiesPropertyCollection[]; /** * The scope of the property. */ readonly scope?: string; /** * The current state of the Property. */ readonly state?: string; /** * The type of the property. */ readonly type?: string; } /** * This data source provides the list of Properties in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of all the Properties in the specified compartment. * The query parameter `compartmentId` is required unless the query parameter `id` is specified. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProperties = oci.fleetappsmanagement.getProperties({ * compartmentId: compartmentId, * displayName: propertyDisplayName, * id: propertyId, * scope: propertyScope, * state: propertyState, * type: propertyType, * }); * ``` */ export declare function getPropertiesOutput(args?: GetPropertiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProperties. */ export interface GetPropertiesOutputArgs { /** * The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique identifier or OCID for listing a single Property by id. Either compartmentId or id must be provided. */ id?: pulumi.Input; /** * A filter to return only resources their scope matches the given scope. */ scope?: pulumi.Input; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; /** * A filter to return properties whose type matches the given type. */ type?: pulumi.Input; } //# sourceMappingURL=getProperties.d.ts.map