PipelineDiagnosticData¶
-
class
oci.golden_gate.models.
PipelineDiagnosticData
(**kwargs)¶ Bases:
object
Information regarding the pipeline diagnostic collection
Attributes
DIAGNOSTIC_STATE_FAILED
A constant which can be used with the diagnostic_state property of a PipelineDiagnosticData. DIAGNOSTIC_STATE_IN_PROGRESS
A constant which can be used with the diagnostic_state property of a PipelineDiagnosticData. DIAGNOSTIC_STATE_SUCCEEDED
A constant which can be used with the diagnostic_state property of a PipelineDiagnosticData. bucket_name
[Required] Gets the bucket_name of this PipelineDiagnosticData. diagnostic_state
[Required] Gets the diagnostic_state of this PipelineDiagnosticData. namespace_name
[Required] Gets the namespace_name of this PipelineDiagnosticData. object_name
[Required] Gets the object_name of this PipelineDiagnosticData. time_last_collected
Gets the time_last_collected of this PipelineDiagnosticData. Methods
__init__
(**kwargs)Initializes a new PipelineDiagnosticData object with values from keyword arguments. -
DIAGNOSTIC_STATE_FAILED
= 'FAILED'¶ A constant which can be used with the diagnostic_state property of a PipelineDiagnosticData. This constant has a value of “FAILED”
-
DIAGNOSTIC_STATE_IN_PROGRESS
= 'IN_PROGRESS'¶ A constant which can be used with the diagnostic_state property of a PipelineDiagnosticData. This constant has a value of “IN_PROGRESS”
-
DIAGNOSTIC_STATE_SUCCEEDED
= 'SUCCEEDED'¶ A constant which can be used with the diagnostic_state property of a PipelineDiagnosticData. This constant has a value of “SUCCEEDED”
-
__init__
(**kwargs)¶ Initializes a new PipelineDiagnosticData object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - namespace_name (str) – The value to assign to the namespace_name property of this PipelineDiagnosticData.
- bucket_name (str) – The value to assign to the bucket_name property of this PipelineDiagnosticData.
- object_name (str) – The value to assign to the object_name property of this PipelineDiagnosticData.
- diagnostic_state (str) – The value to assign to the diagnostic_state property of this PipelineDiagnosticData. Allowed values for this property are: “IN_PROGRESS”, “SUCCEEDED”, “FAILED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- time_last_collected (datetime) – The value to assign to the time_last_collected property of this PipelineDiagnosticData.
-
bucket_name
¶ [Required] Gets the bucket_name of this PipelineDiagnosticData. Name of the bucket where the object is to be uploaded in the object storage
Returns: The bucket_name of this PipelineDiagnosticData. Return type: str
-
diagnostic_state
¶ [Required] Gets the diagnostic_state of this PipelineDiagnosticData. The state of the pipeline diagnostics collection.
Allowed values for this property are: “IN_PROGRESS”, “SUCCEEDED”, “FAILED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The diagnostic_state of this PipelineDiagnosticData. Return type: str
-
namespace_name
¶ [Required] Gets the namespace_name of this PipelineDiagnosticData. Name of namespace that serves as a container for all of your buckets
Returns: The namespace_name of this PipelineDiagnosticData. Return type: str
-
object_name
¶ [Required] Gets the object_name of this PipelineDiagnosticData. Name of the diagnostic collected and uploaded to object storage
Returns: The object_name of this PipelineDiagnosticData. Return type: str
-
time_last_collected
¶ Gets the time_last_collected of this PipelineDiagnosticData. The date and time the diagnostic data was last collected for the pipeline. The format is defined by RFC3339, such as 2024-07-25T21:10:29.600Z.
Returns: The time_last_collected of this PipelineDiagnosticData. Return type: datetime
-