1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. Provision
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.FleetAppsManagement.Provision

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    This resource provides the Provision resource in Oracle Cloud Infrastructure Fleet Apps Management service.

    Creates a Provision.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testProvision = new oci.fleetappsmanagement.Provision("test_provision", {
        compartmentId: compartmentId,
        configCatalogItemId: testCatalogItem.id,
        fleetId: testFleet.id,
        packageCatalogItemId: testCatalogItem.id,
        tfVariableRegionId: testRegion.id,
        tfVariableTenancyId: testTenancy.id,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        displayName: provisionDisplayName,
        freeformTags: {
            "bar-key": "value",
        },
        provisionDescription: provisionProvisionDescription,
        tfVariableCompartmentId: testCompartment.id,
        tfVariableCurrentUserId: testUser.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_provision = oci.fleet_apps_management.Provision("test_provision",
        compartment_id=compartment_id,
        config_catalog_item_id=test_catalog_item["id"],
        fleet_id=test_fleet["id"],
        package_catalog_item_id=test_catalog_item["id"],
        tf_variable_region_id=test_region["id"],
        tf_variable_tenancy_id=test_tenancy["id"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        display_name=provision_display_name,
        freeform_tags={
            "bar-key": "value",
        },
        provision_description=provision_provision_description,
        tf_variable_compartment_id=test_compartment["id"],
        tf_variable_current_user_id=test_user["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/fleetappsmanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fleetappsmanagement.NewProvision(ctx, "test_provision", &fleetappsmanagement.ProvisionArgs{
    			CompartmentId:        pulumi.Any(compartmentId),
    			ConfigCatalogItemId:  pulumi.Any(testCatalogItem.Id),
    			FleetId:              pulumi.Any(testFleet.Id),
    			PackageCatalogItemId: pulumi.Any(testCatalogItem.Id),
    			TfVariableRegionId:   pulumi.Any(testRegion.Id),
    			TfVariableTenancyId:  pulumi.Any(testTenancy.Id),
    			DefinedTags: pulumi.StringMap{
    				"foo-namespace.bar-key": pulumi.String("value"),
    			},
    			DisplayName: pulumi.Any(provisionDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"bar-key": pulumi.String("value"),
    			},
    			ProvisionDescription:    pulumi.Any(provisionProvisionDescription),
    			TfVariableCompartmentId: pulumi.Any(testCompartment.Id),
    			TfVariableCurrentUserId: pulumi.Any(testUser.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testProvision = new Oci.FleetAppsManagement.Provision("test_provision", new()
        {
            CompartmentId = compartmentId,
            ConfigCatalogItemId = testCatalogItem.Id,
            FleetId = testFleet.Id,
            PackageCatalogItemId = testCatalogItem.Id,
            TfVariableRegionId = testRegion.Id,
            TfVariableTenancyId = testTenancy.Id,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            DisplayName = provisionDisplayName,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            ProvisionDescription = provisionProvisionDescription,
            TfVariableCompartmentId = testCompartment.Id,
            TfVariableCurrentUserId = testUser.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.FleetAppsManagement.Provision;
    import com.pulumi.oci.FleetAppsManagement.ProvisionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testProvision = new Provision("testProvision", ProvisionArgs.builder()
                .compartmentId(compartmentId)
                .configCatalogItemId(testCatalogItem.id())
                .fleetId(testFleet.id())
                .packageCatalogItemId(testCatalogItem.id())
                .tfVariableRegionId(testRegion.id())
                .tfVariableTenancyId(testTenancy.id())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .displayName(provisionDisplayName)
                .freeformTags(Map.of("bar-key", "value"))
                .provisionDescription(provisionProvisionDescription)
                .tfVariableCompartmentId(testCompartment.id())
                .tfVariableCurrentUserId(testUser.id())
                .build());
    
        }
    }
    
    resources:
      testProvision:
        type: oci:FleetAppsManagement:Provision
        name: test_provision
        properties:
          compartmentId: ${compartmentId}
          configCatalogItemId: ${testCatalogItem.id}
          fleetId: ${testFleet.id}
          packageCatalogItemId: ${testCatalogItem.id}
          tfVariableRegionId: ${testRegion.id}
          tfVariableTenancyId: ${testTenancy.id}
          definedTags:
            foo-namespace.bar-key: value
          displayName: ${provisionDisplayName}
          freeformTags:
            bar-key: value
          provisionDescription: ${provisionProvisionDescription}
          tfVariableCompartmentId: ${testCompartment.id}
          tfVariableCurrentUserId: ${testUser.id}
    

    Create Provision Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Provision(name: string, args: ProvisionArgs, opts?: CustomResourceOptions);
    @overload
    def Provision(resource_name: str,
                  args: ProvisionArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Provision(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  compartment_id: Optional[str] = None,
                  config_catalog_item_id: Optional[str] = None,
                  fleet_id: Optional[str] = None,
                  package_catalog_item_id: Optional[str] = None,
                  tf_variable_region_id: Optional[str] = None,
                  tf_variable_tenancy_id: Optional[str] = None,
                  defined_tags: Optional[Mapping[str, str]] = None,
                  display_name: Optional[str] = None,
                  freeform_tags: Optional[Mapping[str, str]] = None,
                  provision_description: Optional[str] = None,
                  tf_variable_compartment_id: Optional[str] = None,
                  tf_variable_current_user_id: Optional[str] = None)
    func NewProvision(ctx *Context, name string, args ProvisionArgs, opts ...ResourceOption) (*Provision, error)
    public Provision(string name, ProvisionArgs args, CustomResourceOptions? opts = null)
    public Provision(String name, ProvisionArgs args)
    public Provision(String name, ProvisionArgs args, CustomResourceOptions options)
    
    type: oci:FleetAppsManagement:Provision
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ProvisionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ProvisionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ProvisionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProvisionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProvisionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var provisionResource = new Oci.FleetAppsManagement.Provision("provisionResource", new()
    {
        CompartmentId = "string",
        ConfigCatalogItemId = "string",
        FleetId = "string",
        PackageCatalogItemId = "string",
        TfVariableRegionId = "string",
        TfVariableTenancyId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        ProvisionDescription = "string",
        TfVariableCompartmentId = "string",
        TfVariableCurrentUserId = "string",
    });
    
    example, err := fleetappsmanagement.NewProvision(ctx, "provisionResource", &fleetappsmanagement.ProvisionArgs{
    	CompartmentId:        pulumi.String("string"),
    	ConfigCatalogItemId:  pulumi.String("string"),
    	FleetId:              pulumi.String("string"),
    	PackageCatalogItemId: pulumi.String("string"),
    	TfVariableRegionId:   pulumi.String("string"),
    	TfVariableTenancyId:  pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	ProvisionDescription:    pulumi.String("string"),
    	TfVariableCompartmentId: pulumi.String("string"),
    	TfVariableCurrentUserId: pulumi.String("string"),
    })
    
    var provisionResource = new Provision("provisionResource", ProvisionArgs.builder()
        .compartmentId("string")
        .configCatalogItemId("string")
        .fleetId("string")
        .packageCatalogItemId("string")
        .tfVariableRegionId("string")
        .tfVariableTenancyId("string")
        .definedTags(Map.of("string", "string"))
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .provisionDescription("string")
        .tfVariableCompartmentId("string")
        .tfVariableCurrentUserId("string")
        .build());
    
    provision_resource = oci.fleetappsmanagement.Provision("provisionResource",
        compartment_id="string",
        config_catalog_item_id="string",
        fleet_id="string",
        package_catalog_item_id="string",
        tf_variable_region_id="string",
        tf_variable_tenancy_id="string",
        defined_tags={
            "string": "string",
        },
        display_name="string",
        freeform_tags={
            "string": "string",
        },
        provision_description="string",
        tf_variable_compartment_id="string",
        tf_variable_current_user_id="string")
    
    const provisionResource = new oci.fleetappsmanagement.Provision("provisionResource", {
        compartmentId: "string",
        configCatalogItemId: "string",
        fleetId: "string",
        packageCatalogItemId: "string",
        tfVariableRegionId: "string",
        tfVariableTenancyId: "string",
        definedTags: {
            string: "string",
        },
        displayName: "string",
        freeformTags: {
            string: "string",
        },
        provisionDescription: "string",
        tfVariableCompartmentId: "string",
        tfVariableCurrentUserId: "string",
    });
    
    type: oci:FleetAppsManagement:Provision
    properties:
        compartmentId: string
        configCatalogItemId: string
        definedTags:
            string: string
        displayName: string
        fleetId: string
        freeformTags:
            string: string
        packageCatalogItemId: string
        provisionDescription: string
        tfVariableCompartmentId: string
        tfVariableCurrentUserId: string
        tfVariableRegionId: string
        tfVariableTenancyId: string
    

    Provision Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Provision resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    ConfigCatalogItemId string
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    FleetId string
    The OCID of the Fleet.
    PackageCatalogItemId string
    The OCID of the Catalog Item.
    TfVariableRegionId string
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableTenancyId string

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ProvisionDescription string
    (Updatable) A description of the provision.
    TfVariableCompartmentId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableCurrentUserId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    ConfigCatalogItemId string
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    FleetId string
    The OCID of the Fleet.
    PackageCatalogItemId string
    The OCID of the Catalog Item.
    TfVariableRegionId string
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableTenancyId string

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ProvisionDescription string
    (Updatable) A description of the provision.
    TfVariableCompartmentId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableCurrentUserId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    compartmentId String
    (Updatable) The OCID of the compartment to create the FamProvision in.
    configCatalogItemId String
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    fleetId String
    The OCID of the Fleet.
    packageCatalogItemId String
    The OCID of the Catalog Item.
    tfVariableRegionId String
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableTenancyId String

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    provisionDescription String
    (Updatable) A description of the provision.
    tfVariableCompartmentId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableCurrentUserId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    compartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    configCatalogItemId string
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    fleetId string
    The OCID of the Fleet.
    packageCatalogItemId string
    The OCID of the Catalog Item.
    tfVariableRegionId string
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableTenancyId string

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    provisionDescription string
    (Updatable) A description of the provision.
    tfVariableCompartmentId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableCurrentUserId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    compartment_id str
    (Updatable) The OCID of the compartment to create the FamProvision in.
    config_catalog_item_id str
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    fleet_id str
    The OCID of the Fleet.
    package_catalog_item_id str
    The OCID of the Catalog Item.
    tf_variable_region_id str
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tf_variable_tenancy_id str

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    provision_description str
    (Updatable) A description of the provision.
    tf_variable_compartment_id str
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tf_variable_current_user_id str
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    compartmentId String
    (Updatable) The OCID of the compartment to create the FamProvision in.
    configCatalogItemId String
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    fleetId String
    The OCID of the Fleet.
    packageCatalogItemId String
    The OCID of the Catalog Item.
    tfVariableRegionId String
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableTenancyId String

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    provisionDescription String
    (Updatable) A description of the provision.
    tfVariableCompartmentId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableCurrentUserId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Provision resource produces the following output properties:

    ConfigCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    ConfigCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    ConfigCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    DeployedResources List<ProvisionDeployedResource>
    The deployed resources and their summary
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails 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.
    PackageCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    PackageCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    PackageCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    RmsApplyJobId string
    The OCID of the RMS APPLY Job.
    StackId string
    The OCID of the RMS Stack.
    State string
    The current state of the FamProvision.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TfOutputs List<ProvisionTfOutput>
    Outputs from the pulumi up job
    TimeCreated string
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    ConfigCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    ConfigCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    ConfigCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    DeployedResources []ProvisionDeployedResource
    The deployed resources and their summary
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails 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.
    PackageCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    PackageCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    PackageCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    RmsApplyJobId string
    The OCID of the RMS APPLY Job.
    StackId string
    The OCID of the RMS Stack.
    State string
    The current state of the FamProvision.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TfOutputs []ProvisionTfOutput
    Outputs from the pulumi up job
    TimeCreated string
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    configCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    configCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    configCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    deployedResources List<ProvisionDeployedResource>
    The deployed resources and their summary
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails 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.
    packageCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    packageCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    packageCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    rmsApplyJobId String
    The OCID of the RMS APPLY Job.
    stackId String
    The OCID of the RMS Stack.
    state String
    The current state of the FamProvision.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tfOutputs List<ProvisionTfOutput>
    Outputs from the pulumi up job
    timeCreated String
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    configCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    configCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    configCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    deployedResources ProvisionDeployedResource[]
    The deployed resources and their summary
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails 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.
    packageCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    packageCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    packageCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    rmsApplyJobId string
    The OCID of the RMS APPLY Job.
    stackId string
    The OCID of the RMS Stack.
    state string
    The current state of the FamProvision.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tfOutputs ProvisionTfOutput[]
    Outputs from the pulumi up job
    timeCreated string
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    config_catalog_item_display_name str
    A display Name of the Catalog Item in the Catalog.
    config_catalog_item_listing_id str
    A listing ID of the Catalog Item in the Catalog.
    config_catalog_item_listing_version str
    A listing version of the Catalog Item in the Catalog.
    deployed_resources Sequence[ProvisionDeployedResource]
    The deployed resources and their summary
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    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.
    package_catalog_item_display_name str
    A display Name of the Catalog Item in the Catalog.
    package_catalog_item_listing_id str
    A listing ID of the Catalog Item in the Catalog.
    package_catalog_item_listing_version str
    A listing version of the Catalog Item in the Catalog.
    rms_apply_job_id str
    The OCID of the RMS APPLY Job.
    stack_id str
    The OCID of the RMS Stack.
    state str
    The current state of the FamProvision.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tf_outputs Sequence[ProvisionTfOutput]
    Outputs from the pulumi up job
    time_created str
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    configCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    configCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    configCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    deployedResources List<Property Map>
    The deployed resources and their summary
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails 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.
    packageCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    packageCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    packageCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    rmsApplyJobId String
    The OCID of the RMS APPLY Job.
    stackId String
    The OCID of the RMS Stack.
    state String
    The current state of the FamProvision.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tfOutputs List<Property Map>
    Outputs from the pulumi up job
    timeCreated String
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Look up Existing Provision Resource

    Get an existing Provision resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ProvisionState, opts?: CustomResourceOptions): Provision
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            config_catalog_item_display_name: Optional[str] = None,
            config_catalog_item_id: Optional[str] = None,
            config_catalog_item_listing_id: Optional[str] = None,
            config_catalog_item_listing_version: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            deployed_resources: Optional[Sequence[ProvisionDeployedResourceArgs]] = None,
            display_name: Optional[str] = None,
            fleet_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            lifecycle_details: Optional[str] = None,
            package_catalog_item_display_name: Optional[str] = None,
            package_catalog_item_id: Optional[str] = None,
            package_catalog_item_listing_id: Optional[str] = None,
            package_catalog_item_listing_version: Optional[str] = None,
            provision_description: Optional[str] = None,
            rms_apply_job_id: Optional[str] = None,
            stack_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            tf_outputs: Optional[Sequence[ProvisionTfOutputArgs]] = None,
            tf_variable_compartment_id: Optional[str] = None,
            tf_variable_current_user_id: Optional[str] = None,
            tf_variable_region_id: Optional[str] = None,
            tf_variable_tenancy_id: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> Provision
    func GetProvision(ctx *Context, name string, id IDInput, state *ProvisionState, opts ...ResourceOption) (*Provision, error)
    public static Provision Get(string name, Input<string> id, ProvisionState? state, CustomResourceOptions? opts = null)
    public static Provision get(String name, Output<String> id, ProvisionState state, CustomResourceOptions options)
    resources:  _:    type: oci:FleetAppsManagement:Provision    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    ConfigCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    ConfigCatalogItemId string
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    ConfigCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    ConfigCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DeployedResources List<ProvisionDeployedResource>
    The deployed resources and their summary
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FleetId string
    The OCID of the Fleet.
    FreeformTags Dictionary<string, string>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LifecycleDetails 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.
    PackageCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    PackageCatalogItemId string
    The OCID of the Catalog Item.
    PackageCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    PackageCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    ProvisionDescription string
    (Updatable) A description of the provision.
    RmsApplyJobId string
    The OCID of the RMS APPLY Job.
    StackId string
    The OCID of the RMS Stack.
    State string
    The current state of the FamProvision.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TfOutputs List<ProvisionTfOutput>
    Outputs from the pulumi up job
    TfVariableCompartmentId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableCurrentUserId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableRegionId string
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableTenancyId string

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    TimeCreated string
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    CompartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    ConfigCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    ConfigCatalogItemId string
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    ConfigCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    ConfigCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DeployedResources []ProvisionDeployedResourceArgs
    The deployed resources and their summary
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FleetId string
    The OCID of the Fleet.
    FreeformTags map[string]string
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LifecycleDetails 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.
    PackageCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    PackageCatalogItemId string
    The OCID of the Catalog Item.
    PackageCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    PackageCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    ProvisionDescription string
    (Updatable) A description of the provision.
    RmsApplyJobId string
    The OCID of the RMS APPLY Job.
    StackId string
    The OCID of the RMS Stack.
    State string
    The current state of the FamProvision.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TfOutputs []ProvisionTfOutputArgs
    Outputs from the pulumi up job
    TfVariableCompartmentId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableCurrentUserId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableRegionId string
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    TfVariableTenancyId string

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    TimeCreated string
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    (Updatable) The OCID of the compartment to create the FamProvision in.
    configCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    configCatalogItemId String
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    configCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    configCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployedResources List<ProvisionDeployedResource>
    The deployed resources and their summary
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fleetId String
    The OCID of the Fleet.
    freeformTags Map<String,String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycleDetails 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.
    packageCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    packageCatalogItemId String
    The OCID of the Catalog Item.
    packageCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    packageCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    provisionDescription String
    (Updatable) A description of the provision.
    rmsApplyJobId String
    The OCID of the RMS APPLY Job.
    stackId String
    The OCID of the RMS Stack.
    state String
    The current state of the FamProvision.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tfOutputs List<ProvisionTfOutput>
    Outputs from the pulumi up job
    tfVariableCompartmentId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableCurrentUserId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableRegionId String
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableTenancyId String

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    timeCreated String
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    configCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    configCatalogItemId string
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    configCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    configCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployedResources ProvisionDeployedResource[]
    The deployed resources and their summary
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fleetId string
    The OCID of the Fleet.
    freeformTags {[key: string]: string}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycleDetails 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.
    packageCatalogItemDisplayName string
    A display Name of the Catalog Item in the Catalog.
    packageCatalogItemId string
    The OCID of the Catalog Item.
    packageCatalogItemListingId string
    A listing ID of the Catalog Item in the Catalog.
    packageCatalogItemListingVersion string
    A listing version of the Catalog Item in the Catalog.
    provisionDescription string
    (Updatable) A description of the provision.
    rmsApplyJobId string
    The OCID of the RMS APPLY Job.
    stackId string
    The OCID of the RMS Stack.
    state string
    The current state of the FamProvision.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tfOutputs ProvisionTfOutput[]
    Outputs from the pulumi up job
    tfVariableCompartmentId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableCurrentUserId string
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableRegionId string
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableTenancyId string

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    timeCreated string
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartment_id str
    (Updatable) The OCID of the compartment to create the FamProvision in.
    config_catalog_item_display_name str
    A display Name of the Catalog Item in the Catalog.
    config_catalog_item_id str
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    config_catalog_item_listing_id str
    A listing ID of the Catalog Item in the Catalog.
    config_catalog_item_listing_version str
    A listing version of the Catalog Item in the Catalog.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployed_resources Sequence[ProvisionDeployedResourceArgs]
    The deployed resources and their summary
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fleet_id str
    The OCID of the Fleet.
    freeform_tags Mapping[str, str]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycle_details str
    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.
    package_catalog_item_display_name str
    A display Name of the Catalog Item in the Catalog.
    package_catalog_item_id str
    The OCID of the Catalog Item.
    package_catalog_item_listing_id str
    A listing ID of the Catalog Item in the Catalog.
    package_catalog_item_listing_version str
    A listing version of the Catalog Item in the Catalog.
    provision_description str
    (Updatable) A description of the provision.
    rms_apply_job_id str
    The OCID of the RMS APPLY Job.
    stack_id str
    The OCID of the RMS Stack.
    state str
    The current state of the FamProvision.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tf_outputs Sequence[ProvisionTfOutputArgs]
    Outputs from the pulumi up job
    tf_variable_compartment_id str
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tf_variable_current_user_id str
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tf_variable_region_id str
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tf_variable_tenancy_id str

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    time_created str
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    (Updatable) The OCID of the compartment to create the FamProvision in.
    configCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    configCatalogItemId String
    A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
    configCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    configCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployedResources List<Property Map>
    The deployed resources and their summary
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fleetId String
    The OCID of the Fleet.
    freeformTags Map<String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    lifecycleDetails 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.
    packageCatalogItemDisplayName String
    A display Name of the Catalog Item in the Catalog.
    packageCatalogItemId String
    The OCID of the Catalog Item.
    packageCatalogItemListingId String
    A listing ID of the Catalog Item in the Catalog.
    packageCatalogItemListingVersion String
    A listing version of the Catalog Item in the Catalog.
    provisionDescription String
    (Updatable) A description of the provision.
    rmsApplyJobId String
    The OCID of the RMS APPLY Job.
    stackId String
    The OCID of the RMS Stack.
    state String
    The current state of the FamProvision.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    tfOutputs List<Property Map>
    Outputs from the pulumi up job
    tfVariableCompartmentId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableCurrentUserId String
    An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableRegionId String
    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
    tfVariableTenancyId String

    A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.

    ** 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

    timeCreated String
    The date and time the FamProvision was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the FamProvision was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Supporting Types

    ProvisionDeployedResource, ProvisionDeployedResourceArgs

    Mode string
    The mode of the resource. Example: "managed"
    ResourceInstanceLists List<ProvisionDeployedResourceResourceInstanceList>
    Collection of InstanceSummary
    ResourceName string
    The name of the resource
    ResourceProvider string
    The name of the Provider
    ResourceType string
    The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance
    Mode string
    The mode of the resource. Example: "managed"
    ResourceInstanceLists []ProvisionDeployedResourceResourceInstanceList
    Collection of InstanceSummary
    ResourceName string
    The name of the resource
    ResourceProvider string
    The name of the Provider
    ResourceType string
    The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance
    mode String
    The mode of the resource. Example: "managed"
    resourceInstanceLists List<ProvisionDeployedResourceResourceInstanceList>
    Collection of InstanceSummary
    resourceName String
    The name of the resource
    resourceProvider String
    The name of the Provider
    resourceType String
    The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance
    mode string
    The mode of the resource. Example: "managed"
    resourceInstanceLists ProvisionDeployedResourceResourceInstanceList[]
    Collection of InstanceSummary
    resourceName string
    The name of the resource
    resourceProvider string
    The name of the Provider
    resourceType string
    The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance
    mode str
    The mode of the resource. Example: "managed"
    resource_instance_lists Sequence[ProvisionDeployedResourceResourceInstanceList]
    Collection of InstanceSummary
    resource_name str
    The name of the resource
    resource_provider str
    The name of the Provider
    resource_type str
    The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance
    mode String
    The mode of the resource. Example: "managed"
    resourceInstanceLists List<Property Map>
    Collection of InstanceSummary
    resourceName String
    The name of the resource
    resourceProvider String
    The name of the Provider
    resourceType String
    The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance

    ProvisionDeployedResourceResourceInstanceList, ProvisionDeployedResourceResourceInstanceListArgs

    CompartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    Id string
    The OCID of the FamProvision.
    State string
    The current state of the FamProvision.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    Id string
    The OCID of the FamProvision.
    State string
    The current state of the FamProvision.
    compartmentId String
    (Updatable) The OCID of the compartment to create the FamProvision in.
    id String
    The OCID of the FamProvision.
    state String
    The current state of the FamProvision.
    compartmentId string
    (Updatable) The OCID of the compartment to create the FamProvision in.
    id string
    The OCID of the FamProvision.
    state string
    The current state of the FamProvision.
    compartment_id str
    (Updatable) The OCID of the compartment to create the FamProvision in.
    id str
    The OCID of the FamProvision.
    state str
    The current state of the FamProvision.
    compartmentId String
    (Updatable) The OCID of the compartment to create the FamProvision in.
    id String
    The OCID of the FamProvision.
    state String
    The current state of the FamProvision.

    ProvisionTfOutput, ProvisionTfOutputArgs

    IsSensitive bool
    The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)
    OutputDescription string
    The output description
    OutputName string
    The output name
    OutputType string
    The output type
    OutputValue string
    The output value
    IsSensitive bool
    The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)
    OutputDescription string
    The output description
    OutputName string
    The output name
    OutputType string
    The output type
    OutputValue string
    The output value
    isSensitive Boolean
    The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)
    outputDescription String
    The output description
    outputName String
    The output name
    outputType String
    The output type
    outputValue String
    The output value
    isSensitive boolean
    The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)
    outputDescription string
    The output description
    outputName string
    The output name
    outputType string
    The output type
    outputValue string
    The output value
    is_sensitive bool
    The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)
    output_description str
    The output description
    output_name str
    The output name
    output_type str
    The output type
    output_value str
    The output value
    isSensitive Boolean
    The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)
    outputDescription String
    The output description
    outputName String
    The output name
    outputType String
    The output type
    outputValue String
    The output value

    Import

    Provisions can be imported using the id, e.g.

    $ pulumi import oci:FleetAppsManagement/provision:Provision test_provision "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi