1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. getWorkspaceExportRequests
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DataIntegration.getWorkspaceExportRequests

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Workspace Export Requests in Oracle Cloud Infrastructure Data Integration service.

This endpoint can be used to get the list of export object requests.

Example Usage

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

const testWorkspaceExportRequests = oci.DataIntegration.getWorkspaceExportRequests({
    workspaceId: testWorkspace.id,
    exportStatus: workspaceExportRequestExportStatus,
    name: workspaceExportRequestName,
    projection: workspaceExportRequestProjection,
    timeEndedInMillis: workspaceExportRequestTimeEndedInMillis,
    timeStartedInMillis: workspaceExportRequestTimeStartedInMillis,
});
Copy
import pulumi
import pulumi_oci as oci

test_workspace_export_requests = oci.DataIntegration.get_workspace_export_requests(workspace_id=test_workspace["id"],
    export_status=workspace_export_request_export_status,
    name=workspace_export_request_name,
    projection=workspace_export_request_projection,
    time_ended_in_millis=workspace_export_request_time_ended_in_millis,
    time_started_in_millis=workspace_export_request_time_started_in_millis)
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.GetWorkspaceExportRequests(ctx, &dataintegration.GetWorkspaceExportRequestsArgs{
			WorkspaceId:         testWorkspace.Id,
			ExportStatus:        pulumi.StringRef(workspaceExportRequestExportStatus),
			Name:                pulumi.StringRef(workspaceExportRequestName),
			Projection:          pulumi.StringRef(workspaceExportRequestProjection),
			TimeEndedInMillis:   pulumi.StringRef(workspaceExportRequestTimeEndedInMillis),
			TimeStartedInMillis: pulumi.StringRef(workspaceExportRequestTimeStartedInMillis),
		}, 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 testWorkspaceExportRequests = Oci.DataIntegration.GetWorkspaceExportRequests.Invoke(new()
    {
        WorkspaceId = testWorkspace.Id,
        ExportStatus = workspaceExportRequestExportStatus,
        Name = workspaceExportRequestName,
        Projection = workspaceExportRequestProjection,
        TimeEndedInMillis = workspaceExportRequestTimeEndedInMillis,
        TimeStartedInMillis = workspaceExportRequestTimeStartedInMillis,
    });

});
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.GetWorkspaceExportRequestsArgs;
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 testWorkspaceExportRequests = DataIntegrationFunctions.getWorkspaceExportRequests(GetWorkspaceExportRequestsArgs.builder()
            .workspaceId(testWorkspace.id())
            .exportStatus(workspaceExportRequestExportStatus)
            .name(workspaceExportRequestName)
            .projection(workspaceExportRequestProjection)
            .timeEndedInMillis(workspaceExportRequestTimeEndedInMillis)
            .timeStartedInMillis(workspaceExportRequestTimeStartedInMillis)
            .build());

    }
}
Copy
variables:
  testWorkspaceExportRequests:
    fn::invoke:
      function: oci:DataIntegration:getWorkspaceExportRequests
      arguments:
        workspaceId: ${testWorkspace.id}
        exportStatus: ${workspaceExportRequestExportStatus}
        name: ${workspaceExportRequestName}
        projection: ${workspaceExportRequestProjection}
        timeEndedInMillis: ${workspaceExportRequestTimeEndedInMillis}
        timeStartedInMillis: ${workspaceExportRequestTimeStartedInMillis}
Copy

Using getWorkspaceExportRequests

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 getWorkspaceExportRequests(args: GetWorkspaceExportRequestsArgs, opts?: InvokeOptions): Promise<GetWorkspaceExportRequestsResult>
function getWorkspaceExportRequestsOutput(args: GetWorkspaceExportRequestsOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceExportRequestsResult>
Copy
def get_workspace_export_requests(export_status: Optional[str] = None,
                                  filters: Optional[Sequence[_dataintegration.GetWorkspaceExportRequestsFilter]] = None,
                                  name: Optional[str] = None,
                                  projection: Optional[str] = None,
                                  time_ended_in_millis: Optional[str] = None,
                                  time_started_in_millis: Optional[str] = None,
                                  workspace_id: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetWorkspaceExportRequestsResult
def get_workspace_export_requests_output(export_status: Optional[pulumi.Input[str]] = None,
                                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceExportRequestsFilterArgs]]]] = None,
                                  name: Optional[pulumi.Input[str]] = None,
                                  projection: Optional[pulumi.Input[str]] = None,
                                  time_ended_in_millis: Optional[pulumi.Input[str]] = None,
                                  time_started_in_millis: Optional[pulumi.Input[str]] = None,
                                  workspace_id: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceExportRequestsResult]
