Package flyteidl.core
Interface Workflow.WorkflowMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Workflow.WorkflowMetadata,Workflow.WorkflowMetadata.Builder
- Enclosing class:
- Workflow
public static interface Workflow.WorkflowMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Workflow.WorkflowMetadata.OnFailurePolicygetOnFailure()Defines how the system should behave when a failure is detected in the workflow execution.intgetOnFailureValue()Defines how the system should behave when a failure is detected in the workflow execution.Execution.QualityOfServicegetQualityOfService()Indicates the runtime priority of workflow executions.Execution.QualityOfServiceOrBuildergetQualityOfServiceOrBuilder()Indicates the runtime priority of workflow executions.booleanhasQualityOfService()Indicates the runtime priority of workflow executions.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasQualityOfService
boolean hasQualityOfService()
Indicates the runtime priority of workflow executions.
.flyteidl.core.QualityOfService quality_of_service = 1;- Returns:
- Whether the qualityOfService field is set.
-
getQualityOfService
Execution.QualityOfService getQualityOfService()
Indicates the runtime priority of workflow executions.
.flyteidl.core.QualityOfService quality_of_service = 1;- Returns:
- The qualityOfService.
-
getQualityOfServiceOrBuilder
Execution.QualityOfServiceOrBuilder getQualityOfServiceOrBuilder()
Indicates the runtime priority of workflow executions.
.flyteidl.core.QualityOfService quality_of_service = 1;
-
getOnFailureValue
int getOnFailureValue()
Defines how the system should behave when a failure is detected in the workflow execution.
.flyteidl.core.WorkflowMetadata.OnFailurePolicy on_failure = 2;- Returns:
- The enum numeric value on the wire for onFailure.
-
getOnFailure
Workflow.WorkflowMetadata.OnFailurePolicy getOnFailure()
Defines how the system should behave when a failure is detected in the workflow execution.
.flyteidl.core.WorkflowMetadata.OnFailurePolicy on_failure = 2;- Returns:
- The onFailure.
-
-