Interface UpdateChannelRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Channel getChannel()
      The channel to be updated.
      ChannelOrBuilder getChannelOrBuilder()
      The channel to be updated.
      com.google.protobuf.FieldMask getUpdateMask()
      The fields to be updated; only fields explicitly provided are updated.
      com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
      The fields to be updated; only fields explicitly provided are updated.
      boolean getValidateOnly()
      Required.
      boolean hasChannel()
      The channel to be updated.
      boolean hasUpdateMask()
      The fields to be updated; only fields explicitly provided are updated.
      • 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

      • hasChannel

        boolean hasChannel()
         The channel to be updated.
         
        .google.cloud.eventarc.v1.Channel channel = 1;
        Returns:
        Whether the channel field is set.
      • getChannel

        Channel getChannel()
         The channel to be updated.
         
        .google.cloud.eventarc.v1.Channel channel = 1;
        Returns:
        The channel.
      • getChannelOrBuilder

        ChannelOrBuilder getChannelOrBuilder()
         The channel to be updated.
         
        .google.cloud.eventarc.v1.Channel channel = 1;
      • hasUpdateMask

        boolean hasUpdateMask()
         The fields to be updated; only fields explicitly provided are updated.
         If no field mask is provided, all provided fields in the request are
         updated. To update all fields, provide a field mask of "*".
         
        .google.protobuf.FieldMask update_mask = 2;
        Returns:
        Whether the updateMask field is set.
      • getUpdateMask

        com.google.protobuf.FieldMask getUpdateMask()
         The fields to be updated; only fields explicitly provided are updated.
         If no field mask is provided, all provided fields in the request are
         updated. To update all fields, provide a field mask of "*".
         
        .google.protobuf.FieldMask update_mask = 2;
        Returns:
        The updateMask.
      • getUpdateMaskOrBuilder

        com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
         The fields to be updated; only fields explicitly provided are updated.
         If no field mask is provided, all provided fields in the request are
         updated. To update all fields, provide a field mask of "*".
         
        .google.protobuf.FieldMask update_mask = 2;
      • getValidateOnly

        boolean getValidateOnly()
         Required. If set, validate the request and preview the review, but do not
         post it.
         
        bool validate_only = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The validateOnly.