Package com.google.cloud.compute.v1
Interface GlobalAddressesMoveRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GlobalAddressesMoveRequest,GlobalAddressesMoveRequest.Builder
public interface GlobalAddressesMoveRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()An optional destination address description if intended to be different from the source.com.google.protobuf.ByteStringgetDescriptionBytes()An optional destination address description if intended to be different from the source.StringgetDestinationAddress()The URL of the destination address to move to.com.google.protobuf.ByteStringgetDestinationAddressBytes()The URL of the destination address to move to.booleanhasDescription()An optional destination address description if intended to be different from the source.booleanhasDestinationAddress()The URL of the destination address to move to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDescription
boolean hasDescription()
An optional destination address description if intended to be different from the source.
optional string description = 422937596;- Returns:
- Whether the description field is set.
-
getDescription
String getDescription()
An optional destination address description if intended to be different from the source.
optional string description = 422937596;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
An optional destination address description if intended to be different from the source.
optional string description = 422937596;- Returns:
- The bytes for description.
-
hasDestinationAddress
boolean hasDestinationAddress()
The URL of the destination address to move to. This can be a full or partial URL. For example, the following are all valid URLs to a address: - https://www.googleapis.com/compute/v1/projects/project /global/addresses/address - projects/project/global/addresses/address Note that destination project must be different from the source project. So /global/addresses/address is not valid partial url.
optional string destination_address = 371693763;- Returns:
- Whether the destinationAddress field is set.
-
getDestinationAddress
String getDestinationAddress()
The URL of the destination address to move to. This can be a full or partial URL. For example, the following are all valid URLs to a address: - https://www.googleapis.com/compute/v1/projects/project /global/addresses/address - projects/project/global/addresses/address Note that destination project must be different from the source project. So /global/addresses/address is not valid partial url.
optional string destination_address = 371693763;- Returns:
- The destinationAddress.
-
getDestinationAddressBytes
com.google.protobuf.ByteString getDestinationAddressBytes()
The URL of the destination address to move to. This can be a full or partial URL. For example, the following are all valid URLs to a address: - https://www.googleapis.com/compute/v1/projects/project /global/addresses/address - projects/project/global/addresses/address Note that destination project must be different from the source project. So /global/addresses/address is not valid partial url.
optional string destination_address = 371693763;- Returns:
- The bytes for destinationAddress.
-
-