oci.FusionApps.FusionEnvironmentFamily
Explore with Pulumi AI
This resource provides the Fusion Environment Family resource in Oracle Cloud Infrastructure Fusion Apps service.
Creates a new FusionEnvironmentFamily.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFusionEnvironmentFamily = new oci.fusionapps.FusionEnvironmentFamily("test_fusion_environment_family", {
compartmentId: compartmentId,
displayName: fusionEnvironmentFamilyDisplayName,
subscriptionIds: fusionEnvironmentFamilySubscriptionIds,
definedTags: {
"foo-namespace.bar-key": "value",
},
familyMaintenancePolicy: {
concurrentMaintenance: fusionEnvironmentFamilyFamilyMaintenancePolicyConcurrentMaintenance,
isMonthlyPatchingEnabled: fusionEnvironmentFamilyFamilyMaintenancePolicyIsMonthlyPatchingEnabled,
quarterlyUpgradeBeginTimes: fusionEnvironmentFamilyFamilyMaintenancePolicyQuarterlyUpgradeBeginTimes,
},
freeformTags: {
"bar-key": "value",
},
});
import pulumi
import pulumi_oci as oci
test_fusion_environment_family = oci.fusion_apps.FusionEnvironmentFamily("test_fusion_environment_family",
compartment_id=compartment_id,
display_name=fusion_environment_family_display_name,
subscription_ids=fusion_environment_family_subscription_ids,
defined_tags={
"foo-namespace.bar-key": "value",
},
family_maintenance_policy={
"concurrent_maintenance": fusion_environment_family_family_maintenance_policy_concurrent_maintenance,
"is_monthly_patching_enabled": fusion_environment_family_family_maintenance_policy_is_monthly_patching_enabled,
"quarterly_upgrade_begin_times": fusion_environment_family_family_maintenance_policy_quarterly_upgrade_begin_times,
},
freeform_tags={
"bar-key": "value",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/FusionApps"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := FusionApps.NewFusionEnvironmentFamily(ctx, "test_fusion_environment_family", &FusionApps.FusionEnvironmentFamilyArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(fusionEnvironmentFamilyDisplayName),
SubscriptionIds: pulumi.Any(fusionEnvironmentFamilySubscriptionIds),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
FamilyMaintenancePolicy: &fusionapps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs{
ConcurrentMaintenance: pulumi.Any(fusionEnvironmentFamilyFamilyMaintenancePolicyConcurrentMaintenance),
IsMonthlyPatchingEnabled: pulumi.Any(fusionEnvironmentFamilyFamilyMaintenancePolicyIsMonthlyPatchingEnabled),
QuarterlyUpgradeBeginTimes: pulumi.Any(fusionEnvironmentFamilyFamilyMaintenancePolicyQuarterlyUpgradeBeginTimes),
},
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
})
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 testFusionEnvironmentFamily = new Oci.FusionApps.FusionEnvironmentFamily("test_fusion_environment_family", new()
{
CompartmentId = compartmentId,
DisplayName = fusionEnvironmentFamilyDisplayName,
SubscriptionIds = fusionEnvironmentFamilySubscriptionIds,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FamilyMaintenancePolicy = new Oci.FusionApps.Inputs.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
{
ConcurrentMaintenance = fusionEnvironmentFamilyFamilyMaintenancePolicyConcurrentMaintenance,
IsMonthlyPatchingEnabled = fusionEnvironmentFamilyFamilyMaintenancePolicyIsMonthlyPatchingEnabled,
QuarterlyUpgradeBeginTimes = fusionEnvironmentFamilyFamilyMaintenancePolicyQuarterlyUpgradeBeginTimes,
},
FreeformTags =
{
{ "bar-key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FusionApps.FusionEnvironmentFamily;
import com.pulumi.oci.FusionApps.FusionEnvironmentFamilyArgs;
import com.pulumi.oci.FusionApps.inputs.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs;
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 testFusionEnvironmentFamily = new FusionEnvironmentFamily("testFusionEnvironmentFamily", FusionEnvironmentFamilyArgs.builder()
.compartmentId(compartmentId)
.displayName(fusionEnvironmentFamilyDisplayName)
.subscriptionIds(fusionEnvironmentFamilySubscriptionIds)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.familyMaintenancePolicy(FusionEnvironmentFamilyFamilyMaintenancePolicyArgs.builder()
.concurrentMaintenance(fusionEnvironmentFamilyFamilyMaintenancePolicyConcurrentMaintenance)
.isMonthlyPatchingEnabled(fusionEnvironmentFamilyFamilyMaintenancePolicyIsMonthlyPatchingEnabled)
.quarterlyUpgradeBeginTimes(fusionEnvironmentFamilyFamilyMaintenancePolicyQuarterlyUpgradeBeginTimes)
.build())
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
resources:
testFusionEnvironmentFamily:
type: oci:FusionApps:FusionEnvironmentFamily
name: test_fusion_environment_family
properties:
compartmentId: ${compartmentId}
displayName: ${fusionEnvironmentFamilyDisplayName}
subscriptionIds: ${fusionEnvironmentFamilySubscriptionIds}
definedTags:
foo-namespace.bar-key: value
familyMaintenancePolicy:
concurrentMaintenance: ${fusionEnvironmentFamilyFamilyMaintenancePolicyConcurrentMaintenance}
isMonthlyPatchingEnabled: ${fusionEnvironmentFamilyFamilyMaintenancePolicyIsMonthlyPatchingEnabled}
quarterlyUpgradeBeginTimes: ${fusionEnvironmentFamilyFamilyMaintenancePolicyQuarterlyUpgradeBeginTimes}
freeformTags:
bar-key: value
Create FusionEnvironmentFamily Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FusionEnvironmentFamily(name: string, args: FusionEnvironmentFamilyArgs, opts?: CustomResourceOptions);
@overload
def FusionEnvironmentFamily(resource_name: str,
args: FusionEnvironmentFamilyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FusionEnvironmentFamily(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
subscription_ids: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
family_maintenance_policy: Optional[_fusionapps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
time_updated: Optional[str] = None)
func NewFusionEnvironmentFamily(ctx *Context, name string, args FusionEnvironmentFamilyArgs, opts ...ResourceOption) (*FusionEnvironmentFamily, error)
public FusionEnvironmentFamily(string name, FusionEnvironmentFamilyArgs args, CustomResourceOptions? opts = null)
public FusionEnvironmentFamily(String name, FusionEnvironmentFamilyArgs args)
public FusionEnvironmentFamily(String name, FusionEnvironmentFamilyArgs args, CustomResourceOptions options)
type: oci:FusionApps:FusionEnvironmentFamily
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 FusionEnvironmentFamilyArgs
- 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 FusionEnvironmentFamilyArgs
- 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 FusionEnvironmentFamilyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FusionEnvironmentFamilyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FusionEnvironmentFamilyArgs
- 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 fusionEnvironmentFamilyResource = new Oci.FusionApps.FusionEnvironmentFamily("fusionEnvironmentFamilyResource", new()
{
CompartmentId = "string",
DisplayName = "string",
SubscriptionIds = new[]
{
"string",
},
DefinedTags =
{
{ "string", "string" },
},
FamilyMaintenancePolicy = new Oci.FusionApps.Inputs.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
{
ConcurrentMaintenance = "string",
IsMonthlyPatchingEnabled = false,
QuarterlyUpgradeBeginTimes = "string",
},
FreeformTags =
{
{ "string", "string" },
},
TimeUpdated = "string",
});
example, err := FusionApps.NewFusionEnvironmentFamily(ctx, "fusionEnvironmentFamilyResource", &FusionApps.FusionEnvironmentFamilyArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
SubscriptionIds: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FamilyMaintenancePolicy: &fusionapps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs{
ConcurrentMaintenance: pulumi.String("string"),
IsMonthlyPatchingEnabled: pulumi.Bool(false),
QuarterlyUpgradeBeginTimes: pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TimeUpdated: pulumi.String("string"),
})
var fusionEnvironmentFamilyResource = new FusionEnvironmentFamily("fusionEnvironmentFamilyResource", FusionEnvironmentFamilyArgs.builder()
.compartmentId("string")
.displayName("string")
.subscriptionIds("string")
.definedTags(Map.of("string", "string"))
.familyMaintenancePolicy(FusionEnvironmentFamilyFamilyMaintenancePolicyArgs.builder()
.concurrentMaintenance("string")
.isMonthlyPatchingEnabled(false)
.quarterlyUpgradeBeginTimes("string")
.build())
.freeformTags(Map.of("string", "string"))
.timeUpdated("string")
.build());
fusion_environment_family_resource = oci.fusion_apps.FusionEnvironmentFamily("fusionEnvironmentFamilyResource",
compartment_id="string",
display_name="string",
subscription_ids=["string"],
defined_tags={
"string": "string",
},
family_maintenance_policy=oci.fusion_apps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs(
concurrent_maintenance="string",
is_monthly_patching_enabled=False,
quarterly_upgrade_begin_times="string",
),
freeform_tags={
"string": "string",
},
time_updated="string")
const fusionEnvironmentFamilyResource = new oci.fusionapps.FusionEnvironmentFamily("fusionEnvironmentFamilyResource", {
compartmentId: "string",
displayName: "string",
subscriptionIds: ["string"],
definedTags: {
string: "string",
},
familyMaintenancePolicy: {
concurrentMaintenance: "string",
isMonthlyPatchingEnabled: false,
quarterlyUpgradeBeginTimes: "string",
},
freeformTags: {
string: "string",
},
timeUpdated: "string",
});
type: oci:FusionApps:FusionEnvironmentFamily
properties:
compartmentId: string
definedTags:
string: string
displayName: string
familyMaintenancePolicy:
concurrentMaintenance: string
isMonthlyPatchingEnabled: false
quarterlyUpgradeBeginTimes: string
freeformTags:
string: string
subscriptionIds:
- string
timeUpdated: string
FusionEnvironmentFamily Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FusionEnvironmentFamily resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment where the environment family is located.
- Display
Name string - (Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- Subscription
Ids List<string> (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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"}
- Family
Maintenance FusionPolicy Environment Family Family Maintenance Policy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- Time
Updated string
- Compartment
Id string - (Updatable) The OCID of the compartment where the environment family is located.
- Display
Name string - (Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- Subscription
Ids []string (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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"}
- Family
Maintenance FusionPolicy Environment Family Family Maintenance Policy Args - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- Time
Updated string
- compartment
Id String - (Updatable) The OCID of the compartment where the environment family is located.
- display
Name String - (Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- subscription
Ids List<String> (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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"}
- family
Maintenance FusionPolicy Environment Family Family Maintenance Policy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- time
Updated String
- compartment
Id string - (Updatable) The OCID of the compartment where the environment family is located.
- display
Name string - (Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- subscription
Ids string[] (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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"}
- family
Maintenance FusionPolicy Environment Family Family Maintenance Policy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- {[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"}
- time
Updated string
- compartment_
id str - (Updatable) The OCID of the compartment where the environment family is located.
- display_
name str - (Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- subscription_
ids Sequence[str] (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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"}
- family_
maintenance_ fusionapps.policy Fusion Environment Family Family Maintenance Policy Args - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- time_
updated str
- compartment
Id String - (Updatable) The OCID of the compartment where the environment family is located.
- display
Name String - (Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- subscription
Ids List<String> (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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"}
- family
Maintenance Property MapPolicy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- time
Updated String
Outputs
All input properties are implicitly available as output properties. Additionally, the FusionEnvironmentFamily resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Subscription boolUpdate Needed - When set to True, a subscription update is required for the environment family.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the FusionEnvironmentFamily.
- System
Name string - Environment Specific Guid/ System Name
- Time
Created string - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Subscription boolUpdate Needed - When set to True, a subscription update is required for the environment family.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the FusionEnvironmentFamily.
- System
Name string - Environment Specific Guid/ System Name
- Time
Created string - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Subscription BooleanUpdate Needed - When set to True, a subscription update is required for the environment family.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the FusionEnvironmentFamily.
- system
Name String - Environment Specific Guid/ System Name
- time
Created String - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Subscription booleanUpdate Needed - When set to True, a subscription update is required for the environment family.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state string
- The current state of the FusionEnvironmentFamily.
- system
Name string - Environment Specific Guid/ System Name
- time
Created string - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
subscription_ boolupdate_ needed - When set to True, a subscription update is required for the environment family.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state str
- The current state of the FusionEnvironmentFamily.
- system_
name str - Environment Specific Guid/ System Name
- time_
created str - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Subscription BooleanUpdate Needed - When set to True, a subscription update is required for the environment family.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the FusionEnvironmentFamily.
- system
Name String - Environment Specific Guid/ System Name
- time
Created String - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
Look up Existing FusionEnvironmentFamily Resource
Get an existing FusionEnvironmentFamily 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?: FusionEnvironmentFamilyState, opts?: CustomResourceOptions): FusionEnvironmentFamily
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
family_maintenance_policy: Optional[_fusionapps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_subscription_update_needed: Optional[bool] = None,
lifecycle_details: Optional[str] = None,
state: Optional[str] = None,
subscription_ids: Optional[Sequence[str]] = None,
system_name: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> FusionEnvironmentFamily
func GetFusionEnvironmentFamily(ctx *Context, name string, id IDInput, state *FusionEnvironmentFamilyState, opts ...ResourceOption) (*FusionEnvironmentFamily, error)
public static FusionEnvironmentFamily Get(string name, Input<string> id, FusionEnvironmentFamilyState? state, CustomResourceOptions? opts = null)
public static FusionEnvironmentFamily get(String name, Output<String> id, FusionEnvironmentFamilyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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 where the environment family is located.
- 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 friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- Family
Maintenance FusionPolicy Environment Family Family Maintenance Policy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- Is
Subscription boolUpdate Needed - When set to True, a subscription update is required for the environment family.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the FusionEnvironmentFamily.
- Subscription
Ids List<string> (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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
- System
Name string - Environment Specific Guid/ System Name
- Time
Created string - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- Time
Updated string
- Compartment
Id string - (Updatable) The OCID of the compartment where the environment family is located.
- 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 friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- Family
Maintenance FusionPolicy Environment Family Family Maintenance Policy Args - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- Is
Subscription boolUpdate Needed - When set to True, a subscription update is required for the environment family.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the FusionEnvironmentFamily.
- Subscription
Ids []string (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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
- System
Name string - Environment Specific Guid/ System Name
- Time
Created string - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- Time
Updated string
- compartment
Id String - (Updatable) The OCID of the compartment where the environment family is located.
- 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 friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- family
Maintenance FusionPolicy Environment Family Family Maintenance Policy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- is
Subscription BooleanUpdate Needed - When set to True, a subscription update is required for the environment family.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the FusionEnvironmentFamily.
- subscription
Ids List<String> (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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
- system
Name String - Environment Specific Guid/ System Name
- time
Created String - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- time
Updated String
- compartment
Id string - (Updatable) The OCID of the compartment where the environment family is located.
- {[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 friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- family
Maintenance FusionPolicy Environment Family Family Maintenance Policy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- {[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"}
- is
Subscription booleanUpdate Needed - When set to True, a subscription update is required for the environment family.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state string
- The current state of the FusionEnvironmentFamily.
- subscription
Ids string[] (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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
- system
Name string - Environment Specific Guid/ System Name
- time
Created string - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- time
Updated string
- compartment_
id str - (Updatable) The OCID of the compartment where the environment family is located.
- 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 friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- family_
maintenance_ fusionapps.policy Fusion Environment Family Family Maintenance Policy Args - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- is_
subscription_ boolupdate_ needed - When set to True, a subscription update is required for the environment family.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state str
- The current state of the FusionEnvironmentFamily.
- subscription_
ids Sequence[str] (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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
- system_
name str - Environment Specific Guid/ System Name
- time_
created str - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- time_
updated str
- compartment
Id String - (Updatable) The OCID of the compartment where the environment family is located.
- 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 friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
- family
Maintenance Property MapPolicy - (Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
- 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"}
- is
Subscription BooleanUpdate Needed - When set to True, a subscription update is required for the environment family.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the FusionEnvironmentFamily.
- subscription
Ids List<String> (Updatable) The list of the IDs of the applications subscriptions that are associated with the environment family.
** 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
- system
Name String - Environment Specific Guid/ System Name
- time
Created String - The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
- time
Updated String
Supporting Types
FusionEnvironmentFamilyFamilyMaintenancePolicy, FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
- Concurrent
Maintenance string - (Updatable) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.
- Is
Monthly boolPatching Enabled - (Updatable) When True, monthly patching is enabled for the environment family.
- Quarterly
Upgrade stringBegin Times - The quarterly maintenance month group schedule of the Fusion environment family.
- Concurrent
Maintenance string - (Updatable) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.
- Is
Monthly boolPatching Enabled - (Updatable) When True, monthly patching is enabled for the environment family.
- Quarterly
Upgrade stringBegin Times - The quarterly maintenance month group schedule of the Fusion environment family.
- concurrent
Maintenance String - (Updatable) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.
- is
Monthly BooleanPatching Enabled - (Updatable) When True, monthly patching is enabled for the environment family.
- quarterly
Upgrade StringBegin Times - The quarterly maintenance month group schedule of the Fusion environment family.
- concurrent
Maintenance string - (Updatable) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.
- is
Monthly booleanPatching Enabled - (Updatable) When True, monthly patching is enabled for the environment family.
- quarterly
Upgrade stringBegin Times - The quarterly maintenance month group schedule of the Fusion environment family.
- concurrent_
maintenance str - (Updatable) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.
- is_
monthly_ boolpatching_ enabled - (Updatable) When True, monthly patching is enabled for the environment family.
- quarterly_
upgrade_ strbegin_ times - The quarterly maintenance month group schedule of the Fusion environment family.
- concurrent
Maintenance String - (Updatable) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.
- is
Monthly BooleanPatching Enabled - (Updatable) When True, monthly patching is enabled for the environment family.
- quarterly
Upgrade StringBegin Times - The quarterly maintenance month group schedule of the Fusion environment family.
Import
FusionEnvironmentFamilies can be imported using the id
, e.g.
$ pulumi import oci:FusionApps/fusionEnvironmentFamily:FusionEnvironmentFamily test_fusion_environment_family "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.