Class ContainerStoppedEvent.Builder

    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • clear

        public ContainerStoppedEvent.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • getDefaultInstanceForType

        public ContainerStoppedEvent getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public ContainerStoppedEvent build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public ContainerStoppedEvent buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • clone

        public ContainerStoppedEvent.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • clearField

        public ContainerStoppedEvent.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • clearOneof

        public ContainerStoppedEvent.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • setRepeatedField

        public ContainerStoppedEvent.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                              int index,
                                                              Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • addRepeatedField

        public ContainerStoppedEvent.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                              Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • mergeFrom

        public ContainerStoppedEvent.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                                throws IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<ContainerStoppedEvent.Builder>
        Throws:
        IOException
      • getActionId

        public int getActionId()
         The numeric ID of the action that started this container.
         
        int32 action_id = 1;
        Specified by:
        getActionId in interface ContainerStoppedEventOrBuilder
        Returns:
        The actionId.
      • setActionId

        public ContainerStoppedEvent.Builder setActionId​(int value)
         The numeric ID of the action that started this container.
         
        int32 action_id = 1;
        Parameters:
        value - The actionId to set.
        Returns:
        This builder for chaining.
      • clearActionId

        public ContainerStoppedEvent.Builder clearActionId()
         The numeric ID of the action that started this container.
         
        int32 action_id = 1;
        Returns:
        This builder for chaining.
      • setExitStatus

        public ContainerStoppedEvent.Builder setExitStatus​(int value)
         The exit status of the container.
         
        int32 exit_status = 2;
        Parameters:
        value - The exitStatus to set.
        Returns:
        This builder for chaining.
      • clearExitStatus

        public ContainerStoppedEvent.Builder clearExitStatus()
         The exit status of the container.
         
        int32 exit_status = 2;
        Returns:
        This builder for chaining.
      • getStderr

        public String getStderr()
         The tail end of any content written to standard error by the container.
         If the content emits large amounts of debugging noise or contains
         sensitive information, you can prevent the content from being printed by
         setting the `DISABLE_STANDARD_ERROR_CAPTURE` flag.
        
         Note that only a small amount of the end of the stream is captured here.
         The entire stream is stored in the `/google/logs` directory mounted into
         each action, and can be copied off the machine as described elsewhere.
         
        string stderr = 3;
        Specified by:
        getStderr in interface ContainerStoppedEventOrBuilder
        Returns:
        The stderr.
      • getStderrBytes

        public com.google.protobuf.ByteString getStderrBytes()
         The tail end of any content written to standard error by the container.
         If the content emits large amounts of debugging noise or contains
         sensitive information, you can prevent the content from being printed by
         setting the `DISABLE_STANDARD_ERROR_CAPTURE` flag.
        
         Note that only a small amount of the end of the stream is captured here.
         The entire stream is stored in the `/google/logs` directory mounted into
         each action, and can be copied off the machine as described elsewhere.
         
        string stderr = 3;
        Specified by:
        getStderrBytes in interface ContainerStoppedEventOrBuilder
        Returns:
        The bytes for stderr.
      • setStderr

        public ContainerStoppedEvent.Builder setStderr​(String value)
         The tail end of any content written to standard error by the container.
         If the content emits large amounts of debugging noise or contains
         sensitive information, you can prevent the content from being printed by
         setting the `DISABLE_STANDARD_ERROR_CAPTURE` flag.
        
         Note that only a small amount of the end of the stream is captured here.
         The entire stream is stored in the `/google/logs` directory mounted into
         each action, and can be copied off the machine as described elsewhere.
         
        string stderr = 3;
        Parameters:
        value - The stderr to set.
        Returns:
        This builder for chaining.
      • clearStderr

        public ContainerStoppedEvent.Builder clearStderr()
         The tail end of any content written to standard error by the container.
         If the content emits large amounts of debugging noise or contains
         sensitive information, you can prevent the content from being printed by
         setting the `DISABLE_STANDARD_ERROR_CAPTURE` flag.
        
         Note that only a small amount of the end of the stream is captured here.
         The entire stream is stored in the `/google/logs` directory mounted into
         each action, and can be copied off the machine as described elsewhere.
         
        string stderr = 3;
        Returns:
        This builder for chaining.
      • setStderrBytes

        public ContainerStoppedEvent.Builder setStderrBytes​(com.google.protobuf.ByteString value)
         The tail end of any content written to standard error by the container.
         If the content emits large amounts of debugging noise or contains
         sensitive information, you can prevent the content from being printed by
         setting the `DISABLE_STANDARD_ERROR_CAPTURE` flag.
        
         Note that only a small amount of the end of the stream is captured here.
         The entire stream is stored in the `/google/logs` directory mounted into
         each action, and can be copied off the machine as described elsewhere.
         
        string stderr = 3;
        Parameters:
        value - The bytes for stderr to set.
        Returns:
        This builder for chaining.
      • setUnknownFields

        public final ContainerStoppedEvent.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>
      • mergeUnknownFields

        public final ContainerStoppedEvent.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<ContainerStoppedEvent.Builder>