Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.AiLanguage.getJobs
Start a Neo task
Explain and create an oci.AiLanguage.getJobs resource
This data source provides the list of Jobs in Oracle Cloud Infrastructure Ai Language service.
Returns a list of language service async Jobs.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testJobs = oci.AiLanguage.getJobs({
compartmentId: compartmentId,
displayName: jobDisplayName,
id: jobId,
state: jobState,
});
import pulumi
import pulumi_oci as oci
test_jobs = oci.AiLanguage.get_jobs(compartment_id=compartment_id,
display_name=job_display_name,
id=job_id,
state=job_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/ailanguage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ailanguage.GetJobs(ctx, &ailanguage.GetJobsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(jobDisplayName),
Id: pulumi.StringRef(jobId),
State: pulumi.StringRef(jobState),
}, 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 testJobs = Oci.AiLanguage.GetJobs.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = jobDisplayName,
Id = jobId,
State = jobState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.AiLanguage.AiLanguageFunctions;
import com.pulumi.oci.AiLanguage.inputs.GetJobsArgs;
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 testJobs = AiLanguageFunctions.getJobs(GetJobsArgs.builder()
.compartmentId(compartmentId)
.displayName(jobDisplayName)
.id(jobId)
.state(jobState)
.build());
}
}
variables:
testJobs:
fn::invoke:
function: oci:AiLanguage:getJobs
arguments:
compartmentId: ${compartmentId}
displayName: ${jobDisplayName}
id: ${jobId}
state: ${jobState}
Using getJobs
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 getJobs(args: GetJobsArgs, opts?: InvokeOptions): Promise<GetJobsResult>
function getJobsOutput(args: GetJobsOutputArgs, opts?: InvokeOptions): Output<GetJobsResult>def get_jobs(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetJobsFilter]] = None,
id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetJobsResult
def get_jobs_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetJobsResult]func GetJobs(ctx *Context, args *GetJobsArgs, opts ...InvokeOption) (*GetJobsResult, error)
func GetJobsOutput(ctx *Context, args *GetJobsOutputArgs, opts ...InvokeOption) GetJobsResultOutput> Note: This function is named GetJobs in the Go SDK.
public static class GetJobs
{
public static Task<GetJobsResult> InvokeAsync(GetJobsArgs args, InvokeOptions? opts = null)
public static Output<GetJobsResult> Invoke(GetJobsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetJobsResult> getJobs(GetJobsArgs args, InvokeOptions options)
public static Output<GetJobsResult> getJobs(GetJobsArgs args, InvokeOptions options)
fn::invoke:
function: oci:AiLanguage/getJobs:getJobs
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Jobs Filter> - Id string
- Unique identifier(OCID).
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Jobs Filter - Id string
- Unique identifier(OCID).
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Jobs Filter> - id String
- Unique identifier(OCID).
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id string - The ID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Jobs Filter[] - id string
- Unique identifier(OCID).
- state string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment_
id str - The ID of the compartment in which to list resources.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[Get
Jobs Filter] - id str
- Unique identifier(OCID).
- state str
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- id String
- Unique identifier(OCID).
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
getJobs Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment where you want to create the job.
- Job
Collections List<GetJobs Job Collection> - The list of job_collection.
- Display
Name string - A user-friendly display name for the job.
- Filters
List<Get
Jobs Filter> - Id string
- The OCID of the job.
- State string
- The current state of the Job.
- Compartment
Id string - The OCID of the compartment where you want to create the job.
- Job
Collections []GetJobs Job Collection - The list of job_collection.
- Display
Name string - A user-friendly display name for the job.
- Filters
[]Get
Jobs Filter - Id string
- The OCID of the job.
- State string
- The current state of the Job.
- compartment
Id String - The OCID of the compartment where you want to create the job.
- job
Collections List<GetJobs Job Collection> - The list of job_collection.
- display
Name String - A user-friendly display name for the job.
- filters
List<Get
Jobs Filter> - id String
- The OCID of the job.
- state String
- The current state of the Job.
- compartment
Id string - The OCID of the compartment where you want to create the job.
- job
Collections GetJobs Job Collection[] - The list of job_collection.
- display
Name string - A user-friendly display name for the job.
- filters
Get
Jobs Filter[] - id string
- The OCID of the job.
- state string
- The current state of the Job.
- compartment_
id str - The OCID of the compartment where you want to create the job.
- job_
collections Sequence[GetJobs Job Collection] - The list of job_collection.
- display_
name str - A user-friendly display name for the job.
- filters
Sequence[Get
Jobs Filter] - id str
- The OCID of the job.
- state str
- The current state of the Job.
- compartment
Id String - The OCID of the compartment where you want to create the job.
- job
Collections List<Property Map> - The list of job_collection.
- display
Name String - A user-friendly display name for the job.
- filters List<Property Map>
- id String
- The OCID of the job.
- state String
- The current state of the Job.
Supporting Types
GetJobsFilter
GetJobsJobCollection
GetJobsJobCollectionItem
- Compartment
Id string - The ID of the compartment in which to list resources.
- Completed
Documents int - Number of documents processed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- Created
By string - The OCID of the user who created the job.
- Description string
- A short description of the job.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Failed
Documents int - Number of documents failed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- Id string
- Unique identifier(OCID).
- Input
Configurations List<GetJobs Job Collection Item Input Configuration> - input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types
- Input
Locations List<GetJobs Job Collection Item Input Location> - document location and other meta data about documents For TXT only ObjectStoragePrefixLocation supported For CSV only ObjectStorageFileNameLocation is supported For this release only one file is supported for ObjectStorageFileNameLocation i.e CSV file type
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Model
Metadata List<GetDetails Jobs Job Collection Item Model Metadata Detail> - training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API
- Output
Locations List<GetJobs Job Collection Item Output Location> - Object storage output location to write inference results
- Pending
Documents int - Number of documents still to process. For CSV this signifies number of rows and for TXT this signifies number of files.
- Percent
Complete int - How much progress the operation has made, vs the total amount of work that must be performed.
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Time
Accepted string - Job accepted time.
- Time
Completed string - Job finished time.
- Time
Started string - Job started time.
- Total
Documents int - Total number of documents given as input for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- Ttl
In intDays - Time to live duration in days for Job. Job will be available till max 90 days.
- Warnings
Count int - warnings count
- Compartment
Id string - The ID of the compartment in which to list resources.
- Completed
Documents int - Number of documents processed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- Created
By string - The OCID of the user who created the job.
- Description string
- A short description of the job.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Failed
Documents int - Number of documents failed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- Id string
- Unique identifier(OCID).
- Input
Configurations []GetJobs Job Collection Item Input Configuration - input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types
- Input
Locations []GetJobs Job Collection Item Input Location - document location and other meta data about documents For TXT only ObjectStoragePrefixLocation supported For CSV only ObjectStorageFileNameLocation is supported For this release only one file is supported for ObjectStorageFileNameLocation i.e CSV file type
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Model
Metadata []GetDetails Jobs Job Collection Item Model Metadata Detail - training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API
- Output
Locations []GetJobs Job Collection Item Output Location - Object storage output location to write inference results
- Pending
Documents int - Number of documents still to process. For CSV this signifies number of rows and for TXT this signifies number of files.
- Percent
Complete int - How much progress the operation has made, vs the total amount of work that must be performed.
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Time
Accepted string - Job accepted time.
- Time
Completed string - Job finished time.
- Time
Started string - Job started time.
- Total
Documents int - Total number of documents given as input for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- Ttl
In intDays - Time to live duration in days for Job. Job will be available till max 90 days.
- Warnings
Count int - warnings count
- compartment
Id String - The ID of the compartment in which to list resources.
- completed
Documents Integer - Number of documents processed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- created
By String - The OCID of the user who created the job.
- description String
- A short description of the job.
- display
Name String - A filter to return only resources that match the entire display name given.
- failed
Documents Integer - Number of documents failed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- id String
- Unique identifier(OCID).
- input
Configurations List<GetJobs Job Collection Item Input Configuration> - input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types
- input
Locations List<GetJobs Job Collection Item Input Location> - document location and other meta data about documents For TXT only ObjectStoragePrefixLocation supported For CSV only ObjectStorageFileNameLocation is supported For this release only one file is supported for ObjectStorageFileNameLocation i.e CSV file type
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- model
Metadata List<GetDetails Jobs Job Collection Item Model Metadata Detail> - training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API
- output
Locations List<GetJobs Job Collection Item Output Location> - Object storage output location to write inference results
- pending
Documents Integer - Number of documents still to process. For CSV this signifies number of rows and for TXT this signifies number of files.
- percent
Complete Integer - How much progress the operation has made, vs the total amount of work that must be performed.
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- time
Accepted String - Job accepted time.
- time
Completed String - Job finished time.
- time
Started String - Job started time.
- total
Documents Integer - Total number of documents given as input for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- ttl
In IntegerDays - Time to live duration in days for Job. Job will be available till max 90 days.
- warnings
Count Integer - warnings count
- compartment
Id string - The ID of the compartment in which to list resources.
- completed
Documents number - Number of documents processed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- created
By string - The OCID of the user who created the job.
- description string
- A short description of the job.
- display
Name string - A filter to return only resources that match the entire display name given.
- failed
Documents number - Number of documents failed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- id string
- Unique identifier(OCID).
- input
Configurations GetJobs Job Collection Item Input Configuration[] - input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types
- input
Locations GetJobs Job Collection Item Input Location[] - document location and other meta data about documents For TXT only ObjectStoragePrefixLocation supported For CSV only ObjectStorageFileNameLocation is supported For this release only one file is supported for ObjectStorageFileNameLocation i.e CSV file type
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- model
Metadata GetDetails Jobs Job Collection Item Model Metadata Detail[] - training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API
- output
Locations GetJobs Job Collection Item Output Location[] - Object storage output location to write inference results
- pending
Documents number - Number of documents still to process. For CSV this signifies number of rows and for TXT this signifies number of files.
- percent
Complete number - How much progress the operation has made, vs the total amount of work that must be performed.
- state string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- time
Accepted string - Job accepted time.
- time
Completed string - Job finished time.
- time
Started string - Job started time.
- total
Documents number - Total number of documents given as input for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- ttl
In numberDays - Time to live duration in days for Job. Job will be available till max 90 days.
- warnings
Count number - warnings count
- compartment_
id str - The ID of the compartment in which to list resources.
- completed_
documents int - Number of documents processed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- created_
by str - The OCID of the user who created the job.
- description str
- A short description of the job.
- display_
name str - A filter to return only resources that match the entire display name given.
- failed_
documents int - Number of documents failed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- id str
- Unique identifier(OCID).
- input_
configurations Sequence[GetJobs Job Collection Item Input Configuration] - input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types
- input_
locations Sequence[GetJobs Job Collection Item Input Location] - document location and other meta data about documents For TXT only ObjectStoragePrefixLocation supported For CSV only ObjectStorageFileNameLocation is supported For this release only one file is supported for ObjectStorageFileNameLocation i.e CSV file type
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- model_
metadata_ Sequence[Getdetails Jobs Job Collection Item Model Metadata Detail] - training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API
- output_
locations Sequence[GetJobs Job Collection Item Output Location] - Object storage output location to write inference results
- pending_
documents int - Number of documents still to process. For CSV this signifies number of rows and for TXT this signifies number of files.
- percent_
complete int - How much progress the operation has made, vs the total amount of work that must be performed.
- state str
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- time_
accepted str - Job accepted time.
- time_
completed str - Job finished time.
- time_
started str - Job started time.
- total_
documents int - Total number of documents given as input for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- ttl_
in_ intdays - Time to live duration in days for Job. Job will be available till max 90 days.
- warnings_
count int - warnings count
- compartment
Id String - The ID of the compartment in which to list resources.
- completed
Documents Number - Number of documents processed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- created
By String - The OCID of the user who created the job.
- description String
- A short description of the job.
- display
Name String - A filter to return only resources that match the entire display name given.
- failed
Documents Number - Number of documents failed for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- id String
- Unique identifier(OCID).
- input
Configurations List<Property Map> - input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types
- input
Locations List<Property Map> - document location and other meta data about documents For TXT only ObjectStoragePrefixLocation supported For CSV only ObjectStorageFileNameLocation is supported For this release only one file is supported for ObjectStorageFileNameLocation i.e CSV file type
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- model
Metadata List<Property Map>Details - training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API
- output
Locations List<Property Map> - Object storage output location to write inference results
- pending
Documents Number - Number of documents still to process. For CSV this signifies number of rows and for TXT this signifies number of files.
- percent
Complete Number - How much progress the operation has made, vs the total amount of work that must be performed.
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- time
Accepted String - Job accepted time.
- time
Completed String - Job finished time.
- time
Started String - Job started time.
- total
Documents Number - Total number of documents given as input for prediction. For CSV this signifies number of rows and for TXT this signifies number of files.
- ttl
In NumberDays - Time to live duration in days for Job. Job will be available till max 90 days.
- warnings
Count Number - warnings count
GetJobsJobCollectionItemInputConfiguration
- Configuration
Dictionary<string, Immutable
Dictionary<string, string>> - model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- Document
Types List<string> - Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list
- Configuration map[string]map[string]string
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- Document
Types []string - Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list
- configuration Map<String,Map<String,String>>
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- document
Types List<String> - Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list
- configuration {[key: string]: {[key: string]: string}}
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- document
Types string[] - Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list
- configuration Mapping[str, Mapping[str, str]]
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- document_
types Sequence[str] - Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list
- configuration Map<Map<String>>
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- document
Types List<String> - Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list
GetJobsJobCollectionItemInputLocation
- Bucket string
- Object Storage bucket name.
- Location
Type string - locationType
- Namespace string
- Object Storage namespace name.
- Object
Names List<string> - List of objects to be processed
- Bucket string
- Object Storage bucket name.
- Location
Type string - locationType
- Namespace string
- Object Storage namespace name.
- Object
Names []string - List of objects to be processed
- bucket String
- Object Storage bucket name.
- location
Type String - locationType
- namespace String
- Object Storage namespace name.
- object
Names List<String> - List of objects to be processed
- bucket string
- Object Storage bucket name.
- location
Type string - locationType
- namespace string
- Object Storage namespace name.
- object
Names string[] - List of objects to be processed
- bucket str
- Object Storage bucket name.
- location_
type str - locationType
- namespace str
- Object Storage namespace name.
- object_
names Sequence[str] - List of objects to be processed
- bucket String
- Object Storage bucket name.
- location
Type String - locationType
- namespace String
- Object Storage namespace name.
- object
Names List<String> - List of objects to be processed
GetJobsJobCollectionItemModelMetadataDetail
- Configuration
Dictionary<string, Immutable
Dictionary<string, string>> - model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- Endpoint
Id string - Unique identifier endpoint OCID that should be used for inference
- Language
Code string - Language code supported
- auto : Automatically detect language
- ar : Arabic
- pt-BR : Brazilian Portuguese
- cs : Czech
- da : Danish
- nl : Dutch
- en : English
- fi : Finnish
- fr : French
- fr-CA : Canadian French
- de : German
- it : Italian
- ja : Japanese
- ko : Korean
- no : Norwegian
- pl : Polish
- ro : Romanian
- zh-CN : Simplified Chinese
- es : Spanish
- sv : Swedish
- zh-TW : Traditional Chinese
- tr : Turkish
- el : Greek
- he : Hebrew
- Model
Id string - Unique identifier model OCID that should be used for inference
- Model
Type string - model type to used for inference allowed values are
- LANGUAGE_SENTIMENT_ANALYSIS
- LANGUAGE_DETECTION
- TEXT_CLASSIFICATION
- NAMED_ENTITY_RECOGNITION
- KEY_PHRASE_EXTRACTION
- LANGUAGE_PII_ENTITIES
- LANGUAGE_TRANSLATION
- Configuration map[string]map[string]string
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- Endpoint
Id string - Unique identifier endpoint OCID that should be used for inference
- Language
Code string - Language code supported
- auto : Automatically detect language
- ar : Arabic
- pt-BR : Brazilian Portuguese
- cs : Czech
- da : Danish
- nl : Dutch
- en : English
- fi : Finnish
- fr : French
- fr-CA : Canadian French
- de : German
- it : Italian
- ja : Japanese
- ko : Korean
- no : Norwegian
- pl : Polish
- ro : Romanian
- zh-CN : Simplified Chinese
- es : Spanish
- sv : Swedish
- zh-TW : Traditional Chinese
- tr : Turkish
- el : Greek
- he : Hebrew
- Model
Id string - Unique identifier model OCID that should be used for inference
- Model
Type string - model type to used for inference allowed values are
- LANGUAGE_SENTIMENT_ANALYSIS
- LANGUAGE_DETECTION
- TEXT_CLASSIFICATION
- NAMED_ENTITY_RECOGNITION
- KEY_PHRASE_EXTRACTION
- LANGUAGE_PII_ENTITIES
- LANGUAGE_TRANSLATION
- configuration Map<String,Map<String,String>>
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- endpoint
Id String - Unique identifier endpoint OCID that should be used for inference
- language
Code String - Language code supported
- auto : Automatically detect language
- ar : Arabic
- pt-BR : Brazilian Portuguese
- cs : Czech
- da : Danish
- nl : Dutch
- en : English
- fi : Finnish
- fr : French
- fr-CA : Canadian French
- de : German
- it : Italian
- ja : Japanese
- ko : Korean
- no : Norwegian
- pl : Polish
- ro : Romanian
- zh-CN : Simplified Chinese
- es : Spanish
- sv : Swedish
- zh-TW : Traditional Chinese
- tr : Turkish
- el : Greek
- he : Hebrew
- model
Id String - Unique identifier model OCID that should be used for inference
- model
Type String - model type to used for inference allowed values are
- LANGUAGE_SENTIMENT_ANALYSIS
- LANGUAGE_DETECTION
- TEXT_CLASSIFICATION
- NAMED_ENTITY_RECOGNITION
- KEY_PHRASE_EXTRACTION
- LANGUAGE_PII_ENTITIES
- LANGUAGE_TRANSLATION
- configuration {[key: string]: {[key: string]: string}}
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- endpoint
Id string - Unique identifier endpoint OCID that should be used for inference
- language
Code string - Language code supported
- auto : Automatically detect language
- ar : Arabic
- pt-BR : Brazilian Portuguese
- cs : Czech
- da : Danish
- nl : Dutch
- en : English
- fi : Finnish
- fr : French
- fr-CA : Canadian French
- de : German
- it : Italian
- ja : Japanese
- ko : Korean
- no : Norwegian
- pl : Polish
- ro : Romanian
- zh-CN : Simplified Chinese
- es : Spanish
- sv : Swedish
- zh-TW : Traditional Chinese
- tr : Turkish
- el : Greek
- he : Hebrew
- model
Id string - Unique identifier model OCID that should be used for inference
- model
Type string - model type to used for inference allowed values are
- LANGUAGE_SENTIMENT_ANALYSIS
- LANGUAGE_DETECTION
- TEXT_CLASSIFICATION
- NAMED_ENTITY_RECOGNITION
- KEY_PHRASE_EXTRACTION
- LANGUAGE_PII_ENTITIES
- LANGUAGE_TRANSLATION
- configuration Mapping[str, Mapping[str, str]]
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- endpoint_
id str - Unique identifier endpoint OCID that should be used for inference
- language_
code str - Language code supported
- auto : Automatically detect language
- ar : Arabic
- pt-BR : Brazilian Portuguese
- cs : Czech
- da : Danish
- nl : Dutch
- en : English
- fi : Finnish
- fr : French
- fr-CA : Canadian French
- de : German
- it : Italian
- ja : Japanese
- ko : Korean
- no : Norwegian
- pl : Polish
- ro : Romanian
- zh-CN : Simplified Chinese
- es : Spanish
- sv : Swedish
- zh-TW : Traditional Chinese
- tr : Turkish
- el : Greek
- he : Hebrew
- model_
id str - Unique identifier model OCID that should be used for inference
- model_
type str - model type to used for inference allowed values are
- LANGUAGE_SENTIMENT_ANALYSIS
- LANGUAGE_DETECTION
- TEXT_CLASSIFICATION
- NAMED_ENTITY_RECOGNITION
- KEY_PHRASE_EXTRACTION
- LANGUAGE_PII_ENTITIES
- LANGUAGE_TRANSLATION
- configuration Map<Map<String>>
- model configuration details For PII : < ENTITY_TYPE , ConfigurationDetails> ex."ORACLE":{ "mode" : "MASK","maskingCharacter" : "&","leaveCharactersUnmasked": 3,"isUnmaskedFromEnd" : true } For language translation : { "targetLanguageCodes" : ConfigurationDetails}
- endpoint
Id String - Unique identifier endpoint OCID that should be used for inference
- language
Code String - Language code supported
- auto : Automatically detect language
- ar : Arabic
- pt-BR : Brazilian Portuguese
- cs : Czech
- da : Danish
- nl : Dutch
- en : English
- fi : Finnish
- fr : French
- fr-CA : Canadian French
- de : German
- it : Italian
- ja : Japanese
- ko : Korean
- no : Norwegian
- pl : Polish
- ro : Romanian
- zh-CN : Simplified Chinese
- es : Spanish
- sv : Swedish
- zh-TW : Traditional Chinese
- tr : Turkish
- el : Greek
- he : Hebrew
- model
Id String - Unique identifier model OCID that should be used for inference
- model
Type String - model type to used for inference allowed values are
- LANGUAGE_SENTIMENT_ANALYSIS
- LANGUAGE_DETECTION
- TEXT_CLASSIFICATION
- NAMED_ENTITY_RECOGNITION
- KEY_PHRASE_EXTRACTION
- LANGUAGE_PII_ENTITIES
- LANGUAGE_TRANSLATION
GetJobsJobCollectionItemOutputLocation
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
