import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Provision resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets information about a Provision. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProvision = oci.fleetappsmanagement.getProvision({ * provisionId: testProvisionOciFleetAppsManagementProvision.id, * }); * ``` */ export declare function getProvision(args: GetProvisionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProvision. */ export interface GetProvisionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the FamProvision. */ provisionId: string; } /** * A collection of values returned by getProvision. */ export interface GetProvisionResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which instance is deployed. */ readonly compartmentId: string; /** * A display Name of the Catalog Item in the Catalog. */ readonly configCatalogItemDisplayName: string; /** * A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API. */ readonly configCatalogItemId: string; /** * A listing ID of the Catalog Item in the Catalog. */ readonly configCatalogItemListingId: string; /** * A listing version of the Catalog Item in the Catalog. */ readonly configCatalogItemListingVersion: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The deployed resources and their summary */ readonly deployedResources: outputs.FleetAppsManagement.GetProvisionDeployedResource[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ readonly fleetId: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the FamProvision. */ readonly id: string; /** * A message that describes the current state of the FamProvision in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * A display Name of the Catalog Item in the Catalog. */ readonly packageCatalogItemDisplayName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item. */ readonly packageCatalogItemId: string; /** * A listing ID of the Catalog Item in the Catalog. */ readonly packageCatalogItemListingId: string; /** * A listing version of the Catalog Item in the Catalog. */ readonly packageCatalogItemListingVersion: string; /** * A description of the provision. */ readonly provisionDescription: string; readonly provisionId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS APPLY Job. */ readonly rmsApplyJobId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS Stack. */ readonly stackId: string; /** * The current state of the FamProvision. */ 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; }; /** * Outputs from the pulumi up job */ readonly tfOutputs: outputs.FleetAppsManagement.GetProvisionTfOutput[]; /** * An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file. */ readonly tfVariableCompartmentId: string; /** * An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file. */ readonly tfVariableCurrentUserId: string; /** * A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file. */ readonly tfVariableRegionId: string; /** * A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file. */ readonly tfVariableTenancyId: string; /** * The date and time the FamProvision was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the FamProvision was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Provision resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets information about a Provision. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProvision = oci.fleetappsmanagement.getProvision({ * provisionId: testProvisionOciFleetAppsManagementProvision.id, * }); * ``` */ export declare function getProvisionOutput(args: GetProvisionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProvision. */ export interface GetProvisionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the FamProvision. */ provisionId: pulumi.Input; } //# sourceMappingURL=getProvision.d.ts.map