1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FusionApps
  5. FusionEnvironmentServiceAttachment
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.FusionApps.FusionEnvironmentServiceAttachment

Explore with Pulumi AI

This resource provides the Fusion Environment Service Attachment resource in Oracle Cloud Infrastructure Fusion Apps service.

Attaches a service instance to the fusion pod.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testFusionEnvironmentServiceAttachment = new oci.fusionapps.FusionEnvironmentServiceAttachment("test_fusion_environment_service_attachment", {
    fusionEnvironmentId: testFusionEnvironment.id,
    serviceInstanceId: testInstance.id,
    serviceInstanceType: fusionEnvironmentServiceAttachmentServiceInstanceType,
});
Copy
import pulumi
import pulumi_oci as oci

test_fusion_environment_service_attachment = oci.fusion_apps.FusionEnvironmentServiceAttachment("test_fusion_environment_service_attachment",
    fusion_environment_id=test_fusion_environment["id"],
    service_instance_id=test_instance["id"],
    service_instance_type=fusion_environment_service_attachment_service_instance_type)
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.NewFusionEnvironmentServiceAttachment(ctx, "test_fusion_environment_service_attachment", &fusionapps.FusionEnvironmentServiceAttachmentArgs{
			FusionEnvironmentId: pulumi.Any(testFusionEnvironment.Id),
			ServiceInstanceId:   pulumi.Any(testInstance.Id),
			ServiceInstanceType: pulumi.Any(fusionEnvironmentServiceAttachmentServiceInstanceType),
		})
		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 testFusionEnvironmentServiceAttachment = new Oci.FusionApps.FusionEnvironmentServiceAttachment("test_fusion_environment_service_attachment", new()
    {
        FusionEnvironmentId = testFusionEnvironment.Id,
        ServiceInstanceId = testInstance.Id,
        ServiceInstanceType = fusionEnvironmentServiceAttachmentServiceInstanceType,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FusionApps.FusionEnvironmentServiceAttachment;
import com.pulumi.oci.FusionApps.FusionEnvironmentServiceAttachmentArgs;
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 testFusionEnvironmentServiceAttachment = new FusionEnvironmentServiceAttachment("testFusionEnvironmentServiceAttachment", FusionEnvironmentServiceAttachmentArgs.builder()
            .fusionEnvironmentId(testFusionEnvironment.id())
            .serviceInstanceId(testInstance.id())
            .serviceInstanceType(fusionEnvironmentServiceAttachmentServiceInstanceType)
            .build());

    }
}
Copy
resources:
  testFusionEnvironmentServiceAttachment:
    type: oci:FusionApps:FusionEnvironmentServiceAttachment
    name: test_fusion_environment_service_attachment
    properties:
      fusionEnvironmentId: ${testFusionEnvironment.id}
      serviceInstanceId: ${testInstance.id}
      serviceInstanceType: ${fusionEnvironmentServiceAttachmentServiceInstanceType}
Copy

Create FusionEnvironmentServiceAttachment Resource

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

Constructor syntax

new FusionEnvironmentServiceAttachment(name: string, args: FusionEnvironmentServiceAttachmentArgs, opts?: CustomResourceOptions);
@overload
def FusionEnvironmentServiceAttachment(resource_name: str,
                                       args: FusionEnvironmentServiceAttachmentArgs,
                                       opts: Optional[ResourceOptions] = None)

@overload
def FusionEnvironmentServiceAttachment(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       fusion_environment_id: Optional[str] = None,
                                       service_instance_id: Optional[str] = None,
                                       service_instance_type: Optional[str] = None,
                                       defined_tags: Optional[Mapping[str, str]] = None)
