Package flyteidl.admin
Interface ExecutionOuterClass.ExecutionCreateRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExecutionOuterClass.ExecutionCreateRequest,ExecutionOuterClass.ExecutionCreateRequest.Builder
- Enclosing class:
- ExecutionOuterClass
public static interface ExecutionOuterClass.ExecutionCreateRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDomain()Name of the domain the execution belongs to.com.google.protobuf.ByteStringgetDomainBytes()Name of the domain the execution belongs to.Literals.LiteralMapgetInputs()The inputs required to start the execution.Literals.LiteralMapOrBuildergetInputsOrBuilder()The inputs required to start the execution.StringgetName()User provided value for the resource.com.google.protobuf.ByteStringgetNameBytes()User provided value for the resource.StringgetProject()Name of the project the execution belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of the project the execution belongs to.ExecutionOuterClass.ExecutionSpecgetSpec()Additional fields necessary to launch the execution.ExecutionOuterClass.ExecutionSpecOrBuildergetSpecOrBuilder()Additional fields necessary to launch the execution.booleanhasInputs()The inputs required to start the execution.booleanhasSpec()Additional fields necessary to launch the execution.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProject
String getProject()
Name of the project the execution belongs to. +required
string project = 1;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Name of the project the execution belongs to. +required
string project = 1;- Returns:
- The bytes for project.
-
getDomain
String getDomain()
Name of the domain the execution belongs to. A domain can be considered as a subset within a specific project. +required
string domain = 2;- Returns:
- The domain.
-
getDomainBytes
com.google.protobuf.ByteString getDomainBytes()
Name of the domain the execution belongs to. A domain can be considered as a subset within a specific project. +required
string domain = 2;- Returns:
- The bytes for domain.
-
getName
String getName()
User provided value for the resource. If none is provided the system will generate a unique string. +optional
string name = 3;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
User provided value for the resource. If none is provided the system will generate a unique string. +optional
string name = 3;- Returns:
- The bytes for name.
-
hasSpec
boolean hasSpec()
Additional fields necessary to launch the execution. +optional
.flyteidl.admin.ExecutionSpec spec = 4;- Returns:
- Whether the spec field is set.
-
getSpec
ExecutionOuterClass.ExecutionSpec getSpec()
Additional fields necessary to launch the execution. +optional
.flyteidl.admin.ExecutionSpec spec = 4;- Returns:
- The spec.
-
getSpecOrBuilder
ExecutionOuterClass.ExecutionSpecOrBuilder getSpecOrBuilder()
Additional fields necessary to launch the execution. +optional
.flyteidl.admin.ExecutionSpec spec = 4;
-
hasInputs
boolean hasInputs()
The inputs required to start the execution. All required inputs must be included in this map. If not required and not provided, defaults apply. +optional
.flyteidl.core.LiteralMap inputs = 5;- Returns:
- Whether the inputs field is set.
-
getInputs
Literals.LiteralMap getInputs()
The inputs required to start the execution. All required inputs must be included in this map. If not required and not provided, defaults apply. +optional
.flyteidl.core.LiteralMap inputs = 5;- Returns:
- The inputs.
-
getInputsOrBuilder
Literals.LiteralMapOrBuilder getInputsOrBuilder()
The inputs required to start the execution. All required inputs must be included in this map. If not required and not provided, defaults apply. +optional
.flyteidl.core.LiteralMap inputs = 5;
-
-