Show / Hide Table of Contents

Class InlineJobOutput

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].

Inheritance
object
JobOutput
InlineJobOutput
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaidataService.Models
Assembly: OCI.DotNetSDK.Generativeaidata.dll
Syntax
public class InlineJobOutput : JobOutput

Properties

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public string Content { get; set; }
Property Value
Type Description
string

SQL statement generated from the natural language query.

Remarks

Required

In this article
Back to top