Class: Google::Apis::BigqueryreservationV1::MoveAssignmentRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryreservationV1::MoveAssignmentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigqueryreservation_v1/classes.rb,
generated/google/apis/bigqueryreservation_v1/representations.rb,
generated/google/apis/bigqueryreservation_v1/representations.rb
Overview
The request for ReservationService.MoveAssignment. Note: "bigquery.reservationAssignments.create" permission is required on the destination_id. Note: "bigquery.reservationAssignments.create" and "bigquery.reservationAssignments.delete" permission are required on the related assignee.
Instance Attribute Summary collapse
-
#destination_id ⇒ String
The new reservation ID, e.g.:
projects/myotherproject/locations/US/reservations/team2-prod
Corresponds to the JSON propertydestinationId
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MoveAssignmentRequest
constructor
A new instance of MoveAssignmentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MoveAssignmentRequest
Returns a new instance of MoveAssignmentRequest.
350 351 352 |
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 350 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination_id ⇒ String
The new reservation ID, e.g.:
projects/myotherproject/locations/US/reservations/team2-prod
Corresponds to the JSON property destinationId
348 349 350 |
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 348 def destination_id @destination_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
355 356 357 |
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 355 def update!(**args) @destination_id = args[:destination_id] if args.key?(:destination_id) end |