func NewFusionEnvironmentServiceAttachment(ctx *Context, name string, args FusionEnvironmentServiceAttachmentArgs, opts ...ResourceOption) (*FusionEnvironmentServiceAttachment, error)
public FusionEnvironmentServiceAttachment(string name, FusionEnvironmentServiceAttachmentArgs args, CustomResourceOptions? opts = null)
public FusionEnvironmentServiceAttachment(String name, FusionEnvironmentServiceAttachmentArgs args)
public FusionEnvironmentServiceAttachment(String name, FusionEnvironmentServiceAttachmentArgs args, CustomResourceOptions options)
type: oci:FusionApps:FusionEnvironmentServiceAttachment
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. FusionEnvironmentServiceAttachmentArgs
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. FusionEnvironmentServiceAttachmentArgs
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. FusionEnvironmentServiceAttachmentArgs
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. FusionEnvironmentServiceAttachmentArgs
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. FusionEnvironmentServiceAttachmentArgs
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 fusionEnvironmentServiceAttachmentResource = new Oci.FusionApps.FusionEnvironmentServiceAttachment("fusionEnvironmentServiceAttachmentResource", new()
{
    FusionEnvironmentId = "string",
    ServiceInstanceId = "string",
    ServiceInstanceType = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := FusionApps.NewFusionEnvironmentServiceAttachment(ctx, "fusionEnvironmentServiceAttachmentResource", &FusionApps.FusionEnvironmentServiceAttachmentArgs{
	FusionEnvironmentId: pulumi.String("string"),
	ServiceInstanceId:   pulumi.String("string"),
	ServiceInstanceType: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var fusionEnvironmentServiceAttachmentResource = new FusionEnvironmentServiceAttachment("fusionEnvironmentServiceAttachmentResource", FusionEnvironmentServiceAttachmentArgs.builder()
    .fusionEnvironmentId("string")
    .serviceInstanceId("string")
    .serviceInstanceType("string")
    .definedTags(Map.of("string", "string"))
    .build());
Copy
fusion_environment_service_attachment_resource = oci.fusion_apps.FusionEnvironmentServiceAttachment("fusionEnvironmentServiceAttachmentResource",
    fusion_environment_id="string",
    service_instance_id="string",
    service_instance_type="string",
    defined_tags={
        "string": "string",
    })
Copy
const fusionEnvironmentServiceAttachmentResource = new oci.fusionapps.FusionEnvironmentServiceAttachment("fusionEnvironmentServiceAttachmentResource", {
    fusionEnvironmentId: "string",
    serviceInstanceId: "string",
    serviceInstanceType: "string",
    definedTags: {
        string: "string",
    },
});
Copy
type: oci:FusionApps:FusionEnvironmentServiceAttachment
properties:
    definedTags:
        string: string
    fusionEnvironmentId: string
    serviceInstanceId: string
    serviceInstanceType: string
Copy

FusionEnvironmentServiceAttachment 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 FusionEnvironmentServiceAttachment resource accepts the following input properties:

FusionEnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
unique FusionEnvironment identifier
ServiceInstanceId
This property is required.
Changes to this property will trigger replacement.
string
The service instance OCID of the instance being attached
ServiceInstanceType
This property is required.
Changes to this property will trigger replacement.
string

Type of the ServiceInstance being attached.

** 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>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FusionEnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
unique FusionEnvironment identifier
ServiceInstanceId
This property is required.
Changes to this property will trigger replacement.
string
The service instance OCID of the instance being attached
ServiceInstanceType
This property is required.
Changes to this property will trigger replacement.
string

Type of the ServiceInstance being attached.

** 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
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
fusionEnvironmentId
This property is required.
Changes to this property will trigger replacement.
String
unique FusionEnvironment identifier
serviceInstanceId
This property is required.
Changes to this property will trigger replacement.
String
The service instance OCID of the instance being attached
serviceInstanceType
This property is required.
Changes to this property will trigger replacement.
String

Type of the ServiceInstance being attached.

** 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>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
fusionEnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
unique FusionEnvironment identifier
serviceInstanceId
This property is required.
Changes to this property will trigger replacement.
string
The service instance OCID of the instance being attached
serviceInstanceType
This property is required.
Changes to this property will trigger replacement.
string

Type of the ServiceInstance being attached.

** 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}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
fusion_environment_id
This property is required.
Changes to this property will trigger replacement.
str
unique FusionEnvironment identifier
service_instance_id
This property is required.
Changes to this property will trigger replacement.
str
The service instance OCID of the instance being attached
service_instance_type
This property is required.
Changes to this property will trigger replacement.
str

Type of the ServiceInstance being attached.

** 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]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
fusionEnvironmentId
This property is required.
Changes to this property will trigger replacement.
String
unique FusionEnvironment identifier
serviceInstanceId
This property is required.
Changes to this property will trigger replacement.
String
The service instance OCID of the instance being attached
serviceInstanceType
This property is required.
Changes to this property will trigger replacement.
String

Type of the ServiceInstance being attached.

** 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>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Outputs

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

CompartmentId string
Compartment Identifier
DisplayName string
Service Attachment Display name, can be renamed
FreeformTags Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id string
The provider-assigned unique ID for this managed resource.
IsSkuBased bool
Whether this service is provisioned due to the customer being subscribed to a specific SKU
ServiceUrl string
Public URL
State string
The current state of the ServiceInstance.
TimeCreated string
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
TimeUpdated string
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
CompartmentId string
Compartment Identifier
DisplayName string
Service Attachment Display name, can be renamed
FreeformTags map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id string
The provider-assigned unique ID for this managed resource.
IsSkuBased bool
Whether this service is provisioned due to the customer being subscribed to a specific SKU
ServiceUrl string
Public URL
State string
The current state of the ServiceInstance.
TimeCreated string
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
TimeUpdated string
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartmentId String
Compartment Identifier
displayName String
Service Attachment Display name, can be renamed
freeformTags Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id String
The provider-assigned unique ID for this managed resource.
isSkuBased Boolean
Whether this service is provisioned due to the customer being subscribed to a specific SKU
serviceUrl String
Public URL
state String
The current state of the ServiceInstance.
timeCreated String
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
timeUpdated String
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartmentId string
Compartment Identifier
displayName string
Service Attachment Display name, can be renamed
freeformTags {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id string
The provider-assigned unique ID for this managed resource.
isSkuBased boolean
Whether this service is provisioned due to the customer being subscribed to a specific SKU
serviceUrl string
Public URL
state string
The current state of the ServiceInstance.
timeCreated string
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
timeUpdated string
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartment_id str
Compartment Identifier
display_name str
Service Attachment Display name, can be renamed
freeform_tags Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id str
The provider-assigned unique ID for this managed resource.
is_sku_based bool
Whether this service is provisioned due to the customer being subscribed to a specific SKU
service_url str
Public URL
state str
The current state of the ServiceInstance.
time_created str
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
time_updated str
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartmentId String
Compartment Identifier
displayName String
Service Attachment Display name, can be renamed
freeformTags Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id String
The provider-assigned unique ID for this managed resource.
isSkuBased Boolean
Whether this service is provisioned due to the customer being subscribed to a specific SKU
serviceUrl String
Public URL
state String
The current state of the ServiceInstance.
timeCreated String
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
timeUpdated String
The time the ServiceInstance was updated. An RFC3339 formatted datetime string

Look up Existing FusionEnvironmentServiceAttachment Resource

Get an existing FusionEnvironmentServiceAttachment 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?: FusionEnvironmentServiceAttachmentState, opts?: CustomResourceOptions): FusionEnvironmentServiceAttachment
@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,
        freeform_tags: Optional[Mapping[str, str]] = None,
        fusion_environment_id: Optional[str] = None,
        is_sku_based: Optional[bool] = None,
        service_instance_id: Optional[str] = None,
        service_instance_type: Optional[str] = None,
        service_url: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> FusionEnvironmentServiceAttachment
func GetFusionEnvironmentServiceAttachment(ctx *Context, name string, id IDInput, state *FusionEnvironmentServiceAttachmentState, opts ...ResourceOption) (*FusionEnvironmentServiceAttachment, error)
public static FusionEnvironmentServiceAttachment Get(string name, Input<string> id, FusionEnvironmentServiceAttachmentState? state, CustomResourceOptions? opts = null)
public static FusionEnvironmentServiceAttachment get(String name, Output<String> id, FusionEnvironmentServiceAttachmentState state, CustomResourceOptions options)
resources:  _:    type: oci:FusionApps:FusionEnvironmentServiceAttachment    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
Compartment Identifier
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
Service Attachment Display name, can be renamed
FreeformTags Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
FusionEnvironmentId Changes to this property will trigger replacement. string
unique FusionEnvironment identifier
IsSkuBased bool
Whether this service is provisioned due to the customer being subscribed to a specific SKU
ServiceInstanceId Changes to this property will trigger replacement. string
The service instance OCID of the instance being attached
ServiceInstanceType Changes to this property will trigger replacement. string

Type of the ServiceInstance being attached.

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

ServiceUrl string
Public URL
State string
The current state of the ServiceInstance.
TimeCreated string
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
TimeUpdated string
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
CompartmentId string
Compartment Identifier
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
Service Attachment Display name, can be renamed
FreeformTags map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
FusionEnvironmentId Changes to this property will trigger replacement. string
unique FusionEnvironment identifier
IsSkuBased bool
Whether this service is provisioned due to the customer being subscribed to a specific SKU
ServiceInstanceId Changes to this property will trigger replacement. string
The service instance OCID of the instance being attached
ServiceInstanceType Changes to this property will trigger replacement. string

Type of the ServiceInstance being attached.

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

ServiceUrl string
Public URL
State string
The current state of the ServiceInstance.
TimeCreated string
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
TimeUpdated string
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartmentId String
Compartment Identifier
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
Service Attachment Display name, can be renamed
freeformTags Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
fusionEnvironmentId Changes to this property will trigger replacement. String
unique FusionEnvironment identifier
isSkuBased Boolean
Whether this service is provisioned due to the customer being subscribed to a specific SKU
serviceInstanceId Changes to this property will trigger replacement. String
The service instance OCID of the instance being attached
serviceInstanceType Changes to this property will trigger replacement. String

Type of the ServiceInstance being attached.

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

serviceUrl String
Public URL
state String
The current state of the ServiceInstance.
timeCreated String
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
timeUpdated String
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartmentId string
Compartment Identifier
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
Service Attachment Display name, can be renamed
freeformTags {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
fusionEnvironmentId Changes to this property will trigger replacement. string
unique FusionEnvironment identifier
isSkuBased boolean
Whether this service is provisioned due to the customer being subscribed to a specific SKU
serviceInstanceId Changes to this property will trigger replacement. string
The service instance OCID of the instance being attached
serviceInstanceType Changes to this property will trigger replacement. string

Type of the ServiceInstance being attached.

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

serviceUrl string
Public URL
state string
The current state of the ServiceInstance.
timeCreated string
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
timeUpdated string
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartment_id str
Compartment Identifier
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name str
Service Attachment Display name, can be renamed
freeform_tags Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
fusion_environment_id Changes to this property will trigger replacement. str
unique FusionEnvironment identifier
is_sku_based bool
Whether this service is provisioned due to the customer being subscribed to a specific SKU
service_instance_id Changes to this property will trigger replacement. str
The service instance OCID of the instance being attached
service_instance_type Changes to this property will trigger replacement. str

Type of the ServiceInstance being attached.

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

service_url str
Public URL
state str
The current state of the ServiceInstance.
time_created str
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
time_updated str
The time the ServiceInstance was updated. An RFC3339 formatted datetime string
compartmentId String
Compartment Identifier
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
Service Attachment Display name, can be renamed
freeformTags Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
fusionEnvironmentId Changes to this property will trigger replacement. String
unique FusionEnvironment identifier
isSkuBased Boolean
Whether this service is provisioned due to the customer being subscribed to a specific SKU
serviceInstanceId Changes to this property will trigger replacement. String
The service instance OCID of the instance being attached
serviceInstanceType Changes to this property will trigger replacement. String

Type of the ServiceInstance being attached.

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

serviceUrl String
Public URL
state String
The current state of the ServiceInstance.
timeCreated String
The time the the ServiceInstance was created. An RFC3339 formatted datetime string
timeUpdated String
The time the ServiceInstance was updated. An RFC3339 formatted datetime string

Import

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

$ pulumi import oci:FusionApps/fusionEnvironmentServiceAttachment:FusionEnvironmentServiceAttachment test_fusion_environment_service_attachment "fusionEnvironments/{fusionEnvironmentId}/serviceAttachments/{serviceAttachmentId}"
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.