Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi
oci.DataIntegration.getWorkspaceExportRequests
Explore with Pulumi AI
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,
});
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)
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
})
}
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,
});
});
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());
}
}
variables:
testWorkspaceExportRequests:
fn::invoke:
function: oci:DataIntegration:getWorkspaceExportRequests
arguments:
workspaceId: ${testWorkspace.id}
exportStatus: ${workspaceExportRequestExportStatus}
name: ${workspaceExportRequestName}
projection: ${workspaceExportRequestProjection}
timeEndedInMillis: ${workspaceExportRequestTimeEndedInMillis}
timeStartedInMillis: ${workspaceExportRequestTimeStartedInMillis}
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>
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]
func GetWorkspaceExportRequests(ctx *Context, args *GetWorkspaceExportRequestsArgs, opts ...InvokeOption) (*GetWorkspaceExportRequestsResult, error)
func GetWorkspaceExportRequestsOutput(ctx *Context, args *GetWorkspaceExportRequestsOutputArgs, opts ...InvokeOption) GetWorkspaceExportRequestsResultOutput
> 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)
}
public static CompletableFuture<GetWorkspaceExportRequestsResult> getWorkspaceExportRequests(GetWorkspaceExportRequestsArgs args, InvokeOptions options)
public static Output<GetWorkspaceExportRequestsResult> getWorkspaceExportRequests(GetWorkspaceExportRequestsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataIntegration/getWorkspaceExportRequests:getWorkspaceExportRequests
arguments:
# arguments dictionary
The following arguments are supported:
- Workspace
Id This property is required. string - The workspace ID.
- Export
Status string - Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- Filters
Changes to this property will trigger replacement.
Workspace Export Requests Filter> - 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.
- Time
Ended stringIn Millis - Specifies end time of a copy object request.
- Time
Started stringIn Millis - Specifies start time of a copy object request.
- Workspace
Id This property is required. string - The workspace ID.
- Export
Status string - Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- Filters
Changes to this property will trigger replacement.
Workspace Export Requests Filter - 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.
- Time
Ended stringIn Millis - Specifies end time of a copy object request.
- Time
Started stringIn Millis - Specifies start time of a copy object request.
- workspace
Id This property is required. String - The workspace ID.
- export
Status String - Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- filters
Changes to this property will trigger replacement.
Workspace Export Requests Filter> - 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.
- time
Ended StringIn Millis - Specifies end time of a copy object request.
- time
Started StringIn Millis - Specifies start time of a copy object request.
- workspace
Id This property is required. string - The workspace ID.
- export
Status string - Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- filters
Changes to this property will trigger replacement.
Workspace Export Requests Filter[] - 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.
- time
Ended stringIn Millis - Specifies end time of a copy object request.
- time
Started stringIn Millis - 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.
Get Workspace Export Requests Filter] - 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_ strin_ millis - Specifies end time of a copy object request.
- time_
started_ strin_ millis - Specifies start time of a copy object request.
- workspace
Id This property is required. String - The workspace ID.
- export
Status String - Specifies export status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- filters
Changes to this property will trigger replacement.
- 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.
- time
Ended StringIn Millis - Specifies end time of a copy object request.
- time
Started StringIn Millis - Specifies start time of a copy object request.
getWorkspaceExportRequests Result
The following output properties are available:
- Export
Request List<GetSummary Collections Workspace Export Requests Export Request Summary Collection> - The list of export_request_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workspace
Id string - Export
Status string - Filters
List<Get
Workspace Export Requests Filter> - Name string
- Name of the export request.
- Projection string
- Time
Ended stringIn Millis - Time at which the request was completely processed.
- Time
Started stringIn Millis - Time at which the request started getting processed.
- Export
Request []GetSummary Collections Workspace Export Requests Export Request Summary Collection - The list of export_request_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workspace
Id string - Export
Status string - Filters
[]Get
Workspace Export Requests Filter - Name string
- Name of the export request.
- Projection string
- Time
Ended stringIn Millis - Time at which the request was completely processed.
- Time
Started stringIn Millis - Time at which the request started getting processed.
- export
Request List<GetSummary Collections Workspace Export Requests Export Request Summary Collection> - The list of export_request_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- workspace
Id String - export
Status String - filters
List<Get
Workspace Export Requests Filter> - name String
- Name of the export request.
- projection String
- time
Ended StringIn Millis - Time at which the request was completely processed.
- time
Started StringIn Millis - Time at which the request started getting processed.
- export
Request GetSummary Collections Workspace Export Requests Export Request Summary Collection[] - The list of export_request_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- workspace
Id string - export
Status string - filters
Get
Workspace Export Requests Filter[] - name string
- Name of the export request.
- projection string
- time
Ended stringIn Millis - Time at which the request was completely processed.
- time
Started stringIn Millis - Time at which the request started getting processed.
- export_
request_ Sequence[dataintegration.summary_ collections Get Workspace Export Requests Export Request Summary Collection] - 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.
Get Workspace Export Requests Filter] - name str
- Name of the export request.
- projection str
- time_
ended_ strin_ millis - Time at which the request was completely processed.
- time_
started_ strin_ millis - Time at which the request started getting processed.
- export
Request List<Property Map>Summary Collections - The list of export_request_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- workspace
Id String - export
Status String - filters List<Property Map>
- name String
- Name of the export request.
- projection String
- time
Ended StringIn Millis - Time at which the request was completely processed.
- time
Started StringIn Millis - Time at which the request started getting processed.
Supporting Types
GetWorkspaceExportRequestsExportRequestSummaryCollection
- Items
This property is required. List<GetWorkspace Export Requests Export Request Summary Collection Item>
- Items
This property is required. []GetWorkspace Export Requests Export Request Summary Collection Item
- items
This property is required. List<GetWorkspace Export Requests Export Request Summary Collection Item>
- items
This property is required. GetWorkspace Export Requests Export Request Summary Collection Item[]
- items
This property is required. Sequence[dataintegration.Get Workspace Export Requests Export Request Summary Collection Item]
- items
This property is required. List<Property Map>
GetWorkspaceExportRequestsExportRequestSummaryCollectionItem
- Are
References Included 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
- Created
By This property is required. string - Name of the user who initiated export request.
- Error
Messages This property is required. Dictionary<string, string> - Contains key of the error
- Exported
Items This property is required. List<GetWorkspace Export Requests Export Request Summary Collection Item Exported Item> - The array of exported object details.
- File
Name This property is required. string - Name of the exported zip file.
- Filters
This property is required. List<string> - 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. string - Export object request key
- Name
This property is required. string - Used to filter by the name of the object.
- Object
Keys This property is required. List<string> - The list of the objects to be exported
- Object
Storage Region This property is required. string - Region of the object storage (if using object storage of different region)
- Object
Storage Tenancy Id This property is required. string - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- Referenced
Items This property is required. string - The array of exported referenced objects.
- Status
This property is required. string - Export Objects request status.
- Time
Ended In Millis This property is required. string - Specifies end time of a copy object request.
- Time
Started In Millis This property is required. string - 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. 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. string - The name of the Object Storage Bucket where the objects will be exported to
- Created
By This property is required. string - Name of the user who initiated export request.
- Error
Messages This property is required. map[string]string - Contains key of the error
- Exported
Items This property is required. []GetWorkspace Export Requests Export Request Summary Collection Item Exported Item - The array of exported object details.
- File
Name This property is required. string - Name of the exported zip file.
- Filters
This property is required. []string - 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. string - Export object request key
- Name
This property is required. string - Used to filter by the name of the object.
- Object
Keys This property is required. []string - The list of the objects to be exported
- Object
Storage Region This property is required. string - Region of the object storage (if using object storage of different region)
- Object
Storage Tenancy Id This property is required. string - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- Referenced
Items This property is required. string - The array of exported referenced objects.
- Status
This property is required. string - Export Objects request status.
- Time
Ended In Millis This property is required. string - Specifies end time of a copy object request.
- Time
Started In Millis This property is required. string - 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. string - The workspace ID.
- are
References Included 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
- created
By This property is required. String - Name of the user who initiated export request.
- error
Messages This property is required. Map<String,String> - Contains key of the error
- exported
Items This property is required. List<GetWorkspace Export Requests Export Request Summary Collection Item Exported Item> - The array of exported object details.
- file
Name This property is required. String - Name of the exported zip file.
- filters
This property is required. List<String> - Export multiple objects based on filters.
- is
Object Overwrite Enabled 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.
- object
Keys This property is required. List<String> - The list of the objects to be exported
- object
Storage Region This property is required. String - Region of the object storage (if using object storage of different region)
- object
Storage Tenancy Id This property is required. String - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- referenced
Items This property is required. String - The array of exported referenced objects.
- status
This property is required. String - Export Objects request status.
- time
Ended In Millis This property is required. String - Specifies end time of a copy object request.
- time
Started In Millis This property is required. String - Specifies start time of a copy object request.
- total
Exported Object Count This property is required. Integer - Number of objects that are exported.
- workspace
Id This property is required. String - The workspace ID.
- are
References Included 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
- created
By This property is required. string - Name of the user who initiated export request.
- error
Messages This property is required. {[key: string]: string} - Contains key of the error
- exported
Items This property is required. GetWorkspace Export Requests Export Request Summary Collection Item Exported Item[] - The array of exported object details.
- file
Name This property is required. string - Name of the exported zip file.
- filters
This property is required. string[] - Export multiple objects based on filters.
- is
Object Overwrite Enabled 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.
- object
Keys This property is required. string[] - The list of the objects to be exported
- object
Storage Region This property is required. string - Region of the object storage (if using object storage of different region)
- object
Storage Tenancy Id This property is required. string - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- referenced
Items This property is required. string - The array of exported referenced objects.
- status
This property is required. string - Export Objects request status.
- time
Ended In Millis This property is required. string - Specifies end time of a copy object request.
- time
Started In Millis This property is required. string - Specifies start time of a copy object request.
- total
Exported Object Count This property is required. number - Number of objects that are exported.
- workspace
Id 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.Get Workspace Export Requests Export Request Summary Collection Item Exported Item] - 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.
- are
References Included 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
- created
By This property is required. String - Name of the user who initiated export request.
- error
Messages This property is required. Map<String> - Contains key of the error
- exported
Items This property is required. List<Property Map> - The array of exported object details.
- file
Name This property is required. String - Name of the exported zip file.
- filters
This property is required. List<String> - Export multiple objects based on filters.
- is
Object Overwrite Enabled 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.
- object
Keys This property is required. List<String> - The list of the objects to be exported
- object
Storage Region This property is required. String - Region of the object storage (if using object storage of different region)
- object
Storage Tenancy Id This property is required. String - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- referenced
Items This property is required. String - The array of exported referenced objects.
- status
This property is required. String - Export Objects request status.
- time
Ended In Millis This property is required. String - Specifies end time of a copy object request.
- time
Started In Millis This property is required. String - Specifies start time of a copy object request.
- total
Exported Object Count This property is required. Number - Number of objects that are exported.
- workspace
Id This property is required. String - The workspace ID.
GetWorkspaceExportRequestsExportRequestSummaryCollectionItemExportedItem
- Aggregator
Key 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.
- Name
Path This property is required. string - Object name path
- Object
Type This property is required. string - Object type
- Object
Version This property is required. string - Object version
- Time
Updated In Millis This property is required. string - time at which this object was last updated.
- Aggregator
Key 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.
- Name
Path This property is required. string - Object name path
- Object
Type This property is required. string - Object type
- Object
Version This property is required. string - Object version
- Time
Updated In Millis This property is required. string - time at which this object was last updated.
- aggregator
Key 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.
- name
Path This property is required. String - Object name path
- object
Type This property is required. String - Object type
- object
Version This property is required. String - Object version
- time
Updated In Millis This property is required. String - time at which this object was last updated.
- aggregator
Key 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.
- name
Path This property is required. string - Object name path
- object
Type This property is required. string - Object type
- object
Version This property is required. string - Object version
- time
Updated In Millis 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.
- aggregator
Key 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.
- name
Path This property is required. String - Object name path
- object
Type This property is required. String - Object type
- object
Version This property is required. String - Object version
- time
Updated In Millis This property is required. String - time at which this object was last updated.
GetWorkspaceExportRequestsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.