Class BackgroundJobLogEntry (1.9.2)

BackgroundJobLogEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Execution log of a background job.

This message has oneof_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
id str
The background job log entry ID.
job_type google.cloud.clouddms_v1.types.BackgroundJobType
The type of job that was executed.
start_time google.protobuf.timestamp_pb2.Timestamp
The timestamp when the background job was started.
finish_time google.protobuf.timestamp_pb2.Timestamp
The timestamp when the background job was finished.
completion_state google.cloud.clouddms_v1.types.BackgroundJobLogEntry.JobCompletionState
Output only. Job completion state, i.e. the final state after the job completed.
completion_comment str
Output only. Job completion comment, such as how many entities were seeded, how many warnings were found during conversion, and similar information.
request_autocommit bool
Output only. Whether the client requested the conversion workspace to be committed after a successful completion of the job.
seed_job_details google.cloud.clouddms_v1.types.BackgroundJobLogEntry.SeedJobDetails
Output only. Seed job details. This field is a member of oneof_ job_details.
import_rules_job_details google.cloud.clouddms_v1.types.BackgroundJobLogEntry.ImportRulesJobDetails
Output only. Import rules job details. This field is a member of oneof_ job_details.
convert_job_details google.cloud.clouddms_v1.types.BackgroundJobLogEntry.ConvertJobDetails
Output only. Convert job details. This field is a member of oneof_ job_details.
apply_job_details google.cloud.clouddms_v1.types.BackgroundJobLogEntry.ApplyJobDetails
Output only. Apply job details. This field is a member of oneof_ job_details.

Classes

ApplyJobDetails

ApplyJobDetails(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Details regarding an Apply background job.

ConvertJobDetails

ConvertJobDetails(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Details regarding a Convert background job.

ImportRulesJobDetails

ImportRulesJobDetails(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Details regarding an Import Rules background job.

JobCompletionState

JobCompletionState(value)

Final state after a job completes.

Values: JOB_COMPLETION_STATE_UNSPECIFIED (0): The status is not specified. This state is used when job is not yet finished. SUCCEEDED (1): Success. FAILED (2): Error.

SeedJobDetails

SeedJobDetails(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Details regarding a Seed background job.