Interface MoveManagerLinkRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getCustomerId()
      Required.
      com.google.protobuf.ByteString getCustomerIdBytes()
      Required.
      java.lang.String getNewManager()
      Required.
      com.google.protobuf.ByteString getNewManagerBytes()
      Required.
      java.lang.String getPreviousCustomerManagerLink()
      Required.
      com.google.protobuf.ByteString getPreviousCustomerManagerLinkBytes()
      Required.
      boolean getValidateOnly()
      If true, the request is validated but not executed.
      • 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

      • getCustomerId

        java.lang.String getCustomerId()
         Required. The ID of the client customer that is being moved.
         
        string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The customerId.
      • getCustomerIdBytes

        com.google.protobuf.ByteString getCustomerIdBytes()
         Required. The ID of the client customer that is being moved.
         
        string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for customerId.
      • getPreviousCustomerManagerLink

        java.lang.String getPreviousCustomerManagerLink()
         Required. The resource name of the previous CustomerManagerLink.
         The resource name has the form:
         `customers/{customer_id}/customerManagerLinks/{manager_customer_id}~{manager_link_id}`
         
        string previous_customer_manager_link = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The previousCustomerManagerLink.
      • getPreviousCustomerManagerLinkBytes

        com.google.protobuf.ByteString getPreviousCustomerManagerLinkBytes()
         Required. The resource name of the previous CustomerManagerLink.
         The resource name has the form:
         `customers/{customer_id}/customerManagerLinks/{manager_customer_id}~{manager_link_id}`
         
        string previous_customer_manager_link = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for previousCustomerManagerLink.
      • getNewManager

        java.lang.String getNewManager()
         Required. The resource name of the new manager customer that the client wants to move
         to. Customer resource names have the format: "customers/{customer_id}"
         
        string new_manager = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The newManager.
      • getNewManagerBytes

        com.google.protobuf.ByteString getNewManagerBytes()
         Required. The resource name of the new manager customer that the client wants to move
         to. Customer resource names have the format: "customers/{customer_id}"
         
        string new_manager = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for newManager.
      • getValidateOnly

        boolean getValidateOnly()
         If true, the request is validated but not executed. Only errors are
         returned, not results.
         
        bool validate_only = 4;
        Returns:
        The validateOnly.