1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FusionApps
  5. FusionEnvironmentFamily
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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",
    },
});
Copy
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",
    })
Copy
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
	})
}
Copy
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" },
        },
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. FusionEnvironmentFamilyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. FusionEnvironmentFamilyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FusionEnvironmentFamilyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
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());
Copy
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={
        "concurrent_maintenance": "string",
        "is_monthly_patching_enabled": False,
        "quarterly_upgrade_begin_times": "string",
    },
    freeform_tags={
        "string": "string",
    },
    time_updated="string")
Copy
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",
});
Copy
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
Copy

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

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

The FusionEnvironmentFamily resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment where the environment family is located.
DisplayName This property is required. string
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
SubscriptionIds This property is required. 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

DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FamilyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicy
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
TimeUpdated string
CompartmentId This property is required. string
(Updatable) The OCID of the compartment where the environment family is located.
DisplayName This property is required. string
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
SubscriptionIds This property is required. []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

DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FamilyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
TimeUpdated string
compartmentId This property is required. String
(Updatable) The OCID of the compartment where the environment family is located.
displayName This property is required. String
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
subscriptionIds This property is required. 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

definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
familyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicy
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
timeUpdated String
compartmentId This property is required. string
(Updatable) The OCID of the compartment where the environment family is located.
displayName This property is required. string
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
subscriptionIds This property is required. 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

definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
familyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicy
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
timeUpdated string
compartment_id This property is required. str
(Updatable) The OCID of the compartment where the environment family is located.
display_name This property is required. 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 This property is required. 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

defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
family_maintenance_policy fusionapps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
time_updated str
compartmentId This property is required. String
(Updatable) The OCID of the compartment where the environment family is located.
displayName This property is required. String
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
subscriptionIds This property is required. 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

definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
familyMaintenancePolicy Property Map
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
timeUpdated 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.
IsSubscriptionUpdateNeeded bool
When set to True, a subscription update is required for the environment family.
LifecycleDetails 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.
SystemName string
Environment Specific Guid/ System Name
TimeCreated string
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
Id string
The provider-assigned unique ID for this managed resource.
IsSubscriptionUpdateNeeded bool
When set to True, a subscription update is required for the environment family.
LifecycleDetails 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.
SystemName string
Environment Specific Guid/ System Name
TimeCreated string
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
id String
The provider-assigned unique ID for this managed resource.
isSubscriptionUpdateNeeded Boolean
When set to True, a subscription update is required for the environment family.
lifecycleDetails 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.
systemName String
Environment Specific Guid/ System Name
timeCreated String
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
id string
The provider-assigned unique ID for this managed resource.
isSubscriptionUpdateNeeded boolean
When set to True, a subscription update is required for the environment family.
lifecycleDetails 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.
systemName string
Environment Specific Guid/ System Name
timeCreated 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_update_needed bool
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.
isSubscriptionUpdateNeeded Boolean
When set to True, a subscription update is required for the environment family.
lifecycleDetails 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.
systemName String
Environment Specific Guid/ System Name
timeCreated 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)
resources:  _:    type: oci:FusionApps:FusionEnvironmentFamily    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string
(Updatable) The OCID of the compartment where the environment family is located.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
FamilyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicy
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
IsSubscriptionUpdateNeeded bool
When set to True, a subscription update is required for the environment family.
LifecycleDetails 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.
SubscriptionIds 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

SystemName string
Environment Specific Guid/ System Name
TimeCreated string
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
TimeUpdated string
CompartmentId string
(Updatable) The OCID of the compartment where the environment family is located.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
FamilyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
IsSubscriptionUpdateNeeded bool
When set to True, a subscription update is required for the environment family.
LifecycleDetails 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.
SubscriptionIds []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

SystemName string
Environment Specific Guid/ System Name
TimeCreated string
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
TimeUpdated string
compartmentId String
(Updatable) The OCID of the compartment where the environment family is located.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
familyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicy
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isSubscriptionUpdateNeeded Boolean
When set to True, a subscription update is required for the environment family.
lifecycleDetails 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.
subscriptionIds 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

systemName String
Environment Specific Guid/ System Name
timeCreated String
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
timeUpdated String
compartmentId string
(Updatable) The OCID of the compartment where the environment family is located.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
familyMaintenancePolicy FusionEnvironmentFamilyFamilyMaintenancePolicy
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isSubscriptionUpdateNeeded boolean
When set to True, a subscription update is required for the environment family.
lifecycleDetails 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.
subscriptionIds 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

systemName string
Environment Specific Guid/ System Name
timeCreated string
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
timeUpdated string
compartment_id str
(Updatable) The OCID of the compartment where the environment family is located.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name str
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
family_maintenance_policy fusionapps.FusionEnvironmentFamilyFamilyMaintenancePolicyArgs
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
is_subscription_update_needed bool
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
compartmentId String
(Updatable) The OCID of the compartment where the environment family is located.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
(Updatable) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.
familyMaintenancePolicy Property Map
(Updatable) The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
isSubscriptionUpdateNeeded Boolean
When set to True, a subscription update is required for the environment family.
lifecycleDetails 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.
subscriptionIds 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

systemName String
Environment Specific Guid/ System Name
timeCreated String
The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.
timeUpdated String

Supporting Types

FusionEnvironmentFamilyFamilyMaintenancePolicy
, FusionEnvironmentFamilyFamilyMaintenancePolicyArgs

ConcurrentMaintenance 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.
IsMonthlyPatchingEnabled bool
(Updatable) When True, monthly patching is enabled for the environment family.
QuarterlyUpgradeBeginTimes Changes to this property will trigger replacement. string
The quarterly maintenance month group schedule of the Fusion environment family.
ConcurrentMaintenance 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.
IsMonthlyPatchingEnabled bool
(Updatable) When True, monthly patching is enabled for the environment family.
QuarterlyUpgradeBeginTimes Changes to this property will trigger replacement. string
The quarterly maintenance month group schedule of the Fusion environment family.
concurrentMaintenance 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.
isMonthlyPatchingEnabled Boolean
(Updatable) When True, monthly patching is enabled for the environment family.
quarterlyUpgradeBeginTimes Changes to this property will trigger replacement. String
The quarterly maintenance month group schedule of the Fusion environment family.
concurrentMaintenance 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.
isMonthlyPatchingEnabled boolean
(Updatable) When True, monthly patching is enabled for the environment family.
quarterlyUpgradeBeginTimes Changes to this property will trigger replacement. string
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_patching_enabled bool
(Updatable) When True, monthly patching is enabled for the environment family.
quarterly_upgrade_begin_times Changes to this property will trigger replacement. str
The quarterly maintenance month group schedule of the Fusion environment family.
concurrentMaintenance 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.
isMonthlyPatchingEnabled Boolean
(Updatable) When True, monthly patching is enabled for the environment family.
quarterlyUpgradeBeginTimes Changes to this property will trigger replacement. String
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"
Copy

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.