published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi
This resource provides the Instance resource in Oracle Cloud Infrastructure Ddfs service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/ddfs
Creates an Instance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInstance = new oci.oci.DdfsInstance("test_instance", {
compartmentId: compartmentId,
idcsUrl: instanceIdcsUrl,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: instanceDisplayName,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_instance = oci.oci.DdfsInstance("test_instance",
compartment_id=compartment_id,
idcs_url=instance_idcs_url,
defined_tags={
"Operations.CostCenter": "42",
},
display_name=instance_display_name,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.NewDdfsInstance(ctx, "test_instance", &oci.DdfsInstanceArgs{
CompartmentId: pulumi.Any(compartmentId),
IdcsUrl: pulumi.Any(instanceIdcsUrl),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(instanceDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
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 testInstance = new Oci.Oci.DdfsInstance("test_instance", new()
{
CompartmentId = compartmentId,
IdcsUrl = instanceIdcsUrl,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = instanceDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.DdfsInstance;
import com.pulumi.oci.oci.DdfsInstanceArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 testInstance = new DdfsInstance("testInstance", DdfsInstanceArgs.builder()
.compartmentId(compartmentId)
.idcsUrl(instanceIdcsUrl)
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(instanceDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testInstance:
type: oci:oci:DdfsInstance
name: test_instance
properties:
compartmentId: ${compartmentId}
idcsUrl: ${instanceIdcsUrl}
definedTags:
Operations.CostCenter: '42'
displayName: ${instanceDisplayName}
freeformTags:
Department: Finance
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
resource "oci_oci_ddfsinstance" "test_instance" {
compartment_id = compartmentId
idcs_url = instanceIdcsUrl
defined_tags = {
"Operations.CostCenter" = "42"
}
display_name = instanceDisplayName
freeform_tags = {
"Department" = "Finance"
}
}
Create DdfsInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DdfsInstance(name: string, args: DdfsInstanceArgs, opts?: CustomResourceOptions);@overload
def DdfsInstance(resource_name: str,
args: DdfsInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DdfsInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
idcs_url: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None)func NewDdfsInstance(ctx *Context, name string, args DdfsInstanceArgs, opts ...ResourceOption) (*DdfsInstance, error)public DdfsInstance(string name, DdfsInstanceArgs args, CustomResourceOptions? opts = null)
public DdfsInstance(String name, DdfsInstanceArgs args)
public DdfsInstance(String name, DdfsInstanceArgs args, CustomResourceOptions options)
type: oci:oci:DdfsInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "oci_oci_ddfs_instance" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DdfsInstanceArgs
- 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 DdfsInstanceArgs
- 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 DdfsInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DdfsInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DdfsInstanceArgs
- 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 ddfsInstanceResource = new Oci.Oci.DdfsInstance("ddfsInstanceResource", new()
{
CompartmentId = "string",
IdcsUrl = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
});
example, err := oci.NewDdfsInstance(ctx, "ddfsInstanceResource", &oci.DdfsInstanceArgs{
CompartmentId: pulumi.String("string"),
IdcsUrl: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "oci_oci_ddfs_instance" "ddfsInstanceResource" {
lifecycle {
create_before_destroy = true
}
compartment_id = "string"
idcs_url = "string"
defined_tags = {
"string" = "string"
}
display_name = "string"
freeform_tags = {
"string" = "string"
}
}
var ddfsInstanceResource = new DdfsInstance("ddfsInstanceResource", DdfsInstanceArgs.builder()
.compartmentId("string")
.idcsUrl("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.freeformTags(Map.of("string", "string"))
.build());
ddfs_instance_resource = oci.oci.DdfsInstance("ddfsInstanceResource",
compartment_id="string",
idcs_url="string",
defined_tags={
"string": "string",
},
display_name="string",
freeform_tags={
"string": "string",
})
const ddfsInstanceResource = new oci.oci.DdfsInstance("ddfsInstanceResource", {
compartmentId: "string",
idcsUrl: "string",
definedTags: {
string: "string",
},
displayName: "string",
freeformTags: {
string: "string",
},
});
type: oci:oci:DdfsInstance
properties:
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
idcsUrl: string
DdfsInstance 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 DdfsInstance resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment to create the Instance in.
- Idcs
Url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Compartment
Id string - (Updatable) The OCID of the compartment to create the Instance in.
- Idcs
Url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment_
id string - (Updatable) The OCID of the compartment to create the Instance in.
- idcs_
url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map(string)
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String - (Updatable) The OCID of the compartment to create the Instance in.
- idcs
Url String The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id string - (Updatable) The OCID of the compartment to create the Instance in.
- idcs
Url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment_
id str - (Updatable) The OCID of the compartment to create the Instance in.
- idcs_
url str The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String - (Updatable) The OCID of the compartment to create the Instance in.
- idcs
Url String The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
Outputs
All input properties are implicitly available as output properties. Additionally, the DdfsInstance resource produces the following output properties:
- Fhir
Service stringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Public
Ip string - The public IP address for the instance's FHIR service endpoint.
- State string
- The current state of the Instance.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - Time
Created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Fhir
Service stringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Public
Ip string - The public IP address for the instance's FHIR service endpoint.
- State string
- The current state of the Instance.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - Time
Created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- fhir_
service_ stringendpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - id string
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public_
ip string - The public IP address for the instance's FHIR service endpoint.
- state string
- The current state of the Instance.
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time_
created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- fhir
Service StringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public
Ip String - The public IP address for the instance's FHIR service endpoint.
- state String
- The current state of the Instance.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time
Created String - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- fhir
Service stringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public
Ip string - The public IP address for the instance's FHIR service endpoint.
- state string
- The current state of the Instance.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time
Created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- fhir_
service_ strendpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public_
ip str - The public IP address for the instance's FHIR service endpoint.
- state str
- The current state of the Instance.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time_
created str - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- fhir
Service StringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public
Ip String - The public IP address for the instance's FHIR service endpoint.
- state String
- The current state of the Instance.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time
Created String - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing DdfsInstance Resource
Get an existing DdfsInstance 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?: DdfsInstanceState, opts?: CustomResourceOptions): DdfsInstance@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,
fhir_service_endpoint: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
idcs_url: Optional[str] = None,
lifecycle_details: Optional[str] = None,
public_ip: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> DdfsInstancefunc GetDdfsInstance(ctx *Context, name string, id IDInput, state *DdfsInstanceState, opts ...ResourceOption) (*DdfsInstance, error)public static DdfsInstance Get(string name, Input<string> id, DdfsInstanceState? state, CustomResourceOptions? opts = null)public static DdfsInstance get(String name, Output<String> id, DdfsInstanceState state, CustomResourceOptions options)resources: _: type: oci:oci:DdfsInstance get: id: ${id}import {
to = oci_oci_ddfs_instance.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the Instance in.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fhir
Service stringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Idcs
Url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- Lifecycle
Details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Public
Ip string - The public IP address for the instance's FHIR service endpoint.
- State string
- The current state of the Instance.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - Time
Created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Compartment
Id string - (Updatable) The OCID of the compartment to create the Instance in.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fhir
Service stringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Idcs
Url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- Lifecycle
Details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Public
Ip string - The public IP address for the instance's FHIR service endpoint.
- State string
- The current state of the Instance.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - Time
Created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment_
id string - (Updatable) The OCID of the compartment to create the Instance in.
- map(string)
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fhir_
service_ stringendpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - map(string)
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - idcs_
url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- lifecycle_
details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public_
ip string - The public IP address for the instance's FHIR service endpoint.
- state string
- The current state of the Instance.
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time_
created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - (Updatable) The OCID of the compartment to create the Instance in.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fhir
Service StringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - idcs
Url String The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- lifecycle
Details String - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public
Ip String - The public IP address for the instance's FHIR service endpoint.
- state String
- The current state of the Instance.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time
Created String - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id string - (Updatable) The OCID of the compartment to create the Instance in.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fhir
Service stringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - idcs
Url string The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- lifecycle
Details string - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public
Ip string - The public IP address for the instance's FHIR service endpoint.
- state string
- The current state of the Instance.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time
Created string - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment_
id str - (Updatable) The OCID of the compartment to create the Instance in.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fhir_
service_ strendpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - idcs_
url str The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- lifecycle_
details str - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public_
ip str - The public IP address for the instance's FHIR service endpoint.
- state str
- The current state of the Instance.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time_
created str - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - (Updatable) The OCID of the compartment to create the Instance in.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fhir
Service StringEndpoint - The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example:
https://example.ddfs.oraclecloud.com/api/fhir - Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - idcs
Url String The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example:
https://idcs-1234567890.identity.oraclecloud.com** 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
- lifecycle
Details String - A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- public
Ip String - The public IP address for the instance's FHIR service endpoint.
- state String
- The current state of the Instance.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.example-key": "example-value"} - time
Created String - The date and time the Instance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the Instance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Import
Instances can be imported using the id, e.g.
$ pulumi import oci:oci/ddfsInstance:DdfsInstance test_instance "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
ociTerraform Provider.
published on Wednesday, Aug 26, 2026 by Pulumi