ExecuteSqlDatabaseToolsConnectionAsynchronousDetails¶
-
class
oci.database_tools_runtime.models.ExecuteSqlDatabaseToolsConnectionAsynchronousDetails(**kwargs)¶ Bases:
oci.database_tools_runtime.models.execute_sql_database_tools_connection_details.ExecuteSqlDatabaseToolsConnectionDetailsAsynchronous request.
Attributes
TYPE_ASYNCHRONOUSstr(object=’’) -> str TYPE_SYNCHRONOUSstr(object=’’) -> str input[Required] Gets the input of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails. outputGets the output of this ExecuteSqlDatabaseToolsConnectionDetails. timeout_in_secondsGets the timeout_in_seconds of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails. type[Required] Gets the type of this ExecuteSqlDatabaseToolsConnectionDetails. Methods
__init__(**kwargs)Initializes a new ExecuteSqlDatabaseToolsConnectionAsynchronousDetails 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_ASYNCHRONOUS= 'ASYNCHRONOUS'¶
-
TYPE_SYNCHRONOUS= 'SYNCHRONOUS'¶
-
__init__(**kwargs)¶ Initializes a new ExecuteSqlDatabaseToolsConnectionAsynchronousDetails object with values from keyword arguments. The default value of the
typeattribute of this class isASYNCHRONOUSand it should not be changed. 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 ExecuteSqlDatabaseToolsConnectionAsynchronousDetails. Allowed values for this property are: “SYNCHRONOUS”, “ASYNCHRONOUS”
- output (oci.database_tools_runtime.models.ExecuteSqlOutputDetails) – The value to assign to the output property of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails.
- timeout_in_seconds (int) – The value to assign to the timeout_in_seconds property of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails.
- input (oci.database_tools_runtime.models.ExecuteSqlAsynchronousInputDetails) – The value to assign to the input property of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails.
-
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.
-
input¶ [Required] Gets the input of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails.
Returns: The input of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails. Return type: oci.database_tools_runtime.models.ExecuteSqlAsynchronousInputDetails
-
output¶ Gets the output of this ExecuteSqlDatabaseToolsConnectionDetails.
Returns: The output of this ExecuteSqlDatabaseToolsConnectionDetails. Return type: oci.database_tools_runtime.models.ExecuteSqlOutputDetails
-
timeout_in_seconds¶ Gets the timeout_in_seconds of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails. Maximum time in seconds allowed for the request to complete, measured from submission.
Returns: The timeout_in_seconds of this ExecuteSqlDatabaseToolsConnectionAsynchronousDetails. Return type: int
-
type¶ [Required] Gets the type of this ExecuteSqlDatabaseToolsConnectionDetails. The request execution type.
Allowed values for this property are: “SYNCHRONOUS”, “ASYNCHRONOUS”
Returns: The type of this ExecuteSqlDatabaseToolsConnectionDetails. Return type: str
-