oci.DataIntegration.Workspace
Explore with Pulumi AI
This resource provides the Workspace resource in Oracle Cloud Infrastructure Data Integration service.
Creates a new Data Integration workspace ready for performing data integration tasks. To retrieve the OCID for the new workspace, use the opc-work-request-id returned by this API and call the GetWorkRequest API.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspace = new oci.dataintegration.Workspace("test_workspace", {
compartmentId: compartmentId,
displayName: workspaceDisplayName,
definedTags: {
"Operations.CostCenter": "42",
},
description: workspaceDescription,
dnsServerIp: workspaceDnsServerIp,
dnsServerZone: workspaceDnsServerZone,
endpointCompartmentId: testCompartment.id,
endpointId: testEndpoint.id,
endpointName: workspaceEndpointName,
freeformTags: {
Department: "Finance",
},
isPrivateNetworkEnabled: workspaceIsPrivateNetworkEnabled,
registryCompartmentId: testCompartment.id,
registryId: testRegistry.id,
registryName: testRegistry.name,
subnetId: testSubnet.id,
vcnId: testVcn.id,
});
import pulumi
import pulumi_oci as oci
test_workspace = oci.data_integration.Workspace("test_workspace",
compartment_id=compartment_id,
display_name=workspace_display_name,
defined_tags={
"Operations.CostCenter": "42",
},
description=workspace_description,
dns_server_ip=workspace_dns_server_ip,
dns_server_zone=workspace_dns_server_zone,
endpoint_compartment_id=test_compartment["id"],
endpoint_id=test_endpoint["id"],
endpoint_name=workspace_endpoint_name,
freeform_tags={
"Department": "Finance",
},
is_private_network_enabled=workspace_is_private_network_enabled,
registry_compartment_id=test_compartment["id"],
registry_id=test_registry["id"],
registry_name=test_registry["name"],
subnet_id=test_subnet["id"],
vcn_id=test_vcn["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DataIntegration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DataIntegration.NewWorkspace(ctx, "test_workspace", &DataIntegration.WorkspaceArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(workspaceDisplayName),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
Description: pulumi.Any(workspaceDescription),
DnsServerIp: pulumi.Any(workspaceDnsServerIp),
DnsServerZone: pulumi.Any(workspaceDnsServerZone),
EndpointCompartmentId: pulumi.Any(testCompartment.Id),
EndpointId: pulumi.Any(testEndpoint.Id),
EndpointName: pulumi.Any(workspaceEndpointName),
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
IsPrivateNetworkEnabled: pulumi.Any(workspaceIsPrivateNetworkEnabled),
RegistryCompartmentId: pulumi.Any(testCompartment.Id),
RegistryId: pulumi.Any(testRegistry.Id),
RegistryName: pulumi.Any(testRegistry.Name),
SubnetId: pulumi.Any(testSubnet.Id),
VcnId: pulumi.Any(testVcn.Id),
})
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 testWorkspace = new Oci.DataIntegration.Workspace("test_workspace", new()
{
CompartmentId = compartmentId,
DisplayName = workspaceDisplayName,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = workspaceDescription,
DnsServerIp = workspaceDnsServerIp,
DnsServerZone = workspaceDnsServerZone,
EndpointCompartmentId = testCompartment.Id,
EndpointId = testEndpoint.Id,
EndpointName = workspaceEndpointName,
FreeformTags =
{
{ "Department", "Finance" },
},
IsPrivateNetworkEnabled = workspaceIsPrivateNetworkEnabled,
RegistryCompartmentId = testCompartment.Id,
RegistryId = testRegistry.Id,
RegistryName = testRegistry.Name,
SubnetId = testSubnet.Id,
VcnId = testVcn.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.Workspace;
import com.pulumi.oci.DataIntegration.WorkspaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testWorkspace = new Workspace("testWorkspace", WorkspaceArgs.builder()
.compartmentId(compartmentId)
.displayName(workspaceDisplayName)
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(workspaceDescription)
.dnsServerIp(workspaceDnsServerIp)
.dnsServerZone(workspaceDnsServerZone)
.endpointCompartmentId(testCompartment.id())
.endpointId(testEndpoint.id())
.endpointName(workspaceEndpointName)
.freeformTags(Map.of("Department", "Finance"))
.isPrivateNetworkEnabled(workspaceIsPrivateNetworkEnabled)
.registryCompartmentId(testCompartment.id())
.registryId(testRegistry.id())
.registryName(testRegistry.name())
.subnetId(testSubnet.id())
.vcnId(testVcn.id())
.build());
}
}
resources:
testWorkspace:
type: oci:DataIntegration:Workspace
name: test_workspace
properties:
compartmentId: ${compartmentId}
displayName: ${workspaceDisplayName}
definedTags:
Operations.CostCenter: '42'
description: ${workspaceDescription}
dnsServerIp: ${workspaceDnsServerIp}
dnsServerZone: ${workspaceDnsServerZone}
endpointCompartmentId: ${testCompartment.id}
endpointId: ${testEndpoint.id}
endpointName: ${workspaceEndpointName}
freeformTags:
Department: Finance
isPrivateNetworkEnabled: ${workspaceIsPrivateNetworkEnabled}
registryCompartmentId: ${testCompartment.id}
registryId: ${testRegistry.id}
registryName: ${testRegistry.name}
subnetId: ${testSubnet.id}
vcnId: ${testVcn.id}
Create Workspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workspace(name: string, args: WorkspaceArgs, opts?: CustomResourceOptions);
@overload
def Workspace(resource_name: str,
args: WorkspaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Workspace(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
compartment_id: Optional[str] = None,
endpoint_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
dns_server_ip: Optional[str] = None,
dns_server_zone: Optional[str] = None,
endpoint_compartment_id: Optional[str] = None,
endpoint_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
is_force_operation: Optional[bool] = None,
is_private_network_enabled: Optional[bool] = None,
quiesce_timeout: Optional[int] = None,
registry_compartment_id: Optional[str] = None,
registry_id: Optional[str] = None,
registry_name: Optional[str] = None,
subnet_id: Optional[str] = None,
vcn_id: Optional[str] = None)
func NewWorkspace(ctx *Context, name string, args WorkspaceArgs, opts ...ResourceOption) (*Workspace, error)
public Workspace(string name, WorkspaceArgs args, CustomResourceOptions? opts = null)
public Workspace(String name, WorkspaceArgs args)
public Workspace(String name, WorkspaceArgs args, CustomResourceOptions options)
type: oci:DataIntegration:Workspace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkspaceArgs
- 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 WorkspaceArgs
- 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 WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceArgs
- 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 workspaceResource = new Oci.DataIntegration.Workspace("workspaceResource", new()
{
DisplayName = "string",
CompartmentId = "string",
EndpointName = "string",
FreeformTags =
{
{ "string", "any" },
},
DnsServerIp = "string",
DnsServerZone = "string",
EndpointCompartmentId = "string",
EndpointId = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
IsForceOperation = false,
IsPrivateNetworkEnabled = false,
QuiesceTimeout = 0,
RegistryCompartmentId = "string",
RegistryId = "string",
RegistryName = "string",
SubnetId = "string",
VcnId = "string",
});
example, err := DataIntegration.NewWorkspace(ctx, "workspaceResource", &DataIntegration.WorkspaceArgs{
DisplayName: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
EndpointName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
DnsServerIp: pulumi.String("string"),
DnsServerZone: pulumi.String("string"),
EndpointCompartmentId: pulumi.String("string"),
EndpointId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
IsForceOperation: pulumi.Bool(false),
IsPrivateNetworkEnabled: pulumi.Bool(false),
QuiesceTimeout: pulumi.Int(0),
RegistryCompartmentId: pulumi.String("string"),
RegistryId: pulumi.String("string"),
RegistryName: pulumi.String("string"),
SubnetId: pulumi.String("string"),
VcnId: pulumi.String("string"),
})
var workspaceResource = new Workspace("workspaceResource", WorkspaceArgs.builder()
.displayName("string")
.compartmentId("string")
.endpointName("string")
.freeformTags(Map.of("string", "any"))
.dnsServerIp("string")
.dnsServerZone("string")
.endpointCompartmentId("string")
.endpointId("string")
.definedTags(Map.of("string", "any"))
.description("string")
.isForceOperation(false)
.isPrivateNetworkEnabled(false)
.quiesceTimeout(0)
.registryCompartmentId("string")
.registryId("string")
.registryName("string")
.subnetId("string")
.vcnId("string")
.build());
workspace_resource = oci.data_integration.Workspace("workspaceResource",
display_name="string",
compartment_id="string",
endpoint_name="string",
freeform_tags={
"string": "any",
},
dns_server_ip="string",
dns_server_zone="string",
endpoint_compartment_id="string",
endpoint_id="string",
defined_tags={
"string": "any",
},
description="string",
is_force_operation=False,
is_private_network_enabled=False,
quiesce_timeout=0,
registry_compartment_id="string",
registry_id="string",
registry_name="string",
subnet_id="string",
vcn_id="string")
const workspaceResource = new oci.dataintegration.Workspace("workspaceResource", {
displayName: "string",
compartmentId: "string",
endpointName: "string",
freeformTags: {
string: "any",
},
dnsServerIp: "string",
dnsServerZone: "string",
endpointCompartmentId: "string",
endpointId: "string",
definedTags: {
string: "any",
},
description: "string",
isForceOperation: false,
isPrivateNetworkEnabled: false,
quiesceTimeout: 0,
registryCompartmentId: "string",
registryId: "string",
registryName: "string",
subnetId: "string",
vcnId: "string",
});
type: oci:DataIntegration:Workspace
properties:
compartmentId: string
definedTags:
string: any
description: string
displayName: string
dnsServerIp: string
dnsServerZone: string
endpointCompartmentId: string
endpointId: string
endpointName: string
freeformTags:
string: any
isForceOperation: false
isPrivateNetworkEnabled: false
quiesceTimeout: 0
registryCompartmentId: string
registryId: string
registryName: string
subnetId: string
vcnId: string
Workspace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Workspace resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment containing the workspace.
- Display
Name string - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user defined description for the workspace.
- Dns
Server stringIp - The IP of the custom DNS.
- Dns
Server stringZone - The DNS zone of the custom DNS to use to resolve names.
- Endpoint
Compartment stringId - DCMS PRivate Endpoint Compartment Identifier
- Endpoint
Id string - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- Endpoint
Name string - DCMS Private Endpoint Name
- Dictionary<string, object>
- (Updatable) 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"}
- Is
Force boolOperation - Is
Private boolNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- Quiesce
Timeout int - Registry
Compartment stringId - DCMS Data Asset Registry Compartment Identifier
- Registry
Id string - DCMS Data Asset Registry ID to which the workspace is associated
- Registry
Name string - DCMS Data Asset Registry display name
- Subnet
Id string - The OCID of the subnet for customer connected databases.
- Vcn
Id string The OCID of the VCN the subnet is in.
** 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
- Compartment
Id string - (Updatable) The OCID of the compartment containing the workspace.
- Display
Name string - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user defined description for the workspace.
- Dns
Server stringIp - The IP of the custom DNS.
- Dns
Server stringZone - The DNS zone of the custom DNS to use to resolve names.
- Endpoint
Compartment stringId - DCMS PRivate Endpoint Compartment Identifier
- Endpoint
Id string - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- Endpoint
Name string - DCMS Private Endpoint Name
- map[string]interface{}
- (Updatable) 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"}
- Is
Force boolOperation - Is
Private boolNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- Quiesce
Timeout int - Registry
Compartment stringId - DCMS Data Asset Registry Compartment Identifier
- Registry
Id string - DCMS Data Asset Registry ID to which the workspace is associated
- Registry
Name string - DCMS Data Asset Registry display name
- Subnet
Id string - The OCID of the subnet for customer connected databases.
- Vcn
Id string The OCID of the VCN the subnet is in.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing the workspace.
- display
Name String - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A user defined description for the workspace.
- dns
Server StringIp - The IP of the custom DNS.
- dns
Server StringZone - The DNS zone of the custom DNS to use to resolve names.
- endpoint
Compartment StringId - DCMS PRivate Endpoint Compartment Identifier
- endpoint
Id String - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint
Name String - DCMS Private Endpoint Name
- Map<String,Object>
- (Updatable) 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"}
- is
Force BooleanOperation - is
Private BooleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout Integer - registry
Compartment StringId - DCMS Data Asset Registry Compartment Identifier
- registry
Id String - DCMS Data Asset Registry ID to which the workspace is associated
- registry
Name String - DCMS Data Asset Registry display name
- subnet
Id String - The OCID of the subnet for customer connected databases.
- vcn
Id String The OCID of the VCN the subnet is in.
** 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
- compartment
Id string - (Updatable) The OCID of the compartment containing the workspace.
- display
Name string - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) A user defined description for the workspace.
- dns
Server stringIp - The IP of the custom DNS.
- dns
Server stringZone - The DNS zone of the custom DNS to use to resolve names.
- endpoint
Compartment stringId - DCMS PRivate Endpoint Compartment Identifier
- endpoint
Id string - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint
Name string - DCMS Private Endpoint Name
- {[key: string]: any}
- (Updatable) 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"}
- is
Force booleanOperation - is
Private booleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout number - registry
Compartment stringId - DCMS Data Asset Registry Compartment Identifier
- registry
Id string - DCMS Data Asset Registry ID to which the workspace is associated
- registry
Name string - DCMS Data Asset Registry display name
- subnet
Id string - The OCID of the subnet for customer connected databases.
- vcn
Id string The OCID of the VCN the subnet is in.
** 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
- compartment_
id str - (Updatable) The OCID of the compartment containing the workspace.
- display_
name str - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) A user defined description for the workspace.
- dns_
server_ strip - The IP of the custom DNS.
- dns_
server_ strzone - The DNS zone of the custom DNS to use to resolve names.
- endpoint_
compartment_ strid - DCMS PRivate Endpoint Compartment Identifier
- endpoint_
id str - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint_
name str - DCMS Private Endpoint Name
- Mapping[str, Any]
- (Updatable) 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"}
- is_
force_ booloperation - is_
private_ boolnetwork_ enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce_
timeout int - registry_
compartment_ strid - DCMS Data Asset Registry Compartment Identifier
- registry_
id str - DCMS Data Asset Registry ID to which the workspace is associated
- registry_
name str - DCMS Data Asset Registry display name
- subnet_
id str - The OCID of the subnet for customer connected databases.
- vcn_
id str The OCID of the VCN the subnet is in.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing the workspace.
- display
Name String - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A user defined description for the workspace.
- dns
Server StringIp - The IP of the custom DNS.
- dns
Server StringZone - The DNS zone of the custom DNS to use to resolve names.
- endpoint
Compartment StringId - DCMS PRivate Endpoint Compartment Identifier
- endpoint
Id String - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint
Name String - DCMS Private Endpoint Name
- Map<Any>
- (Updatable) 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"}
- is
Force BooleanOperation - is
Private BooleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout Number - registry
Compartment StringId - DCMS Data Asset Registry Compartment Identifier
- registry
Id String - DCMS Data Asset Registry ID to which the workspace is associated
- registry
Name String - DCMS Data Asset Registry display name
- subnet
Id String - The OCID of the subnet for customer connected databases.
- vcn
Id String The OCID of the VCN the subnet is in.
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- State
Message 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.
- Time
Created string - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- State
Message 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.
- Time
Created string - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- state
Message 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.
- time
Created String - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- state
Message 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.
- time
Created string - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- id str
- The provider-assigned unique ID for this managed resource.
- 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.
- state_
message 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.
- time_
created str - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time_
updated str - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- state
Message 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.
- time
Created String - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
Look up Existing Workspace Resource
Get an existing Workspace 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?: WorkspaceState, opts?: CustomResourceOptions): Workspace
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
dns_server_ip: Optional[str] = None,
dns_server_zone: Optional[str] = None,
endpoint_compartment_id: Optional[str] = None,
endpoint_id: Optional[str] = None,
endpoint_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_force_operation: Optional[bool] = None,
is_private_network_enabled: Optional[bool] = None,
quiesce_timeout: Optional[int] = None,
registry_compartment_id: Optional[str] = None,
registry_id: Optional[str] = None,
registry_name: Optional[str] = None,
state: Optional[str] = None,
state_message: Optional[str] = None,
subnet_id: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
vcn_id: Optional[str] = None) -> Workspace
func GetWorkspace(ctx *Context, name string, id IDInput, state *WorkspaceState, opts ...ResourceOption) (*Workspace, error)
public static Workspace Get(string name, Input<string> id, WorkspaceState? state, CustomResourceOptions? opts = null)
public static Workspace get(String name, Output<String> id, WorkspaceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the workspace.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user defined description for the workspace.
- Display
Name string - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- Dns
Server stringIp - The IP of the custom DNS.
- Dns
Server stringZone - The DNS zone of the custom DNS to use to resolve names.
- Endpoint
Compartment stringId - DCMS PRivate Endpoint Compartment Identifier
- Endpoint
Id string - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- Endpoint
Name string - DCMS Private Endpoint Name
- Dictionary<string, object>
- (Updatable) 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"}
- Is
Force boolOperation - Is
Private boolNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- Quiesce
Timeout int - Registry
Compartment stringId - DCMS Data Asset Registry Compartment Identifier
- Registry
Id string - DCMS Data Asset Registry ID to which the workspace is associated
- Registry
Name string - DCMS Data Asset Registry display name
- 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.
- State
Message 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.
- Subnet
Id string - The OCID of the subnet for customer connected databases.
- Time
Created string - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- Vcn
Id string The OCID of the VCN the subnet is in.
** 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
- Compartment
Id string - (Updatable) The OCID of the compartment containing the workspace.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user defined description for the workspace.
- Display
Name string - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- Dns
Server stringIp - The IP of the custom DNS.
- Dns
Server stringZone - The DNS zone of the custom DNS to use to resolve names.
- Endpoint
Compartment stringId - DCMS PRivate Endpoint Compartment Identifier
- Endpoint
Id string - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- Endpoint
Name string - DCMS Private Endpoint Name
- map[string]interface{}
- (Updatable) 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"}
- Is
Force boolOperation - Is
Private boolNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- Quiesce
Timeout int - Registry
Compartment stringId - DCMS Data Asset Registry Compartment Identifier
- Registry
Id string - DCMS Data Asset Registry ID to which the workspace is associated
- Registry
Name string - DCMS Data Asset Registry display name
- 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.
- State
Message 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.
- Subnet
Id string - The OCID of the subnet for customer connected databases.
- Time
Created string - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- Vcn
Id string The OCID of the VCN the subnet is in.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing the workspace.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A user defined description for the workspace.
- display
Name String - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- dns
Server StringIp - The IP of the custom DNS.
- dns
Server StringZone - The DNS zone of the custom DNS to use to resolve names.
- endpoint
Compartment StringId - DCMS PRivate Endpoint Compartment Identifier
- endpoint
Id String - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint
Name String - DCMS Private Endpoint Name
- Map<String,Object>
- (Updatable) 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"}
- is
Force BooleanOperation - is
Private BooleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout Integer - registry
Compartment StringId - DCMS Data Asset Registry Compartment Identifier
- registry
Id String - DCMS Data Asset Registry ID to which the workspace is associated
- registry
Name String - DCMS Data Asset Registry display name
- 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.
- state
Message 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.
- subnet
Id String - The OCID of the subnet for customer connected databases.
- time
Created String - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- vcn
Id String The OCID of the VCN the subnet is in.
** 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
- compartment
Id string - (Updatable) The OCID of the compartment containing the workspace.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) A user defined description for the workspace.
- display
Name string - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- dns
Server stringIp - The IP of the custom DNS.
- dns
Server stringZone - The DNS zone of the custom DNS to use to resolve names.
- endpoint
Compartment stringId - DCMS PRivate Endpoint Compartment Identifier
- endpoint
Id string - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint
Name string - DCMS Private Endpoint Name
- {[key: string]: any}
- (Updatable) 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"}
- is
Force booleanOperation - is
Private booleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout number - registry
Compartment stringId - DCMS Data Asset Registry Compartment Identifier
- registry
Id string - DCMS Data Asset Registry ID to which the workspace is associated
- registry
Name string - DCMS Data Asset Registry display name
- 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.
- state
Message 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.
- subnet
Id string - The OCID of the subnet for customer connected databases.
- time
Created string - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- vcn
Id string The OCID of the VCN the subnet is in.
** 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
- compartment_
id str - (Updatable) The OCID of the compartment containing the workspace.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) A user defined description for the workspace.
- display_
name str - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- dns_
server_ strip - The IP of the custom DNS.
- dns_
server_ strzone - The DNS zone of the custom DNS to use to resolve names.
- endpoint_
compartment_ strid - DCMS PRivate Endpoint Compartment Identifier
- endpoint_
id str - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint_
name str - DCMS Private Endpoint Name
- Mapping[str, Any]
- (Updatable) 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"}
- is_
force_ booloperation - is_
private_ boolnetwork_ enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce_
timeout int - registry_
compartment_ strid - DCMS Data Asset Registry Compartment Identifier
- registry_
id str - DCMS Data Asset Registry ID to which the workspace is associated
- registry_
name str - DCMS Data Asset Registry display name
- 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.
- state_
message 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 str - The OCID of the subnet for customer connected databases.
- time_
created str - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time_
updated str - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- vcn_
id str The OCID of the VCN the subnet is in.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing the workspace.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A user defined description for the workspace.
- display
Name String - (Updatable) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
- dns
Server StringIp - The IP of the custom DNS.
- dns
Server StringZone - The DNS zone of the custom DNS to use to resolve names.
- endpoint
Compartment StringId - DCMS PRivate Endpoint Compartment Identifier
- endpoint
Id String - DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
- endpoint
Name String - DCMS Private Endpoint Name
- Map<Any>
- (Updatable) 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"}
- is
Force BooleanOperation - is
Private BooleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout Number - registry
Compartment StringId - DCMS Data Asset Registry Compartment Identifier
- registry
Id String - DCMS Data Asset Registry ID to which the workspace is associated
- registry
Name String - DCMS Data Asset Registry display name
- 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.
- state
Message 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.
- subnet
Id String - The OCID of the subnet for customer connected databases.
- time
Created String - The date and time the workspace was created, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the workspace was updated, in the timestamp format defined by RFC3339.
- vcn
Id String The OCID of the VCN the subnet is in.
** 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
Import
Workspaces can be imported using the id
, e.g.
$ pulumi import oci:DataIntegration/workspace:Workspace test_workspace "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.