Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.DataIntegration.getWorkspaceImportRequests
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides the list of 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:
- Workspace
Id string - The workspace ID.
- Filters
List<Get
Workspace Import Requests Filter> - Import
Status 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.
- 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 string - The workspace ID.
- Filters
[]Get
Workspace Import Requests Filter - Import
Status 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.
- 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 String - The workspace ID.
- filters
List<Get
Workspace Import Requests Filter> - import
Status 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.
- 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 string - The workspace ID.
- filters
Get
Workspace Import Requests Filter[] - import
Status 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.
- 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 str - The workspace ID.
- filters
Sequence[dataintegration.
Get Workspace 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.
- workspace
Id String - The workspace ID.
- filters List<Property Map>
- import
Status 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.
- time
Ended StringIn Millis - Specifies end time of a copy object request.
- time
Started 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.
- Import
Request List<GetSummary Collections Workspace Import Requests Import Request Summary Collection> - The list of import_request_summary_collection.
- Workspace
Id string - Filters
List<Get
Workspace Import Requests Filter> - Import
Status string - Name string
- Name of the import 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Import
Request []GetSummary Collections Workspace Import Requests Import Request Summary Collection - The list of import_request_summary_collection.
- Workspace
Id string - Filters
[]Get
Workspace Import Requests Filter - Import
Status string - Name string
- Name of the import 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.
- id String
- The provider-assigned unique ID for this managed resource.
- import
Request List<GetSummary Collections Workspace Import Requests Import Request Summary Collection> - The list of import_request_summary_collection.
- workspace
Id String - filters
List<Get
Workspace Import Requests Filter> - import
Status String - name String
- Name of the import 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.
- id string
- The provider-assigned unique ID for this managed resource.
- import
Request GetSummary Collections Workspace Import Requests Import Request Summary Collection[] - The list of import_request_summary_collection.
- workspace
Id string - filters
Get
Workspace Import Requests Filter[] - import
Status string - name string
- Name of the import 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.
- id str
- The provider-assigned unique ID for this managed resource.
- import_
request_ Sequence[dataintegration.summary_ collections Get Workspace Import Requests Import Request Summary Collection] - The list of import_request_summary_collection.
- workspace_
id str - filters
Sequence[dataintegration.
Get Workspace 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.
- import
Request List<Property Map>Summary Collections - The list of import_request_summary_collection.
- workspace
Id String - filters List<Property Map>
- import
Status String - name String
- Name of the import 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
GetWorkspaceImportRequestsFilter
GetWorkspaceImportRequestsImportRequestSummaryCollection
GetWorkspaceImportRequestsImportRequestSummaryCollectionItem
- Are
Data 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
- Created
By string - Name of the user who initiated import request.
- Error
Messages Dictionary<string, object> - Contains key of the error
- File
Name string - 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 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.
- Object
Key stringFor Import - Key of the object inside which all the objects will be imported
- Object
Storage stringRegion - Region of the object storage (if using object storage of different region)
- Object
Storage stringTenancy Id - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- Status string
- Import Objects request status.
- Time
Ended stringIn Millis - Specifies end time of a copy object request.
- Time
Started stringIn Millis - Specifies start time of a copy object request.
- Total
Imported intObject Count - Number of objects that are imported.
- Workspace
Id string - The workspace ID.
- Are
Data 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
- Created
By string - Name of the user who initiated import request.
- Error
Messages map[string]interface{} - Contains key of the error
- File
Name string - 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 []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.
- Object
Key stringFor Import - Key of the object inside which all the objects will be imported
- Object
Storage stringRegion - Region of the object storage (if using object storage of different region)
- Object
Storage stringTenancy Id - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- Status string
- Import Objects request status.
- Time
Ended stringIn Millis - Specifies end time of a copy object request.
- Time
Started stringIn Millis - Specifies start time of a copy object request.
- Total
Imported intObject Count - Number of objects that are imported.
- Workspace
Id string - The workspace ID.
- are
Data 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
- created
By String - Name of the user who initiated import request.
- error
Messages Map<String,Object> - Contains key of the error
- file
Name String - 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 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.
- object
Key StringFor Import - Key of the object inside which all the objects will be imported
- object
Storage StringRegion - Region of the object storage (if using object storage of different region)
- object
Storage StringTenancy Id - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status String
- Import Objects request status.
- time
Ended StringIn Millis - Specifies end time of a copy object request.
- time
Started StringIn Millis - Specifies start time of a copy object request.
- total
Imported IntegerObject Count - Number of objects that are imported.
- workspace
Id String - The workspace ID.
- are
Data 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
- created
By string - Name of the user who initiated import request.
- error
Messages {[key: string]: any} - Contains key of the error
- file
Name string - 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 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.
- object
Key stringFor Import - Key of the object inside which all the objects will be imported
- object
Storage stringRegion - Region of the object storage (if using object storage of different region)
- object
Storage stringTenancy Id - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status string
- Import Objects request status.
- time
Ended stringIn Millis - Specifies end time of a copy object request.
- time
Started stringIn Millis - Specifies start time of a copy object request.
- total
Imported numberObject Count - Number of objects that are imported.
- workspace
Id 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, Any] - Contains key of the error
- file_
name str - Name of the zip file from which objects will be imported.
- import_
conflict_ dataintegration.resolution Get Workspace Import Requests Import Request Summary Collection Item Import Conflict Resolution - Import Objects Conflict resolution.
- imported_
objects Sequence[dataintegration.Get Workspace 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.
- are
Data 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
- created
By String - Name of the user who initiated import request.
- error
Messages Map<Any> - Contains key of the error
- file
Name String - Name of the zip file from which objects will be imported.
- import
Conflict Property MapResolution - Import Objects Conflict resolution.
- imported
Objects 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.
- object
Key StringFor Import - Key of the object inside which all the objects will be imported
- object
Storage StringRegion - Region of the object storage (if using object storage of different region)
- object
Storage StringTenancy Id - Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
- status String
- Import Objects request status.
- time
Ended StringIn Millis - Specifies end time of a copy object request.
- time
Started StringIn Millis - Specifies start time of a copy object request.
- total
Imported NumberObject Count - Number of objects that are imported.
- workspace
Id String - The workspace ID.
GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportConflictResolution
- Duplicate
Prefix string - In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- Duplicate
Suffix string - In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- Import
Conflict stringResolution Type - Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- Duplicate
Prefix string - In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- Duplicate
Suffix string - In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- Import
Conflict stringResolution Type - Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- duplicate
Prefix String - In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicate
Suffix String - In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- import
Conflict StringResolution Type - Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
- duplicate
Prefix string - In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicate
Suffix string - In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- import
Conflict 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).
- duplicate
Prefix String - In case of DUPLICATE mode, prefix will be used to disambiguate the object.
- duplicate
Suffix String - In case of DUPLICATE mode, suffix will be used to disambiguate the object.
- import
Conflict StringResolution Type - Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
GetWorkspaceImportRequestsImportRequestSummaryCollectionItemImportedObject
- Aggregator
Key string - Aggregator key
- Identifier string
- Object identifier
- Name string
- Used to filter by the name of the object.
- Name
Path string - Object name path
- New
Key string - New key of the object
- Object
Type string - Object type
- Object
Version string - Object version
- Old
Key string - Old key of the object
- Resolution
Action string - Object resolution action
- Time
Updated stringIn Millis - time at which this object was last updated.
- Aggregator
Key string - Aggregator key
- Identifier string
- Object identifier
- Name string
- Used to filter by the name of the object.
- Name
Path string - Object name path
- New
Key string - New key of the object
- Object
Type string - Object type
- Object
Version string - Object version
- Old
Key string - Old key of the object
- Resolution
Action string - Object resolution action
- Time
Updated stringIn Millis - time at which this object was last updated.
- aggregator
Key String - Aggregator key
- identifier String
- Object identifier
- name String
- Used to filter by the name of the object.
- name
Path String - Object name path
- new
Key String - New key of the object
- object
Type String - Object type
- object
Version String - Object version
- old
Key String - Old key of the object
- resolution
Action String - Object resolution action
- time
Updated StringIn Millis - time at which this object was last updated.
- aggregator
Key string - Aggregator key
- identifier string
- Object identifier
- name string
- Used to filter by the name of the object.
- name
Path string - Object name path
- new
Key string - New key of the object
- object
Type string - Object type
- object
Version string - Object version
- old
Key string - Old key of the object
- resolution
Action string - Object resolution action
- time
Updated 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.
- aggregator
Key String - Aggregator key
- identifier String
- Object identifier
- name String
- Used to filter by the name of the object.
- name
Path String - Object name path
- new
Key String - New key of the object
- object
Type String - Object type
- object
Version String - Object version
- old
Key String - Old key of the object
- resolution
Action String - Object resolution action
- time
Updated 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
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi