import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a fleet property by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProperty = oci.fleetappsmanagement.getFleetProperty({ * fleetId: testFleet.id, * fleetPropertyId: testProperty.id, * }); * ``` */ export declare function getFleetProperty(args: GetFleetPropertyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetProperty. */ export interface GetFleetPropertyArgs { /** * Unique Fleet identifier. */ fleetId: string; /** * Unique fleetProperty identifier. */ fleetPropertyId: string; } /** * A collection of values returned by getFleetProperty. */ export interface GetFleetPropertyResult { /** * Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE'). */ readonly allowedValues: string[]; /** * 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 fleetId: string; readonly fleetPropertyId: string; /** * The unique id of the resource. */ readonly id: string; /** * OCID referring to global level metadata property. */ readonly propertyId: string; /** * Text selection of the property. */ readonly selectionType: string; /** * The current state of the FleetProperty. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time this resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * Value of the Property. */ readonly value: string; /** * Format of the value. */ readonly valueType: string; } /** * This data source provides details about a specific Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a fleet property by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProperty = oci.fleetappsmanagement.getFleetProperty({ * fleetId: testFleet.id, * fleetPropertyId: testProperty.id, * }); * ``` */ export declare function getFleetPropertyOutput(args: GetFleetPropertyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetProperty. */ export interface GetFleetPropertyOutputArgs { /** * Unique Fleet identifier. */ fleetId: pulumi.Input; /** * Unique fleetProperty identifier. */ fleetPropertyId: pulumi.Input; } //# sourceMappingURL=getFleetProperty.d.ts.map