Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DataIntegration.getWorkspaceImportRequests
Explore with Pulumi AI
This data source provides the list of Workspace Import Requests in Oracle Cloud Infrastructure Data Integration service.
This endpoint can be used to get the list of import object requests.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspaceImportRequests = oci.DataIntegration.getWorkspaceImportRequests({
    workspaceId: testWorkspace.id,
    importStatus: workspaceImportRequestImportStatus,
    name: workspaceImportRequestName,
    projection: workspaceImportRequestProjection,
    timeEndedInMillis: workspaceImportRequestTimeEndedInMillis,
    timeStartedInMillis: workspaceImportRequestTimeStartedInMillis,
});
import pulumi
import pulumi_oci as oci
test_workspace_import_requests = oci.DataIntegration.get_workspace_import_requests(workspace_id=test_workspace["id"],
    import_status=workspace_import_request_import_status,
    name=workspace_import_request_name,
    projection=workspace_import_request_projection,
    time_ended_in_millis=workspace_import_request_time_ended_in_millis,
    time_started_in_millis=workspace_import_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.GetWorkspaceImportRequests(ctx, &dataintegration.GetWorkspaceImportRequestsArgs{
			WorkspaceId:         testWorkspace.Id,
			ImportStatus:        pulumi.StringRef(workspaceImportRequestImportStatus),
			Name:                pulumi.StringRef(workspaceImportRequestName),
			Projection:          pulumi.StringRef(workspaceImportRequestProjection),
			TimeEndedInMillis:   pulumi.StringRef(workspaceImportRequestTimeEndedInMillis),
			TimeStartedInMillis: pulumi.StringRef(workspaceImportRequestTimeStartedInMillis),
		}, 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 testWorkspaceImportRequests = Oci.DataIntegration.GetWorkspaceImportRequests.Invoke(new()
    {
        WorkspaceId = testWorkspace.Id,
        ImportStatus = workspaceImportRequestImportStatus,
        Name = workspaceImportRequestName,
        Projection = workspaceImportRequestProjection,
        TimeEndedInMillis = workspaceImportRequestTimeEndedInMillis,
        TimeStartedInMillis = workspaceImportRequestTimeStartedInMillis,
    });
});
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.GetWorkspaceImportRequestsArgs;
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 testWorkspaceImportRequests = DataIntegrationFunctions.getWorkspaceImportRequests(GetWorkspaceImportRequestsArgs.builder()
            .workspaceId(testWorkspace.id())
            .importStatus(workspaceImportRequestImportStatus)
            .name(workspaceImportRequestName)
            .projection(workspaceImportRequestProjection)
            .timeEndedInMillis(workspaceImportRequestTimeEndedInMillis)
            .timeStartedInMillis(workspaceImportRequestTimeStartedInMillis)
            .build());
    }
}
variables:
  testWorkspaceImportRequests:
    fn::invoke:
      function: oci:DataIntegration:getWorkspaceImportRequests
      arguments:
        workspaceId: ${testWorkspace.id}
        importStatus: ${workspaceImportRequestImportStatus}
        name: ${workspaceImportRequestName}
        projection: ${workspaceImportRequestProjection}
        timeEndedInMillis: ${workspaceImportRequestTimeEndedInMillis}
        timeStartedInMillis: ${workspaceImportRequestTimeStartedInMillis}
Using getWorkspaceImportRequests
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 getWorkspaceImportRequests(args: GetWorkspaceImportRequestsArgs, opts?: InvokeOptions): Promise<GetWorkspaceImportRequestsResult>
function getWorkspaceImportRequestsOutput(args: GetWorkspaceImportRequestsOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceImportRequestsResult>def get_workspace_import_requests(filters: Optional[Sequence[GetWorkspaceImportRequestsFilter]] = None,
                                  import_status: Optional[str] = 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) -> GetWorkspaceImportRequestsResult
def get_workspace_import_requests_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetWorkspaceImportRequestsFilterArgs]]]] = None,
                                  import_status: Optional[pulumi.Input[str]] = 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[GetWorkspaceImportRequestsResult]func GetWorkspaceImportRequests(ctx *Context, args *GetWorkspaceImportRequestsArgs, opts ...InvokeOption) (*GetWorkspaceImportRequestsResult, error)
