oci.AiAnomalyDetection.DetectAnomalyJob
Explore with Pulumi AI
This resource provides the Detect Anomaly Job resource in Oracle Cloud Infrastructure Ai Anomaly Detection service.
Creates a job to perform anomaly detection.
Example Usage
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.AiAnomalyDetection.DetectAnomalyJob;
import com.pulumi.oci.AiAnomalyDetection.DetectAnomalyJobArgs;
import com.pulumi.oci.AiAnomalyDetection.inputs.DetectAnomalyJobInputDetailsArgs;
import com.pulumi.oci.AiAnomalyDetection.inputs.DetectAnomalyJobOutputDetailsArgs;
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) {
var testDetectAnomalyJob = new DetectAnomalyJob("testDetectAnomalyJob", DetectAnomalyJobArgs.builder()
.compartmentId(var_.compartment_id())
.inputDetails(DetectAnomalyJobInputDetailsArgs.builder()
.inputType(var_.detect_anomaly_job_input_details_input_type())
.content(var_.detect_anomaly_job_input_details_content())
.contentType(var_.detect_anomaly_job_input_details_content_type())
.datas(DetectAnomalyJobInputDetailsDataArgs.builder()
.timestamp(var_.detect_anomaly_job_input_details_data_timestamp())
.values(var_.detect_anomaly_job_input_details_data_values())
.build())
.objectLocations(DetectAnomalyJobInputDetailsObjectLocationArgs.builder()
.bucket(var_.detect_anomaly_job_input_details_object_locations_bucket())
.namespace(var_.detect_anomaly_job_input_details_object_locations_namespace())
.object(var_.detect_anomaly_job_input_details_object_locations_object())
.build())
.signalNames(var_.detect_anomaly_job_input_details_signal_names())
.build())
.modelId(oci_ai_anomaly_detection_model.test_model().id())
.outputDetails(DetectAnomalyJobOutputDetailsArgs.builder()
.bucket(var_.detect_anomaly_job_output_details_bucket())
.namespace(var_.detect_anomaly_job_output_details_namespace())
.outputType(var_.detect_anomaly_job_output_details_output_type())
.prefix(var_.detect_anomaly_job_output_details_prefix())
.build())
.areAllEstimatesRequired(var_.detect_anomaly_job_are_all_estimates_required())
.description(var_.detect_anomaly_job_description())
.displayName(var_.detect_anomaly_job_display_name())
.sensitivity(var_.detect_anomaly_job_sensitivity())
.build());
}
}
Coming soon!
Coming soon!
resources:
testDetectAnomalyJob:
type: oci:AiAnomalyDetection:DetectAnomalyJob
properties:
#Required
compartmentId: ${var.compartment_id}
inputDetails:
inputType: ${var.detect_anomaly_job_input_details_input_type}
content: ${var.detect_anomaly_job_input_details_content}
contentType: ${var.detect_anomaly_job_input_details_content_type}
datas:
- timestamp: ${var.detect_anomaly_job_input_details_data_timestamp}
values: ${var.detect_anomaly_job_input_details_data_values}
objectLocations:
- bucket: ${var.detect_anomaly_job_input_details_object_locations_bucket}
namespace: ${var.detect_anomaly_job_input_details_object_locations_namespace}
object: ${var.detect_anomaly_job_input_details_object_locations_object}
signalNames: ${var.detect_anomaly_job_input_details_signal_names}
modelId: ${oci_ai_anomaly_detection_model.test_model.id}
outputDetails:
bucket: ${var.detect_anomaly_job_output_details_bucket}
namespace: ${var.detect_anomaly_job_output_details_namespace}
outputType: ${var.detect_anomaly_job_output_details_output_type}
prefix: ${var.detect_anomaly_job_output_details_prefix}
#Optional
areAllEstimatesRequired: ${var.detect_anomaly_job_are_all_estimates_required}
description: ${var.detect_anomaly_job_description}
displayName: ${var.detect_anomaly_job_display_name}
sensitivity: ${var.detect_anomaly_job_sensitivity}
Create DetectAnomalyJob Resource
new DetectAnomalyJob(name: string, args: DetectAnomalyJobArgs, opts?: CustomResourceOptions);
@overload
def DetectAnomalyJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
input_details: Optional[_aianomalydetection.DetectAnomalyJobInputDetailsArgs] = None,
model_id: Optional[str] = None,
output_details: Optional[_aianomalydetection.DetectAnomalyJobOutputDetailsArgs] = None,
sensitivity: Optional[float] = None)
@overload
def DetectAnomalyJob(resource_name: str,
args: DetectAnomalyJobArgs,
opts: Optional[ResourceOptions] = None)
func NewDetectAnomalyJob(ctx *Context, name string, args DetectAnomalyJobArgs, opts ...ResourceOption) (*DetectAnomalyJob, error)
public DetectAnomalyJob(string name, DetectAnomalyJobArgs args, CustomResourceOptions? opts = null)
public DetectAnomalyJob(String name, DetectAnomalyJobArgs args)
public DetectAnomalyJob(String name, DetectAnomalyJobArgs args, CustomResourceOptions options)
type: oci:AiAnomalyDetection:DetectAnomalyJob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DetectAnomalyJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DetectAnomalyJobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DetectAnomalyJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DetectAnomalyJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DetectAnomalyJobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DetectAnomalyJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DetectAnomalyJob resource accepts the following input properties:
- Compartment
Id string (Updatable) The OCID of the compartment that starts the job.
- Input
Details DetectAnomaly Job Input Details Detect anomaly asynchronous job details.
- Model
Id string The OCID of the trained model.
- Output
Details DetectAnomaly Job Output Details Detect anomaly job output details.
- Description string
(Updatable) A short description of the detect anomaly job.
- Display
Name string (Updatable) Detect anomaly job display name.
- Sensitivity double
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string (Updatable) The OCID of the compartment that starts the job.
- Input
Details DetectAnomaly Job Input Details Args Detect anomaly asynchronous job details.
- Model
Id string The OCID of the trained model.
- Output
Details DetectAnomaly Job Output Details Args Detect anomaly job output details.
- Description string
(Updatable) A short description of the detect anomaly job.
- Display
Name string (Updatable) Detect anomaly job display name.
- Sensitivity float64
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String (Updatable) The OCID of the compartment that starts the job.
- input
Details DetectAnomaly Job Input Details Detect anomaly asynchronous job details.
- model
Id String The OCID of the trained model.
- output
Details DetectAnomaly Job Output Details Detect anomaly job output details.
- description String
(Updatable) A short description of the detect anomaly job.
- display
Name String (Updatable) Detect anomaly job display name.
- sensitivity Double
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string (Updatable) The OCID of the compartment that starts the job.
- input
Details DetectAnomaly Job Input Details Detect anomaly asynchronous job details.
- model
Id string The OCID of the trained model.
- output
Details DetectAnomaly Job Output Details Detect anomaly job output details.
- description string
(Updatable) A short description of the detect anomaly job.
- display
Name string (Updatable) Detect anomaly job display name.
- sensitivity number
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str (Updatable) The OCID of the compartment that starts the job.
- input_
details DetectAnomaly Job Input Details Args Detect anomaly asynchronous job details.
- model_
id str The OCID of the trained model.
- output_
details DetectAnomaly Job Output Details Args Detect anomaly job output details.
- description str
(Updatable) A short description of the detect anomaly job.
- display_
name str (Updatable) Detect anomaly job display name.
- sensitivity float
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String (Updatable) The OCID of the compartment that starts the job.
- input
Details Property Map Detect anomaly asynchronous job details.
- model
Id String The OCID of the trained model.
- output
Details Property Map Detect anomaly job output details.
- description String
(Updatable) A short description of the detect anomaly job.
- display
Name String (Updatable) Detect anomaly job display name.
- sensitivity Number
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the DetectAnomalyJob resource produces the following output properties:
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails The current state details of the batch document job.
- Project
Id string The OCID of the project.
- State string
The current state of the batch document job.
- Dictionary<string, object>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Accepted string Job accepted time
- Time
Finished string Job finished time
- Time
Started string Job started time
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]interface{}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails The current state details of the batch document job.
- Project
Id string The OCID of the project.
- State string
The current state of the batch document job.
- map[string]interface{}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Accepted string Job accepted time
- Time
Finished string Job finished time
- Time
Started string Job started time
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,Object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails The current state details of the batch document job.
- project
Id String The OCID of the project.
- state String
The current state of the batch document job.
- Map<String,Object>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Accepted String Job accepted time
- time
Finished String Job finished time
- time
Started String Job started time
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: any}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
The provider-assigned unique ID for this managed resource.
- lifecycle
State stringDetails The current state details of the batch document job.
- project
Id string The OCID of the project.
- state string
The current state of the batch document job.
- {[key: string]: any}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Accepted string Job accepted time
- time
Finished string Job finished time
- time
Started string Job started time
- Mapping[str, Any]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, Any]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
The provider-assigned unique ID for this managed resource.
- lifecycle_
state_ strdetails The current state details of the batch document job.
- project_
id str The OCID of the project.
- state str
The current state of the batch document job.
- Mapping[str, Any]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
accepted str Job accepted time
- time_
finished str Job finished time
- time_
started str Job started time
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<Any>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails The current state details of the batch document job.
- project
Id String The OCID of the project.
- state String
The current state of the batch document job.
- Map<Any>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Accepted String Job accepted time
- time
Finished String Job finished time
- time
Started String Job started time
Look up Existing DetectAnomalyJob Resource
Get an existing DetectAnomalyJob resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DetectAnomalyJobState, opts?: CustomResourceOptions): DetectAnomalyJob
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
input_details: Optional[_aianomalydetection.DetectAnomalyJobInputDetailsArgs] = None,
lifecycle_state_details: Optional[str] = None,
model_id: Optional[str] = None,
output_details: Optional[_aianomalydetection.DetectAnomalyJobOutputDetailsArgs] = None,
project_id: Optional[str] = None,
sensitivity: Optional[float] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_accepted: Optional[str] = None,
time_finished: Optional[str] = None,
time_started: Optional[str] = None) -> DetectAnomalyJob
func GetDetectAnomalyJob(ctx *Context, name string, id IDInput, state *DetectAnomalyJobState, opts ...ResourceOption) (*DetectAnomalyJob, error)
public static DetectAnomalyJob Get(string name, Input<string> id, DetectAnomalyJobState? state, CustomResourceOptions? opts = null)
public static DetectAnomalyJob get(String name, Output<String> id, DetectAnomalyJobState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string (Updatable) The OCID of the compartment that starts the job.
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
(Updatable) A short description of the detect anomaly job.
- Display
Name string (Updatable) Detect anomaly job display name.
- Dictionary<string, object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Input
Details DetectAnomaly Job Input Details Detect anomaly asynchronous job details.
- Lifecycle
State stringDetails The current state details of the batch document job.
- Model
Id string The OCID of the trained model.
- Output
Details DetectAnomaly Job Output Details Detect anomaly job output details.
- Project
Id string The OCID of the project.
- Sensitivity double
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
The current state of the batch document job.
- Dictionary<string, object>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Accepted string Job accepted time
- Time
Finished string Job finished time
- Time
Started string Job started time
- Compartment
Id string (Updatable) The OCID of the compartment that starts the job.
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
(Updatable) A short description of the detect anomaly job.
- Display
Name string (Updatable) Detect anomaly job display name.
- map[string]interface{}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Input
Details DetectAnomaly Job Input Details Args Detect anomaly asynchronous job details.
- Lifecycle
State stringDetails The current state details of the batch document job.
- Model
Id string The OCID of the trained model.
- Output
Details DetectAnomaly Job Output Details Args Detect anomaly job output details.
- Project
Id string The OCID of the project.
- Sensitivity float64
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
The current state of the batch document job.
- map[string]interface{}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Accepted string Job accepted time
- Time
Finished string Job finished time
- Time
Started string Job started time
- compartment
Id String (Updatable) The OCID of the compartment that starts the job.
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
(Updatable) A short description of the detect anomaly job.
- display
Name String (Updatable) Detect anomaly job display name.
- Map<String,Object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- input
Details DetectAnomaly Job Input Details Detect anomaly asynchronous job details.
- lifecycle
State StringDetails The current state details of the batch document job.
- model
Id String The OCID of the trained model.
- output
Details DetectAnomaly Job Output Details Detect anomaly job output details.
- project
Id String The OCID of the project.
- sensitivity Double
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
The current state of the batch document job.
- Map<String,Object>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Accepted String Job accepted time
- time
Finished String Job finished time
- time
Started String Job started time
- compartment
Id string (Updatable) The OCID of the compartment that starts the job.
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
(Updatable) A short description of the detect anomaly job.
- display
Name string (Updatable) Detect anomaly job display name.
- {[key: string]: any}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- input
Details DetectAnomaly Job Input Details Detect anomaly asynchronous job details.
- lifecycle
State stringDetails The current state details of the batch document job.
- model
Id string The OCID of the trained model.
- output
Details DetectAnomaly Job Output Details Detect anomaly job output details.
- project
Id string The OCID of the project.
- sensitivity number
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
The current state of the batch document job.
- {[key: string]: any}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Accepted string Job accepted time
- time
Finished string Job finished time
- time
Started string Job started time
- compartment_
id str (Updatable) The OCID of the compartment that starts the job.
- Mapping[str, Any]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
(Updatable) A short description of the detect anomaly job.
- display_
name str (Updatable) Detect anomaly job display name.
- Mapping[str, Any]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- input_
details DetectAnomaly Job Input Details Args Detect anomaly asynchronous job details.
- lifecycle_
state_ strdetails The current state details of the batch document job.
- model_
id str The OCID of the trained model.
- output_
details DetectAnomaly Job Output Details Args Detect anomaly job output details.
- project_
id str The OCID of the project.
- sensitivity float
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
The current state of the batch document job.
- Mapping[str, Any]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
accepted str Job accepted time
- time_
finished str Job finished time
- time_
started str Job started time
- compartment
Id String (Updatable) The OCID of the compartment that starts the job.
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
(Updatable) A short description of the detect anomaly job.
- display
Name String (Updatable) Detect anomaly job display name.
- Map<Any>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- input
Details Property Map Detect anomaly asynchronous job details.
- lifecycle
State StringDetails The current state details of the batch document job.
- model
Id String The OCID of the trained model.
- output
Details Property Map Detect anomaly job output details.
- project
Id String The OCID of the project.
- sensitivity Number
The value that customer can adjust to control the sensitivity of anomaly detection
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
The current state of the batch document job.
- Map<Any>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Accepted String Job accepted time
- time
Finished String Job finished time
- time
Started String Job started time
Supporting Types
DetectAnomalyJobInputDetails, DetectAnomalyJobInputDetailsArgs
- Input
Type string Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
- Content string
- Content
Type string - Datas
List<Detect
Anomaly Job Input Details Data> Array containing data.
- Message string
Inline input details.
- Object
Locations List<DetectAnomaly Job Input Details Object Location> List of ObjectLocations.
- Signal
Names List<string> List of signal names.
- Input
Type string Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
- Content string
- Content
Type string - Datas
[]Detect
Anomaly Job Input Details Data Array containing data.
- Message string
Inline input details.
- Object
Locations []DetectAnomaly Job Input Details Object Location List of ObjectLocations.
- Signal
Names []string List of signal names.
- input
Type String Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
- content String
- content
Type String - datas
List<Detect
Anomaly Job Input Details Data> Array containing data.
- message String
Inline input details.
- object
Locations List<DetectAnomaly Job Input Details Object Location> List of ObjectLocations.
- signal
Names List<String> List of signal names.
- input
Type string Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
- content string
- content
Type string - datas
Detect
Anomaly Job Input Details Data[] Array containing data.
- message string
Inline input details.
- object
Locations DetectAnomaly Job Input Details Object Location[] List of ObjectLocations.
- signal
Names string[] List of signal names.
- input_
type str Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
- content str
- content_
type str - datas
Detect
Anomaly Job Input Details Data] Array containing data.
- message str
Inline input details.
- object_
locations DetectAnomaly Job Input Details Object Location] List of ObjectLocations.
- signal_
names Sequence[str] List of signal names.
- input
Type String Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
- content String
- content
Type String - datas List<Property Map>
Array containing data.
- message String
Inline input details.
- object
Locations List<Property Map> List of ObjectLocations.
- signal
Names List<String> List of signal names.
DetectAnomalyJobInputDetailsData, DetectAnomalyJobInputDetailsDataArgs
DetectAnomalyJobInputDetailsObjectLocation, DetectAnomalyJobInputDetailsObjectLocationArgs
DetectAnomalyJobOutputDetails, DetectAnomalyJobOutputDetailsArgs
- Bucket string
Object Storage bucket name.
- Namespace string
Object Storage namespace.
- Output
Type string The type of output location. Allowed values are:
- Prefix string
Object Storage folder name.
- Bucket string
Object Storage bucket name.
- Namespace string
Object Storage namespace.
- Output
Type string The type of output location. Allowed values are:
- Prefix string
Object Storage folder name.
- bucket String
Object Storage bucket name.
- namespace String
Object Storage namespace.
- output
Type String The type of output location. Allowed values are:
- prefix String
Object Storage folder name.
- bucket string
Object Storage bucket name.
- namespace string
Object Storage namespace.
- output
Type string The type of output location. Allowed values are:
- prefix string
Object Storage folder name.
- bucket str
Object Storage bucket name.
- namespace str
Object Storage namespace.
- output_
type str The type of output location. Allowed values are:
- prefix str
Object Storage folder name.
- bucket String
Object Storage bucket name.
- namespace String
Object Storage namespace.
- output
Type String The type of output location. Allowed values are:
- prefix String
Object Storage folder name.
Import
DetectAnomalyJobs can be imported using the id
, e.g.
$ pulumi import oci:AiAnomalyDetection/detectAnomalyJob:DetectAnomalyJob test_detect_anomaly_job "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.