Show / Hide Table of Contents

Class ExecuteSqlInputScriptDetails

Contains the details for the Script SQL statements to execute on the database connection.

Inheritance
object
ExecuteSqlInputDetails
ExecuteSqlInputScriptDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasetoolsruntimeService.Models
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class ExecuteSqlInputScriptDetails : ExecuteSqlInputDetails

Properties

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<Dictionary<string, object>> Properties { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Client properties returned as-is in the response

Scripts

Declaration
[Required(ErrorMessage = "Scripts is required.")]
[JsonProperty(PropertyName = "scripts")]
public List<ExecuteSqlInputScriptSqlRequestDetails> Scripts { get; set; }
Property Value
Type Description
List<ExecuteSqlInputScriptSqlRequestDetails>

The collection of scripts to execute.

Remarks

Required

Version

Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
string

Request payload version, returned as-is in the response

In this article
Back to top