func GetWorkspaceImportRequestsOutput(ctx *Context, args *GetWorkspaceImportRequestsOutputArgs, opts ...InvokeOption) GetWorkspaceImportRequestsResultOutput> Note: This function is named GetWorkspaceImportRequests in the Go SDK.
public static class GetWorkspaceImportRequests 
{
    public static Task<GetWorkspaceImportRequestsResult> InvokeAsync(GetWorkspaceImportRequestsArgs args, InvokeOptions? opts = null)
    public static Output<GetWorkspaceImportRequestsResult> Invoke(GetWorkspaceImportRequestsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetWorkspaceImportRequestsResult> getWorkspaceImportRequests(GetWorkspaceImportRequestsArgs args, InvokeOptions options)
public static Output<GetWorkspaceImportRequestsResult> getWorkspaceImportRequests(GetWorkspaceImportRequestsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataIntegration/getWorkspaceImportRequests:getWorkspaceImportRequests
  arguments:
    # arguments dictionaryThe following arguments are supported:
- WorkspaceId string
- The workspace ID.
- Filters
List<GetWorkspace Import Requests Filter> 
- ImportStatus string
- Specifies import status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- Name string
- Used to filter by the name of the object.
- Projection string
- This parameter allows users to specify which view of the import object response to return. SUMMARY - Summary of the import object request will be returned. This is the default option when no value is specified. DETAILS - Details of import object request will be returned. This will include details of all the objects to be exported.
- TimeEnded stringIn Millis 
- Specifies end time of a copy object request.
- TimeStarted stringIn Millis 
- Specifies start time of a copy object request.
- WorkspaceId string
- The workspace ID.
- Filters
[]GetWorkspace Import Requests Filter 
- ImportStatus string
- Specifies import status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- Name string
- Used to filter by the name of the object.
- Projection string
- This parameter allows users to specify which view of the import object response to return. SUMMARY - Summary of the import object request will be returned. This is the default option when no value is specified. DETAILS - Details of import object request will be returned. This will include details of all the objects to be exported.
- TimeEnded stringIn Millis 
- Specifies end time of a copy object request.
- TimeStarted stringIn Millis 
- Specifies start time of a copy object request.
- workspaceId String
- The workspace ID.
- filters
List<GetWorkspace Import Requests Filter> 
- importStatus String
- Specifies import status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- name String
- Used to filter by the name of the object.
- projection String
- This parameter allows users to specify which view of the import object response to return. SUMMARY - Summary of the import object request will be returned. This is the default option when no value is specified. DETAILS - Details of import object request will be returned. This will include details of all the objects to be exported.
- timeEnded StringIn Millis 
- Specifies end time of a copy object request.
- timeStarted StringIn Millis 
- Specifies start time of a copy object request.
- workspaceId string
- The workspace ID.
- filters
GetWorkspace Import Requests Filter[] 
- importStatus string
- Specifies import status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- name string
- Used to filter by the name of the object.
- projection string
- This parameter allows users to specify which view of the import object response to return. SUMMARY - Summary of the import object request will be returned. This is the default option when no value is specified. DETAILS - Details of import object request will be returned. This will include details of all the objects to be exported.
- timeEnded stringIn Millis 
- Specifies end time of a copy object request.
- timeStarted stringIn Millis 
- Specifies start time of a copy object request.
- workspace_id str
- The workspace ID.
- filters
Sequence[GetWorkspace Import Requests Filter] 
- import_status str
- Specifies import status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- name str
- Used to filter by the name of the object.
- projection str
- This parameter allows users to specify which view of the import object response to return. SUMMARY - Summary of the import object request will be returned. This is the default option when no value is specified. DETAILS - Details of import 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.
- workspaceId String
- The workspace ID.
- filters List<Property Map>
- importStatus String
- Specifies import status to use, either - ALL, SUCCESSFUL, IN_PROGRESS, QUEUED, FAILED .
- name String
- Used to filter by the name of the object.
- projection String
- This parameter allows users to specify which view of the import object response to return. SUMMARY - Summary of the import object request will be returned. This is the default option when no value is specified. DETAILS - Details of import object request will be returned. This will include details of all the objects to be exported.
- timeEnded StringIn Millis 
- Specifies end time of a copy object request.
- timeStarted StringIn Millis 
- Specifies start time of a copy object request.
getWorkspaceImportRequests Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- ImportRequest List<GetSummary Collections Workspace Import Requests Import Request Summary Collection> 
- The list of import_request_summary_collection.
- WorkspaceId string
- Filters
List<GetWorkspace Import Requests Filter> 
- ImportStatus string
- Name string
- Name of the import request.
- Projection string
- TimeEnded stringIn Millis 
- Time at which the request was completely processed.
- TimeStarted stringIn Millis 
- Time at which the request started getting processed.
- Id string
- The provider-assigned unique ID for this managed resource.
- ImportRequest []GetSummary Collections Workspace Import Requests Import Request Summary Collection 
- The list of import_request_summary_collection.
- WorkspaceId string
- Filters
[]GetWorkspace Import Requests Filter 
- ImportStatus string
- Name string
- Name of the import request.
- Projection string
- TimeEnded stringIn Millis 
- Time at which the request was completely processed.
- TimeStarted stringIn Millis 
- Time at which the request started getting processed.
- id String
- The provider-assigned unique ID for this managed resource.
- importRequest List<GetSummary Collections Workspace Import Requests Import Request Summary Collection> 
- The list of import_request_summary_collection.
- workspaceId String
- filters
List<GetWorkspace Import Requests Filter> 
- importStatus String
- name String
- Name of the import request.
- projection String
- timeEnded StringIn Millis 
- Time at which the request was completely processed.
- timeStarted StringIn Millis 
- Time at which the request started getting processed.
- id string
- The provider-assigned unique ID for this managed resource.
- importRequest GetSummary Collections Workspace Import Requests Import Request Summary Collection[] 
- The list of import_request_summary_collection.
- workspaceId string
- filters
GetWorkspace Import Requests Filter[] 
- importStatus string
- name string
- Name of the import request.
- projection string
- timeEnded stringIn Millis 
- Time at which the request was completely processed.
- timeStarted stringIn Millis 
- Time at which the request started getting processed.
- id str
- The provider-assigned unique ID for this managed resource.
- import_request_ Sequence[Getsummary_ collections Workspace Import Requests Import Request Summary Collection] 
- The list of import_request_summary_collection.
- workspace_id str
- filters
Sequence[GetWorkspace Import Requests Filter] 
- import_status str
- name str
- Name of the import 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.
- id String
- The provider-assigned unique ID for this managed resource.
- importRequest List<Property Map>Summary Collections 
- The list of import_request_summary_collection.
- workspaceId String
- filters List<Property Map>
- importStatus String
- name String
- Name of the import request.
- projection String
- timeEnded StringIn Millis 
- Time at which the request was completely processed.
- timeStarted StringIn Millis 
- Time at which the request started getting processed.
Supporting Types
GetWorkspaceImportRequestsFilter    
GetWorkspaceImportRequestsImportRequestSummaryCollection       
GetWorkspaceImportRequestsImportRequestSummaryCollectionItem        
- AreData boolAsset References Included 
- This field controls if the data asset references will be included during import.
- Bucket string
- The name of the Object Storage Bucket where the objects will be imported from
- CreatedBy string
- Name of the user who initiated import request.
- ErrorMessages Dictionary<string, string>
- Contains key of the error
- FileName string
- Name of the zip file from which objects will be imported.
- ImportConflict GetResolution Workspace Import Requests Import Request Summary Collection Item Import Conflict Resolution 
- Import Objects Conflict resolution.
- ImportedObjects List<GetWorkspace Import Requests Import Request Summary Collection Item Imported Object> 
- The array of imported object details.
- Key string
- Import object request key
- Name string
- Used to filter by the name of the object.
- ObjectKey stringFor Import 
- Key of the object inside which all the objects will be imported
- ObjectStorage stringRegion 
- Region of the object storage (if using object storage of different region)
- ObjectStorage stringTenancy Id 
- Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- Status string
- Import Objects request status.
- TimeEnded stringIn Millis 
- Specifies end time of a copy object request.
- TimeStarted stringIn Millis 
- Specifies start time of a copy object request.
- TotalImported intObject Count 
- Number of objects that are imported.
- WorkspaceId string
- The workspace ID.
- AreData boolAsset References Included 
- This field controls if the data asset references will be included during import.
- Bucket string
- The name of the Object Storage Bucket where the objects will be imported from
- CreatedBy string
- Name of the user who initiated import request.
- ErrorMessages map[string]string
- Contains key of the error
- FileName string
- Name of the zip file from which objects will be imported.
- ImportConflict GetResolution Workspace Import Requests Import Request Summary Collection Item Import Conflict Resolution 
- Import Objects Conflict resolution.
- ImportedObjects []GetWorkspace Import Requests Import Request Summary Collection Item Imported Object 
- The array of imported object details.
- Key string
- Import object request key
- Name string
- Used to filter by the name of the object.
- ObjectKey stringFor Import 
- Key of the object inside which all the objects will be imported
- ObjectStorage stringRegion 
- Region of the object storage (if using object storage of different region)
- ObjectStorage stringTenancy Id 
- Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- Status string
- Import Objects request status.
- TimeEnded stringIn Millis 
- Specifies end time of a copy object request.
- TimeStarted stringIn Millis 
- Specifies start time of a copy object request.
- TotalImported intObject Count 
- Number of objects that are imported.
- WorkspaceId string
- The workspace ID.
- areData BooleanAsset References Included 
- This field controls if the data asset references will be included during import.
- bucket String
- The name of the Object Storage Bucket where the objects will be imported from
- createdBy String
- Name of the user who initiated import request.
- errorMessages Map<String,String>
- Contains key of the error
- fileName String
- Name of the zip file from which objects will be imported.
- importConflict GetResolution Workspace Import Requests Import Request Summary Collection Item Import Conflict Resolution 
- Import Objects Conflict resolution.
- importedObjects List<GetWorkspace Import Requests Import Request Summary Collection Item Imported Object> 
- The array of imported object details.
- key String
- Import object request key
- name String
- Used to filter by the name of the object.
- objectKey StringFor Import 
- Key of the object inside which all the objects will be imported
- objectStorage StringRegion 
- Region of the object storage (if using object storage of different region)
- objectStorage StringTenancy Id 
- Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status String
- Import Objects request status.
- timeEnded StringIn Millis 
- Specifies end time of a copy object request.
- timeStarted StringIn Millis 
- Specifies start time of a copy object request.
- totalImported IntegerObject Count 
- Number of objects that are imported.
- workspaceId String
- The workspace ID.
- areData booleanAsset References Included 
- This field controls if the data asset references will be included during import.
- bucket string
- The name of the Object Storage Bucket where the objects will be imported from
- createdBy string
- Name of the user who initiated import request.
- errorMessages {[key: string]: string}
- Contains key of the error
- fileName string
- Name of the zip file from which objects will be imported.
- importConflict GetResolution Workspace Import Requests Import Request Summary Collection Item Import Conflict Resolution 
- Import Objects Conflict resolution.
- importedObjects GetWorkspace Import Requests Import Request Summary Collection Item Imported Object[] 
- The array of imported object details.
- key string
- Import object request key
- name string
- Used to filter by the name of the object.
- objectKey stringFor Import 
- Key of the object inside which all the objects will be imported
- objectStorage stringRegion 
- Region of the object storage (if using object storage of different region)
- objectStorage stringTenancy Id 
- Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status string
- Import Objects request status.
- timeEnded stringIn Millis 
- Specifies end time of a copy object request.
- timeStarted stringIn Millis 
- Specifies start time of a copy object request.
- totalImported numberObject Count 
- Number of objects that are imported.
- workspaceId string
- The workspace ID.
- are_data_ boolasset_ references_ included 
- This field controls if the data asset references will be included during import.
- bucket str
- The name of the Object Storage Bucket where the objects will be imported from
- created_by str
- Name of the user who initiated import request.
- error_messages Mapping[str, str]
- Contains key of the error
- file_name str
- Name of the zip file from which objects will be imported.
- import_conflict_ Getresolution Workspace Import Requests Import Request Summary Collection Item Import Conflict Resolution 
- Import Objects Conflict resolution.
- imported_objects Sequence[GetWorkspace Import Requests Import Request Summary Collection Item Imported Object] 
- The array of imported object details.
- key str
- Import object request key
- name str
- Used to filter by the name of the object.
- object_key_ strfor_ import 
- Key of the object inside which all the objects will be imported
- object_storage_ strregion 
- Region of the object storage (if using object storage of different region)
- object_storage_ strtenancy_ id 
- Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status str
- Import Objects request status.
- time_ended_ strin_ millis 
- Specifies end time of a copy object request.
- time_started_ strin_ millis 
- Specifies start time of a copy object request.
- total_imported_ intobject_ count 
- Number of objects that are imported.
- workspace_id str
- The workspace ID.
- areData BooleanAsset References Included 
- This field controls if the data asset references will be included during import.
- bucket String
- The name of the Object Storage Bucket where the objects will be imported from
- createdBy String
- Name of the user who initiated import request.
- errorMessages Map<String>
- Contains key of the error
- fileName String
- Name of the zip file from which objects will be imported.
- importConflict Property MapResolution 
- Import Objects Conflict resolution.
- importedObjects List<Property Map>
- The array of imported object details.
- key String
- Import object request key
- name String
- Used to filter by the name of the object.
- objectKey StringFor Import 
- Key of the object inside which all the objects will be imported
- objectStorage StringRegion 
- Region of the object storage (if using object storage of different region)
- objectStorage StringTenancy Id 
- Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status String
- Import Objects request status.
- timeEnded StringIn Millis 
- Specifies end time of a copy object request.
- timeStarted StringIn Millis 
- Specifies start time of a copy object request.
- totalImported NumberObject Count 
- Number of objects that are imported.
- workspaceId String
- The workspace ID.
GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution           
- DuplicatePrefix string
- In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- DuplicateSuffix string
- In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- ImportConflict stringResolution Type 
- Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- DuplicatePrefix string
- In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- DuplicateSuffix string
- In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- ImportConflict stringResolution Type 
- Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- duplicatePrefix String
- In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicateSuffix String
- In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- importConflict StringResolution Type 
- Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- duplicatePrefix string
- In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicateSuffix string
- In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- importConflict stringResolution Type 
- Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- duplicate_prefix str
- In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicate_suffix str
- In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- import_conflict_ strresolution_ type 
- Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- duplicatePrefix String
- In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicateSuffix String
- In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- importConflict StringResolution Type 
- Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject          
- AggregatorKey string
- Aggregator key
- Identifier string
- Object identifier
- Name string
- Used to filter by the name of the object.
- NamePath string
- Object name path
- NewKey string
- New key of the object
- ObjectType string
- Object type
- ObjectVersion string
- Object version
- OldKey string
- Old key of the object
- ResolutionAction string
- Object resolution action
- TimeUpdated stringIn Millis 
- time at which this object was last updated.
- AggregatorKey string
- Aggregator key
- Identifier string
- Object identifier
- Name string
- Used to filter by the name of the object.
- NamePath string
- Object name path
- NewKey string
- New key of the object
- ObjectType string
- Object type
- ObjectVersion string
- Object version
- OldKey string
- Old key of the object
- ResolutionAction string
- Object resolution action
- TimeUpdated stringIn Millis 
- time at which this object was last updated.
- aggregatorKey String
- Aggregator key
- identifier String
- Object identifier
- name String
- Used to filter by the name of the object.
- namePath String
- Object name path
- newKey String
- New key of the object
- objectType String
- Object type
- objectVersion String
- Object version
- oldKey String
- Old key of the object
- resolutionAction String
- Object resolution action
- timeUpdated StringIn Millis 
- time at which this object was last updated.
- aggregatorKey string
- Aggregator key
- identifier string
- Object identifier
- name string
- Used to filter by the name of the object.
- namePath string
- Object name path
- newKey string
- New key of the object
- objectType string
- Object type
- objectVersion string
- Object version
- oldKey string
- Old key of the object
- resolutionAction string
- Object resolution action
- timeUpdated stringIn Millis 
- time at which this object was last updated.
- aggregator_key str
- Aggregator key
- identifier str
- Object identifier
- name str
- Used to filter by the name of the object.
- name_path str
- Object name path
- new_key str
- New key of the object
- object_type str
- Object type
- object_version str
- Object version
- old_key str
- Old key of the object
- resolution_action str
- Object resolution action
- time_updated_ strin_ millis 
- time at which this object was last updated.
- aggregatorKey String
- Aggregator key
- identifier String
- Object identifier
- name String
- Used to filter by the name of the object.
- namePath String
- Object name path
- newKey String
- New key of the object
- objectType String
- Object type
- objectVersion String
- Object version
- oldKey String
- Old key of the object
- resolutionAction String
- Object resolution action
- timeUpdated StringIn Millis 
- time at which this object was last updated.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.