Class TransferProto.UpdateAgentPoolRequest (1.41.0)

public static final class TransferProto.UpdateAgentPoolRequest extends GeneratedMessageV3 implements TransferProto.UpdateAgentPoolRequestOrBuilder

Specifies the request passed to UpdateAgentPool.

Protobuf type google.storagetransfer.v1.UpdateAgentPoolRequest

Inheritance

Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > TransferProto.UpdateAgentPoolRequest

Static Fields

AGENT_POOL_FIELD_NUMBER

public static final int AGENT_POOL_FIELD_NUMBER
Field Value
TypeDescription
int

UPDATE_MASK_FIELD_NUMBER

public static final int UPDATE_MASK_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static TransferProto.UpdateAgentPoolRequest getDefaultInstance()
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static TransferProto.UpdateAgentPoolRequest.Builder newBuilder()
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest.Builder

newBuilder(TransferProto.UpdateAgentPoolRequest prototype)

public static TransferProto.UpdateAgentPoolRequest.Builder newBuilder(TransferProto.UpdateAgentPoolRequest prototype)
Parameter
NameDescription
prototypeTransferProto.UpdateAgentPoolRequest
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest.Builder

parseDelimitedFrom(InputStream input)

public static TransferProto.UpdateAgentPoolRequest parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static TransferProto.UpdateAgentPoolRequest parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static TransferProto.UpdateAgentPoolRequest parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static TransferProto.UpdateAgentPoolRequest parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static TransferProto.UpdateAgentPoolRequest parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static TransferProto.UpdateAgentPoolRequest parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static TransferProto.UpdateAgentPoolRequest parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static TransferProto.UpdateAgentPoolRequest parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static TransferProto.UpdateAgentPoolRequest parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static TransferProto.UpdateAgentPoolRequest parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static TransferProto.UpdateAgentPoolRequest parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static TransferProto.UpdateAgentPoolRequest parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<TransferProto.UpdateAgentPoolRequest> parser()
Returns
TypeDescription
Parser<UpdateAgentPoolRequest>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getAgentPool()

public TransferTypes.AgentPool getAgentPool()

Required. The agent pool to update. agent_pool is expected to specify following fields:

  • name
  • display_name
  • bandwidth_limit An UpdateAgentPoolRequest with any other fields is rejected with the error INVALID_ARGUMENT.

.google.storagetransfer.v1.AgentPool agent_pool = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
TransferTypes.AgentPool

The agentPool.

getAgentPoolOrBuilder()

public TransferTypes.AgentPoolOrBuilder getAgentPoolOrBuilder()

Required. The agent pool to update. agent_pool is expected to specify following fields:

  • name
  • display_name
  • bandwidth_limit An UpdateAgentPoolRequest with any other fields is rejected with the error INVALID_ARGUMENT.

.google.storagetransfer.v1.AgentPool agent_pool = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
TransferTypes.AgentPoolOrBuilder

getDefaultInstanceForType()

public TransferProto.UpdateAgentPoolRequest getDefaultInstanceForType()
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest

getParserForType()

public Parser<TransferProto.UpdateAgentPoolRequest> getParserForType()
Returns
TypeDescription
Parser<UpdateAgentPoolRequest>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getUpdateMask()

public FieldMask getUpdateMask()

The field mask of the fields in agentPool to update in this request. The following agentPool fields can be updated:

  • display_name
  • bandwidth_limit

.google.protobuf.FieldMask update_mask = 2;

Returns
TypeDescription
FieldMask

The updateMask.

getUpdateMaskOrBuilder()

public FieldMaskOrBuilder getUpdateMaskOrBuilder()

The field mask of the fields in agentPool to update in this request. The following agentPool fields can be updated:

  • display_name
  • bandwidth_limit

.google.protobuf.FieldMask update_mask = 2;

Returns
TypeDescription
FieldMaskOrBuilder

hasAgentPool()

public boolean hasAgentPool()

Required. The agent pool to update. agent_pool is expected to specify following fields:

  • name
  • display_name
  • bandwidth_limit An UpdateAgentPoolRequest with any other fields is rejected with the error INVALID_ARGUMENT.

.google.storagetransfer.v1.AgentPool agent_pool = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
boolean

Whether the agentPool field is set.

hasUpdateMask()

public boolean hasUpdateMask()

The field mask of the fields in agentPool to update in this request. The following agentPool fields can be updated:

  • display_name
  • bandwidth_limit

.google.protobuf.FieldMask update_mask = 2;

Returns
TypeDescription
boolean

Whether the updateMask field is set.

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public TransferProto.UpdateAgentPoolRequest.Builder newBuilderForType()
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected TransferProto.UpdateAgentPoolRequest.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public TransferProto.UpdateAgentPoolRequest.Builder toBuilder()
Returns
TypeDescription
TransferProto.UpdateAgentPoolRequest.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides
Exceptions
TypeDescription
IOException