import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/fleet-management/latest/FleetProperty * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/fleet_apps_management * * Add an existing global property to a fleet in Fleet Application Management. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProperty = new oci.fleetappsmanagement.FleetProperty("test_fleet_property", { * fleetId: testFleet.id, * propertyId: testProperty.id, * value: fleetPropertyValue, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class FleetProperty extends pulumi.CustomResource { /** * Get an existing FleetProperty resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: FleetPropertyState, opts?: pulumi.CustomResourceOptions): FleetProperty; /** * Returns true if the given object is an instance of FleetProperty. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FleetProperty; /** * Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE'). */ readonly allowedValues: pulumi.Output; /** * Compartment OCID */ readonly compartmentId: pulumi.Output; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName: pulumi.Output; /** * Unique Fleet identifier. */ readonly fleetId: pulumi.Output; /** * OCID referring to global level metadata property. */ readonly propertyId: pulumi.Output; /** * Text selection of the property. */ readonly selectionType: pulumi.Output; /** * The current state of the FleetProperty. */ readonly state: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The time this resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: pulumi.Output; /** * (Updatable) Value of the Property. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly value: pulumi.Output; /** * Format of the value. */ readonly valueType: pulumi.Output; /** * Create a FleetProperty resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FleetPropertyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FleetProperty resources. */ export interface FleetPropertyState { /** * Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE'). */ allowedValues?: pulumi.Input[] | undefined>; /** * Compartment OCID */ compartmentId?: pulumi.Input; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ displayName?: pulumi.Input; /** * Unique Fleet identifier. */ fleetId?: pulumi.Input; /** * OCID referring to global level metadata property. */ propertyId?: pulumi.Input; /** * Text selection of the property. */ selectionType?: pulumi.Input; /** * The current state of the FleetProperty. */ state?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The time this resource was created. An RFC3339 formatted datetime string. */ timeCreated?: pulumi.Input; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ timeUpdated?: pulumi.Input; /** * (Updatable) Value of the Property. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ value?: pulumi.Input; /** * Format of the value. */ valueType?: pulumi.Input; } /** * The set of arguments for constructing a FleetProperty resource. */ export interface FleetPropertyArgs { /** * Compartment OCID */ compartmentId: pulumi.Input; /** * Unique Fleet identifier. */ fleetId: pulumi.Input; /** * OCID referring to global level metadata property. */ propertyId: pulumi.Input; /** * (Updatable) Value of the Property. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ value: pulumi.Input; } //# sourceMappingURL=fleetProperty.d.ts.map