oci.FleetAppsManagement.Provision
Explore with Pulumi AI
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:
- Compartment
Id string - (Updatable) The OCID of the compartment to create the FamProvision in.
- Config
Catalog stringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- Fleet
Id string - The OCID of the Fleet.
- Package
Catalog stringItem Id - The OCID of the Catalog Item.
- Tf
Variable stringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringTenancy Id 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
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Provision
Description string - (Updatable) A description of the provision.
- Tf
Variable stringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the FamProvision in.
- Config
Catalog stringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- Fleet
Id string - The OCID of the Fleet.
- Package
Catalog stringItem Id - The OCID of the Catalog Item.
- Tf
Variable stringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringTenancy Id 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
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Provision
Description string - (Updatable) A description of the provision.
- Tf
Variable stringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- compartment
Id String - (Updatable) The OCID of the compartment to create the FamProvision in.
- config
Catalog StringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- fleet
Id String - The OCID of the Fleet.
- package
Catalog StringItem Id - The OCID of the Catalog Item.
- tf
Variable StringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringTenancy Id 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
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- provision
Description String - (Updatable) A description of the provision.
- tf
Variable StringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- compartment
Id string - (Updatable) The OCID of the compartment to create the FamProvision in.
- config
Catalog stringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- fleet
Id string - The OCID of the Fleet.
- package
Catalog stringItem Id - The OCID of the Catalog Item.
- tf
Variable stringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable stringTenancy Id 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
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"}
- provision
Description string - (Updatable) A description of the provision.
- tf
Variable stringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable stringCurrent User Id - 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_ stritem_ id - 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_ stritem_ id - The OCID of the Catalog Item.
- tf_
variable_ strregion_ id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf_
variable_ strtenancy_ id 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
- 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.
- 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_ strcompartment_ id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf_
variable_ strcurrent_ user_ id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- compartment
Id String - (Updatable) The OCID of the compartment to create the FamProvision in.
- config
Catalog StringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- fleet
Id String - The OCID of the Fleet.
- package
Catalog StringItem Id - The OCID of the Catalog Item.
- tf
Variable StringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringTenancy Id 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
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- provision
Description String - (Updatable) A description of the provision.
- tf
Variable StringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringCurrent User Id - 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:
- Config
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Config
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Config
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Deployed
Resources List<ProvisionDeployed Resource> - The deployed resources and their summary
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- Package
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Package
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Package
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Rms
Apply stringJob Id - The OCID of the RMS APPLY Job.
- Stack
Id string - The OCID of the RMS Stack.
- State string
- The current state of the FamProvision.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Tf
Outputs List<ProvisionTf Output> - Outputs from the pulumi up job
- Time
Created string - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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 stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Config
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Config
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Deployed
Resources []ProvisionDeployed Resource - The deployed resources and their summary
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- Package
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Package
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Package
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Rms
Apply stringJob Id - The OCID of the RMS APPLY Job.
- Stack
Id string - The OCID of the RMS Stack.
- State string
- The current state of the FamProvision.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Tf
Outputs []ProvisionTf Output - Outputs from the pulumi up job
- Time
Created string - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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 StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- config
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- config
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- deployed
Resources List<ProvisionDeployed Resource> - The deployed resources and their summary
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- package
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- package
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- package
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- rms
Apply StringJob Id - The OCID of the RMS APPLY Job.
- stack
Id String - The OCID of the RMS Stack.
- state String
- The current state of the FamProvision.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tf
Outputs List<ProvisionTf Output> - Outputs from the pulumi up job
- time
Created String - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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 stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- config
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- config
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- deployed
Resources ProvisionDeployed Resource[] - The deployed resources and their summary
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- package
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- package
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- package
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- rms
Apply stringJob Id - The OCID of the RMS APPLY Job.
- stack
Id string - The OCID of the RMS Stack.
- state string
- The current state of the FamProvision.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tf
Outputs ProvisionTf Output[] - Outputs from the pulumi up job
- time
Created string - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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_ stritem_ display_ name - A display Name of the Catalog Item in the Catalog.
- config_
catalog_ stritem_ listing_ id - A listing ID of the Catalog Item in the Catalog.
- config_
catalog_ stritem_ listing_ version - A listing version of the Catalog Item in the Catalog.
- deployed_
resources Sequence[ProvisionDeployed Resource] - 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_ stritem_ display_ name - A display Name of the Catalog Item in the Catalog.
- package_
catalog_ stritem_ listing_ id - A listing ID of the Catalog Item in the Catalog.
- package_
catalog_ stritem_ listing_ version - A listing version of the Catalog Item in the Catalog.
- rms_
apply_ strjob_ id - The OCID of the RMS APPLY Job.
- stack_
id str - The OCID of the RMS Stack.
- state str
- The current state of the FamProvision.
- 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[ProvisionTf Output] - 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
- config
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- config
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- config
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- deployed
Resources List<Property Map> - The deployed resources and their summary
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- package
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- package
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- package
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- rms
Apply StringJob Id - The OCID of the RMS APPLY Job.
- stack
Id String - The OCID of the RMS Stack.
- state String
- The current state of the FamProvision.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tf
Outputs List<Property Map> - Outputs from the pulumi up job
- time
Created String - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the FamProvision in.
- Config
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Config
Catalog stringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- Config
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Config
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployed
Resources List<ProvisionDeployed Resource> - The deployed resources and their summary
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fleet
Id string - The OCID of the Fleet.
- 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"}
- Lifecycle
Details 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.
- Package
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Package
Catalog stringItem Id - The OCID of the Catalog Item.
- Package
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Package
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Provision
Description string - (Updatable) A description of the provision.
- Rms
Apply stringJob Id - The OCID of the RMS APPLY Job.
- Stack
Id string - The OCID of the RMS Stack.
- State string
- The current state of the FamProvision.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Tf
Outputs List<ProvisionTf Output> - Outputs from the pulumi up job
- Tf
Variable stringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringTenancy Id 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 string - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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 string - (Updatable) The OCID of the compartment to create the FamProvision in.
- Config
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Config
Catalog stringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- Config
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Config
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployed
Resources []ProvisionDeployed Resource Args - The deployed resources and their summary
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fleet
Id string - The OCID of the Fleet.
- 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"}
- Lifecycle
Details 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.
- Package
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- Package
Catalog stringItem Id - The OCID of the Catalog Item.
- Package
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- Package
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Provision
Description string - (Updatable) A description of the provision.
- Rms
Apply stringJob Id - The OCID of the RMS APPLY Job.
- Stack
Id string - The OCID of the RMS Stack.
- State string
- The current state of the FamProvision.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Tf
Outputs []ProvisionTf Output Args - Outputs from the pulumi up job
- Tf
Variable stringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- Tf
Variable stringTenancy Id 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 string - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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 String - (Updatable) The OCID of the compartment to create the FamProvision in.
- config
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- config
Catalog StringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- config
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- config
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployed
Resources List<ProvisionDeployed Resource> - The deployed resources and their summary
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fleet
Id String - The OCID of the Fleet.
- 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"}
- lifecycle
Details 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.
- package
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- package
Catalog StringItem Id - The OCID of the Catalog Item.
- package
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- package
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- provision
Description String - (Updatable) A description of the provision.
- rms
Apply StringJob Id - The OCID of the RMS APPLY Job.
- stack
Id String - The OCID of the RMS Stack.
- state String
- The current state of the FamProvision.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tf
Outputs List<ProvisionTf Output> - Outputs from the pulumi up job
- tf
Variable StringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringTenancy Id 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 String - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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 string - (Updatable) The OCID of the compartment to create the FamProvision in.
- config
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- config
Catalog stringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- config
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- config
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployed
Resources ProvisionDeployed Resource[] - The deployed resources and their summary
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fleet
Id string - The OCID of the Fleet.
- {[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"}
- lifecycle
Details 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.
- package
Catalog stringItem Display Name - A display Name of the Catalog Item in the Catalog.
- package
Catalog stringItem Id - The OCID of the Catalog Item.
- package
Catalog stringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- package
Catalog stringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- provision
Description string - (Updatable) A description of the provision.
- rms
Apply stringJob Id - The OCID of the RMS APPLY Job.
- stack
Id string - The OCID of the RMS Stack.
- state string
- The current state of the FamProvision.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tf
Outputs ProvisionTf Output[] - Outputs from the pulumi up job
- tf
Variable stringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable stringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable stringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable stringTenancy Id 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 string - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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_ stritem_ display_ name - A display Name of the Catalog Item in the Catalog.
- config_
catalog_ stritem_ id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- config_
catalog_ stritem_ listing_ id - A listing ID of the Catalog Item in the Catalog.
- config_
catalog_ stritem_ listing_ version - A listing version of the Catalog Item in the Catalog.
- 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[ProvisionDeployed Resource Args] - 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.
- 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_ stritem_ display_ name - A display Name of the Catalog Item in the Catalog.
- package_
catalog_ stritem_ id - The OCID of the Catalog Item.
- package_
catalog_ stritem_ listing_ id - A listing ID of the Catalog Item in the Catalog.
- package_
catalog_ stritem_ listing_ version - A listing version of the Catalog Item in the Catalog.
- provision_
description str - (Updatable) A description of the provision.
- rms_
apply_ strjob_ id - The OCID of the RMS APPLY Job.
- stack_
id str - The OCID of the RMS Stack.
- state str
- The current state of the FamProvision.
- 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[ProvisionTf Output Args] - Outputs from the pulumi up job
- tf_
variable_ strcompartment_ id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf_
variable_ strcurrent_ user_ id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf_
variable_ strregion_ id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf_
variable_ strtenancy_ id 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
- compartment
Id String - (Updatable) The OCID of the compartment to create the FamProvision in.
- config
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- config
Catalog StringItem Id - A OCID of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
- config
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- config
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployed
Resources List<Property Map> - The deployed resources and their summary
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fleet
Id String - The OCID of the Fleet.
- 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"}
- lifecycle
Details 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.
- package
Catalog StringItem Display Name - A display Name of the Catalog Item in the Catalog.
- package
Catalog StringItem Id - The OCID of the Catalog Item.
- package
Catalog StringItem Listing Id - A listing ID of the Catalog Item in the Catalog.
- package
Catalog StringItem Listing Version - A listing version of the Catalog Item in the Catalog.
- provision
Description String - (Updatable) A description of the provision.
- rms
Apply StringJob Id - The OCID of the RMS APPLY Job.
- stack
Id String - The OCID of the RMS Stack.
- state String
- The current state of the FamProvision.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tf
Outputs List<Property Map> - Outputs from the pulumi up job
- tf
Variable StringCompartment Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringCurrent User Id - An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringRegion Id - A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
- tf
Variable StringTenancy Id 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 String - The date and time the FamProvision was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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"
- Resource
Instance List<ProvisionLists Deployed Resource Resource Instance List> - Collection of InstanceSummary
- Resource
Name string - The name of the resource
- Resource
Provider string - The name of the Provider
- Resource
Type 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"
- Resource
Instance []ProvisionLists Deployed Resource Resource Instance List - Collection of InstanceSummary
- Resource
Name string - The name of the resource
- Resource
Provider string - The name of the Provider
- Resource
Type 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"
- resource
Instance List<ProvisionLists Deployed Resource Resource Instance List> - Collection of InstanceSummary
- resource
Name String - The name of the resource
- resource
Provider String - The name of the Provider
- resource
Type 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"
- resource
Instance ProvisionLists Deployed Resource Resource Instance List[] - Collection of InstanceSummary
- resource
Name string - The name of the resource
- resource
Provider string - The name of the Provider
- resource
Type 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_ Sequence[Provisionlists Deployed Resource Resource Instance List] - 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"
- resource
Instance List<Property Map>Lists - Collection of InstanceSummary
- resource
Name String - The name of the resource
- resource
Provider String - The name of the Provider
- resource
Type String - The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: oci.Core.Instance
ProvisionDeployedResourceResourceInstanceList, ProvisionDeployedResourceResourceInstanceListArgs
- Compartment
Id 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 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 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 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.
- compartment
Id 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
- 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 string - The output description
- Output
Name string - The output name
- Output
Type string - The output type
- Output
Value 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 string - The output description
- Output
Name string - The output name
- Output
Type string - The output type
- Output
Value string - The output value
- is
Sensitive Boolean - 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 String - The output description
- output
Name String - The output name
- output
Type String - The output type
- output
Value String - The output value
- is
Sensitive boolean - 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 string - The output description
- output
Name string - The output name
- output
Type string - The output type
- output
Value 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
- is
Sensitive Boolean - 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 String - The output description
- output
Name String - The output name
- output
Type String - The output type
- output
Value 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.