Class: Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry
- Inherits:
-
Object
- Object
- Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb
Overview
Execution log of a background job.
Defined Under Namespace
Modules: JobCompletionState Classes: ApplyJobDetails, ConvertJobDetails, ImportRulesJobDetails, SeedJobDetails
Instance Attribute Summary collapse
-
#apply_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ApplyJobDetails
readonly
Output only.
-
#completion_comment ⇒ ::String
readonly
Output only.
-
#completion_state ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::JobCompletionState
readonly
Output only.
-
#convert_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ConvertJobDetails
readonly
Output only.
-
#finish_time ⇒ ::Google::Protobuf::Timestamp
The timestamp when the background job was finished.
-
#id ⇒ ::String
The background job log entry ID.
-
#import_rules_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ImportRulesJobDetails
readonly
Output only.
-
#job_type ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobType
The type of job that was executed.
-
#request_autocommit ⇒ ::Boolean
readonly
Output only.
-
#seed_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::SeedJobDetails
readonly
Output only.
-
#start_time ⇒ ::Google::Protobuf::Timestamp
The timestamp when the background job was started.
Instance Attribute Details
#apply_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ApplyJobDetails (readonly)
Returns Output only. Apply job details.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#completion_comment ⇒ ::String (readonly)
Returns Output only. Job completion comment, such as how many entities were seeded, how many warnings were found during conversion, and similar information.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#completion_state ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::JobCompletionState (readonly)
Returns Output only. Job completion state, i.e. the final state after the job completed.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#convert_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ConvertJobDetails (readonly)
Returns Output only. Convert job details.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#finish_time ⇒ ::Google::Protobuf::Timestamp
Returns The timestamp when the background job was finished.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#id ⇒ ::String
Returns The background job log entry ID.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#import_rules_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ImportRulesJobDetails (readonly)
Returns Output only. Import rules job details.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#job_type ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobType
Returns The type of job that was executed.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#request_autocommit ⇒ ::Boolean (readonly)
Returns Output only. Whether the client requested the conversion workspace to be committed after a successful completion of the job.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#seed_job_details ⇒ ::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::SeedJobDetails (readonly)
Returns Output only. Seed job details.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |
#start_time ⇒ ::Google::Protobuf::Timestamp
Returns The timestamp when the background job was started.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb', line 124 class BackgroundJobLogEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Details regarding a Seed background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the seed job. class SeedJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Import Rules background job. # @!attribute [r] files # @return [::Array<::String>] # Output only. File names used for the import rules job. # @!attribute [r] file_format # @return [::Google::Cloud::CloudDMS::V1::ImportRulesFileFormat] # Output only. The requested file format. class ImportRulesJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding a Convert background job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to convert class ConvertJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Details regarding an Apply background job. # @!attribute [r] connection_profile # @return [::String] # Output only. The connection profile which was used for the apply job. # @!attribute [r] filter # @return [::String] # Output only. AIP-160 based filter used to specify the entities to apply class ApplyJobDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Final state after a job completes. module JobCompletionState # The status is not specified. This state is used when job is not yet # finished. JOB_COMPLETION_STATE_UNSPECIFIED = 0 # Success. SUCCEEDED = 1 # Error. FAILED = 2 end end |