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!
Coming soon!
Coming soon!
Coming soon!
resources:
  testDetectAnomalyJob:
    type: oci:AiAnomalyDetection:DetectAnomalyJob
    name: test_detect_anomaly_job
    properties:
      compartmentId: ${compartmentId}
      inputDetails:
        inputType: ${detectAnomalyJobInputDetailsInputType}
        content: ${detectAnomalyJobInputDetailsContent}
        contentType: ${detectAnomalyJobInputDetailsContentType}
        datas:
          - timestamp: ${detectAnomalyJobInputDetailsDataTimestamp}
            values: ${detectAnomalyJobInputDetailsDataValues}
        objectLocations:
          - bucket: ${detectAnomalyJobInputDetailsObjectLocationsBucket}
            namespace: ${detectAnomalyJobInputDetailsObjectLocationsNamespace}
            object: ${detectAnomalyJobInputDetailsObjectLocationsObject}
        signalNames: ${detectAnomalyJobInputDetailsSignalNames}
      modelId: ${testModel.id}
      outputDetails:
        bucket: ${detectAnomalyJobOutputDetailsBucket}
        namespace: ${detectAnomalyJobOutputDetailsNamespace}
        outputType: ${detectAnomalyJobOutputDetailsOutputType}
        prefix: ${detectAnomalyJobOutputDetailsPrefix}
      areAllEstimatesRequired: ${detectAnomalyJobAreAllEstimatesRequired}
      description: ${detectAnomalyJobDescription}
      displayName: ${detectAnomalyJobDisplayName}
      sensitivity: ${detectAnomalyJobSensitivity}
