1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. AiAnomalyDetection
  5. getDetectAnomalyJobs
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.AiAnomalyDetection.getDetectAnomalyJobs

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Detect Anomaly Jobs in Oracle Cloud Infrastructure Ai Anomaly Detection service.

Returns a list of all the Anomaly Detection jobs in the specified compartment.

Example Usage

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

const testDetectAnomalyJobs = oci.AiAnomalyDetection.getDetectAnomalyJobs({
    compartmentId: compartmentId,
    detectAnomalyJobId: testDetectAnomalyJob.id,
    displayName: detectAnomalyJobDisplayName,
    modelId: testModel.id,
    projectId: testProject.id,
    state: detectAnomalyJobState,
});
Copy
import pulumi
import pulumi_oci as oci

test_detect_anomaly_jobs = oci.AiAnomalyDetection.get_detect_anomaly_jobs(compartment_id=compartment_id,
    detect_anomaly_job_id=test_detect_anomaly_job["id"],
    display_name=detect_anomaly_job_display_name,
    model_id=test_model["id"],
    project_id=test_project["id"],
    state=detect_anomaly_job_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/aianomalydetection"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := aianomalydetection.GetDetectAnomalyJobs(ctx, &aianomalydetection.GetDetectAnomalyJobsArgs{
			CompartmentId:      compartmentId,
			DetectAnomalyJobId: pulumi.StringRef(testDetectAnomalyJob.Id),
			DisplayName:        pulumi.StringRef(detectAnomalyJobDisplayName),
			ModelId:            pulumi.StringRef(testModel.Id),
			ProjectId:          pulumi.StringRef(testProject.Id),
			State:              pulumi.StringRef(detectAnomalyJobState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDetectAnomalyJobs = Oci.AiAnomalyDetection.GetDetectAnomalyJobs.Invoke(new()
    {
        CompartmentId = compartmentId,
        DetectAnomalyJobId = testDetectAnomalyJob.Id,
        DisplayName = detectAnomalyJobDisplayName,
        ModelId = testModel.Id,
        ProjectId = testProject.Id,
        State = detectAnomalyJobState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.AiAnomalyDetection.AiAnomalyDetectionFunctions;
import com.pulumi.oci.AiAnomalyDetection.inputs.GetDetectAnomalyJobsArgs;
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 testDetectAnomalyJobs = AiAnomalyDetectionFunctions.getDetectAnomalyJobs(GetDetectAnomalyJobsArgs.builder()
            .compartmentId(compartmentId)
            .detectAnomalyJobId(testDetectAnomalyJob.id())
            .displayName(detectAnomalyJobDisplayName)
            .modelId(testModel.id())
            .projectId(testProject.id())
            .state(detectAnomalyJobState)
            .build());

    }
}
Copy
variables:
  testDetectAnomalyJobs:
    fn::invoke:
      function: oci:AiAnomalyDetection:getDetectAnomalyJobs
      arguments:
        compartmentId: ${compartmentId}
        detectAnomalyJobId: ${testDetectAnomalyJob.id}
        displayName: ${detectAnomalyJobDisplayName}
        modelId: ${testModel.id}
        projectId: ${testProject.id}
        state: ${detectAnomalyJobState}
Copy

Using getDetectAnomalyJobs

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 getDetectAnomalyJobs(args: GetDetectAnomalyJobsArgs, opts?: InvokeOptions): Promise<GetDetectAnomalyJobsResult>
function getDetectAnomalyJobsOutput(args: GetDetectAnomalyJobsOutputArgs, opts?: InvokeOptions): Output<GetDetectAnomalyJobsResult>
Copy
def get_detect_anomaly_jobs(compartment_id: Optional[str] = None,
                            detect_anomaly_job_id: Optional[str] = None,
                            display_name: Optional[str] = None,
                            filters: Optional[Sequence[_aianomalydetection.GetDetectAnomalyJobsFilter]] = None,
                            model_id: Optional[str] = None,
                            project_id: Optional[str] = None,
                            state: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetDetectAnomalyJobsResult
def get_detect_anomaly_jobs_output(compartment_id: Optional[pulumi.Input[str]] = None,
                            detect_anomaly_job_id: Optional[pulumi.Input[str]] = None,
                            display_name: Optional[pulumi.Input[str]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[_aianomalydetection.GetDetectAnomalyJobsFilterArgs]]]] = None,
                            model_id: Optional[pulumi.Input[str]] = None,
                            project_id: Optional[pulumi.Input[str]] = None,
                            state: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetDetectAnomalyJobsResult]
Copy
func GetDetectAnomalyJobs(ctx *Context, args *GetDetectAnomalyJobsArgs, opts ...InvokeOption) (*GetDetectAnomalyJobsResult, error)
func GetDetectAnomalyJobsOutput(ctx *Context, args *GetDetectAnomalyJobsOutputArgs, opts ...InvokeOption) GetDetectAnomalyJobsResultOutput
Copy

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

public static class GetDetectAnomalyJobs 
{
    public static Task<GetDetectAnomalyJobsResult> InvokeAsync(GetDetectAnomalyJobsArgs args, InvokeOptions? opts = null)
    public static Output<GetDetectAnomalyJobsResult> Invoke(GetDetectAnomalyJobsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDetectAnomalyJobsResult> getDetectAnomalyJobs(GetDetectAnomalyJobsArgs args, InvokeOptions options)
public static Output<GetDetectAnomalyJobsResult> getDetectAnomalyJobs(GetDetectAnomalyJobsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:AiAnomalyDetection/getDetectAnomalyJobs:getDetectAnomalyJobs
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DetectAnomalyJobId string
Unique Async Job identifier
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetDetectAnomalyJobsFilter>
ModelId string
The ID of the trained model for which to list the resources.
ProjectId string
The ID of the project for which to list the objects.
State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DetectAnomalyJobId string
Unique Async Job identifier
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetDetectAnomalyJobsFilter
ModelId string
The ID of the trained model for which to list the resources.
ProjectId string
The ID of the project for which to list the objects.
State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
detectAnomalyJobId String
Unique Async Job identifier
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetDetectAnomalyJobsFilter>
modelId String
The ID of the trained model for which to list the resources.
projectId String
The ID of the project for which to list the objects.
state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
detectAnomalyJobId string
Unique Async Job identifier
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetDetectAnomalyJobsFilter[]
modelId string
The ID of the trained model for which to list the resources.
projectId string
The ID of the project for which to list the objects.
state string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
detect_anomaly_job_id str
Unique Async Job identifier
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[aianomalydetection.GetDetectAnomalyJobsFilter]
model_id str
The ID of the trained model for which to list the resources.
project_id str
The ID of the project for which to list the objects.
state str
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
detectAnomalyJobId String
Unique Async Job identifier
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
modelId String
The ID of the trained model for which to list the resources.
projectId String
The ID of the project for which to list the objects.
state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.

getDetectAnomalyJobs Result

The following output properties are available:

CompartmentId string
The OCID of the compartment that starts the job.
DetectAnomalyJobCollections List<GetDetectAnomalyJobsDetectAnomalyJobCollection>
The list of detect_anomaly_job_collection.
Id string
The provider-assigned unique ID for this managed resource.
DetectAnomalyJobId string
DisplayName string
Detect anomaly job display name.
Filters List<GetDetectAnomalyJobsFilter>
ModelId string
The OCID of the trained model.
ProjectId string
The OCID of the project.
State string
The current state of the batch document job.
CompartmentId string
The OCID of the compartment that starts the job.
DetectAnomalyJobCollections []GetDetectAnomalyJobsDetectAnomalyJobCollection
The list of detect_anomaly_job_collection.
Id string
The provider-assigned unique ID for this managed resource.
DetectAnomalyJobId string
DisplayName string
Detect anomaly job display name.
Filters []GetDetectAnomalyJobsFilter
ModelId string
The OCID of the trained model.
ProjectId string
The OCID of the project.
State string
The current state of the batch document job.
compartmentId String
The OCID of the compartment that starts the job.
detectAnomalyJobCollections List<GetDetectAnomalyJobsDetectAnomalyJobCollection>
The list of detect_anomaly_job_collection.
id String
The provider-assigned unique ID for this managed resource.
detectAnomalyJobId String
displayName String
Detect anomaly job display name.
filters List<GetDetectAnomalyJobsFilter>
modelId String
The OCID of the trained model.
projectId String
The OCID of the project.
state String
The current state of the batch document job.
compartmentId string
The OCID of the compartment that starts the job.
detectAnomalyJobCollections GetDetectAnomalyJobsDetectAnomalyJobCollection[]
The list of detect_anomaly_job_collection.
id string
The provider-assigned unique ID for this managed resource.
detectAnomalyJobId string
displayName string
Detect anomaly job display name.
filters GetDetectAnomalyJobsFilter[]
modelId string
The OCID of the trained model.
projectId string
The OCID of the project.
state string
The current state of the batch document job.
compartment_id str
The OCID of the compartment that starts the job.
detect_anomaly_job_collections Sequence[aianomalydetection.GetDetectAnomalyJobsDetectAnomalyJobCollection]
The list of detect_anomaly_job_collection.
id str
The provider-assigned unique ID for this managed resource.
detect_anomaly_job_id str
display_name str
Detect anomaly job display name.
filters Sequence[aianomalydetection.GetDetectAnomalyJobsFilter]
model_id str
The OCID of the trained model.
project_id str
The OCID of the project.
state str
The current state of the batch document job.
compartmentId String
The OCID of the compartment that starts the job.
detectAnomalyJobCollections List<Property Map>
The list of detect_anomaly_job_collection.
id String
The provider-assigned unique ID for this managed resource.
detectAnomalyJobId String
displayName String
Detect anomaly job display name.
filters List<Property Map>
modelId String
The OCID of the trained model.
projectId String
The OCID of the project.
state String
The current state of the batch document job.

Supporting Types

GetDetectAnomalyJobsDetectAnomalyJobCollection

items This property is required. List<Property Map>

GetDetectAnomalyJobsDetectAnomalyJobCollectionItem

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Detect anomaly job description.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Id of the job.
InputDetails This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail>
Input details for detect anomaly job.
LifecycleStateDetails This property is required. string
The current state details of the batch document job.
ModelId This property is required. string
The ID of the trained model for which to list the resources.
OutputDetails This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail>
Output details for detect anomaly job.
ProjectId This property is required. string
The ID of the project for which to list the objects.
Sensitivity This property is required. double
The value that customer can adjust to control the sensitivity of anomaly detection
State This property is required. string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeAccepted This property is required. string
Job accepted time
TimeFinished This property is required. string
Job finished time
TimeStarted This property is required. string
Job started time
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Detect anomaly job description.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Id of the job.
InputDetails This property is required. []GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail
Input details for detect anomaly job.
LifecycleStateDetails This property is required. string
The current state details of the batch document job.
ModelId This property is required. string
The ID of the trained model for which to list the resources.
OutputDetails This property is required. []GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail
Output details for detect anomaly job.
ProjectId This property is required. string
The ID of the project for which to list the objects.
Sensitivity This property is required. float64
The value that customer can adjust to control the sensitivity of anomaly detection
State This property is required. string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeAccepted This property is required. string
Job accepted time
TimeFinished This property is required. string
Job finished time
TimeStarted This property is required. string
Job started time
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Detect anomaly job description.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Id of the job.
inputDetails This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail>
Input details for detect anomaly job.
lifecycleStateDetails This property is required. String
The current state details of the batch document job.
modelId This property is required. String
The ID of the trained model for which to list the resources.
outputDetails This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail>
Output details for detect anomaly job.
projectId This property is required. String
The ID of the project for which to list the objects.
sensitivity This property is required. Double
The value that customer can adjust to control the sensitivity of anomaly detection
state This property is required. String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeAccepted This property is required. String
Job accepted time
timeFinished This property is required. String
Job finished time
timeStarted This property is required. String
Job started time
compartmentId This property is required. string
The ID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
Detect anomaly job description.
displayName This property is required. string
A filter to return only resources that match the entire display name given.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. string
Id of the job.
inputDetails This property is required. GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail[]
Input details for detect anomaly job.
lifecycleStateDetails This property is required. string
The current state details of the batch document job.
modelId This property is required. string
The ID of the trained model for which to list the resources.
outputDetails This property is required. GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail[]
Output details for detect anomaly job.
projectId This property is required. string
The ID of the project for which to list the objects.
sensitivity This property is required. number
The value that customer can adjust to control the sensitivity of anomaly detection
state This property is required. string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeAccepted This property is required. string
Job accepted time
timeFinished This property is required. string
Job finished time
timeStarted This property is required. string
Job started time
compartment_id This property is required. str
The ID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
Detect anomaly job description.
display_name This property is required. str
A filter to return only resources that match the entire display name given.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
Id of the job.
input_details This property is required. Sequence[aianomalydetection.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail]
Input details for detect anomaly job.
lifecycle_state_details This property is required. str
The current state details of the batch document job.
model_id This property is required. str
The ID of the trained model for which to list the resources.
output_details This property is required. Sequence[aianomalydetection.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail]
Output details for detect anomaly job.
project_id This property is required. str
The ID of the project for which to list the objects.
sensitivity This property is required. float
The value that customer can adjust to control the sensitivity of anomaly detection
state This property is required. str
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_accepted This property is required. str
Job accepted time
time_finished This property is required. str
Job finished time
time_started This property is required. str
Job started time
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Detect anomaly job description.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Id of the job.
inputDetails This property is required. List<Property Map>
Input details for detect anomaly job.
lifecycleStateDetails This property is required. String
The current state details of the batch document job.
modelId This property is required. String
The ID of the trained model for which to list the resources.
outputDetails This property is required. List<Property Map>
Output details for detect anomaly job.
projectId This property is required. String
The ID of the project for which to list the objects.
sensitivity This property is required. Number
The value that customer can adjust to control the sensitivity of anomaly detection
state This property is required. String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeAccepted This property is required. String
Job accepted time
timeFinished This property is required. String
Job finished time
timeStarted This property is required. String
Job started time

GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail

Content This property is required. string
ContentType This property is required. string
Datas This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData>
InputType This property is required. string
The type of input location Allowed values are:

  • INLINE: Inline input data.
  • OBJECT_LIST: Object store output location.
Message This property is required. string
Inline input details.
ObjectLocations This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation>
List of ObjectLocations.
SignalNames This property is required. List<string>
Content This property is required. string
ContentType This property is required. string
Datas This property is required. []GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData
InputType This property is required. string
The type of input location Allowed values are:

  • INLINE: Inline input data.
  • OBJECT_LIST: Object store output location.
Message This property is required. string
Inline input details.
ObjectLocations This property is required. []GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation
List of ObjectLocations.
SignalNames This property is required. []string
content This property is required. String
contentType This property is required. String
datas This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData>
inputType This property is required. String
The type of input location Allowed values are:

  • INLINE: Inline input data.
  • OBJECT_LIST: Object store output location.
message This property is required. String
Inline input details.
objectLocations This property is required. List<GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation>
List of ObjectLocations.
signalNames This property is required. List<String>
content This property is required. string
contentType This property is required. string
datas This property is required. GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData[]
inputType This property is required. string
The type of input location Allowed values are:

  • INLINE: Inline input data.
  • OBJECT_LIST: Object store output location.
message This property is required. string
Inline input details.
objectLocations This property is required. GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation[]
List of ObjectLocations.
signalNames This property is required. string[]
content This property is required. str
content_type This property is required. str
datas This property is required. Sequence[aianomalydetection.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData]
input_type This property is required. str
The type of input location Allowed values are:

  • INLINE: Inline input data.
  • OBJECT_LIST: Object store output location.
message This property is required. str
Inline input details.
object_locations This property is required. Sequence[aianomalydetection.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation]
List of ObjectLocations.
signal_names This property is required. Sequence[str]
content This property is required. String
contentType This property is required. String
datas This property is required. List<Property Map>
inputType This property is required. String
The type of input location Allowed values are:

  • INLINE: Inline input data.
  • OBJECT_LIST: Object store output location.
message This property is required. String
Inline input details.
objectLocations This property is required. List<Property Map>
List of ObjectLocations.
signalNames This property is required. List<String>

GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData

Timestamp This property is required. string
Values This property is required. List<double>
Timestamp This property is required. string
Values This property is required. []float64
timestamp This property is required. String
values This property is required. List<Double>
timestamp This property is required. string
values This property is required. number[]
timestamp This property is required. str
values This property is required. Sequence[float]
timestamp This property is required. String
values This property is required. List<Number>

GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation

Bucket This property is required. string
Object Storage bucket name.
Namespace This property is required. string
Object Storage namespace.
Object This property is required. string
Object Storage object name.
Bucket This property is required. string
Object Storage bucket name.
Namespace This property is required. string
Object Storage namespace.
Object This property is required. string
Object Storage object name.
bucket This property is required. String
Object Storage bucket name.
namespace This property is required. String
Object Storage namespace.
object This property is required. String
Object Storage object name.
bucket This property is required. string
Object Storage bucket name.
namespace This property is required. string
Object Storage namespace.
object This property is required. string
Object Storage object name.
bucket This property is required. str
Object Storage bucket name.
namespace This property is required. str
Object Storage namespace.
object This property is required. str
Object Storage object name.
bucket This property is required. String
Object Storage bucket name.
namespace This property is required. String
Object Storage namespace.
object This property is required. String
Object Storage object name.

GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail

Bucket This property is required. string
Object Storage bucket name.
Namespace This property is required. string
Object Storage namespace.
OutputType This property is required. string
The type of output location Allowed values are:

  • OBJECT_STORAGE: Object store output location.
Prefix This property is required. string
Object Storage folder name.
Bucket This property is required. string
Object Storage bucket name.
Namespace This property is required. string
Object Storage namespace.
OutputType This property is required. string
The type of output location Allowed values are:

  • OBJECT_STORAGE: Object store output location.
Prefix This property is required. string
Object Storage folder name.
bucket This property is required. String
Object Storage bucket name.
namespace This property is required. String
Object Storage namespace.
outputType This property is required. String
The type of output location Allowed values are:

  • OBJECT_STORAGE: Object store output location.
prefix This property is required. String
Object Storage folder name.
bucket This property is required. string
Object Storage bucket name.
namespace This property is required. string
Object Storage namespace.
outputType This property is required. string
The type of output location Allowed values are:

  • OBJECT_STORAGE: Object store output location.
prefix This property is required. string
Object Storage folder name.
bucket This property is required. str
Object Storage bucket name.
namespace This property is required. str
Object Storage namespace.
output_type This property is required. str
The type of output location Allowed values are:

  • OBJECT_STORAGE: Object store output location.
prefix This property is required. str
Object Storage folder name.
bucket This property is required. String
Object Storage bucket name.
namespace This property is required. String
Object Storage namespace.
outputType This property is required. String
The type of output location Allowed values are:

  • OBJECT_STORAGE: Object store output location.
prefix This property is required. String
Object Storage folder name.

GetDetectAnomalyJobsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi