ObjectStorageJobExecutionResultDetails¶
-
class
oci.database_management.models.
ObjectStorageJobExecutionResultDetails
(**kwargs)¶ Bases:
oci.database_management.models.job_execution_result_details.JobExecutionResultDetails
The details of the job execution result stored in Object Storage. The job execution result could be accessed using the Object Storage API.
Attributes
TYPE_OBJECT_STORAGE
str(object=’’) -> str bucket_name
Gets the bucket_name of this ObjectStorageJobExecutionResultDetails. namespace_name
Gets the namespace_name of this ObjectStorageJobExecutionResultDetails. object_name
Gets the object_name of this ObjectStorageJobExecutionResultDetails. row_count
Gets the row_count of this ObjectStorageJobExecutionResultDetails. type
[Required] Gets the type of this JobExecutionResultDetails. Methods
__init__
(**kwargs)Initializes a new ObjectStorageJobExecutionResultDetails 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'¶
-
__init__
(**kwargs)¶ Initializes a new ObjectStorageJobExecutionResultDetails object with values from keyword arguments. The default value of the
type
attribute of this class isOBJECT_STORAGE
and 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 ObjectStorageJobExecutionResultDetails. Allowed values for this property are: “OBJECT_STORAGE”
- namespace_name (str) – The value to assign to the namespace_name property of this ObjectStorageJobExecutionResultDetails.
- bucket_name (str) – The value to assign to the bucket_name property of this ObjectStorageJobExecutionResultDetails.
- object_name (str) – The value to assign to the object_name property of this ObjectStorageJobExecutionResultDetails.
- row_count (int) – The value to assign to the row_count property of this ObjectStorageJobExecutionResultDetails.
-
bucket_name
¶ Gets the bucket_name of this ObjectStorageJobExecutionResultDetails. The name of the bucket used for job execution result storage.
Returns: The bucket_name of this ObjectStorageJobExecutionResultDetails. 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.
-
namespace_name
¶ Gets the namespace_name of this ObjectStorageJobExecutionResultDetails. The Object Storage namespace used for job execution result storage.
Returns: The namespace_name of this ObjectStorageJobExecutionResultDetails. Return type: str
-
object_name
¶ Gets the object_name of this ObjectStorageJobExecutionResultDetails. The name of the object containing the job execution result.
Returns: The object_name of this ObjectStorageJobExecutionResultDetails. Return type: str
-
row_count
¶ Gets the row_count of this ObjectStorageJobExecutionResultDetails. The number of rows returned in the result for the Query SqlType.
Returns: The row_count of this ObjectStorageJobExecutionResultDetails. Return type: int
-
type
¶ [Required] Gets the type of this JobExecutionResultDetails. The type of job execution result.
Allowed values for this property are: “OBJECT_STORAGE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this JobExecutionResultDetails. Return type: str
-