ExecuteSqlOutputDetails¶
-
class
oci.database_tools_runtime.models.ExecuteSqlOutputDetails(**kwargs)¶ Bases:
objectDefines how the script result should be stored
Attributes
TYPE_OBJECT_STORAGEA constant which can be used with the type property of a ExecuteSqlOutputDetails. result_disposition_templatesGets the result_disposition_templates of this ExecuteSqlOutputDetails. type[Required] Gets the type of this ExecuteSqlOutputDetails. Methods
__init__(**kwargs)Initializes a new ExecuteSqlOutputDetails 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. -
TYPE_OBJECT_STORAGE= 'OBJECT_STORAGE'¶ A constant which can be used with the type property of a ExecuteSqlOutputDetails. This constant has a value of “OBJECT_STORAGE”
-
__init__(**kwargs)¶ Initializes a new ExecuteSqlOutputDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - type (str) – The value to assign to the type property of this ExecuteSqlOutputDetails. Allowed values for this property are: “OBJECT_STORAGE”
- result_disposition_templates (list[oci.database_tools_runtime.models.ExecuteSqlOutputResultDispositionTemplate]) – The value to assign to the result_disposition_templates property of this ExecuteSqlOutputDetails.
-
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.
-
result_disposition_templates¶ Gets the result_disposition_templates of this ExecuteSqlOutputDetails. Defines how the result of commands in a script should be stored. If the command does not match any template filter, the result will be inline.
Returns: The result_disposition_templates of this ExecuteSqlOutputDetails. Return type: list[oci.database_tools_runtime.models.ExecuteSqlOutputResultDispositionTemplate]
-
type¶ [Required] Gets the type of this ExecuteSqlOutputDetails. The response disposition type.
Allowed values for this property are: “OBJECT_STORAGE”
Returns: The type of this ExecuteSqlOutputDetails. Return type: str
-