Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Integration.getIntegrationInstances
Explore with Pulumi AI
This data source provides the list of Integration Instances in Oracle Cloud Infrastructure Integration service.
Returns a list of Integration Instances.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testIntegrationInstances = oci.Integration.getIntegrationInstances({
    compartmentId: compartmentId,
    displayName: integrationInstanceDisplayName,
    state: integrationInstanceState,
});
import pulumi
import pulumi_oci as oci
test_integration_instances = oci.Integration.get_integration_instances(compartment_id=compartment_id,
    display_name=integration_instance_display_name,
    state=integration_instance_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/integration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := integration.GetIntegrationInstances(ctx, &integration.GetIntegrationInstancesArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(integrationInstanceDisplayName),
			State:         pulumi.StringRef(integrationInstanceState),
		}, nil)
		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 testIntegrationInstances = Oci.Integration.GetIntegrationInstances.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = integrationInstanceDisplayName,
        State = integrationInstanceState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Integration.IntegrationFunctions;
import com.pulumi.oci.Integration.inputs.GetIntegrationInstancesArgs;
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) {
        final var testIntegrationInstances = IntegrationFunctions.getIntegrationInstances(GetIntegrationInstancesArgs.builder()
            .compartmentId(compartmentId)
            .displayName(integrationInstanceDisplayName)
            .state(integrationInstanceState)
            .build());
    }
}
variables:
  testIntegrationInstances:
    fn::invoke:
      function: oci:Integration:getIntegrationInstances
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${integrationInstanceDisplayName}
        state: ${integrationInstanceState}
Using getIntegrationInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getIntegrationInstances(args: GetIntegrationInstancesArgs, opts?: InvokeOptions): Promise<GetIntegrationInstancesResult>
function getIntegrationInstancesOutput(args: GetIntegrationInstancesOutputArgs, opts?: InvokeOptions): Output<GetIntegrationInstancesResult>def get_integration_instances(compartment_id: Optional[str] = None,
                              display_name: Optional[str] = None,
                              filters: Optional[Sequence[GetIntegrationInstancesFilter]] = None,
                              state: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetIntegrationInstancesResult
def get_integration_instances_output(compartment_id: Optional[pulumi.Input[str]] = None,
                              display_name: Optional[pulumi.Input[str]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetIntegrationInstancesFilterArgs]]]] = None,
                              state: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetIntegrationInstancesResult]func GetIntegrationInstances(ctx *Context, args *GetIntegrationInstancesArgs, opts ...InvokeOption) (*GetIntegrationInstancesResult, error)
