Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.AiAnomalyDetection.getDetectAnomalyJobs
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides the list of 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,
});
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)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/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
})
}
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,
});
});
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());
}
}
variables:
testDetectAnomalyJobs:
fn::invoke:
Function: oci:AiAnomalyDetection:getDetectAnomalyJobs
Arguments:
compartmentId: ${compartmentId}
detectAnomalyJobId: ${testDetectAnomalyJob.id}
displayName: ${detectAnomalyJobDisplayName}
modelId: ${testModel.id}
projectId: ${testProject.id}
state: ${detectAnomalyJobState}
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>
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]
func GetDetectAnomalyJobs(ctx *Context, args *GetDetectAnomalyJobsArgs, opts ...InvokeOption) (*GetDetectAnomalyJobsResult, error)
func GetDetectAnomalyJobsOutput(ctx *Context, args *GetDetectAnomalyJobsOutputArgs, opts ...InvokeOption) GetDetectAnomalyJobsResultOutput
> 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)
}
public static CompletableFuture<GetDetectAnomalyJobsResult> getDetectAnomalyJobs(GetDetectAnomalyJobsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:AiAnomalyDetection/getDetectAnomalyJobs:getDetectAnomalyJobs
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
- Detect
Anomaly stringJob Id - Unique Async Job identifier
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Detect Anomaly Jobs Filter> - Model
Id string - The ID of the trained model for which to list the resources.
- Project
Id 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 string - The ID of the compartment in which to list resources.
- Detect
Anomaly stringJob Id - Unique Async Job identifier
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Detect Anomaly Jobs Filter - Model
Id string - The ID of the trained model for which to list the resources.
- Project
Id 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 String - The ID of the compartment in which to list resources.
- detect
Anomaly StringJob Id - Unique Async Job identifier
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Detect Anomaly Jobs Filter> - model
Id String - The ID of the trained model for which to list the resources.
- project
Id 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 string - The ID of the compartment in which to list resources.
- detect
Anomaly stringJob Id - Unique Async Job identifier
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Detect Anomaly Jobs Filter[] - model
Id string - The ID of the trained model for which to list the resources.
- project
Id 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 str - The ID of the compartment in which to list resources.
- detect_
anomaly_ strjob_ id - Unique Async Job identifier
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[aianomalydetection.
Get Detect Anomaly Jobs Filter] - 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.
- compartment
Id String - The ID of the compartment in which to list resources.
- detect
Anomaly StringJob Id - Unique Async Job identifier
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- model
Id String - The ID of the trained model for which to list the resources.
- project
Id 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:
- Compartment
Id string - The OCID of the compartment that starts the job.
- Detect
Anomaly List<GetJob Collections Detect Anomaly Jobs Detect Anomaly Job Collection> - The list of detect_anomaly_job_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Detect
Anomaly stringJob Id - Display
Name string - Detect anomaly job display name.
- Filters
List<Get
Detect Anomaly Jobs Filter> - Model
Id string - The OCID of the trained model.
- Project
Id string - The OCID of the project.
- State string
- The current state of the batch document job.
- Compartment
Id string - The OCID of the compartment that starts the job.
- Detect
Anomaly []GetJob Collections Detect Anomaly Jobs Detect Anomaly Job Collection - The list of detect_anomaly_job_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Detect
Anomaly stringJob Id - Display
Name string - Detect anomaly job display name.
- Filters
[]Get
Detect Anomaly Jobs Filter - Model
Id string - The OCID of the trained model.
- Project
Id string - The OCID of the project.
- State string
- The current state of the batch document job.
- compartment
Id String - The OCID of the compartment that starts the job.
- detect
Anomaly List<GetJob Collections Detect Anomaly Jobs Detect Anomaly Job Collection> - The list of detect_anomaly_job_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- detect
Anomaly StringJob Id - display
Name String - Detect anomaly job display name.
- filters
List<Get
Detect Anomaly Jobs Filter> - model
Id String - The OCID of the trained model.
- project
Id String - The OCID of the project.
- state String
- The current state of the batch document job.
- compartment
Id string - The OCID of the compartment that starts the job.
- detect
Anomaly GetJob Collections Detect Anomaly Jobs Detect Anomaly Job Collection[] - The list of detect_anomaly_job_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- detect
Anomaly stringJob Id - display
Name string - Detect anomaly job display name.
- filters
Get
Detect Anomaly Jobs Filter[] - model
Id string - The OCID of the trained model.
- project
Id 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_ Sequence[aianomalydetection.job_ collections Get Detect Anomaly Jobs Detect Anomaly Job Collection] - The list of detect_anomaly_job_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- detect_
anomaly_ strjob_ id - display_
name str - Detect anomaly job display name.
- filters
Sequence[aianomalydetection.
Get Detect Anomaly Jobs Filter] - 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.
- compartment
Id String - The OCID of the compartment that starts the job.
- detect
Anomaly List<Property Map>Job Collections - The list of detect_anomaly_job_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- detect
Anomaly StringJob Id - display
Name String - Detect anomaly job display name.
- filters List<Property Map>
- model
Id String - The OCID of the trained model.
- project
Id String - The OCID of the project.
- state String
- The current state of the batch document job.
Supporting Types
GetDetectAnomalyJobsDetectAnomalyJobCollection
GetDetectAnomalyJobsDetectAnomalyJobCollectionItem
- Compartment
Id string - The ID of the compartment in which to list resources.
- 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
- Detect anomaly job description.
- Display
Name string - A filter to return only resources that match the entire display name given.
- 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
- Id of the job.
- Input
Details List<GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail> - Input details for detect anomaly job.
- Lifecycle
State stringDetails - The current state details of the batch document job.
- Model
Id string - The ID of the trained model for which to list the resources.
- Output
Details List<GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Output Detail> - Output details for detect anomaly job.
- Project
Id string - The ID of the project for which to list the objects.
- Sensitivity double
- The value that customer can adjust to control the sensitivity of anomaly detection
- State string
- Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- 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 - The ID of the compartment in which to list resources.
- 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
- Detect anomaly job description.
- Display
Name string - A filter to return only resources that match the entire display name given.
- 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
- Id of the job.
- Input
Details []GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail - Input details for detect anomaly job.
- Lifecycle
State stringDetails - The current state details of the batch document job.
- Model
Id string - The ID of the trained model for which to list the resources.
- Output
Details []GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Output Detail - Output details for detect anomaly job.
- Project
Id string - The ID of the project for which to list the objects.
- Sensitivity float64
- The value that customer can adjust to control the sensitivity of anomaly detection
- State string
- Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- 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 - The ID of the compartment in which to list resources.
- 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
- Detect anomaly job description.
- display
Name String - A filter to return only resources that match the entire display name given.
- 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
- Id of the job.
- input
Details List<GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail> - Input details for detect anomaly job.
- lifecycle
State StringDetails - The current state details of the batch document job.
- model
Id String - The ID of the trained model for which to list the resources.
- output
Details List<GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Output Detail> - Output details for detect anomaly job.
- project
Id String - The ID of the project for which to list the objects.
- sensitivity Double
- The value that customer can adjust to control the sensitivity of anomaly detection
- state String
- Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- 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 - The ID of the compartment in which to list resources.
- {[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
- Detect anomaly job description.
- display
Name string - A filter to return only resources that match the entire display name given.
- {[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
- Id of the job.
- input
Details GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail[] - Input details for detect anomaly job.
- lifecycle
State stringDetails - The current state details of the batch document job.
- model
Id string - The ID of the trained model for which to list the resources.
- output
Details GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Output Detail[] - Output details for detect anomaly job.
- project
Id string - The ID of the project for which to list the objects.
- sensitivity number
- The value that customer can adjust to control the sensitivity of anomaly detection
- state string
- Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- {[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 - The ID of the compartment in which to list resources.
- 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
- Detect anomaly job description.
- display_
name str - A filter to return only resources that match the entire display name given.
- 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
- Id of the job.
- input_
details Sequence[aianomalydetection.Get Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail] - Input details for detect anomaly job.
- lifecycle_
state_ strdetails - The current state details of the batch document job.
- model_
id str - The ID of the trained model for which to list the resources.
- output_
details Sequence[aianomalydetection.Get Detect Anomaly Jobs Detect Anomaly Job Collection Item Output Detail] - Output details for detect anomaly job.
- project_
id str - The ID of the project for which to list the objects.
- sensitivity float
- The value that customer can adjust to control the sensitivity of anomaly detection
- state str
- Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- 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 - The ID of the compartment in which to list resources.
- Map<Any>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Detect anomaly job description.
- display
Name String - A filter to return only resources that match the entire display name given.
- 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
- Id of the job.
- input
Details List<Property Map> - Input details for detect anomaly job.
- lifecycle
State StringDetails - The current state details of the batch document job.
- model
Id String - The ID of the trained model for which to list the resources.
- output
Details List<Property Map> - Output details for detect anomaly job.
- project
Id String - The ID of the project for which to list the objects.
- sensitivity Number
- The value that customer can adjust to control the sensitivity of anomaly detection
- state String
- Filter results by the specified lifecycle state. Must be a valid state for the resource type.
- 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
GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetail
- Content string
- Content
Type string - Datas
List<Get
Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Data> - Input
Type string - The type of input location Allowed values are:
INLINE
: Inline input data.OBJECT_LIST
: Object store output location.
- Message string
- Inline input details.
- Object
Locations List<GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Object Location> - List of ObjectLocations.
- Signal
Names List<string>
- Content string
- Content
Type string - Datas
[]Get
Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Data - Input
Type string - The type of input location Allowed values are:
INLINE
: Inline input data.OBJECT_LIST
: Object store output location.
- Message string
- Inline input details.
- Object
Locations []GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Object Location - List of ObjectLocations.
- Signal
Names []string
- content String
- content
Type String - datas
List<Get
Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Data> - input
Type String - The type of input location Allowed values are:
INLINE
: Inline input data.OBJECT_LIST
: Object store output location.
- message String
- Inline input details.
- object
Locations List<GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Object Location> - List of ObjectLocations.
- signal
Names List<String>
- content string
- content
Type string - datas
Get
Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Data[] - input
Type string - The type of input location Allowed values are:
INLINE
: Inline input data.OBJECT_LIST
: Object store output location.
- message string
- Inline input details.
- object
Locations GetDetect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Object Location[] - List of ObjectLocations.
- signal
Names string[]
- content str
- content_
type str - datas
Sequence[aianomalydetection.
Get Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Data] - input_
type str - The type of input location Allowed values are:
INLINE
: Inline input data.OBJECT_LIST
: Object store output location.
- message str
- Inline input details.
- object_
locations Sequence[aianomalydetection.Get Detect Anomaly Jobs Detect Anomaly Job Collection Item Input Detail Object Location] - List of ObjectLocations.
- signal_
names Sequence[str]
- content String
- content
Type String - datas List<Property Map>
- input
Type String - The type of input location Allowed values are:
INLINE
: Inline input data.OBJECT_LIST
: Object store output location.
- message String
- Inline input details.
- object
Locations List<Property Map> - List of ObjectLocations.
- signal
Names List<String>
GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailData
GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocation
GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetail
- Bucket string
- Object Storage bucket name.
- Namespace string
- Object Storage namespace.
- Output
Type 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.
- Output
Type 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.
- output
Type 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.
- output
Type 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.
- output
Type String - The type of output location Allowed values are:
OBJECT_STORAGE
: Object store output location.
- prefix String
- Object Storage folder name.
GetDetectAnomalyJobsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi