Package flyteidl.core
Interface IdentifierOuterClass.IdentifierOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IdentifierOuterClass.Identifier,IdentifierOuterClass.Identifier.Builder
- Enclosing class:
- IdentifierOuterClass
public static interface IdentifierOuterClass.IdentifierOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDomain()Name of the domain the resource belongs to.com.google.protobuf.ByteStringgetDomainBytes()Name of the domain the resource belongs to.StringgetName()User provided value for the resource.com.google.protobuf.ByteStringgetNameBytes()User provided value for the resource.StringgetProject()Name of the project the resource belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of the project the resource belongs to.IdentifierOuterClass.ResourceTypegetResourceType()Identifies the specific type of resource that this identifier corresponds to.intgetResourceTypeValue()Identifies the specific type of resource that this identifier corresponds to.StringgetVersion()Specific version of the resource.com.google.protobuf.ByteStringgetVersionBytes()Specific version of the resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceTypeValue
int getResourceTypeValue()
Identifies the specific type of resource that this identifier corresponds to.
.flyteidl.core.ResourceType resource_type = 1;- Returns:
- The enum numeric value on the wire for resourceType.
-
getResourceType
IdentifierOuterClass.ResourceType getResourceType()
Identifies the specific type of resource that this identifier corresponds to.
.flyteidl.core.ResourceType resource_type = 1;- Returns:
- The resourceType.
-
getProject
String getProject()
Name of the project the resource belongs to.
string project = 2;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Name of the project the resource belongs to.
string project = 2;- Returns:
- The bytes for project.
-
getDomain
String getDomain()
Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project.
string domain = 3;- Returns:
- The domain.
-
getDomainBytes
com.google.protobuf.ByteString getDomainBytes()
Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project.
string domain = 3;- Returns:
- The bytes for domain.
-
getName
String getName()
User provided value for the resource.
string name = 4;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
User provided value for the resource.
string name = 4;- Returns:
- The bytes for name.
-
getVersion
String getVersion()
Specific version of the resource.
string version = 5;- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
Specific version of the resource.
string version = 5;- Returns:
- The bytes for version.
-
-