InlineJobOutput

class oci.generative_ai_data.models.InlineJobOutput(**kwargs)

Bases: oci.generative_ai_data.models.job_output.JobOutput

An InlineJobOutput is a JobOutput [indicated by the first item under allOf, which is a reference to JobOutput] that delivers results of the GenerateSQLJob in the body of the job itself. As distinguished by jobOutputLocation [with specific characteristics defined by the second item under allOf].

Attributes

JOB_OUTPUT_LOCATION_INLINE str(object=’’) -> str
content [Required] Gets the content of this InlineJobOutput.
job_output_location [Required] Gets the job_output_location of this JobOutput.

Methods

__init__(**kwargs) Initializes a new InlineJobOutput object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
JOB_OUTPUT_LOCATION_INLINE = 'INLINE'
__init__(**kwargs)

Initializes a new InlineJobOutput object with values from keyword arguments. The default value of the job_output_location attribute of this class is INLINE and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • job_output_location (str) – The value to assign to the job_output_location property of this InlineJobOutput. Allowed values for this property are: “INLINE”
  • content (str) – The value to assign to the content property of this InlineJobOutput.
content

[Required] Gets the content of this InlineJobOutput. SQL statement generated from the natural language query.

Returns:The content of this InlineJobOutput.
Return type:str
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

job_output_location

[Required] Gets the job_output_location of this JobOutput. Discriminator indicating where the job output is delivered. Currently only INLINE is supported.

Allowed values for this property are: “INLINE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The job_output_location of this JobOutput.
Return type:str