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

oci.DataIntegration.getWorkspaces

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Workspaces in Oracle Cloud Infrastructure Data Integration service.

Retrieves a list of Data Integration workspaces.

Example Usage

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

const testWorkspaces = oci.DataIntegration.getWorkspaces({
    compartmentId: compartmentId,
    name: workspaceName,
    state: workspaceState,
});
Copy
import pulumi
import pulumi_oci as oci

test_workspaces = oci.DataIntegration.get_workspaces(compartment_id=compartment_id,
    name=workspace_name,
    state=workspace_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dataintegration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataintegration.GetWorkspaces(ctx, &dataintegration.GetWorkspacesArgs{
			CompartmentId: compartmentId,
			Name:          pulumi.StringRef(workspaceName),
			State:         pulumi.StringRef(workspaceState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testWorkspaces = Oci.DataIntegration.GetWorkspaces.Invoke(new()
    {
        CompartmentId = compartmentId,
        Name = workspaceName,
        State = workspaceState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.DataIntegrationFunctions;
import com.pulumi.oci.DataIntegration.inputs.GetWorkspacesArgs;
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 testWorkspaces = DataIntegrationFunctions.getWorkspaces(GetWorkspacesArgs.builder()
            .compartmentId(compartmentId)
            .name(workspaceName)
            .state(workspaceState)
            .build());

    }
}
Copy
variables:
  testWorkspaces:
    fn::invoke:
      function: oci:DataIntegration:getWorkspaces
      arguments:
        compartmentId: ${compartmentId}
        name: ${workspaceName}
        state: ${workspaceState}
Copy

Using getWorkspaces

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 getWorkspaces(args: GetWorkspacesArgs, opts?: InvokeOptions): Promise<GetWorkspacesResult>
function getWorkspacesOutput(args: GetWorkspacesOutputArgs, opts?: InvokeOptions): Output<GetWorkspacesResult>
Copy
def get_workspaces(compartment_id: Optional[str] = None,
                   filters: Optional[Sequence[_dataintegration.GetWorkspacesFilter]] = None,
                   name: Optional[str] = None,
                   state: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetWorkspacesResult
def get_workspaces_output(compartment_id: Optional[pulumi.Input[str]] = None,
                   filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspacesFilterArgs]]]] = None,
                   name: Optional[pulumi.Input[str]] = None,
                   state: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetWorkspacesResult]
Copy
func GetWorkspaces(ctx *Context, args *GetWorkspacesArgs, opts ...InvokeOption) (*GetWorkspacesResult, error)
func GetWorkspacesOutput(ctx *Context, args *GetWorkspacesOutputArgs, opts ...InvokeOption) GetWorkspacesResultOutput
Copy

> Note: This function is named GetWorkspaces in the Go SDK.

public static class GetWorkspaces 
{
    public static Task<GetWorkspacesResult> InvokeAsync(GetWorkspacesArgs args, InvokeOptions? opts = null)
    public static Output<GetWorkspacesResult> Invoke(GetWorkspacesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWorkspacesResult> getWorkspaces(GetWorkspacesArgs args, InvokeOptions options)
public static Output<GetWorkspacesResult> getWorkspaces(GetWorkspacesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataIntegration/getWorkspaces:getWorkspaces
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment containing the resources you want to list.
Filters Changes to this property will trigger replacement. List<GetWorkspacesFilter>
Name string
Used to filter by the name of the object.
State string
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
CompartmentId This property is required. string
The OCID of the compartment containing the resources you want to list.
Filters Changes to this property will trigger replacement. []GetWorkspacesFilter
Name string
Used to filter by the name of the object.
State string
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
compartmentId This property is required. String
The OCID of the compartment containing the resources you want to list.
filters Changes to this property will trigger replacement. List<GetWorkspacesFilter>
name String
Used to filter by the name of the object.
state String
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
compartmentId This property is required. string
The OCID of the compartment containing the resources you want to list.
filters Changes to this property will trigger replacement. GetWorkspacesFilter[]
name string
Used to filter by the name of the object.
state string
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
compartment_id This property is required. str
The OCID of the compartment containing the resources you want to list.
filters Changes to this property will trigger replacement. Sequence[dataintegration.GetWorkspacesFilter]
name str
Used to filter by the name of the object.
state str
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
compartmentId This property is required. String
The OCID of the compartment containing the resources you want to list.
filters Changes to this property will trigger replacement. List<Property Map>
name String
Used to filter by the name of the object.
state String
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.

getWorkspaces Result

The following output properties are available:

CompartmentId string
The OCID of the compartment that contains the workspace.
Id string
The provider-assigned unique ID for this managed resource.
Workspaces List<GetWorkspacesWorkspace>
The list of workspaces.
Filters List<GetWorkspacesFilter>
Name string
State string
Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.
CompartmentId string
The OCID of the compartment that contains the workspace.
Id string
The provider-assigned unique ID for this managed resource.
Workspaces []GetWorkspacesWorkspace
The list of workspaces.
Filters []GetWorkspacesFilter
Name string
State string
Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.
compartmentId String
The OCID of the compartment that contains the workspace.
id String
The provider-assigned unique ID for this managed resource.
workspaces List<GetWorkspacesWorkspace>
The list of workspaces.
filters List<GetWorkspacesFilter>
name String
state String
Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.
compartmentId string
The OCID of the compartment that contains the workspace.
id string
The provider-assigned unique ID for this managed resource.
workspaces GetWorkspacesWorkspace[]
The list of workspaces.
filters GetWorkspacesFilter[]
name string
state string
Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.
compartment_id str
The OCID of the compartment that contains the workspace.
id str
The provider-assigned unique ID for this managed resource.
workspaces Sequence[dataintegration.GetWorkspacesWorkspace]
The list of workspaces.
filters Sequence[dataintegration.GetWorkspacesFilter]
name str
state str
Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.
compartmentId String
The OCID of the compartment that contains the workspace.
id String
The provider-assigned unique ID for this managed resource.
workspaces List<Property Map>
The list of workspaces.
filters List<Property Map>
name String
state String
Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.

Supporting Types

GetWorkspacesFilter

Name This property is required. string
Used to filter by the name of the object.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Used to filter by the name of the object.
Values This property is required. []string
Regex bool
name This property is required. String
Used to filter by the name of the object.
values This property is required. List<String>
regex Boolean
name This property is required. string
Used to filter by the name of the object.
values This property is required. string[]
regex boolean
name This property is required. str
Used to filter by the name of the object.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Used to filter by the name of the object.
values This property is required. List<String>
regex Boolean

GetWorkspacesWorkspace

CompartmentId This property is required. string
The OCID of the compartment containing the resources you want to list.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
Description This property is required. string
A user defined description for the workspace.
DisplayName This property is required. string
A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
DnsServerIp This property is required. string
The IP of the custom DNS.
DnsServerZone This property is required. string
The DNS zone of the custom DNS to use to resolve names.
EndpointCompartmentId This property is required. string
EndpointId This property is required. string
DCMS endpoint associated with the container/workspace. Returns null if there is none.
EndpointName This property is required. string
Name of the private endpoint associated with the container/workspace. Returns null if there is none.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
A system-generated and immutable identifier assigned to the workspace upon creation.
IsForceOperation This property is required. bool
IsPrivateNetworkEnabled This property is required. bool
Specifies whether the private network connection is enabled or disabled.
QuiesceTimeout This property is required. int
RegistryCompartmentId This property is required. string
RegistryId This property is required. string
DCMS registry associated with the container/workspace. Returns null if there is none.
RegistryName This property is required. string
State This property is required. string
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
StateMessage This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
SubnetId This property is required. string
The OCID of the subnet for customer connected databases.
TimeCreated This property is required. string
The date and time the workspace was created, in the timestamp format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the workspace was updated, in the timestamp format defined by RFC3339.
VcnId This property is required. string
The OCID of the VCN the subnet is in.
CompartmentId This property is required. string
The OCID of the compartment containing the resources you want to list.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
Description This property is required. string
A user defined description for the workspace.
DisplayName This property is required. string
A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
DnsServerIp This property is required. string
The IP of the custom DNS.
DnsServerZone This property is required. string
The DNS zone of the custom DNS to use to resolve names.
EndpointCompartmentId This property is required. string
EndpointId This property is required. string
DCMS endpoint associated with the container/workspace. Returns null if there is none.
EndpointName This property is required. string
Name of the private endpoint associated with the container/workspace. Returns null if there is none.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
A system-generated and immutable identifier assigned to the workspace upon creation.
IsForceOperation This property is required. bool
IsPrivateNetworkEnabled This property is required. bool
Specifies whether the private network connection is enabled or disabled.
QuiesceTimeout This property is required. int
RegistryCompartmentId This property is required. string
RegistryId This property is required. string
DCMS registry associated with the container/workspace. Returns null if there is none.
RegistryName This property is required. string
State This property is required. string
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
StateMessage This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
SubnetId This property is required. string
The OCID of the subnet for customer connected databases.
TimeCreated This property is required. string
The date and time the workspace was created, in the timestamp format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the workspace was updated, in the timestamp format defined by RFC3339.
VcnId This property is required. string
The OCID of the VCN the subnet is in.
compartmentId This property is required. String
The OCID of the compartment containing the resources you want to list.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description This property is required. String
A user defined description for the workspace.
displayName This property is required. String
A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
dnsServerIp This property is required. String
The IP of the custom DNS.
dnsServerZone This property is required. String
The DNS zone of the custom DNS to use to resolve names.
endpointCompartmentId This property is required. String
endpointId This property is required. String
DCMS endpoint associated with the container/workspace. Returns null if there is none.
endpointName This property is required. String
Name of the private endpoint associated with the container/workspace. Returns null if there is none.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
A system-generated and immutable identifier assigned to the workspace upon creation.
isForceOperation This property is required. Boolean
isPrivateNetworkEnabled This property is required. Boolean
Specifies whether the private network connection is enabled or disabled.
quiesceTimeout This property is required. Integer
registryCompartmentId This property is required. String
registryId This property is required. String
DCMS registry associated with the container/workspace. Returns null if there is none.
registryName This property is required. String
state This property is required. String
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
stateMessage This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
subnetId This property is required. String
The OCID of the subnet for customer connected databases.
timeCreated This property is required. String
The date and time the workspace was created, in the timestamp format defined by RFC3339.
timeUpdated This property is required. String
The date and time the workspace was updated, in the timestamp format defined by RFC3339.
vcnId This property is required. String
The OCID of the VCN the subnet is in.
compartmentId This property is required. string
The OCID of the compartment containing the resources you want to list.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description This property is required. string
A user defined description for the workspace.
displayName This property is required. string
A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
dnsServerIp This property is required. string
The IP of the custom DNS.
dnsServerZone This property is required. string
The DNS zone of the custom DNS to use to resolve names.
endpointCompartmentId This property is required. string
endpointId This property is required. string
DCMS endpoint associated with the container/workspace. Returns null if there is none.
endpointName This property is required. string
Name of the private endpoint associated with the container/workspace. Returns null if there is none.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
id This property is required. string
A system-generated and immutable identifier assigned to the workspace upon creation.
isForceOperation This property is required. boolean
isPrivateNetworkEnabled This property is required. boolean
Specifies whether the private network connection is enabled or disabled.
quiesceTimeout This property is required. number
registryCompartmentId This property is required. string
registryId This property is required. string
DCMS registry associated with the container/workspace. Returns null if there is none.
registryName This property is required. string
state This property is required. string
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
stateMessage This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
subnetId This property is required. string
The OCID of the subnet for customer connected databases.
timeCreated This property is required. string
The date and time the workspace was created, in the timestamp format defined by RFC3339.
timeUpdated This property is required. string
The date and time the workspace was updated, in the timestamp format defined by RFC3339.
vcnId This property is required. string
The OCID of the VCN the subnet is in.
compartment_id This property is required. str
The OCID of the compartment containing the resources you want to list.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description This property is required. str
A user defined description for the workspace.
display_name This property is required. str
A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
dns_server_ip This property is required. str
The IP of the custom DNS.
dns_server_zone This property is required. str
The DNS zone of the custom DNS to use to resolve names.
endpoint_compartment_id This property is required. str
endpoint_id This property is required. str
DCMS endpoint associated with the container/workspace. Returns null if there is none.
endpoint_name This property is required. str
Name of the private endpoint associated with the container/workspace. Returns null if there is none.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
id This property is required. str
A system-generated and immutable identifier assigned to the workspace upon creation.
is_force_operation This property is required. bool
is_private_network_enabled This property is required. bool
Specifies whether the private network connection is enabled or disabled.
quiesce_timeout This property is required. int
registry_compartment_id This property is required. str
registry_id This property is required. str
DCMS registry associated with the container/workspace. Returns null if there is none.
registry_name This property is required. str
state This property is required. str
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
state_message This property is required. str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
subnet_id This property is required. str
The OCID of the subnet for customer connected databases.
time_created This property is required. str
The date and time the workspace was created, in the timestamp format defined by RFC3339.
time_updated This property is required. str
The date and time the workspace was updated, in the timestamp format defined by RFC3339.
vcn_id This property is required. str
The OCID of the VCN the subnet is in.
compartmentId This property is required. String
The OCID of the compartment containing the resources you want to list.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description This property is required. String
A user defined description for the workspace.
displayName This property is required. String
A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
dnsServerIp This property is required. String
The IP of the custom DNS.
dnsServerZone This property is required. String
The DNS zone of the custom DNS to use to resolve names.
endpointCompartmentId This property is required. String
endpointId This property is required. String
DCMS endpoint associated with the container/workspace. Returns null if there is none.
endpointName This property is required. String
Name of the private endpoint associated with the container/workspace. Returns null if there is none.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
A system-generated and immutable identifier assigned to the workspace upon creation.
isForceOperation This property is required. Boolean
isPrivateNetworkEnabled This property is required. Boolean
Specifies whether the private network connection is enabled or disabled.
quiesceTimeout This property is required. Number
registryCompartmentId This property is required. String
registryId This property is required. String
DCMS registry associated with the container/workspace. Returns null if there is none.
registryName This property is required. String
state This property is required. String
The lifecycle state of a resource. When specified, the operation only returns resources that match the given lifecycle state. When not specified, all lifecycle states are processed as a match.
stateMessage This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
subnetId This property is required. String
The OCID of the subnet for customer connected databases.
timeCreated This property is required. String
The date and time the workspace was created, in the timestamp format defined by RFC3339.
timeUpdated This property is required. String
The date and time the workspace was updated, in the timestamp format defined by RFC3339.
vcnId This property is required. String
The OCID of the VCN the subnet is in.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi