Interface CreateReservationRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateReservationRequest
,CreateReservationRequest.Builder
public interface CreateReservationRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.Reservation
getReservation()
Definition of the new reservation to create.String
getReservationId()
The reservation ID.com.google.protobuf.ByteString
getReservationIdBytes()
The reservation ID.ReservationOrBuilder
getReservationOrBuilder()
Definition of the new reservation to create.boolean
hasReservation()
Definition of the new reservation to create.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. Project, location. E.g., `projects/myproject/locations/US`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. Project, location. E.g., `projects/myproject/locations/US`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
getReservationId
String getReservationId()
The reservation ID. It must only contain lower case alphanumeric characters or dashes. It must start with a letter and must not end with a dash. Its maximum length is 64 characters.
string reservation_id = 2;
- Returns:
- The reservationId.
-
getReservationIdBytes
com.google.protobuf.ByteString getReservationIdBytes()
The reservation ID. It must only contain lower case alphanumeric characters or dashes. It must start with a letter and must not end with a dash. Its maximum length is 64 characters.
string reservation_id = 2;
- Returns:
- The bytes for reservationId.
-
hasReservation
boolean hasReservation()
Definition of the new reservation to create.
.google.cloud.bigquery.reservation.v1.Reservation reservation = 3;
- Returns:
- Whether the reservation field is set.
-
getReservation
Reservation getReservation()
Definition of the new reservation to create.
.google.cloud.bigquery.reservation.v1.Reservation reservation = 3;
- Returns:
- The reservation.
-
getReservationOrBuilder
ReservationOrBuilder getReservationOrBuilder()
Definition of the new reservation to create.
.google.cloud.bigquery.reservation.v1.Reservation reservation = 3;
-
-