Create DetectAnomalyJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DetectAnomalyJob(name: string, args: DetectAnomalyJobArgs, opts?: CustomResourceOptions);@overload
def DetectAnomalyJob(resource_name: str,
                     args: DetectAnomalyJobArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def DetectAnomalyJob(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     compartment_id: Optional[str] = None,
                     input_details: Optional[DetectAnomalyJobInputDetailsArgs] = None,
                     model_id: Optional[str] = None,
                     output_details: Optional[DetectAnomalyJobOutputDetailsArgs] = None,
                     description: Optional[str] = None,
                     display_name: Optional[str] = None,
                     sensitivity: Optional[float] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var detectAnomalyJobResource = new Oci.AiAnomalyDetection.DetectAnomalyJob("detectAnomalyJobResource", new()
{
    CompartmentId = "string",
    InputDetails = new Oci.AiAnomalyDetection.Inputs.DetectAnomalyJobInputDetailsArgs
    {
        InputType = "string",
        Content = "string",
        ContentType = "string",
        Datas = new[]
        {
            new Oci.AiAnomalyDetection.Inputs.DetectAnomalyJobInputDetailsDataArgs
            {
                Timestamp = "string",
                Values = new[]
                {
                    0,
                },
            },
        },
        Message = "string",
        ObjectLocations = new[]
        {
            new Oci.AiAnomalyDetection.Inputs.DetectAnomalyJobInputDetailsObjectLocationArgs
            {
                Bucket = "string",
                Namespace = "string",
                Object = "string",
            },
        },
        SignalNames = new[]
        {
            "string",
        },
    },
    ModelId = "string",
    OutputDetails = new Oci.AiAnomalyDetection.Inputs.DetectAnomalyJobOutputDetailsArgs
    {
        Bucket = "string",
        Namespace = "string",
        OutputType = "string",
        Prefix = "string",
    },
    Description = "string",
    DisplayName = "string",
    Sensitivity = 0,
});
example, err := aianomalydetection.NewDetectAnomalyJob(ctx, "detectAnomalyJobResource", &aianomalydetection.DetectAnomalyJobArgs{
	CompartmentId: pulumi.String("string"),
	InputDetails: &aianomalydetection.DetectAnomalyJobInputDetailsArgs{
		InputType:   pulumi.String("string"),
		Content:     pulumi.String("string"),
		ContentType: pulumi.String("string"),
		Datas: aianomalydetection.DetectAnomalyJobInputDetailsDataArray{
			&aianomalydetection.DetectAnomalyJobInputDetailsDataArgs{
				Timestamp: pulumi.String("string"),
				Values: pulumi.Float64Array{
					pulumi.Float64(0),
				},
			},
		},
		Message: pulumi.String("string"),
		ObjectLocations: aianomalydetection.DetectAnomalyJobInputDetailsObjectLocationArray{
			&aianomalydetection.DetectAnomalyJobInputDetailsObjectLocationArgs{
				Bucket:    pulumi.String("string"),
				Namespace: pulumi.String("string"),
				Object:    pulumi.String("string"),
			},
		},
		SignalNames: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	ModelId: pulumi.String("string"),
	OutputDetails: &aianomalydetection.DetectAnomalyJobOutputDetailsArgs{
		Bucket:     pulumi.String("string"),
		Namespace:  pulumi.String("string"),
		OutputType: pulumi.String("string"),
		Prefix:     pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	Sensitivity: pulumi.Float64(0),
})
var detectAnomalyJobResource = new DetectAnomalyJob("detectAnomalyJobResource", DetectAnomalyJobArgs.builder()
    .compartmentId("string")
    .inputDetails(DetectAnomalyJobInputDetailsArgs.builder()
        .inputType("string")
        .content("string")
        .contentType("string")
        .datas(DetectAnomalyJobInputDetailsDataArgs.builder()
            .timestamp("string")
            .values(0.0)
            .build())
        .message("string")
        .objectLocations(DetectAnomalyJobInputDetailsObjectLocationArgs.builder()
            .bucket("string")
            .namespace("string")
            .object("string")
            .build())
        .signalNames("string")
        .build())
    .modelId("string")
    .outputDetails(DetectAnomalyJobOutputDetailsArgs.builder()
        .bucket("string")
        .namespace("string")
        .outputType("string")
        .prefix("string")
        .build())
    .description("string")
    .displayName("string")
    .sensitivity(0.0)
    .build());
detect_anomaly_job_resource = oci.ai_anomaly_detection.DetectAnomalyJob("detectAnomalyJobResource",
    compartment_id="string",
    input_details={
        "input_type": "string",
        "content": "string",
        "content_type": "string",
        "datas": [{
            "timestamp": "string",
            "values": [0],
        }],
        "message": "string",
        "object_locations": [{
            "bucket": "string",
            "namespace": "string",
            "object": "string",
        }],
        "signal_names": ["string"],
    },
    model_id="string",
    output_details={
        "bucket": "string",
        "namespace": "string",
        "output_type": "string",
        "prefix": "string",
    },
    description="string",
    display_name="string",
    sensitivity=0)
const detectAnomalyJobResource = new oci.aianomalydetection.DetectAnomalyJob("detectAnomalyJobResource", {
    compartmentId: "string",
    inputDetails: {
        inputType: "string",
        content: "string",
        contentType: "string",
        datas: [{
            timestamp: "string",
            values: [0],
        }],
        message: "string",
        objectLocations: [{
            bucket: "string",
            namespace: "string",
            object: "string",
        }],
        signalNames: ["string"],
    },
    modelId: "string",
    outputDetails: {
        bucket: "string",
        namespace: "string",
        outputType: "string",
        prefix: "string",
    },
    description: "string",
    displayName: "string",
    sensitivity: 0,
});
type: oci:AiAnomalyDetection:DetectAnomalyJob
properties:
    compartmentId: string
    description: string
    displayName: string
    inputDetails:
        content: string
        contentType: string
        datas:
            - timestamp: string
              values:
                - 0
        inputType: string
        message: string
        objectLocations:
            - bucket: string
              namespace: string
              object: string
        signalNames:
            - string
    modelId: string
    outputDetails:
        bucket: string
        namespace: string
        outputType: string
        prefix: string
    sensitivity: 0
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DetectAnomalyJob resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of the compartment that starts the job.
- InputDetails DetectAnomaly Job Input Details 
- Detect anomaly asynchronous job details.
- ModelId string
- The OCID of the trained model.
- OutputDetails DetectAnomaly Job Output Details 
- Detect anomaly job output details.
- Description string
- (Updatable) A short description of the detect anomaly job.
- DisplayName 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 
- CompartmentId string
- (Updatable) The OCID of the compartment that starts the job.
- InputDetails DetectAnomaly Job Input Details Args 
- Detect anomaly asynchronous job details.
- ModelId string
- The OCID of the trained model.
- OutputDetails DetectAnomaly Job Output Details Args 
- Detect anomaly job output details.
- Description string
- (Updatable) A short description of the detect anomaly job.
- DisplayName 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 
- compartmentId String
- (Updatable) The OCID of the compartment that starts the job.
- inputDetails DetectAnomaly Job Input Details 
- Detect anomaly asynchronous job details.
- modelId String
- The OCID of the trained model.
- outputDetails DetectAnomaly Job Output Details 
- Detect anomaly job output details.
- description String
- (Updatable) A short description of the detect anomaly job.
- displayName 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 
- compartmentId string
- (Updatable) The OCID of the compartment that starts the job.
- inputDetails DetectAnomaly Job Input Details 
- Detect anomaly asynchronous job details.
- modelId string
- The OCID of the trained model.
- outputDetails DetectAnomaly Job Output Details 
- Detect anomaly job output details.
- description string
- (Updatable) A short description of the detect anomaly job.
- displayName 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 
- compartmentId String
- (Updatable) The OCID of the compartment that starts the job.
- inputDetails Property Map
- Detect anomaly asynchronous job details.
- modelId String
- The OCID of the trained model.
- outputDetails Property Map
- Detect anomaly job output details.
- description String
- (Updatable) A short description of the detect anomaly job.
- displayName 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, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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 string
- The provider-assigned unique ID for this managed resource.
- LifecycleState stringDetails 
- The current state details of the batch document job.
- ProjectId string
- The OCID of the project.
- State string
- The current state of the batch document job.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeAccepted string
- Job accepted time
- TimeFinished string
- Job finished time
- TimeStarted string
- Job started time
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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 string
- The provider-assigned unique ID for this managed resource.
- LifecycleState stringDetails 
- The current state details of the batch document job.
- ProjectId string
- The OCID of the project.
- State string
- The current state of the batch document job.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeAccepted string
- Job accepted time
- TimeFinished string
- Job finished time
- TimeStarted string
- Job started time
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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 String
- The provider-assigned unique ID for this managed resource.
- lifecycleState StringDetails 
- The current state details of the batch document job.
- projectId String
- The OCID of the project.
- state String
- The current state of the batch document job.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeAccepted String
- Job accepted time
- timeFinished String
- Job finished time
- timeStarted String
- Job started time
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[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 string
- The provider-assigned unique ID for this managed resource.
- lifecycleState stringDetails 
- The current state details of the batch document job.
- projectId string
- The OCID of the project.
- state string
- The current state of the batch document job.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeAccepted string
- Job accepted time
- timeFinished string
- Job finished time
- timeStarted string
- Job started time
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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 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, str]
- 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<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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 String
- The provider-assigned unique ID for this managed resource.
- lifecycleState StringDetails 
- The current state details of the batch document job.
- projectId String
- The OCID of the project.
- state String
- The current state of the batch document job.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeAccepted String
- Job accepted time
- timeFinished String
- Job finished time
- timeStarted 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, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        input_details: Optional[DetectAnomalyJobInputDetailsArgs] = None,
        lifecycle_state_details: Optional[str] = None,
        model_id: Optional[str] = None,
        output_details: Optional[DetectAnomalyJobOutputDetailsArgs] = None,
        project_id: Optional[str] = None,
        sensitivity: Optional[float] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_accepted: Optional[str] = None,
        time_finished: Optional[str] = None,
        time_started: Optional[str] = None) -> DetectAnomalyJobfunc 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)resources:  _:    type: oci:AiAnomalyDetection:DetectAnomalyJob    get:      id: ${id}- 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.
- CompartmentId string
- (Updatable) The OCID of the compartment that starts the job.
- Dictionary<string, string>
- 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.
- DisplayName string
- (Updatable) Detect anomaly job display name.
- 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"}
- InputDetails DetectAnomaly Job Input Details 
- Detect anomaly asynchronous job details.
- LifecycleState stringDetails 
- The current state details of the batch document job.
- ModelId string
- The OCID of the trained model.
- OutputDetails DetectAnomaly Job Output Details 
- Detect anomaly job output details.
- ProjectId 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, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeAccepted string
- Job accepted time
- TimeFinished string
- Job finished time
- TimeStarted string
- Job started time
- CompartmentId string
- (Updatable) The OCID of the compartment that starts the job.
- map[string]string
- 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.
- DisplayName string
- (Updatable) Detect anomaly job display name.
- 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"}
- InputDetails DetectAnomaly Job Input Details Args 
- Detect anomaly asynchronous job details.
- LifecycleState stringDetails 
- The current state details of the batch document job.
- ModelId string
- The OCID of the trained model.
- OutputDetails DetectAnomaly Job Output Details Args 
- Detect anomaly job output details.
- ProjectId 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]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeAccepted string
- Job accepted time
- TimeFinished string
- Job finished time
- TimeStarted string
- Job started time
- compartmentId String
- (Updatable) The OCID of the compartment that starts the job.
- Map<String,String>
- 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.
- displayName String
- (Updatable) Detect anomaly job display name.
- 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"}
- inputDetails DetectAnomaly Job Input Details 
- Detect anomaly asynchronous job details.
- lifecycleState StringDetails 
- The current state details of the batch document job.
- modelId String
- The OCID of the trained model.
- outputDetails DetectAnomaly Job Output Details 
- Detect anomaly job output details.
- projectId 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,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeAccepted String
- Job accepted time
- timeFinished String
- Job finished time
- timeStarted String
- Job started time
- compartmentId string
- (Updatable) The OCID of the compartment that starts the job.
- {[key: string]: string}
- 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.
- displayName string
- (Updatable) Detect anomaly job display name.
- {[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"}
- inputDetails DetectAnomaly Job Input Details 
- Detect anomaly asynchronous job details.
- lifecycleState stringDetails 
- The current state details of the batch document job.
- modelId string
- The OCID of the trained model.
- outputDetails DetectAnomaly Job Output Details 
- Detect anomaly job output details.
- projectId 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]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeAccepted string
- Job accepted time
- timeFinished string
- Job finished time
- timeStarted string
- Job started time
- compartment_id str
- (Updatable) The OCID of the compartment that starts the job.
- Mapping[str, str]
- 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, str]
- 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, str]
- 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
- compartmentId String
- (Updatable) The OCID of the compartment that starts the job.
- Map<String>
- 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.
- displayName String
- (Updatable) Detect anomaly job display name.
- 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"}
- inputDetails Property Map
- Detect anomaly asynchronous job details.
- lifecycleState StringDetails 
- The current state details of the batch document job.
- modelId String
- The OCID of the trained model.
- outputDetails Property Map
- Detect anomaly job output details.
- projectId 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<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeAccepted String
- Job accepted time
- timeFinished String
- Job finished time
- timeStarted String
- Job started time
Supporting Types
DetectAnomalyJobInputDetails, DetectAnomalyJobInputDetailsArgs          
- InputType 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
- ContentType string
- Datas
List<DetectAnomaly Job Input Details Data> 
- Array containing data.
- Message string
- Inline input details.
- ObjectLocations List<DetectAnomaly Job Input Details Object Location> 
- List of ObjectLocations.
- SignalNames List<string>
- List of signal names.
- InputType 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
- ContentType string
- Datas
[]DetectAnomaly Job Input Details Data 
- Array containing data.
- Message string
- Inline input details.
- ObjectLocations []DetectAnomaly Job Input Details Object Location 
- List of ObjectLocations.
- SignalNames []string
- List of signal names.
- inputType 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
- contentType String
- datas
List<DetectAnomaly Job Input Details Data> 
- Array containing data.
- message String
- Inline input details.
- objectLocations List<DetectAnomaly Job Input Details Object Location> 
- List of ObjectLocations.
- signalNames List<String>
- List of signal names.
- inputType 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
- contentType string
- datas
DetectAnomaly Job Input Details Data[] 
- Array containing data.
- message string
- Inline input details.
- objectLocations DetectAnomaly Job Input Details Object Location[] 
- List of ObjectLocations.
- signalNames 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
Sequence[DetectAnomaly Job Input Details Data] 
- Array containing data.
- message str
- Inline input details.
- object_locations Sequence[DetectAnomaly Job Input Details Object Location] 
- List of ObjectLocations.
- signal_names Sequence[str]
- List of signal names.
- inputType 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
- contentType String
- datas List<Property Map>
- Array containing data.
- message String
- Inline input details.
- objectLocations List<Property Map>
- List of ObjectLocations.
- signalNames List<String>
- List of signal names.
DetectAnomalyJobInputDetailsData, DetectAnomalyJobInputDetailsDataArgs            
DetectAnomalyJobInputDetailsObjectLocation, DetectAnomalyJobInputDetailsObjectLocationArgs              
DetectAnomalyJobOutputDetails, DetectAnomalyJobOutputDetailsArgs          
- Bucket string
- Object Storage bucket name.
- Namespace string
- Object Storage namespace.
- OutputType string
- The type of output location. Allowed values are:- OBJECT_STORAGE: Object store output location.
 
- Prefix string
- Object Storage folder name.
- Bucket string
- Object Storage bucket name.
- Namespace string
- Object Storage namespace.
- OutputType string
- The type of output location. Allowed values are:- OBJECT_STORAGE: Object store output location.
 
- Prefix string
- Object Storage folder name.
- bucket String
- Object Storage bucket name.
- namespace String
- Object Storage namespace.
- outputType String
- The type of output location. Allowed values are:- OBJECT_STORAGE: Object store output location.
 
- prefix String
- Object Storage folder name.
- bucket string
- Object Storage bucket name.
- namespace string
- Object Storage namespace.
- outputType string
- The type of output location. Allowed values are:- OBJECT_STORAGE: Object store output location.
 
- 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:- OBJECT_STORAGE: Object store output location.
 
- prefix str
- Object Storage folder name.
- bucket String
- Object Storage bucket name.
- namespace String
- Object Storage namespace.
- outputType String
- The type of output location. Allowed values are:- OBJECT_STORAGE: Object store output location.
 
- 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"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.