Interface BuildArtifactOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    BuildArtifact, BuildArtifact.Builder

    public interface BuildArtifactOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getImage()
      Image name in Skaffold configuration.
      com.google.protobuf.ByteString getImageBytes()
      Image name in Skaffold configuration.
      String getTag()
      Image tag to use.
      com.google.protobuf.ByteString getTagBytes()
      Image tag to use.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getImage

        String getImage()
         Image name in Skaffold configuration.
         
        string image = 3;
        Returns:
        The image.
      • getImageBytes

        com.google.protobuf.ByteString getImageBytes()
         Image name in Skaffold configuration.
         
        string image = 3;
        Returns:
        The bytes for image.
      • getTag

        String getTag()
         Image tag to use. This will generally be the full path to an image, such
         as "gcr.io/my-project/busybox:1.2.3" or
         "gcr.io/my-project/busybox@sha256:abc123".
         
        string tag = 2;
        Returns:
        The tag.
      • getTagBytes

        com.google.protobuf.ByteString getTagBytes()
         Image tag to use. This will generally be the full path to an image, such
         as "gcr.io/my-project/busybox:1.2.3" or
         "gcr.io/my-project/busybox@sha256:abc123".
         
        string tag = 2;
        Returns:
        The bytes for tag.