Package com.google.cloud.compute.v1
Interface RegionAddressesMoveRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RegionAddressesMoveRequest
,RegionAddressesMoveRequest.Builder
public interface RegionAddressesMoveRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
An optional destination address description if intended to be different from the source.com.google.protobuf.ByteString
getDescriptionBytes()
An optional destination address description if intended to be different from the source.String
getDestinationAddress()
The URL of the destination address to move to.com.google.protobuf.ByteString
getDestinationAddressBytes()
The URL of the destination address to move to.boolean
hasDescription()
An optional destination address description if intended to be different from the source.boolean
hasDestinationAddress()
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/regions/region /addresses/address - projects/project/regions/region/addresses/address Note that destination project must be different from the source project. So /regions/region/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/regions/region /addresses/address - projects/project/regions/region/addresses/address Note that destination project must be different from the source project. So /regions/region/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/regions/region /addresses/address - projects/project/regions/region/addresses/address Note that destination project must be different from the source project. So /regions/region/addresses/address is not valid partial url.
optional string destination_address = 371693763;
- Returns:
- The bytes for destinationAddress.
-
-