func GetIntegrationInstancesOutput(ctx *Context, args *GetIntegrationInstancesOutputArgs, opts ...InvokeOption) GetIntegrationInstancesResultOutput> Note: This function is named GetIntegrationInstances in the Go SDK.
public static class GetIntegrationInstances 
{
    public static Task<GetIntegrationInstancesResult> InvokeAsync(GetIntegrationInstancesArgs args, InvokeOptions? opts = null)
    public static Output<GetIntegrationInstancesResult> Invoke(GetIntegrationInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetIntegrationInstancesResult> getIntegrationInstances(GetIntegrationInstancesArgs args, InvokeOptions options)
public static Output<GetIntegrationInstancesResult> getIntegrationInstances(GetIntegrationInstancesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Integration/getIntegrationInstances:getIntegrationInstances
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The ID of the compartment in which to list resources.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- Filters
List<GetIntegration Instances Filter> 
- State string
- Life cycle state to query on.
- CompartmentId string
- The ID of the compartment in which to list resources.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- Filters
[]GetIntegration Instances Filter 
- State string
- Life cycle state to query on.
- compartmentId String
- The ID of the compartment in which to list resources.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- filters
List<GetInstances Filter> 
- state String
- Life cycle state to query on.
- compartmentId string
- The ID of the compartment in which to list resources.
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- filters
GetIntegration Instances Filter[] 
- state string
- Life cycle state to query on.
- compartment_id str
- The ID of the compartment in which to list resources.
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- filters
Sequence[GetIntegration Instances Filter] 
- state str
- Life cycle state to query on.
- compartmentId String
- The ID of the compartment in which to list resources.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- filters List<Property Map>
- state String
- Life cycle state to query on.
getIntegrationInstances Result
The following output properties are available:
- CompartmentId string
- Compartment Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- IntegrationInstances List<GetIntegration Instances Integration Instance> 
- The list of integration_instances.
- DisplayName string
- Integration Instance Identifier, can be renamed.
- Filters
List<GetIntegration Instances Filter> 
- State string
- The current state of the integration instance.
- CompartmentId string
- Compartment Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- IntegrationInstances []GetIntegration Instances Integration Instance 
- The list of integration_instances.
- DisplayName string
- Integration Instance Identifier, can be renamed.
- Filters
[]GetIntegration Instances Filter 
- State string
- The current state of the integration instance.
- compartmentId String
- Compartment Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- integrationInstances List<GetInstances Instance> 
- The list of integration_instances.
- displayName String
- Integration Instance Identifier, can be renamed.
- filters
List<GetInstances Filter> 
- state String
- The current state of the integration instance.
- compartmentId string
- Compartment Identifier.
- id string
- The provider-assigned unique ID for this managed resource.
- integrationInstances GetIntegration Instances Integration Instance[] 
- The list of integration_instances.
- displayName string
- Integration Instance Identifier, can be renamed.
- filters
GetIntegration Instances Filter[] 
- state string
- The current state of the integration instance.
- compartment_id str
- Compartment Identifier.
- id str
- The provider-assigned unique ID for this managed resource.
- integration_instances Sequence[GetIntegration Instances Integration Instance] 
- The list of integration_instances.
- display_name str
- Integration Instance Identifier, can be renamed.
- filters
Sequence[GetIntegration Instances Filter] 
- state str
- The current state of the integration instance.
- compartmentId String
- Compartment Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- integrationInstances List<Property Map>
- The list of integration_instances.
- displayName String
- Integration Instance Identifier, can be renamed.
- filters List<Property Map>
- state String
- The current state of the integration instance.
Supporting Types
GetIntegrationInstancesFilter   
GetIntegrationInstancesIntegrationInstance    
- AlternateCustom List<GetEndpoints Integration Instances Integration Instance Alternate Custom Endpoint> 
- A list of alternate custom endpoints used for the integration instance URL.
- Attachments
List<GetIntegration Instances Integration Instance Attachment> 
- A list of associated attachments to other services
- CompartmentId string
- The ID of the compartment in which to list resources.
- ConsumptionModel string
- The entitlement used for billing purposes.
- CustomEndpoints List<GetIntegration Instances Integration Instance Custom Endpoint> 
- Details for a custom endpoint for the integration instance.
- DataRetention stringPeriod 
- Data retention period set for given integration instance
- Dictionary<string, string>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- DisasterRecovery List<GetDetails Integration Instances Integration Instance Disaster Recovery Detail> 
- Disaster recovery details for the integration instance created in the region.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- DomainId string
- EnableProcess intAutomation Trigger 
- ExtendData intRetention Trigger 
- FailoverTrigger int
- 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 Virtual Cloud Network OCID.
- IdcsAt string
- IdcsInfos List<GetIntegration Instances Integration Instance Idcs Info> 
- Information for IDCS access
- InstanceDesign stringTime Url 
- InstanceUrl string
- The Integration Instance URL.
- IntegrationInstance stringType 
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
- IsByol bool
- Bring your own license.
- IsDisaster boolRecovery Enabled 
- Is Disaster Recovery enabled for the integrationInstance
- IsFile boolServer Enabled 
- The file server is enabled or not.
- IsVisual boolBuilder Enabled 
- Visual Builder is enabled or not.
- LifecycleDetails string
- Additional details of lifecycleState or substates
- MessagePacks int
- The number of configured message packs (if any)
- NetworkEndpoint List<GetDetails Integration Instances Integration Instance Network Endpoint Detail> 
- Base representation of a network endpoint.
- PrivateEndpoint List<GetOutbound Connections Integration Instances Integration Instance Private Endpoint Outbound Connection> 
- Base representation for Outbound Connection (Reverse Connection).
- Shape string
- Shape
- State string
- Life cycle state to query on.
- StateMessage string
- An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the the Integration Instance was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time the IntegrationInstance was updated. An RFC3339 formatted datetime string.
- AlternateCustom []GetEndpoints Integration Instances Integration Instance Alternate Custom Endpoint 
- A list of alternate custom endpoints used for the integration instance URL.
- Attachments
[]GetIntegration Instances Integration Instance Attachment 
- A list of associated attachments to other services
- CompartmentId string
- The ID of the compartment in which to list resources.
- ConsumptionModel string
- The entitlement used for billing purposes.
- CustomEndpoints []GetIntegration Instances Integration Instance Custom Endpoint 
- Details for a custom endpoint for the integration instance.
- DataRetention stringPeriod 
- Data retention period set for given integration instance
- map[string]string
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- DisasterRecovery []GetDetails Integration Instances Integration Instance Disaster Recovery Detail 
- Disaster recovery details for the integration instance created in the region.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- DomainId string
- EnableProcess intAutomation Trigger 
- ExtendData intRetention Trigger 
- FailoverTrigger int
- 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 Virtual Cloud Network OCID.
- IdcsAt string
- IdcsInfos []GetIntegration Instances Integration Instance Idcs Info 
- Information for IDCS access
- InstanceDesign stringTime Url 
- InstanceUrl string
- The Integration Instance URL.
- IntegrationInstance stringType 
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
- IsByol bool
- Bring your own license.
- IsDisaster boolRecovery Enabled 
- Is Disaster Recovery enabled for the integrationInstance
- IsFile boolServer Enabled 
- The file server is enabled or not.
- IsVisual boolBuilder Enabled 
- Visual Builder is enabled or not.
- LifecycleDetails string
- Additional details of lifecycleState or substates
- MessagePacks int
- The number of configured message packs (if any)
- NetworkEndpoint []GetDetails Integration Instances Integration Instance Network Endpoint Detail 
- Base representation of a network endpoint.
- PrivateEndpoint []GetOutbound Connections Integration Instances Integration Instance Private Endpoint Outbound Connection 
- Base representation for Outbound Connection (Reverse Connection).
- Shape string
- Shape
- State string
- Life cycle state to query on.
- StateMessage string
- An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the the Integration Instance was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time the IntegrationInstance was updated. An RFC3339 formatted datetime string.
- alternateCustom List<GetEndpoints Instances Instance Alternate Custom Endpoint> 
- A list of alternate custom endpoints used for the integration instance URL.
- attachments
List<GetInstances Instance Attachment> 
- A list of associated attachments to other services
- compartmentId String
- The ID of the compartment in which to list resources.
- consumptionModel String
- The entitlement used for billing purposes.
- customEndpoints List<GetInstances Instance Custom Endpoint> 
- Details for a custom endpoint for the integration instance.
- dataRetention StringPeriod 
- Data retention period set for given integration instance
- Map<String,String>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- disasterRecovery List<GetDetails Instances Instance Disaster Recovery Detail> 
- Disaster recovery details for the integration instance created in the region.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- domainId String
- enableProcess IntegerAutomation Trigger 
- extendData IntegerRetention Trigger 
- failoverTrigger Integer
- 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 Virtual Cloud Network OCID.
- idcsAt String
- idcsInfos List<GetInstances Instance Idcs Info> 
- Information for IDCS access
- instanceDesign StringTime Url 
- instanceUrl String
- The Integration Instance URL.
- integrationInstance StringType 
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
- isByol Boolean
- Bring your own license.
- isDisaster BooleanRecovery Enabled 
- Is Disaster Recovery enabled for the integrationInstance
- isFile BooleanServer Enabled 
- The file server is enabled or not.
- isVisual BooleanBuilder Enabled 
- Visual Builder is enabled or not.
- lifecycleDetails String
- Additional details of lifecycleState or substates
- messagePacks Integer
- The number of configured message packs (if any)
- networkEndpoint List<GetDetails Instances Instance Network Endpoint Detail> 
- Base representation of a network endpoint.
- privateEndpoint List<GetOutbound Connections Instances Instance Private Endpoint Outbound Connection> 
- Base representation for Outbound Connection (Reverse Connection).
- shape String
- Shape
- state String
- Life cycle state to query on.
- stateMessage String
- An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the the Integration Instance was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time the IntegrationInstance was updated. An RFC3339 formatted datetime string.
- alternateCustom GetEndpoints Integration Instances Integration Instance Alternate Custom Endpoint[] 
- A list of alternate custom endpoints used for the integration instance URL.
- attachments
GetIntegration Instances Integration Instance Attachment[] 
- A list of associated attachments to other services
- compartmentId string
- The ID of the compartment in which to list resources.
- consumptionModel string
- The entitlement used for billing purposes.
- customEndpoints GetIntegration Instances Integration Instance Custom Endpoint[] 
- Details for a custom endpoint for the integration instance.
- dataRetention stringPeriod 
- Data retention period set for given integration instance
- {[key: string]: string}
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- disasterRecovery GetDetails Integration Instances Integration Instance Disaster Recovery Detail[] 
- Disaster recovery details for the integration instance created in the region.
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- domainId string
- enableProcess numberAutomation Trigger 
- extendData numberRetention Trigger 
- failoverTrigger number
- {[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 Virtual Cloud Network OCID.
- idcsAt string
- idcsInfos GetIntegration Instances Integration Instance Idcs Info[] 
- Information for IDCS access
- instanceDesign stringTime Url 
- instanceUrl string
- The Integration Instance URL.
- integrationInstance stringType 
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
- isByol boolean
- Bring your own license.
- isDisaster booleanRecovery Enabled 
- Is Disaster Recovery enabled for the integrationInstance
- isFile booleanServer Enabled 
- The file server is enabled or not.
- isVisual booleanBuilder Enabled 
- Visual Builder is enabled or not.
- lifecycleDetails string
- Additional details of lifecycleState or substates
- messagePacks number
- The number of configured message packs (if any)
- networkEndpoint GetDetails Integration Instances Integration Instance Network Endpoint Detail[] 
- Base representation of a network endpoint.
- privateEndpoint GetOutbound Connections Integration Instances Integration Instance Private Endpoint Outbound Connection[] 
- Base representation for Outbound Connection (Reverse Connection).
- shape string
- Shape
- state string
- Life cycle state to query on.
- stateMessage string
- An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time the the Integration Instance was created. An RFC3339 formatted datetime string.
- timeUpdated string
- The time the IntegrationInstance was updated. An RFC3339 formatted datetime string.
- alternate_custom_ Sequence[Getendpoints Integration Instances Integration Instance Alternate Custom Endpoint] 
- A list of alternate custom endpoints used for the integration instance URL.
- attachments
Sequence[GetIntegration Instances Integration Instance Attachment] 
- A list of associated attachments to other services
- compartment_id str
- The ID of the compartment in which to list resources.
- consumption_model str
- The entitlement used for billing purposes.
- custom_endpoints Sequence[GetIntegration Instances Integration Instance Custom Endpoint] 
- Details for a custom endpoint for the integration instance.
- data_retention_ strperiod 
- Data retention period set for given integration instance
- Mapping[str, str]
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- disaster_recovery_ Sequence[Getdetails Integration Instances Integration Instance Disaster Recovery Detail] 
- Disaster recovery details for the integration instance created in the region.
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- domain_id str
- enable_process_ intautomation_ trigger 
- extend_data_ intretention_ trigger 
- failover_trigger int
- 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 Virtual Cloud Network OCID.
- idcs_at str
- idcs_infos Sequence[GetIntegration Instances Integration Instance Idcs Info] 
- Information for IDCS access
- instance_design_ strtime_ url 
- instance_url str
- The Integration Instance URL.
- integration_instance_ strtype 
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
- is_byol bool
- Bring your own license.
- is_disaster_ boolrecovery_ enabled 
- Is Disaster Recovery enabled for the integrationInstance
- is_file_ boolserver_ enabled 
- The file server is enabled or not.
- is_visual_ boolbuilder_ enabled 
- Visual Builder is enabled or not.
- lifecycle_details str
- Additional details of lifecycleState or substates
- message_packs int
- The number of configured message packs (if any)
- network_endpoint_ Sequence[Getdetails Integration Instances Integration Instance Network Endpoint Detail] 
- Base representation of a network endpoint.
- private_endpoint_ Sequence[Getoutbound_ connections Integration Instances Integration Instance Private Endpoint Outbound Connection] 
- Base representation for Outbound Connection (Reverse Connection).
- shape str
- Shape
- state str
- Life cycle state to query on.
- state_message str
- An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time the the Integration Instance was created. An RFC3339 formatted datetime string.
- time_updated str
- The time the IntegrationInstance was updated. An RFC3339 formatted datetime string.
- alternateCustom List<Property Map>Endpoints 
- A list of alternate custom endpoints used for the integration instance URL.
- attachments List<Property Map>
- A list of associated attachments to other services
- compartmentId String
- The ID of the compartment in which to list resources.
- consumptionModel String
- The entitlement used for billing purposes.
- customEndpoints List<Property Map>
- Details for a custom endpoint for the integration instance.
- dataRetention StringPeriod 
- Data retention period set for given integration instance
- Map<String>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- disasterRecovery List<Property Map>Details 
- Disaster recovery details for the integration instance created in the region.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Example: My new resource
- domainId String
- enableProcess NumberAutomation Trigger 
- extendData NumberRetention Trigger 
- failoverTrigger Number
- 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 Virtual Cloud Network OCID.
- idcsAt String
- idcsInfos List<Property Map>
- Information for IDCS access
- instanceDesign StringTime Url 
- instanceUrl String
- The Integration Instance URL.
- integrationInstance StringType 
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
- isByol Boolean
- Bring your own license.
- isDisaster BooleanRecovery Enabled 
- Is Disaster Recovery enabled for the integrationInstance
- isFile BooleanServer Enabled 
- The file server is enabled or not.
- isVisual BooleanBuilder Enabled 
- Visual Builder is enabled or not.
- lifecycleDetails String
- Additional details of lifecycleState or substates
- messagePacks Number
- The number of configured message packs (if any)
- networkEndpoint List<Property Map>Details 
- Base representation of a network endpoint.
- privateEndpoint List<Property Map>Outbound Connections 
- Base representation for Outbound Connection (Reverse Connection).
- shape String
- Shape
- state String
- Life cycle state to query on.
- stateMessage String
- An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the the Integration Instance was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time the IntegrationInstance was updated. An RFC3339 formatted datetime string.
GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpoint       
- Alias string
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- CertificateSecret stringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- CertificateSecret intVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- DnsType string
- DnsZone stringName 
- DNS Zone name
- Hostname string
- A custom hostname to be used for the integration instance URL, in FQDN format.
- ManagedType string
- Indicates if custom endpoint is managed by oracle or customer.
- Alias string
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- CertificateSecret stringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- CertificateSecret intVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- DnsType string
- DnsZone stringName 
- DNS Zone name
- Hostname string
- A custom hostname to be used for the integration instance URL, in FQDN format.
- ManagedType string
- Indicates if custom endpoint is managed by oracle or customer.
- alias String
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificateSecret StringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificateSecret IntegerVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dnsType String
- dnsZone StringName 
- DNS Zone name
- hostname String
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managedType String
- Indicates if custom endpoint is managed by oracle or customer.
- alias string
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificateSecret stringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificateSecret numberVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dnsType string
- dnsZone stringName 
- DNS Zone name
- hostname string
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managedType string
- Indicates if custom endpoint is managed by oracle or customer.
- alias str
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificate_secret_ strid 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificate_secret_ intversion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dns_type str
- dns_zone_ strname 
- DNS Zone name
- hostname str
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managed_type str
- Indicates if custom endpoint is managed by oracle or customer.
- alias String
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificateSecret StringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificateSecret NumberVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dnsType String
- dnsZone StringName 
- DNS Zone name
- hostname String
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managedType String
- Indicates if custom endpoint is managed by oracle or customer.
GetIntegrationInstancesIntegrationInstanceAttachment     
- IsImplicit bool
- If role == PARENT, the attached instance was created by this service instance
- If role == CHILD, this instance was created from attached instance on behalf of a user
 
- If role == 
- TargetId string
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
- TargetInstance stringUrl 
- The dataplane instance URL of the attached instance
- TargetRole string
- The role of the target attachment.- PARENT- The target instance is the parent of this attachment.
- CHILD- The target instance is the child of this attachment.
 
- TargetService stringType 
- The type of the target instance, such as "FUSION".
- IsImplicit bool
- If role == PARENT, the attached instance was created by this service instance
- If role == CHILD, this instance was created from attached instance on behalf of a user
 
- If role == 
- TargetId string
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
- TargetInstance stringUrl 
- The dataplane instance URL of the attached instance
- TargetRole string
- The role of the target attachment.- PARENT- The target instance is the parent of this attachment.
- CHILD- The target instance is the child of this attachment.
 
- TargetService stringType 
- The type of the target instance, such as "FUSION".
- isImplicit Boolean
- If role == PARENT, the attached instance was created by this service instance
- If role == CHILD, this instance was created from attached instance on behalf of a user
 
- If role == 
- targetId String
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
- targetInstance StringUrl 
- The dataplane instance URL of the attached instance
- targetRole String
- The role of the target attachment.- PARENT- The target instance is the parent of this attachment.
- CHILD- The target instance is the child of this attachment.
 
- targetService StringType 
- The type of the target instance, such as "FUSION".
- isImplicit boolean
- If role == PARENT, the attached instance was created by this service instance
- If role == CHILD, this instance was created from attached instance on behalf of a user
 
- If role == 
- targetId string
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
- targetInstance stringUrl 
- The dataplane instance URL of the attached instance
- targetRole string
- The role of the target attachment.- PARENT- The target instance is the parent of this attachment.
- CHILD- The target instance is the child of this attachment.
 
- targetService stringType 
- The type of the target instance, such as "FUSION".
- is_implicit bool
- If role == PARENT, the attached instance was created by this service instance
- If role == CHILD, this instance was created from attached instance on behalf of a user
 
- If role == 
- target_id str
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
- target_instance_ strurl 
- The dataplane instance URL of the attached instance
- target_role str
- The role of the target attachment.- PARENT- The target instance is the parent of this attachment.
- CHILD- The target instance is the child of this attachment.
 
- target_service_ strtype 
- The type of the target instance, such as "FUSION".
- isImplicit Boolean
- If role == PARENT, the attached instance was created by this service instance
- If role == CHILD, this instance was created from attached instance on behalf of a user
 
- If role == 
- targetId String
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
- targetInstance StringUrl 
- The dataplane instance URL of the attached instance
- targetRole String
- The role of the target attachment.- PARENT- The target instance is the parent of this attachment.
- CHILD- The target instance is the child of this attachment.
 
- targetService StringType 
- The type of the target instance, such as "FUSION".
GetIntegrationInstancesIntegrationInstanceCustomEndpoint      
- Alias string
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- CertificateSecret stringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- CertificateSecret intVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- DnsType string
- DnsZone stringName 
- DNS Zone name
- Hostname string
- A custom hostname to be used for the integration instance URL, in FQDN format.
- ManagedType string
- Indicates if custom endpoint is managed by oracle or customer.
- Alias string
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- CertificateSecret stringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- CertificateSecret intVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- DnsType string
- DnsZone stringName 
- DNS Zone name
- Hostname string
- A custom hostname to be used for the integration instance URL, in FQDN format.
- ManagedType string
- Indicates if custom endpoint is managed by oracle or customer.
- alias String
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificateSecret StringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificateSecret IntegerVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dnsType String
- dnsZone StringName 
- DNS Zone name
- hostname String
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managedType String
- Indicates if custom endpoint is managed by oracle or customer.
- alias string
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificateSecret stringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificateSecret numberVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dnsType string
- dnsZone stringName 
- DNS Zone name
- hostname string
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managedType string
- Indicates if custom endpoint is managed by oracle or customer.
- alias str
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificate_secret_ strid 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificate_secret_ intversion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dns_type str
- dns_zone_ strname 
- DNS Zone name
- hostname str
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managed_type str
- Indicates if custom endpoint is managed by oracle or customer.
- alias String
- When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
- certificateSecret StringId 
- Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
- certificateSecret NumberVersion 
- The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* dns_type- Type of DNS.
- dnsType String
- dnsZone StringName 
- DNS Zone name
- hostname String
- A custom hostname to be used for the integration instance URL, in FQDN format.
- managedType String
- Indicates if custom endpoint is managed by oracle or customer.
GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetail       
- CrossRegion List<GetIntegration Instance Details Integration Instances Integration Instance Disaster Recovery Detail Cross Region Integration Instance Detail> 
- Details of integration instance created in cross region for disaster recovery.
- RegionalInstance stringUrl 
- Region specific instance url for the integration instance in the region
- Role string
- Role of the integration instance in the region
- CrossRegion []GetIntegration Instance Details Integration Instances Integration Instance Disaster Recovery Detail Cross Region Integration Instance Detail 
- Details of integration instance created in cross region for disaster recovery.
- RegionalInstance stringUrl 
- Region specific instance url for the integration instance in the region
- Role string
- Role of the integration instance in the region
- crossRegion List<GetIntegration Instance Details Instances Instance Disaster Recovery Detail Cross Region Instance Detail> 
- Details of integration instance created in cross region for disaster recovery.
- regionalInstance StringUrl 
- Region specific instance url for the integration instance in the region
- role String
- Role of the integration instance in the region
- crossRegion GetIntegration Instance Details Integration Instances Integration Instance Disaster Recovery Detail Cross Region Integration Instance Detail[] 
- Details of integration instance created in cross region for disaster recovery.
- regionalInstance stringUrl 
- Region specific instance url for the integration instance in the region
- role string
- Role of the integration instance in the region
- cross_region_ Sequence[Getintegration_ instance_ details Integration Instances Integration Instance Disaster Recovery Detail Cross Region Integration Instance Detail] 
- Details of integration instance created in cross region for disaster recovery.
- regional_instance_ strurl 
- Region specific instance url for the integration instance in the region
- role str
- Role of the integration instance in the region
- crossRegion List<Property Map>Integration Instance Details 
- Details of integration instance created in cross region for disaster recovery.
- regionalInstance StringUrl 
- Region specific instance url for the integration instance in the region
- role String
- Role of the integration instance in the region
GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail            
- Id string
- The Virtual Cloud Network OCID.
- Region string
- Cross region where integration instance is created
- Role string
- Role of the integration instance in the region
- TimeRole stringChanged 
- Time when cross region integration instance role was changed
- Id string
- The Virtual Cloud Network OCID.
- Region string
- Cross region where integration instance is created
- Role string
- Role of the integration instance in the region
- TimeRole stringChanged 
- Time when cross region integration instance role was changed
- id String
- The Virtual Cloud Network OCID.
- region String
- Cross region where integration instance is created
- role String
- Role of the integration instance in the region
- timeRole StringChanged 
- Time when cross region integration instance role was changed
- id string
- The Virtual Cloud Network OCID.
- region string
- Cross region where integration instance is created
- role string
- Role of the integration instance in the region
- timeRole stringChanged 
- Time when cross region integration instance role was changed
- id str
- The Virtual Cloud Network OCID.
- region str
- Cross region where integration instance is created
- role str
- Role of the integration instance in the region
- time_role_ strchanged 
- Time when cross region integration instance role was changed
- id String
- The Virtual Cloud Network OCID.
- region String
- Cross region where integration instance is created
- role String
- Role of the integration instance in the region
- timeRole StringChanged 
- Time when cross region integration instance role was changed
GetIntegrationInstancesIntegrationInstanceIdcsInfo      
- IdcsApp stringDisplay Name 
- The IDCS application display name associated with the instance
- IdcsApp stringId 
- The IDCS application ID associated with the instance
- IdcsApp stringLocation Url 
- URL for the location of the IDCS Application (used by IDCS APIs)
- IdcsApp stringName 
- The IDCS application name associated with the instance
- InstancePrimary stringAudience Url 
- The URL used as the primary audience for integration flows in this instance type: string* instance_design_time_url- The Integration Instance Design Time URL
- IdcsApp stringDisplay Name 
- The IDCS application display name associated with the instance
- IdcsApp stringId 
- The IDCS application ID associated with the instance
- IdcsApp stringLocation Url 
- URL for the location of the IDCS Application (used by IDCS APIs)
- IdcsApp stringName 
- The IDCS application name associated with the instance
- InstancePrimary stringAudience Url 
- The URL used as the primary audience for integration flows in this instance type: string* instance_design_time_url- The Integration Instance Design Time URL
- idcsApp StringDisplay Name 
- The IDCS application display name associated with the instance
- idcsApp StringId 
- The IDCS application ID associated with the instance
- idcsApp StringLocation Url 
- URL for the location of the IDCS Application (used by IDCS APIs)
- idcsApp StringName 
- The IDCS application name associated with the instance
- instancePrimary StringAudience Url 
- The URL used as the primary audience for integration flows in this instance type: string* instance_design_time_url- The Integration Instance Design Time URL
- idcsApp stringDisplay Name 
- The IDCS application display name associated with the instance
- idcsApp stringId 
- The IDCS application ID associated with the instance
- idcsApp stringLocation Url 
- URL for the location of the IDCS Application (used by IDCS APIs)
- idcsApp stringName 
- The IDCS application name associated with the instance
- instancePrimary stringAudience Url 
- The URL used as the primary audience for integration flows in this instance type: string* instance_design_time_url- The Integration Instance Design Time URL
- idcs_app_ strdisplay_ name 
- The IDCS application display name associated with the instance
- idcs_app_ strid 
- The IDCS application ID associated with the instance
- idcs_app_ strlocation_ url 
- URL for the location of the IDCS Application (used by IDCS APIs)
- idcs_app_ strname 
- The IDCS application name associated with the instance
- instance_primary_ straudience_ url 
- The URL used as the primary audience for integration flows in this instance type: string* instance_design_time_url- The Integration Instance Design Time URL
- idcsApp StringDisplay Name 
- The IDCS application display name associated with the instance
- idcsApp StringId 
- The IDCS application ID associated with the instance
- idcsApp StringLocation Url 
- URL for the location of the IDCS Application (used by IDCS APIs)
- idcsApp StringName 
- The IDCS application name associated with the instance
- instancePrimary StringAudience Url 
- The URL used as the primary audience for integration flows in this instance type: string* instance_design_time_url- The Integration Instance Design Time URL
GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetail       
- AllowlistedHttp List<string>Ips 
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- AllowlistedHttp List<GetVcns Integration Instances Integration Instance Network Endpoint Detail Allowlisted Http Vcn> 
- Virtual Cloud Networks allowed to access this network endpoint.
- IsIntegration boolVcn Allowlisted 
- The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
- NetworkEndpoint stringType 
- The type of network endpoint.
- AllowlistedHttp []stringIps 
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- AllowlistedHttp []GetVcns Integration Instances Integration Instance Network Endpoint Detail Allowlisted Http Vcn 
- Virtual Cloud Networks allowed to access this network endpoint.
- IsIntegration boolVcn Allowlisted 
- The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
- NetworkEndpoint stringType 
- The type of network endpoint.
- allowlistedHttp List<String>Ips 
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- allowlistedHttp List<GetVcns Instances Instance Network Endpoint Detail Allowlisted Http Vcn> 
- Virtual Cloud Networks allowed to access this network endpoint.
- isIntegration BooleanVcn Allowlisted 
- The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
- networkEndpoint StringType 
- The type of network endpoint.
- allowlistedHttp string[]Ips 
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- allowlistedHttp GetVcns Integration Instances Integration Instance Network Endpoint Detail Allowlisted Http Vcn[] 
- Virtual Cloud Networks allowed to access this network endpoint.
- isIntegration booleanVcn Allowlisted 
- The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
- networkEndpoint stringType 
- The type of network endpoint.
- allowlisted_http_ Sequence[str]ips 
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- allowlisted_http_ Sequence[Getvcns Integration Instances Integration Instance Network Endpoint Detail Allowlisted Http Vcn] 
- Virtual Cloud Networks allowed to access this network endpoint.
- is_integration_ boolvcn_ allowlisted 
- The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
- network_endpoint_ strtype 
- The type of network endpoint.
- allowlistedHttp List<String>Ips 
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- allowlistedHttp List<Property Map>Vcns 
- Virtual Cloud Networks allowed to access this network endpoint.
- isIntegration BooleanVcn Allowlisted 
- The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
- networkEndpoint StringType 
- The type of network endpoint.
GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcn          
- AllowlistedIps List<string>
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- Id string
- The Virtual Cloud Network OCID.
- AllowlistedIps []string
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- Id string
- The Virtual Cloud Network OCID.
- allowlistedIps List<String>
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- id String
- The Virtual Cloud Network OCID.
- allowlistedIps string[]
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- id string
- The Virtual Cloud Network OCID.
- allowlisted_ips Sequence[str]
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- id str
- The Virtual Cloud Network OCID.
- allowlistedIps List<String>
- Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
- id String
- The Virtual Cloud Network OCID.
GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnection        
- NsgIds List<string>
- One or more Network security group Ids. This is an optional argument.
- OutboundConnection stringType 
- The type of Outbound Connection.
- SubnetId string
- Customer Private Network VCN Subnet OCID. This is a required argument.
- NsgIds []string
- One or more Network security group Ids. This is an optional argument.
- OutboundConnection stringType 
- The type of Outbound Connection.
- SubnetId string
- Customer Private Network VCN Subnet OCID. This is a required argument.
- nsgIds List<String>
- One or more Network security group Ids. This is an optional argument.
- outboundConnection StringType 
- The type of Outbound Connection.
- subnetId String
- Customer Private Network VCN Subnet OCID. This is a required argument.
- nsgIds string[]
- One or more Network security group Ids. This is an optional argument.
- outboundConnection stringType 
- The type of Outbound Connection.
- subnetId string
- Customer Private Network VCN Subnet OCID. This is a required argument.
- nsg_ids Sequence[str]
- One or more Network security group Ids. This is an optional argument.
- outbound_connection_ strtype 
- The type of Outbound Connection.
- subnet_id str
- Customer Private Network VCN Subnet OCID. This is a required argument.
- nsgIds List<String>
- One or more Network security group Ids. This is an optional argument.
- outboundConnection StringType 
- The type of Outbound Connection.
- subnetId String
- Customer Private Network VCN Subnet OCID. This is a required argument.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.