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

    Modifier and Type
    Method
    Description
    Required.
    com.google.protobuf.ByteString
    Required.
    Required.
    com.google.protobuf.ByteString
    Required.
    Required.
    com.google.protobuf.ByteString
    Required.
    boolean
    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 Details

    • getCustomerId

      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

      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

      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.