Copy
func GetWorkspaceExportRequests(ctx *Context, args *GetWorkspaceExportRequestsArgs, opts ...InvokeOption) (*GetWorkspaceExportRequestsResult, error)
func GetWorkspaceExportRequestsOutput(ctx *Context, args *GetWorkspaceExportRequestsOutputArgs, opts ...InvokeOption) GetWorkspaceExportRequestsResultOutput
Copy

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

public static class GetWorkspaceExportRequests 
{
    public static Task<GetWorkspaceExportRequestsResult> InvokeAsync(GetWorkspaceExportRequestsArgs args, InvokeOptions? opts = null)
    public static Output<GetWorkspaceExportRequestsResult> Invoke(GetWorkspaceExportRequestsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWorkspaceExportRequestsResult> getWorkspaceExportRequests(GetWorkspaceExportRequestsArgs args, InvokeOptions options)
public static Output<GetWorkspaceExportRequestsResult> getWorkspaceExportRequests(GetWorkspaceExportRequestsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataIntegration/getWorkspaceExportRequests:getWorkspaceExportRequests
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

WorkspaceId This property is required. string
The workspace ID.
ExportStatus string
Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
Filters Changes to this property will trigger replacement. List<GetWorkspaceExportRequestsFilter>
Name string
Used to filter by the name of the object.
Projection string
This parameter allows users to specify which view of the export object response to return. SUMMARY - Summary of the export object request will be returned. This is the default option when no value is specified. DETAILS - Details of export object request will be returned. This will include details of all the objects to be exported.
TimeEndedInMillis string
Specifies end time of a copy object request.
TimeStartedInMillis string
Specifies start time of a copy object request.
WorkspaceId This property is required. string
The workspace ID.
ExportStatus string
Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
Filters Changes to this property will trigger replacement. []GetWorkspaceExportRequestsFilter
Name string
Used to filter by the name of the object.
Projection string
This parameter allows users to specify which view of the export object response to return. SUMMARY - Summary of the export object request will be returned. This is the default option when no value is specified. DETAILS - Details of export object request will be returned. This will include details of all the objects to be exported.
TimeEndedInMillis string
Specifies end time of a copy object request.
TimeStartedInMillis string
Specifies start time of a copy object request.
workspaceId This property is required. String
The workspace ID.
exportStatus String
Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
filters Changes to this property will trigger replacement. List<GetWorkspaceExportRequestsFilter>
name String
Used to filter by the name of the object.
projection String
This parameter allows users to specify which view of the export object response to return. SUMMARY - Summary of the export object request will be returned. This is the default option when no value is specified. DETAILS - Details of export object request will be returned. This will include details of all the objects to be exported.
timeEndedInMillis String
Specifies end time of a copy object request.
timeStartedInMillis String
Specifies start time of a copy object request.
workspaceId This property is required. string
The workspace ID.
exportStatus string
Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
filters Changes to this property will trigger replacement. GetWorkspaceExportRequestsFilter[]
name string
Used to filter by the name of the object.
projection string
This parameter allows users to specify which view of the export object response to return. SUMMARY - Summary of the export object request will be returned. This is the default option when no value is specified. DETAILS - Details of export object request will be returned. This will include details of all the objects to be exported.
timeEndedInMillis string
Specifies end time of a copy object request.
timeStartedInMillis string
Specifies start time of a copy object request.
workspace_id This property is required. str
The workspace ID.
export_status str
Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
filters Changes to this property will trigger replacement. Sequence[dataintegration.GetWorkspaceExportRequestsFilter]
name str
Used to filter by the name of the object.
projection str
This parameter allows users to specify which view of the export object response to return. SUMMARY - Summary of the export object request will be returned. This is the default option when no value is specified. DETAILS - Details of export object request will be returned. This will include details of all the objects to be exported.
time_ended_in_millis str
Specifies end time of a copy object request.
time_started_in_millis str
Specifies start time of a copy object request.
workspaceId This property is required. String
The workspace ID.
exportStatus String
Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
filters Changes to this property will trigger replacement. List<Property Map>
name String
Used to filter by the name of the object.
projection String
This parameter allows users to specify which view of the export object response to return. SUMMARY - Summary of the export object request will be returned. This is the default option when no value is specified. DETAILS - Details of export object request will be returned. This will include details of all the objects to be exported.
timeEndedInMillis String
Specifies end time of a copy object request.
timeStartedInMillis String
Specifies start time of a copy object request.

getWorkspaceExportRequests Result

The following output properties are available:

ExportRequestSummaryCollections List<GetWorkspaceExportRequestsExportRequestSummaryCollection>
The list of export_request_summary_collection.
Id string
The provider-assigned unique ID for this managed resource.
WorkspaceId string
ExportStatus string
Filters List<GetWorkspaceExportRequestsFilter>
Name string
Name of the export request.
Projection string
TimeEndedInMillis string
Time at which the request was completely processed.
TimeStartedInMillis string
Time at which the request started getting processed.
ExportRequestSummaryCollections []GetWorkspaceExportRequestsExportRequestSummaryCollection
The list of export_request_summary_collection.
Id string
The provider-assigned unique ID for this managed resource.
WorkspaceId string
ExportStatus string
Filters []GetWorkspaceExportRequestsFilter
Name string
Name of the export request.
Projection string
TimeEndedInMillis string
Time at which the request was completely processed.
TimeStartedInMillis string
Time at which the request started getting processed.
exportRequestSummaryCollections List<GetWorkspaceExportRequestsExportRequestSummaryCollection>
The list of export_request_summary_collection.
id String
The provider-assigned unique ID for this managed resource.
workspaceId String
exportStatus String
filters List<GetWorkspaceExportRequestsFilter>
name String
Name of the export request.
projection String
timeEndedInMillis String
Time at which the request was completely processed.
timeStartedInMillis String
Time at which the request started getting processed.
exportRequestSummaryCollections GetWorkspaceExportRequestsExportRequestSummaryCollection[]
The list of export_request_summary_collection.
id string
The provider-assigned unique ID for this managed resource.
workspaceId string
exportStatus string
filters GetWorkspaceExportRequestsFilter[]
name string
Name of the export request.
projection string
timeEndedInMillis string
Time at which the request was completely processed.
timeStartedInMillis string
Time at which the request started getting processed.
export_request_summary_collections Sequence[dataintegration.GetWorkspaceExportRequestsExportRequestSummaryCollection]
The list of export_request_summary_collection.
id str
The provider-assigned unique ID for this managed resource.
workspace_id str
export_status str
filters Sequence[dataintegration.GetWorkspaceExportRequestsFilter]
name str
Name of the export request.
projection str
time_ended_in_millis str
Time at which the request was completely processed.
time_started_in_millis str
Time at which the request started getting processed.
exportRequestSummaryCollections List<Property Map>
The list of export_request_summary_collection.
id String
The provider-assigned unique ID for this managed resource.
workspaceId String
exportStatus String
filters List<Property Map>
name String
Name of the export request.
projection String
timeEndedInMillis String
Time at which the request was completely processed.
timeStartedInMillis String
Time at which the request started getting processed.

Supporting Types

GetWorkspaceExportRequestsExportRequestSummaryCollection

items This property is required. List<Property Map>

GetWorkspaceExportRequestsExportRequestSummaryCollectionItem

AreReferencesIncluded This property is required. bool
Controls if the references will be exported along with the objects
Bucket This property is required. string
The name of the Object Storage Bucket where the objects will be exported to
CreatedBy This property is required. string
Name of the user who initiated export request.
ErrorMessages This property is required. Dictionary<string, string>
Contains key of the error
ExportedItems This property is required. List<GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem>
The array of exported object details.
FileName This property is required. string
Name of the exported zip file.
Filters This property is required. List<string>
Export multiple objects based on filters.
IsObjectOverwriteEnabled This property is required. bool
Flag to control whether to overwrite the object if it is already present at the provided object storage location.
Key This property is required. string
Export object request key
Name This property is required. string
Used to filter by the name of the object.
ObjectKeys This property is required. List<string>
The list of the objects to be exported
ObjectStorageRegion This property is required. string
Region of the object storage (if using object storage of different region)
ObjectStorageTenancyId This property is required. string
Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
ReferencedItems This property is required. string
The array of exported referenced objects.
Status This property is required. string
Export Objects request status.
TimeEndedInMillis This property is required. string
Specifies end time of a copy object request.
TimeStartedInMillis This property is required. string
Specifies start time of a copy object request.
TotalExportedObjectCount This property is required. int
Number of objects that are exported.
WorkspaceId This property is required. string
The workspace ID.
AreReferencesIncluded This property is required. bool
Controls if the references will be exported along with the objects
Bucket This property is required. string
The name of the Object Storage Bucket where the objects will be exported to
CreatedBy This property is required. string
Name of the user who initiated export request.
ErrorMessages This property is required. map[string]string
Contains key of the error
ExportedItems This property is required. []GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem
The array of exported object details.
FileName This property is required. string
Name of the exported zip file.
Filters This property is required. []string
Export multiple objects based on filters.
IsObjectOverwriteEnabled This property is required. bool
Flag to control whether to overwrite the object if it is already present at the provided object storage location.
Key This property is required. string
Export object request key
Name This property is required. string
Used to filter by the name of the object.
ObjectKeys This property is required. []string
The list of the objects to be exported
ObjectStorageRegion This property is required. string
Region of the object storage (if using object storage of different region)
ObjectStorageTenancyId This property is required. string
Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
ReferencedItems This property is required. string
The array of exported referenced objects.
Status This property is required. string
Export Objects request status.
TimeEndedInMillis This property is required. string
Specifies end time of a copy object request.
TimeStartedInMillis This property is required. string
Specifies start time of a copy object request.
TotalExportedObjectCount This property is required. int
Number of objects that are exported.
WorkspaceId This property is required. string
The workspace ID.
areReferencesIncluded This property is required. Boolean
Controls if the references will be exported along with the objects
bucket This property is required. String
The name of the Object Storage Bucket where the objects will be exported to
createdBy This property is required. String
Name of the user who initiated export request.
errorMessages This property is required. Map<String,String>
Contains key of the error
exportedItems This property is required. List<GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem>
The array of exported object details.
fileName This property is required. String
Name of the exported zip file.
filters This property is required. List<String>
Export multiple objects based on filters.
isObjectOverwriteEnabled This property is required. Boolean
Flag to control whether to overwrite the object if it is already present at the provided object storage location.
key This property is required. String
Export object request key
name This property is required. String
Used to filter by the name of the object.
objectKeys This property is required. List<String>
The list of the objects to be exported
objectStorageRegion This property is required. String
Region of the object storage (if using object storage of different region)
objectStorageTenancyId This property is required. String
Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
referencedItems This property is required. String
The array of exported referenced objects.
status This property is required. String
Export Objects request status.
timeEndedInMillis This property is required. String
Specifies end time of a copy object request.
timeStartedInMillis This property is required. String
Specifies start time of a copy object request.
totalExportedObjectCount This property is required. Integer
Number of objects that are exported.
workspaceId This property is required. String
The workspace ID.
areReferencesIncluded This property is required. boolean
Controls if the references will be exported along with the objects
bucket This property is required. string
The name of the Object Storage Bucket where the objects will be exported to
createdBy This property is required. string
Name of the user who initiated export request.
errorMessages This property is required. {[key: string]: string}
Contains key of the error
exportedItems This property is required. GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem[]
The array of exported object details.
fileName This property is required. string
Name of the exported zip file.
filters This property is required. string[]
Export multiple objects based on filters.
isObjectOverwriteEnabled This property is required. boolean
Flag to control whether to overwrite the object if it is already present at the provided object storage location.
key This property is required. string
Export object request key
name This property is required. string
Used to filter by the name of the object.
objectKeys This property is required. string[]
The list of the objects to be exported
objectStorageRegion This property is required. string
Region of the object storage (if using object storage of different region)
objectStorageTenancyId This property is required. string
Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
referencedItems This property is required. string
The array of exported referenced objects.
status This property is required. string
Export Objects request status.
timeEndedInMillis This property is required. string
Specifies end time of a copy object request.
timeStartedInMillis This property is required. string
Specifies start time of a copy object request.
totalExportedObjectCount This property is required. number
Number of objects that are exported.
workspaceId This property is required. string
The workspace ID.
are_references_included This property is required. bool
Controls if the references will be exported along with the objects
bucket This property is required. str
The name of the Object Storage Bucket where the objects will be exported to
created_by This property is required. str
Name of the user who initiated export request.
error_messages This property is required. Mapping[str, str]
Contains key of the error
exported_items This property is required. Sequence[dataintegration.GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem]
The array of exported object details.
file_name This property is required. str
Name of the exported zip file.
filters This property is required. Sequence[str]
Export multiple objects based on filters.
is_object_overwrite_enabled This property is required. bool
Flag to control whether to overwrite the object if it is already present at the provided object storage location.
key This property is required. str
Export object request key
name This property is required. str
Used to filter by the name of the object.
object_keys This property is required. Sequence[str]
The list of the objects to be exported
object_storage_region This property is required. str
Region of the object storage (if using object storage of different region)
object_storage_tenancy_id This property is required. str
Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
referenced_items This property is required. str
The array of exported referenced objects.
status This property is required. str
Export Objects request status.
time_ended_in_millis This property is required. str
Specifies end time of a copy object request.
time_started_in_millis This property is required. str
Specifies start time of a copy object request.
total_exported_object_count This property is required. int
Number of objects that are exported.
workspace_id This property is required. str
The workspace ID.
areReferencesIncluded This property is required. Boolean
Controls if the references will be exported along with the objects
bucket This property is required. String
The name of the Object Storage Bucket where the objects will be exported to
createdBy This property is required. String
Name of the user who initiated export request.
errorMessages This property is required. Map<String>
Contains key of the error
exportedItems This property is required. List<Property Map>
The array of exported object details.
fileName This property is required. String
Name of the exported zip file.
filters This property is required. List<String>
Export multiple objects based on filters.
isObjectOverwriteEnabled This property is required. Boolean
Flag to control whether to overwrite the object if it is already present at the provided object storage location.
key This property is required. String
Export object request key
name This property is required. String
Used to filter by the name of the object.
objectKeys This property is required. List<String>
The list of the objects to be exported
objectStorageRegion This property is required. String
Region of the object storage (if using object storage of different region)
objectStorageTenancyId This property is required. String
Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
referencedItems This property is required. String
The array of exported referenced objects.
status This property is required. String
Export Objects request status.
timeEndedInMillis This property is required. String
Specifies end time of a copy object request.
timeStartedInMillis This property is required. String
Specifies start time of a copy object request.
totalExportedObjectCount This property is required. Number
Number of objects that are exported.
workspaceId This property is required. String
The workspace ID.

GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem

AggregatorKey This property is required. string
Aggregator key
Identifier This property is required. string
Object identifier
Key This property is required. string
Export object request key
Name This property is required. string
Used to filter by the name of the object.
NamePath This property is required. string
Object name path
ObjectType This property is required. string
Object type
ObjectVersion This property is required. string
Object version
TimeUpdatedInMillis This property is required. string
time at which this object was last updated.
AggregatorKey This property is required. string
Aggregator key
Identifier This property is required. string
Object identifier
Key This property is required. string
Export object request key
Name This property is required. string
Used to filter by the name of the object.
NamePath This property is required. string
Object name path
ObjectType This property is required. string
Object type
ObjectVersion This property is required. string
Object version
TimeUpdatedInMillis This property is required. string
time at which this object was last updated.
aggregatorKey This property is required. String
Aggregator key
identifier This property is required. String
Object identifier
key This property is required. String
Export object request key
name This property is required. String
Used to filter by the name of the object.
namePath This property is required. String
Object name path
objectType This property is required. String
Object type
objectVersion This property is required. String
Object version
timeUpdatedInMillis This property is required. String
time at which this object was last updated.
aggregatorKey This property is required. string
Aggregator key
identifier This property is required. string
Object identifier
key This property is required. string
Export object request key
name This property is required. string
Used to filter by the name of the object.
namePath This property is required. string
Object name path
objectType This property is required. string
Object type
objectVersion This property is required. string
Object version
timeUpdatedInMillis This property is required. string
time at which this object was last updated.
aggregator_key This property is required. str
Aggregator key
identifier This property is required. str
Object identifier
key This property is required. str
Export object request key
name This property is required. str
Used to filter by the name of the object.
name_path This property is required. str
Object name path
object_type This property is required. str
Object type
object_version This property is required. str
Object version
time_updated_in_millis This property is required. str
time at which this object was last updated.
aggregatorKey This property is required. String
Aggregator key
identifier This property is required. String
Object identifier
key This property is required. String
Export object request key
name This property is required. String
Used to filter by the name of the object.
namePath This property is required. String
Object name path
objectType This property is required. String
Object type
objectVersion This property is required. String
Object version
timeUpdatedInMillis This property is required. String
time at which this object was last updated.

GetWorkspaceExportRequestsFilter

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

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.29.0 published on Wednesday, Apr 9, 2025 by Pulumi