Package com.google.cloud.dataplex.v1
Interface JobEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobEvent
,JobEvent.Builder
public interface JobEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getEndTime()
The time when the job ended running.com.google.protobuf.TimestampOrBuilder
getEndTimeOrBuilder()
The time when the job ended running.JobEvent.ExecutionTrigger
getExecutionTrigger()
Job execution trigger.int
getExecutionTriggerValue()
Job execution trigger.String
getJobId()
The unique id identifying the job.com.google.protobuf.ByteString
getJobIdBytes()
The unique id identifying the job.String
getMessage()
The log message.com.google.protobuf.ByteString
getMessageBytes()
The log message.int
getRetries()
The number of retries.JobEvent.Service
getService()
The service used to execute the job.String
getServiceJob()
The reference to the job within the service.com.google.protobuf.ByteString
getServiceJobBytes()
The reference to the job within the service.int
getServiceValue()
The service used to execute the job.com.google.protobuf.Timestamp
getStartTime()
The time when the job started running.com.google.protobuf.TimestampOrBuilder
getStartTimeOrBuilder()
The time when the job started running.JobEvent.State
getState()
The job state on completion.int
getStateValue()
The job state on completion.JobEvent.Type
getType()
The type of the job.int
getTypeValue()
The type of the job.boolean
hasEndTime()
The time when the job ended running.boolean
hasStartTime()
The time when the job started running.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMessage
String getMessage()
The log message.
string message = 1;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
The log message.
string message = 1;
- Returns:
- The bytes for message.
-
getJobId
String getJobId()
The unique id identifying the job.
string job_id = 2;
- Returns:
- The jobId.
-
getJobIdBytes
com.google.protobuf.ByteString getJobIdBytes()
The unique id identifying the job.
string job_id = 2;
- Returns:
- The bytes for jobId.
-
hasStartTime
boolean hasStartTime()
The time when the job started running.
.google.protobuf.Timestamp start_time = 3;
- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
The time when the job started running.
.google.protobuf.Timestamp start_time = 3;
- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
The time when the job started running.
.google.protobuf.Timestamp start_time = 3;
-
hasEndTime
boolean hasEndTime()
The time when the job ended running.
.google.protobuf.Timestamp end_time = 4;
- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
The time when the job ended running.
.google.protobuf.Timestamp end_time = 4;
- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
The time when the job ended running.
.google.protobuf.Timestamp end_time = 4;
-
getStateValue
int getStateValue()
The job state on completion.
.google.cloud.dataplex.v1.JobEvent.State state = 5;
- Returns:
- The enum numeric value on the wire for state.
-
getState
JobEvent.State getState()
The job state on completion.
.google.cloud.dataplex.v1.JobEvent.State state = 5;
- Returns:
- The state.
-
getRetries
int getRetries()
The number of retries.
int32 retries = 6;
- Returns:
- The retries.
-
getTypeValue
int getTypeValue()
The type of the job.
.google.cloud.dataplex.v1.JobEvent.Type type = 7;
- Returns:
- The enum numeric value on the wire for type.
-
getType
JobEvent.Type getType()
The type of the job.
.google.cloud.dataplex.v1.JobEvent.Type type = 7;
- Returns:
- The type.
-
getServiceValue
int getServiceValue()
The service used to execute the job.
.google.cloud.dataplex.v1.JobEvent.Service service = 8;
- Returns:
- The enum numeric value on the wire for service.
-
getService
JobEvent.Service getService()
The service used to execute the job.
.google.cloud.dataplex.v1.JobEvent.Service service = 8;
- Returns:
- The service.
-
getServiceJob
String getServiceJob()
The reference to the job within the service.
string service_job = 9;
- Returns:
- The serviceJob.
-
getServiceJobBytes
com.google.protobuf.ByteString getServiceJobBytes()
The reference to the job within the service.
string service_job = 9;
- Returns:
- The bytes for serviceJob.
-
getExecutionTriggerValue
int getExecutionTriggerValue()
Job execution trigger.
.google.cloud.dataplex.v1.JobEvent.ExecutionTrigger execution_trigger = 11;
- Returns:
- The enum numeric value on the wire for executionTrigger.
-
getExecutionTrigger
JobEvent.ExecutionTrigger getExecutionTrigger()
Job execution trigger.
.google.cloud.dataplex.v1.JobEvent.ExecutionTrigger execution_trigger = 11;
- Returns:
- The executionTrigger.
-
-