Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.DataIntegration.getWorkspaces
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 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,
});
import pulumi
import pulumi_oci as oci
test_workspaces = oci.DataIntegration.get_workspaces(compartment_id=compartment_id,
name=workspace_name,
state=workspace_state)
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.GetWorkspaces(ctx, &dataintegration.GetWorkspacesArgs{
CompartmentId: compartmentId,
Name: pulumi.StringRef(workspaceName),
State: pulumi.StringRef(workspaceState),
}, 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 testWorkspaces = Oci.DataIntegration.GetWorkspaces.Invoke(new()
{
CompartmentId = compartmentId,
Name = workspaceName,
State = workspaceState,
});
});
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());
}
}
variables:
testWorkspaces:
fn::invoke:
Function: oci:DataIntegration:getWorkspaces
Arguments:
compartmentId: ${compartmentId}
name: ${workspaceName}
state: ${workspaceState}
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>
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]
func GetWorkspaces(ctx *Context, args *GetWorkspacesArgs, opts ...InvokeOption) (*GetWorkspacesResult, error)
func GetWorkspacesOutput(ctx *Context, args *GetWorkspacesOutputArgs, opts ...InvokeOption) GetWorkspacesResultOutput
> 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)
}
public static CompletableFuture<GetWorkspacesResult> getWorkspaces(GetWorkspacesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataIntegration/getWorkspaces:getWorkspaces
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment containing the resources you want to list.
- Filters
List<Get
Workspaces Filter> - 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 string - The OCID of the compartment containing the resources you want to list.
- Filters
[]Get
Workspaces Filter - 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 String - The OCID of the compartment containing the resources you want to list.
- filters
List<Get
Workspaces Filter> - 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 string - The OCID of the compartment containing the resources you want to list.
- filters
Get
Workspaces Filter[] - 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 str - The OCID of the compartment containing the resources you want to list.
- filters
Sequence[dataintegration.
Get Workspaces Filter] - 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.
- compartment
Id String - The OCID of the compartment containing the resources you want to list.
- filters 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:
- Compartment
Id string - The OCID of the compartment that contains the workspace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workspaces
List<Get
Workspaces Workspace> - The list of workspaces.
- Filters
List<Get
Workspaces Filter> - 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 string - The OCID of the compartment that contains the workspace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workspaces
[]Get
Workspaces Workspace - The list of workspaces.
- Filters
[]Get
Workspaces Filter - 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 String - The OCID of the compartment that contains the workspace.
- id String
- The provider-assigned unique ID for this managed resource.
- workspaces
List<Get
Workspaces Workspace> - The list of workspaces.
- filters
List<Get
Workspaces Filter> - 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 string - The OCID of the compartment that contains the workspace.
- id string
- The provider-assigned unique ID for this managed resource.
- workspaces
Get
Workspaces Workspace[] - The list of workspaces.
- filters
Get
Workspaces Filter[] - 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.
Get Workspaces Workspace] - The list of workspaces.
- filters
Sequence[dataintegration.
Get Workspaces Filter] - 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.
- compartment
Id 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
GetWorkspacesWorkspace
- Compartment
Id string - The OCID of the compartment containing the resources you want to list.
- Dictionary<string, object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- A user defined description for the workspace.
- Display
Name string - 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 - Endpoint
Id string - DCMS endpoint associated with the container/workspace. Returns null if there is none.
- Endpoint
Name string - Name of the private endpoint associated with the container/workspace. Returns null if there is none.
- Dictionary<string, object>
- 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 string
- A system-generated and immutable identifier assigned to the workspace upon creation.
- Is
Force boolOperation - Is
Private boolNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- Quiesce
Timeout int - Registry
Compartment stringId - Registry
Id string - DCMS registry associated with the container/workspace. Returns null if there is none.
- Registry
Name string - 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.
- 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.
- Compartment
Id string - The OCID of the compartment containing the resources you want to list.
- map[string]interface{}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- A user defined description for the workspace.
- Display
Name string - 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 - Endpoint
Id string - DCMS endpoint associated with the container/workspace. Returns null if there is none.
- Endpoint
Name string - Name of the private endpoint associated with the container/workspace. Returns null if there is none.
- map[string]interface{}
- 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 string
- A system-generated and immutable identifier assigned to the workspace upon creation.
- Is
Force boolOperation - Is
Private boolNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- Quiesce
Timeout int - Registry
Compartment stringId - Registry
Id string - DCMS registry associated with the container/workspace. Returns null if there is none.
- Registry
Name string - 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.
- 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.
- compartment
Id String - The OCID of the compartment containing the resources you want to list.
- Map<String,Object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- A user defined description for the workspace.
- display
Name String - 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 - endpoint
Id String - DCMS endpoint associated with the container/workspace. Returns null if there is none.
- endpoint
Name String - Name of the private endpoint associated with the container/workspace. Returns null if there is none.
- Map<String,Object>
- 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 String
- A system-generated and immutable identifier assigned to the workspace upon creation.
- is
Force BooleanOperation - is
Private BooleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout Integer - registry
Compartment StringId - registry
Id String - DCMS registry associated with the container/workspace. Returns null if there is none.
- registry
Name String - 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.
- 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.
- compartment
Id string - The OCID of the compartment containing the resources you want to list.
- {[key: string]: any}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- A user defined description for the workspace.
- display
Name string - 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 - endpoint
Id string - DCMS endpoint associated with the container/workspace. Returns null if there is none.
- endpoint
Name string - Name of the private endpoint associated with the container/workspace. Returns null if there is none.
- {[key: string]: any}
- 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 string
- A system-generated and immutable identifier assigned to the workspace upon creation.
- is
Force booleanOperation - is
Private booleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout number - registry
Compartment stringId - registry
Id string - DCMS registry associated with the container/workspace. Returns null if there is none.
- registry
Name string - 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.
- 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.
- compartment_
id str - The OCID of the compartment containing the resources you want to list.
- Mapping[str, Any]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- A user defined description for the workspace.
- display_
name 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_ 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 - endpoint_
id str - DCMS endpoint associated with the container/workspace. Returns null if there is none.
- endpoint_
name str - Name of the private endpoint associated with the container/workspace. Returns null if there is none.
- Mapping[str, Any]
- 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 str
- A system-generated and immutable identifier assigned to the workspace upon creation.
- is_
force_ booloperation - is_
private_ boolnetwork_ enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce_
timeout int - registry_
compartment_ strid - registry_
id str - DCMS registry associated with the container/workspace. Returns null if there is none.
- registry_
name str - 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.
- 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.
- compartment
Id String - The OCID of the compartment containing the resources you want to list.
- Map<Any>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- A user defined description for the workspace.
- display
Name String - 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 - endpoint
Id String - DCMS endpoint associated with the container/workspace. Returns null if there is none.
- endpoint
Name String - Name of the private endpoint associated with the container/workspace. Returns null if there is none.
- Map<Any>
- 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 String
- A system-generated and immutable identifier assigned to the workspace upon creation.
- is
Force BooleanOperation - is
Private BooleanNetwork Enabled - Specifies whether the private network connection is enabled or disabled.
- quiesce
Timeout Number - registry
Compartment StringId - registry
Id String - DCMS registry associated with the container/workspace. Returns null if there is none.
- registry
Name String - 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.
- 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.
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 v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi