1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. oci
  6. DdfsInstance
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
oci logo oci logo
Viewing docs for Oracle Cloud Infrastructure v4.22.0
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:

    CompartmentId string
    (Updatable) The OCID of the compartment to create the Instance in.
    IdcsUrl 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

    DefinedTags 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"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags 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"}
    CompartmentId string
    (Updatable) The OCID of the compartment to create the Instance in.
    IdcsUrl 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

    DefinedTags 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"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags 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

    defined_tags 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.
    freeform_tags 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"}
    compartmentId String
    (Updatable) The OCID of the compartment to create the Instance in.
    idcsUrl 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

    definedTags 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"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags 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"}
    compartmentId string
    (Updatable) The OCID of the compartment to create the Instance in.
    idcsUrl 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

    definedTags {[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"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[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

    defined_tags 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.
    freeform_tags 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"}
    compartmentId String
    (Updatable) The OCID of the compartment to create the Instance in.
    idcsUrl 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

    definedTags 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"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags 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:

    FhirServiceEndpoint string
    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.
    LifecycleDetails 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.
    PublicIp string
    The public IP address for the instance's FHIR service endpoint.
    State string
    The current state of the Instance.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    TimeCreated string
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Instance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    FhirServiceEndpoint string
    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.
    LifecycleDetails 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.
    PublicIp string
    The public IP address for the instance's FHIR service endpoint.
    State string
    The current state of the Instance.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    TimeCreated string
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated 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_endpoint string
    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.
    system_tags 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
    fhirServiceEndpoint String
    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.
    lifecycleDetails 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.
    publicIp String
    The public IP address for the instance's FHIR service endpoint.
    state String
    The current state of the Instance.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    timeCreated String
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the Instance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    fhirServiceEndpoint string
    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.
    lifecycleDetails 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.
    publicIp string
    The public IP address for the instance's FHIR service endpoint.
    state string
    The current state of the Instance.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    timeCreated string
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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_endpoint str
    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.
    system_tags 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
    fhirServiceEndpoint String
    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.
    lifecycleDetails 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.
    publicIp String
    The public IP address for the instance's FHIR service endpoint.
    state String
    The current state of the Instance.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    timeCreated String
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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) -> DdfsInstance
    func 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.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment to create the Instance in.
    DefinedTags 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"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FhirServiceEndpoint string
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    FreeformTags 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"}
    IdcsUrl 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

    LifecycleDetails 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.
    PublicIp string
    The public IP address for the instance's FHIR service endpoint.
    State string
    The current state of the Instance.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    TimeCreated string
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Instance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    CompartmentId string
    (Updatable) The OCID of the compartment to create the Instance in.
    DefinedTags 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"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FhirServiceEndpoint string
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    FreeformTags 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"}
    IdcsUrl 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

    LifecycleDetails 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.
    PublicIp string
    The public IP address for the instance's FHIR service endpoint.
    State string
    The current state of the Instance.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    TimeCreated string
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated 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.
    defined_tags 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_endpoint string
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    freeform_tags 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.
    system_tags 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
    compartmentId String
    (Updatable) The OCID of the compartment to create the Instance in.
    definedTags 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"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fhirServiceEndpoint String
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    freeformTags 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"}
    idcsUrl 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

    lifecycleDetails 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.
    publicIp String
    The public IP address for the instance's FHIR service endpoint.
    state String
    The current state of the Instance.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    timeCreated String
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the Instance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId string
    (Updatable) The OCID of the compartment to create the Instance in.
    definedTags {[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"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fhirServiceEndpoint string
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    freeformTags {[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"}
    idcsUrl 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

    lifecycleDetails 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.
    publicIp string
    The public IP address for the instance's FHIR service endpoint.
    state string
    The current state of the Instance.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    timeCreated string
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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.
    defined_tags 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_endpoint str
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    freeform_tags 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.
    system_tags 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
    compartmentId String
    (Updatable) The OCID of the compartment to create the Instance in.
    definedTags 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"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fhirServiceEndpoint String
    The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: https://example.ddfs.oraclecloud.com/api/fhir
    freeformTags 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"}
    idcsUrl 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

    lifecycleDetails 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.
    publicIp String
    The public IP address for the instance's FHIR service endpoint.
    state String
    The current state of the Instance.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.example-key": "example-value"}
    timeCreated String
    The date and time the Instance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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 oci Terraform Provider.
    oci logo oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.22.0
    published on Wednesday, Aug 26, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial