1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. getWorkspaceImportRequests
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.DataIntegration.getWorkspaceImportRequests

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    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/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[_dataintegration.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[_dataintegration.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataIntegration/getWorkspaceImportRequests:getWorkspaceImportRequests
      arguments:
        # arguments dictionary

    The following arguments are supported:

    WorkspaceId string
    The workspace ID.
    Filters List<GetWorkspaceImportRequestsFilter>
    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.
    TimeEndedInMillis string
    Specifies end time of a copy object request.
    TimeStartedInMillis string
    Specifies start time of a copy object request.
    WorkspaceId string
    The workspace ID.
    Filters []GetWorkspaceImportRequestsFilter
    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.
    TimeEndedInMillis string
    Specifies end time of a copy object request.
    TimeStartedInMillis string
    Specifies start time of a copy object request.
    workspaceId String
    The workspace ID.
    filters List<GetWorkspaceImportRequestsFilter>
    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.
    timeEndedInMillis String
    Specifies end time of a copy object request.
    timeStartedInMillis String
    Specifies start time of a copy object request.
    workspaceId string
    The workspace ID.
    filters GetWorkspaceImportRequestsFilter[]
    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.
    timeEndedInMillis string
    Specifies end time of a copy object request.
    timeStartedInMillis string
    Specifies start time of a copy object request.
    workspace_id str
    The workspace ID.
    filters Sequence[dataintegration.GetWorkspaceImportRequestsFilter]
    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_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 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.
    timeEndedInMillis String
    Specifies end time of a copy object request.
    timeStartedInMillis String
    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.
    ImportRequestSummaryCollections List<GetWorkspaceImportRequestsImportRequestSummaryCollection>
    The list of import_request_summary_collection.
    WorkspaceId string
    Filters List<GetWorkspaceImportRequestsFilter>
    ImportStatus string
    Name string
    Name of the import request.
    Projection string
    TimeEndedInMillis string
    Time at which the request was completely processed.
    TimeStartedInMillis string
    Time at which the request started getting processed.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImportRequestSummaryCollections []GetWorkspaceImportRequestsImportRequestSummaryCollection
    The list of import_request_summary_collection.
    WorkspaceId string
    Filters []GetWorkspaceImportRequestsFilter
    ImportStatus string
    Name string
    Name of the import request.
    Projection string
    TimeEndedInMillis string
    Time at which the request was completely processed.
    TimeStartedInMillis string
    Time at which the request started getting processed.
    id String
    The provider-assigned unique ID for this managed resource.
    importRequestSummaryCollections List<GetWorkspaceImportRequestsImportRequestSummaryCollection>
    The list of import_request_summary_collection.
    workspaceId String
    filters List<GetWorkspaceImportRequestsFilter>
    importStatus String
    name String
    Name of the import request.
    projection String
    timeEndedInMillis String
    Time at which the request was completely processed.
    timeStartedInMillis String
    Time at which the request started getting processed.
    id string
    The provider-assigned unique ID for this managed resource.
    importRequestSummaryCollections GetWorkspaceImportRequestsImportRequestSummaryCollection[]
    The list of import_request_summary_collection.
    workspaceId string
    filters GetWorkspaceImportRequestsFilter[]
    importStatus string
    name string
    Name of the import request.
    projection string
    timeEndedInMillis string
    Time at which the request was completely processed.
    timeStartedInMillis string
    Time at which the request started getting processed.
    id str
    The provider-assigned unique ID for this managed resource.
    import_request_summary_collections Sequence[dataintegration.GetWorkspaceImportRequestsImportRequestSummaryCollection]
    The list of import_request_summary_collection.
    workspace_id str
    filters Sequence[dataintegration.GetWorkspaceImportRequestsFilter]
    import_status str
    name str
    Name of the import 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.
    id String
    The provider-assigned unique ID for this managed resource.
    importRequestSummaryCollections List<Property Map>
    The list of import_request_summary_collection.
    workspaceId String
    filters List<Property Map>
    importStatus String
    name String
    Name of the import 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

    GetWorkspaceImportRequestsFilter

    Name string
    Used to filter by the name of the object.
    Values List<string>
    Regex bool
    Name string
    Used to filter by the name of the object.
    Values []string
    Regex bool
    name String
    Used to filter by the name of the object.
    values List<String>
    regex Boolean
    name string
    Used to filter by the name of the object.
    values string[]
    regex boolean
    name str
    Used to filter by the name of the object.
    values Sequence[str]
    regex bool
    name String
    Used to filter by the name of the object.
    values List<String>
    regex Boolean

    GetWorkspaceImportRequestsImportRequestSummaryCollection

    GetWorkspaceImportRequestsImportRequestSummaryCollectionItem

    AreDataAssetReferencesIncluded bool
    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, object>
    Contains key of the error
    FileName string
    Name of the zip file from which objects will be imported.
    ImportConflictResolution GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution
    Import Objects Conflict resolution.
    ImportedObjects List<GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject>
    The array of imported object details.
    Key string
    Import object request key
    Name string
    Used to filter by the name of the object.
    ObjectKeyForImport string
    Key of the object inside which all the objects will be imported
    ObjectStorageRegion string
    Region of the object storage (if using object storage of different region)
    ObjectStorageTenancyId string
    Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
    Status string
    Import Objects request status.
    TimeEndedInMillis string
    Specifies end time of a copy object request.
    TimeStartedInMillis string
    Specifies start time of a copy object request.
    TotalImportedObjectCount int
    Number of objects that are imported.
    WorkspaceId string
    The workspace ID.
    AreDataAssetReferencesIncluded bool
    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]interface{}
    Contains key of the error
    FileName string
    Name of the zip file from which objects will be imported.
    ImportConflictResolution GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution
    Import Objects Conflict resolution.
    ImportedObjects []GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject
    The array of imported object details.
    Key string
    Import object request key
    Name string
    Used to filter by the name of the object.
    ObjectKeyForImport string
    Key of the object inside which all the objects will be imported
    ObjectStorageRegion string
    Region of the object storage (if using object storage of different region)
    ObjectStorageTenancyId string
    Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
    Status string
    Import Objects request status.
    TimeEndedInMillis string
    Specifies end time of a copy object request.
    TimeStartedInMillis string
    Specifies start time of a copy object request.
    TotalImportedObjectCount int
    Number of objects that are imported.
    WorkspaceId string
    The workspace ID.
    areDataAssetReferencesIncluded Boolean
    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,Object>
    Contains key of the error
    fileName String
    Name of the zip file from which objects will be imported.
    importConflictResolution GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution
    Import Objects Conflict resolution.
    importedObjects List<GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject>
    The array of imported object details.
    key String
    Import object request key
    name String
    Used to filter by the name of the object.
    objectKeyForImport String
    Key of the object inside which all the objects will be imported
    objectStorageRegion String
    Region of the object storage (if using object storage of different region)
    objectStorageTenancyId String
    Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
    status String
    Import Objects request status.
    timeEndedInMillis String
    Specifies end time of a copy object request.
    timeStartedInMillis String
    Specifies start time of a copy object request.
    totalImportedObjectCount Integer
    Number of objects that are imported.
    workspaceId String
    The workspace ID.
    areDataAssetReferencesIncluded boolean
    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]: any}
    Contains key of the error
    fileName string
    Name of the zip file from which objects will be imported.
    importConflictResolution GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution
    Import Objects Conflict resolution.
    importedObjects GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject[]
    The array of imported object details.
    key string
    Import object request key
    name string
    Used to filter by the name of the object.
    objectKeyForImport string
    Key of the object inside which all the objects will be imported
    objectStorageRegion string
    Region of the object storage (if using object storage of different region)
    objectStorageTenancyId string
    Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
    status string
    Import Objects request status.
    timeEndedInMillis string
    Specifies end time of a copy object request.
    timeStartedInMillis string
    Specifies start time of a copy object request.
    totalImportedObjectCount number
    Number of objects that are imported.
    workspaceId string
    The workspace ID.
    are_data_asset_references_included bool
    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, Any]
    Contains key of the error
    file_name str
    Name of the zip file from which objects will be imported.
    import_conflict_resolution dataintegration.GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution
    Import Objects Conflict resolution.
    imported_objects Sequence[dataintegration.GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject]
    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_for_import str
    Key of the object inside which all the objects will be imported
    object_storage_region str
    Region of the object storage (if using object storage of different region)
    object_storage_tenancy_id str
    Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
    status str
    Import Objects request status.
    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.
    total_imported_object_count int
    Number of objects that are imported.
    workspace_id str
    The workspace ID.
    areDataAssetReferencesIncluded Boolean
    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<Any>
    Contains key of the error
    fileName String
    Name of the zip file from which objects will be imported.
    importConflictResolution Property Map
    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.
    objectKeyForImport String
    Key of the object inside which all the objects will be imported
    objectStorageRegion String
    Region of the object storage (if using object storage of different region)
    objectStorageTenancyId String
    Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
    status String
    Import Objects request status.
    timeEndedInMillis String
    Specifies end time of a copy object request.
    timeStartedInMillis String
    Specifies start time of a copy object request.
    totalImportedObjectCount Number
    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.
    ImportConflictResolutionType string
    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.
    ImportConflictResolutionType string
    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.
    importConflictResolutionType String
    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.
    importConflictResolutionType string
    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_resolution_type str
    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.
    importConflictResolutionType String
    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
    TimeUpdatedInMillis string
    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
    TimeUpdatedInMillis string
    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
    timeUpdatedInMillis String
    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
    timeUpdatedInMillis string
    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_in_millis str
    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
    timeUpdatedInMillis String
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi