- 1.70.0 (latest)
- 1.69.0
- 1.68.0
- 1.67.0
- 1.66.2
- 1.65.0
- 1.64.0
- 1.63.1
- 1.62.0
- 1.61.0
- 1.60.0
- 1.59.1
- 1.58.0
- 1.57.1
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.2
- 1.50.0
- 1.49.0
- 1.48.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.36.0
- 1.35.0
- 1.34.1
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.2
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.1
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
Variables
Edition_name, Edition_value
var (
Edition_name = map[int32]string{
0: "EDITION_UNSPECIFIED",
1: "STANDARD",
2: "ENTERPRISE",
3: "ENTERPRISE_PLUS",
}
Edition_value = map[string]int32{
"EDITION_UNSPECIFIED": 0,
"STANDARD": 1,
"ENTERPRISE": 2,
"ENTERPRISE_PLUS": 3,
}
)
Enum value maps for Edition.
Reservation_ScalingMode_name, Reservation_ScalingMode_value
var (
Reservation_ScalingMode_name = map[int32]string{
0: "SCALING_MODE_UNSPECIFIED",
1: "AUTOSCALE_ONLY",
2: "IDLE_SLOTS_ONLY",
3: "ALL_SLOTS",
}
Reservation_ScalingMode_value = map[string]int32{
"SCALING_MODE_UNSPECIFIED": 0,
"AUTOSCALE_ONLY": 1,
"IDLE_SLOTS_ONLY": 2,
"ALL_SLOTS": 3,
}
)
Enum value maps for Reservation_ScalingMode.
CapacityCommitment_CommitmentPlan_name, CapacityCommitment_CommitmentPlan_value
var (
CapacityCommitment_CommitmentPlan_name = map[int32]string{
0: "COMMITMENT_PLAN_UNSPECIFIED",
3: "FLEX",
7: "FLEX_FLAT_RATE",
5: "TRIAL",
2: "MONTHLY",
8: "MONTHLY_FLAT_RATE",
4: "ANNUAL",
9: "ANNUAL_FLAT_RATE",
10: "THREE_YEAR",
6: "NONE",
}
CapacityCommitment_CommitmentPlan_value = map[string]int32{
"COMMITMENT_PLAN_UNSPECIFIED": 0,
"FLEX": 3,
"FLEX_FLAT_RATE": 7,
"TRIAL": 5,
"MONTHLY": 2,
"MONTHLY_FLAT_RATE": 8,
"ANNUAL": 4,
"ANNUAL_FLAT_RATE": 9,
"THREE_YEAR": 10,
"NONE": 6,
}
)
Enum value maps for CapacityCommitment_CommitmentPlan.
CapacityCommitment_State_name, CapacityCommitment_State_value
var (
CapacityCommitment_State_name = map[int32]string{
0: "STATE_UNSPECIFIED",
1: "PENDING",
2: "ACTIVE",
3: "FAILED",
}
CapacityCommitment_State_value = map[string]int32{
"STATE_UNSPECIFIED": 0,
"PENDING": 1,
"ACTIVE": 2,
"FAILED": 3,
}
)
Enum value maps for CapacityCommitment_State.
Assignment_JobType_name, Assignment_JobType_value
var (
Assignment_JobType_name = map[int32]string{
0: "JOB_TYPE_UNSPECIFIED",
1: "PIPELINE",
2: "QUERY",
3: "ML_EXTERNAL",
4: "BACKGROUND",
6: "CONTINUOUS",
}
Assignment_JobType_value = map[string]int32{
"JOB_TYPE_UNSPECIFIED": 0,
"PIPELINE": 1,
"QUERY": 2,
"ML_EXTERNAL": 3,
"BACKGROUND": 4,
"CONTINUOUS": 6,
}
)
Enum value maps for Assignment_JobType.
Assignment_State_name, Assignment_State_value
var (
Assignment_State_name = map[int32]string{
0: "STATE_UNSPECIFIED",
1: "PENDING",
2: "ACTIVE",
}
Assignment_State_value = map[string]int32{
"STATE_UNSPECIFIED": 0,
"PENDING": 1,
"ACTIVE": 2,
}
)
Enum value maps for Assignment_State.
File_google_cloud_bigquery_reservation_v1_reservation_proto
var File_google_cloud_bigquery_reservation_v1_reservation_proto protoreflect.FileDescriptor
Functions
func RegisterReservationServiceServer
func RegisterReservationServiceServer(s *grpc.Server, srv ReservationServiceServer)
Assignment
type Assignment struct {
// Output only. Name of the resource. E.g.:
// `projects/myproject/locations/US/reservations/team1-prod/assignments/123`.
// The assignment_id must only contain lower case alphanumeric characters or
// dashes and the max length is 64 characters.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// The resource which will use the reservation. E.g.
// `projects/myproject`, `folders/123`, or `organizations/456`.
Assignee string `protobuf:"bytes,4,opt,name=assignee,proto3" json:"assignee,omitempty"`
// Which type of jobs will use the reservation.
JobType Assignment_JobType `protobuf:"varint,3,opt,name=job_type,json=jobType,proto3,enum=google.cloud.bigquery.reservation.v1.Assignment_JobType" json:"job_type,omitempty"`
// Output only. State of the assignment.
State Assignment_State `protobuf:"varint,6,opt,name=state,proto3,enum=google.cloud.bigquery.reservation.v1.Assignment_State" json:"state,omitempty"`
// Optional. This field controls if "Gemini in BigQuery"
// (https://cloud.google.com/gemini/docs/bigquery/overview) features should be
// enabled for this reservation assignment, which is not on by default.
// "Gemini in BigQuery" has a distinct compliance posture from BigQuery. If
// this field is set to true, the assignment job type is QUERY, and
// the parent reservation edition is ENTERPRISE_PLUS, then the assignment will
// give the grantee project/organization access to "Gemini in BigQuery"
// features.
EnableGeminiInBigquery bool `protobuf:"varint,10,opt,name=enable_gemini_in_bigquery,json=enableGeminiInBigquery,proto3" json:"enable_gemini_in_bigquery,omitempty"`
// contains filtered or unexported fields
}
An assignment allows a project to submit jobs of a certain type using slots from the specified reservation.
func (*Assignment) Descriptor
func (*Assignment) Descriptor() ([]byte, []int)
Deprecated: Use Assignment.ProtoReflect.Descriptor instead.
func (*Assignment) GetAssignee
func (x *Assignment) GetAssignee() string
func (*Assignment) GetEnableGeminiInBigquery
func (x *Assignment) GetEnableGeminiInBigquery() bool
func (*Assignment) GetJobType
func (x *Assignment) GetJobType() Assignment_JobType
func (*Assignment) GetName
func (x *Assignment) GetName() string
func (*Assignment) GetState
func (x *Assignment) GetState() Assignment_State
func (*Assignment) ProtoMessage
func (*Assignment) ProtoMessage()
func (*Assignment) ProtoReflect
func (x *Assignment) ProtoReflect() protoreflect.Message
func (*Assignment) Reset
func (x *Assignment) Reset()
func (*Assignment) String
func (x *Assignment) String() string
Assignment_JobType
type Assignment_JobType int32
Types of job, which could be specified when using the reservation.
Assignment_JOB_TYPE_UNSPECIFIED, Assignment_PIPELINE, Assignment_QUERY, Assignment_ML_EXTERNAL, Assignment_BACKGROUND, Assignment_CONTINUOUS
const (
// Invalid type. Requests with this value will be rejected with
// error code `google.rpc.Code.INVALID_ARGUMENT`.
Assignment_JOB_TYPE_UNSPECIFIED Assignment_JobType = 0
// Pipeline (load/export) jobs from the project will use the reservation.
Assignment_PIPELINE Assignment_JobType = 1
// Query jobs from the project will use the reservation.
Assignment_QUERY Assignment_JobType = 2
// BigQuery ML jobs that use services external to BigQuery for model
// training. These jobs will not utilize idle slots from other reservations.
Assignment_ML_EXTERNAL Assignment_JobType = 3
// Background jobs that BigQuery runs for the customers in the background.
Assignment_BACKGROUND Assignment_JobType = 4
// Continuous SQL jobs will use this reservation. Reservations with
// continuous assignments cannot be mixed with non-continuous assignments.
Assignment_CONTINUOUS Assignment_JobType = 6
)
func (Assignment_JobType) Descriptor
func (Assignment_JobType) Descriptor() protoreflect.EnumDescriptor
func (Assignment_JobType) Enum
func (x Assignment_JobType) Enum() *Assignment_JobType
func (Assignment_JobType) EnumDescriptor
func (Assignment_JobType) EnumDescriptor() ([]byte, []int)
Deprecated: Use Assignment_JobType.Descriptor instead.
func (Assignment_JobType) Number
func (x Assignment_JobType) Number() protoreflect.EnumNumber
func (Assignment_JobType) String
func (x Assignment_JobType) String() string
func (Assignment_JobType) Type
func (Assignment_JobType) Type() protoreflect.EnumType
Assignment_State
type Assignment_State int32
Assignment will remain in PENDING state if no active capacity commitment is present. It will become ACTIVE when some capacity commitment becomes active.
Assignment_STATE_UNSPECIFIED, Assignment_PENDING, Assignment_ACTIVE
const (
// Invalid state value.
Assignment_STATE_UNSPECIFIED Assignment_State = 0
// Queries from assignee will be executed as on-demand, if related
// assignment is pending.
Assignment_PENDING Assignment_State = 1
// Assignment is ready.
Assignment_ACTIVE Assignment_State = 2
)
func (Assignment_State) Descriptor
func (Assignment_State) Descriptor() protoreflect.EnumDescriptor
func (Assignment_State) Enum
func (x Assignment_State) Enum() *Assignment_State
func (Assignment_State) EnumDescriptor
func (Assignment_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use Assignment_State.Descriptor instead.
func (Assignment_State) Number
func (x Assignment_State) Number() protoreflect.EnumNumber
func (Assignment_State) String
func (x Assignment_State) String() string
func (Assignment_State) Type
func (Assignment_State) Type() protoreflect.EnumType
BiReservation
type BiReservation struct {
// The resource name of the singleton BI reservation.
// Reservation names have the form
// `projects/{project_id}/locations/{location_id}/biReservation`.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Output only. The last update timestamp of a reservation.
UpdateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
// Size of a reservation, in bytes.
Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
// Preferred tables to use BI capacity for.
PreferredTables []*TableReference `protobuf:"bytes,5,rep,name=preferred_tables,json=preferredTables,proto3" json:"preferred_tables,omitempty"`
// contains filtered or unexported fields
}
Represents a BI Reservation.
func (*BiReservation) Descriptor
func (*BiReservation) Descriptor() ([]byte, []int)
Deprecated: Use BiReservation.ProtoReflect.Descriptor instead.
func (*BiReservation) GetName
func (x *BiReservation) GetName() string
func (*BiReservation) GetPreferredTables
func (x *BiReservation) GetPreferredTables() []*TableReference
func (*BiReservation) GetSize
func (x *BiReservation) GetSize() int64
func (*BiReservation) GetUpdateTime
func (x *BiReservation) GetUpdateTime() *timestamppb.Timestamp
func (*BiReservation) ProtoMessage
func (*BiReservation) ProtoMessage()
func (*BiReservation) ProtoReflect
func (x *BiReservation) ProtoReflect() protoreflect.Message
func (*BiReservation) Reset
func (x *BiReservation) Reset()
func (*BiReservation) String
func (x *BiReservation) String() string
CapacityCommitment
type CapacityCommitment struct {
// Output only. The resource name of the capacity commitment, e.g.,
// `projects/myproject/locations/US/capacityCommitments/123`
// The commitment_id 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.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Number of slots in this commitment.
SlotCount int64 `protobuf:"varint,2,opt,name=slot_count,json=slotCount,proto3" json:"slot_count,omitempty"`
// Capacity commitment commitment plan.
Plan CapacityCommitment_CommitmentPlan `protobuf:"varint,3,opt,name=plan,proto3,enum=google.cloud.bigquery.reservation.v1.CapacityCommitment_CommitmentPlan" json:"plan,omitempty"`
// Output only. State of the commitment.
State CapacityCommitment_State `protobuf:"varint,4,opt,name=state,proto3,enum=google.cloud.bigquery.reservation.v1.CapacityCommitment_State" json:"state,omitempty"`
// Output only. The start of the current commitment period. It is applicable
// only for ACTIVE capacity commitments. Note after the commitment is renewed,
// commitment_start_time won't be changed. It refers to the start time of the
// original commitment.
CommitmentStartTime *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=commitment_start_time,json=commitmentStartTime,proto3" json:"commitment_start_time,omitempty"`
// Output only. The end of the current commitment period. It is applicable
// only for ACTIVE capacity commitments. Note after renewal,
// commitment_end_time is the time the renewed commitment expires. So it would
// be at a time after commitment_start_time + committed period, because we
// don't change commitment_start_time ,
CommitmentEndTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=commitment_end_time,json=commitmentEndTime,proto3" json:"commitment_end_time,omitempty"`
// Output only. For FAILED commitment plan, provides the reason of failure.
FailureStatus *status.Status `protobuf:"bytes,7,opt,name=failure_status,json=failureStatus,proto3" json:"failure_status,omitempty"`
// The plan this capacity commitment is converted to after commitment_end_time
// passes. Once the plan is changed, committed period is extended according to
// commitment plan. Only applicable for ANNUAL and TRIAL commitments.
RenewalPlan CapacityCommitment_CommitmentPlan `protobuf:"varint,8,opt,name=renewal_plan,json=renewalPlan,proto3,enum=google.cloud.bigquery.reservation.v1.CapacityCommitment_CommitmentPlan" json:"renewal_plan,omitempty"`
// Applicable only for commitments located within one of the BigQuery
// multi-regions (US or EU).
//
// If set to true, this commitment is placed in the organization's
// secondary region which is designated for disaster recovery purposes.
// If false, this commitment is placed in the organization's default region.
//
// NOTE: this is a preview feature. Project must be allow-listed in order to
// set this field.
MultiRegionAuxiliary bool `protobuf:"varint,10,opt,name=multi_region_auxiliary,json=multiRegionAuxiliary,proto3" json:"multi_region_auxiliary,omitempty"`
// Edition of the capacity commitment.
Edition Edition `protobuf:"varint,12,opt,name=edition,proto3,enum=google.cloud.bigquery.reservation.v1.Edition" json:"edition,omitempty"`
// Output only. If true, the commitment is a flat-rate commitment, otherwise,
// it's an edition commitment.
IsFlatRate bool `protobuf:"varint,14,opt,name=is_flat_rate,json=isFlatRate,proto3" json:"is_flat_rate,omitempty"`
// contains filtered or unexported fields
}
Capacity commitment is a way to purchase compute capacity for BigQuery jobs (in the form of slots) with some committed period of usage. Annual commitments renew by default. Commitments can be removed after their commitment end time passes.
In order to remove annual commitment, its plan needs to be changed to monthly or flex first.
A capacity commitment resource exists as a child resource of the admin project.
func (*CapacityCommitment) Descriptor
func (*CapacityCommitment) Descriptor() ([]byte, []int)
Deprecated: Use CapacityCommitment.ProtoReflect.Descriptor instead.
func (*CapacityCommitment) GetCommitmentEndTime
func (x *CapacityCommitment) GetCommitmentEndTime() *timestamppb.Timestamp
func (*CapacityCommitment) GetCommitmentStartTime
func (x *CapacityCommitment) GetCommitmentStartTime() *timestamppb.Timestamp
func (*CapacityCommitment) GetEdition
func (x *CapacityCommitment) GetEdition() Edition
func (*CapacityCommitment) GetFailureStatus
func (x *CapacityCommitment) GetFailureStatus() *status.Status
func (*CapacityCommitment) GetIsFlatRate
func (x *CapacityCommitment) GetIsFlatRate() bool
func (*CapacityCommitment) GetMultiRegionAuxiliary
func (x *CapacityCommitment) GetMultiRegionAuxiliary() bool
func (*CapacityCommitment) GetName
func (x *CapacityCommitment) GetName() string
func (*CapacityCommitment) GetPlan
func (x *CapacityCommitment) GetPlan() CapacityCommitment_CommitmentPlan
func (*CapacityCommitment) GetRenewalPlan
func (x *CapacityCommitment) GetRenewalPlan() CapacityCommitment_CommitmentPlan
func (*CapacityCommitment) GetSlotCount
func (x *CapacityCommitment) GetSlotCount() int64
func (*CapacityCommitment) GetState
func (x *CapacityCommitment) GetState() CapacityCommitment_State
func (*CapacityCommitment) ProtoMessage
func (*CapacityCommitment) ProtoMessage()
func (*CapacityCommitment) ProtoReflect
func (x *CapacityCommitment) ProtoReflect() protoreflect.Message
func (*CapacityCommitment) Reset
func (x *CapacityCommitment) Reset()
func (*CapacityCommitment) String
func (x *CapacityCommitment) String() string
CapacityCommitment_CommitmentPlan
type CapacityCommitment_CommitmentPlan int32
Commitment plan defines the current committed period. Capacity commitment cannot be deleted during it's committed period.
CapacityCommitment_COMMITMENT_PLAN_UNSPECIFIED, CapacityCommitment_FLEX, CapacityCommitment_FLEX_FLAT_RATE, CapacityCommitment_TRIAL, CapacityCommitment_MONTHLY, CapacityCommitment_MONTHLY_FLAT_RATE, CapacityCommitment_ANNUAL, CapacityCommitment_ANNUAL_FLAT_RATE, CapacityCommitment_THREE_YEAR, CapacityCommitment_NONE
const (
// Invalid plan value. Requests with this value will be rejected with
// error code `google.rpc.Code.INVALID_ARGUMENT`.
CapacityCommitment_COMMITMENT_PLAN_UNSPECIFIED CapacityCommitment_CommitmentPlan = 0
// Flex commitments have committed period of 1 minute after becoming ACTIVE.
// After that, they are not in a committed period anymore and can be removed
// any time.
CapacityCommitment_FLEX CapacityCommitment_CommitmentPlan = 3
// Same as FLEX, should only be used if flat-rate commitments are still
// available.
//
// Deprecated: Marked as deprecated in google/cloud/bigquery/reservation/v1/reservation.proto.
CapacityCommitment_FLEX_FLAT_RATE CapacityCommitment_CommitmentPlan = 7
// Trial commitments have a committed period of 182 days after becoming
// ACTIVE. After that, they are converted to a new commitment based on the
// `renewal_plan`. Default `renewal_plan` for Trial commitment is Flex so
// that it can be deleted right after committed period ends.
//
// Deprecated: Marked as deprecated in google/cloud/bigquery/reservation/v1/reservation.proto.
CapacityCommitment_TRIAL CapacityCommitment_CommitmentPlan = 5
// Monthly commitments have a committed period of 30 days after becoming
// ACTIVE. After that, they are not in a committed period anymore and can be
// removed any time.
CapacityCommitment_MONTHLY CapacityCommitment_CommitmentPlan = 2
// Same as MONTHLY, should only be used if flat-rate commitments are still
// available.
//
// Deprecated: Marked as deprecated in google/cloud/bigquery/reservation/v1/reservation.proto.
CapacityCommitment_MONTHLY_FLAT_RATE CapacityCommitment_CommitmentPlan = 8
// Annual commitments have a committed period of 365 days after becoming
// ACTIVE. After that they are converted to a new commitment based on the
// renewal_plan.
CapacityCommitment_ANNUAL CapacityCommitment_CommitmentPlan = 4
// Same as ANNUAL, should only be used if flat-rate commitments are still
// available.
//
// Deprecated: Marked as deprecated in google/cloud/bigquery/reservation/v1/reservation.proto.
CapacityCommitment_ANNUAL_FLAT_RATE CapacityCommitment_CommitmentPlan = 9
// 3-year commitments have a committed period of 1095(3 * 365) days after
// becoming ACTIVE. After that they are converted to a new commitment based
// on the renewal_plan.
CapacityCommitment_THREE_YEAR CapacityCommitment_CommitmentPlan = 10
// Should only be used for `renewal_plan` and is only meaningful if
// edition is specified to values other than EDITION_UNSPECIFIED. Otherwise
// CreateCapacityCommitmentRequest or UpdateCapacityCommitmentRequest will
// be rejected with error code `google.rpc.Code.INVALID_ARGUMENT`. If the
// renewal_plan is NONE, capacity commitment will be removed at the end of
// its commitment period.
CapacityCommitment_NONE CapacityCommitment_CommitmentPlan = 6
)
func (CapacityCommitment_CommitmentPlan) Descriptor
func (CapacityCommitment_CommitmentPlan) Descriptor() protoreflect.EnumDescriptor
func (CapacityCommitment_CommitmentPlan) Enum
func (x CapacityCommitment_CommitmentPlan) Enum() *CapacityCommitment_CommitmentPlan
func (CapacityCommitment_CommitmentPlan) EnumDescriptor
func (CapacityCommitment_CommitmentPlan) EnumDescriptor() ([]byte, []int)
Deprecated: Use CapacityCommitment_CommitmentPlan.Descriptor instead.
func (CapacityCommitment_CommitmentPlan) Number
func (x CapacityCommitment_CommitmentPlan) Number() protoreflect.EnumNumber
func (CapacityCommitment_CommitmentPlan) String
func (x CapacityCommitment_CommitmentPlan) String() string
func (CapacityCommitment_CommitmentPlan) Type
func (CapacityCommitment_CommitmentPlan) Type() protoreflect.EnumType
CapacityCommitment_State
type CapacityCommitment_State int32
Capacity commitment can either become ACTIVE right away or transition from PENDING to ACTIVE or FAILED.
CapacityCommitment_STATE_UNSPECIFIED, CapacityCommitment_PENDING, CapacityCommitment_ACTIVE, CapacityCommitment_FAILED
const (
// Invalid state value.
CapacityCommitment_STATE_UNSPECIFIED CapacityCommitment_State = 0
// Capacity commitment is pending provisioning. Pending capacity commitment
// does not contribute to the project's slot_capacity.
CapacityCommitment_PENDING CapacityCommitment_State = 1
// Once slots are provisioned, capacity commitment becomes active.
// slot_count is added to the project's slot_capacity.
CapacityCommitment_ACTIVE CapacityCommitment_State = 2
// Capacity commitment is failed to be activated by the backend.
CapacityCommitment_FAILED CapacityCommitment_State = 3
)
func (CapacityCommitment_State) Descriptor
func (CapacityCommitment_State) Descriptor() protoreflect.EnumDescriptor
func (CapacityCommitment_State) Enum
func (x CapacityCommitment_State) Enum() *CapacityCommitment_State
func (CapacityCommitment_State) EnumDescriptor
func (CapacityCommitment_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use CapacityCommitment_State.Descriptor instead.
func (CapacityCommitment_State) Number
func (x CapacityCommitment_State) Number() protoreflect.EnumNumber
func (CapacityCommitment_State) String
func (x CapacityCommitment_State) String() string
func (CapacityCommitment_State) Type
func (CapacityCommitment_State) Type() protoreflect.EnumType
CreateAssignmentRequest
type CreateAssignmentRequest struct {
// Required. The parent resource name of the assignment
// E.g. `projects/myproject/locations/US/reservations/team1-prod`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// Assignment resource to create.
Assignment *Assignment `protobuf:"bytes,2,opt,name=assignment,proto3" json:"assignment,omitempty"`
// The optional assignment ID. Assignment name will be generated automatically
// if this field is empty.
// This field must only contain lower case alphanumeric characters or dashes.
// Max length is 64 characters.
AssignmentId string `protobuf:"bytes,4,opt,name=assignment_id,json=assignmentId,proto3" json:"assignment_id,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.CreateAssignment][google.cloud.bigquery.reservation.v1.ReservationService.CreateAssignment]. Note: "bigquery.reservationAssignments.create" permission is required on the related assignee.
func (*CreateAssignmentRequest) Descriptor
func (*CreateAssignmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateAssignmentRequest.ProtoReflect.Descriptor instead.
func (*CreateAssignmentRequest) GetAssignment
func (x *CreateAssignmentRequest) GetAssignment() *Assignment
func (*CreateAssignmentRequest) GetAssignmentId
func (x *CreateAssignmentRequest) GetAssignmentId() string
func (*CreateAssignmentRequest) GetParent
func (x *CreateAssignmentRequest) GetParent() string
func (*CreateAssignmentRequest) ProtoMessage
func (*CreateAssignmentRequest) ProtoMessage()
func (*CreateAssignmentRequest) ProtoReflect
func (x *CreateAssignmentRequest) ProtoReflect() protoreflect.Message
func (*CreateAssignmentRequest) Reset
func (x *CreateAssignmentRequest) Reset()
func (*CreateAssignmentRequest) String
func (x *CreateAssignmentRequest) String() string
CreateCapacityCommitmentRequest
type CreateCapacityCommitmentRequest struct {
// Required. Resource name of the parent reservation. E.g.,
//
// `projects/myproject/locations/US`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// Content of the capacity commitment to create.
CapacityCommitment *CapacityCommitment `protobuf:"bytes,2,opt,name=capacity_commitment,json=capacityCommitment,proto3" json:"capacity_commitment,omitempty"`
// If true, fail the request if another project in the organization has a
// capacity commitment.
EnforceSingleAdminProjectPerOrg bool `protobuf:"varint,4,opt,name=enforce_single_admin_project_per_org,json=enforceSingleAdminProjectPerOrg,proto3" json:"enforce_single_admin_project_per_org,omitempty"`
// The optional capacity commitment ID. Capacity commitment name will be
// generated automatically if this field is empty.
// This field must only contain lower case alphanumeric characters or dashes.
// The first and last character cannot be a dash. Max length is 64 characters.
// NOTE: this ID won't be kept if the capacity commitment is split or merged.
CapacityCommitmentId string `protobuf:"bytes,5,opt,name=capacity_commitment_id,json=capacityCommitmentId,proto3" json:"capacity_commitment_id,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.CreateCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.CreateCapacityCommitment].
func (*CreateCapacityCommitmentRequest) Descriptor
func (*CreateCapacityCommitmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateCapacityCommitmentRequest.ProtoReflect.Descriptor instead.
func (*CreateCapacityCommitmentRequest) GetCapacityCommitment
func (x *CreateCapacityCommitmentRequest) GetCapacityCommitment() *CapacityCommitment
func (*CreateCapacityCommitmentRequest) GetCapacityCommitmentId
func (x *CreateCapacityCommitmentRequest) GetCapacityCommitmentId() string
func (*CreateCapacityCommitmentRequest) GetEnforceSingleAdminProjectPerOrg
func (x *CreateCapacityCommitmentRequest) GetEnforceSingleAdminProjectPerOrg() bool
func (*CreateCapacityCommitmentRequest) GetParent
func (x *CreateCapacityCommitmentRequest) GetParent() string
func (*CreateCapacityCommitmentRequest) ProtoMessage
func (*CreateCapacityCommitmentRequest) ProtoMessage()
func (*CreateCapacityCommitmentRequest) ProtoReflect
func (x *CreateCapacityCommitmentRequest) ProtoReflect() protoreflect.Message
func (*CreateCapacityCommitmentRequest) Reset
func (x *CreateCapacityCommitmentRequest) Reset()
func (*CreateCapacityCommitmentRequest) String
func (x *CreateCapacityCommitmentRequest) String() string
CreateReservationRequest
type CreateReservationRequest struct {
// Required. Project, location. E.g.,
// `projects/myproject/locations/US`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// 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.
ReservationId string `protobuf:"bytes,2,opt,name=reservation_id,json=reservationId,proto3" json:"reservation_id,omitempty"`
// Definition of the new reservation to create.
Reservation *Reservation `protobuf:"bytes,3,opt,name=reservation,proto3" json:"reservation,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.CreateReservation][google.cloud.bigquery.reservation.v1.ReservationService.CreateReservation].
func (*CreateReservationRequest) Descriptor
func (*CreateReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateReservationRequest.ProtoReflect.Descriptor instead.
func (*CreateReservationRequest) GetParent
func (x *CreateReservationRequest) GetParent() string
func (*CreateReservationRequest) GetReservation
func (x *CreateReservationRequest) GetReservation() *Reservation
func (*CreateReservationRequest) GetReservationId
func (x *CreateReservationRequest) GetReservationId() string
func (*CreateReservationRequest) ProtoMessage
func (*CreateReservationRequest) ProtoMessage()
func (*CreateReservationRequest) ProtoReflect
func (x *CreateReservationRequest) ProtoReflect() protoreflect.Message
func (*CreateReservationRequest) Reset
func (x *CreateReservationRequest) Reset()
func (*CreateReservationRequest) String
func (x *CreateReservationRequest) String() string
DeleteAssignmentRequest
type DeleteAssignmentRequest struct {
// Required. Name of the resource, e.g.
//
// `projects/myproject/locations/US/reservations/team1-prod/assignments/123`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.DeleteAssignment][google.cloud.bigquery.reservation.v1.ReservationService.DeleteAssignment]. Note: "bigquery.reservationAssignments.delete" permission is required on the related assignee.
func (*DeleteAssignmentRequest) Descriptor
func (*DeleteAssignmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteAssignmentRequest.ProtoReflect.Descriptor instead.
func (*DeleteAssignmentRequest) GetName
func (x *DeleteAssignmentRequest) GetName() string
func (*DeleteAssignmentRequest) ProtoMessage
func (*DeleteAssignmentRequest) ProtoMessage()
func (*DeleteAssignmentRequest) ProtoReflect
func (x *DeleteAssignmentRequest) ProtoReflect() protoreflect.Message
func (*DeleteAssignmentRequest) Reset
func (x *DeleteAssignmentRequest) Reset()
func (*DeleteAssignmentRequest) String
func (x *DeleteAssignmentRequest) String() string
DeleteCapacityCommitmentRequest
type DeleteCapacityCommitmentRequest struct {
// Required. Resource name of the capacity commitment to delete. E.g.,
//
// `projects/myproject/locations/US/capacityCommitments/123`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Can be used to force delete commitments even if assignments exist. Deleting
// commitments with assignments may cause queries to fail if they no longer
// have access to slots.
Force bool `protobuf:"varint,3,opt,name=force,proto3" json:"force,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.DeleteCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.DeleteCapacityCommitment].
func (*DeleteCapacityCommitmentRequest) Descriptor
func (*DeleteCapacityCommitmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteCapacityCommitmentRequest.ProtoReflect.Descriptor instead.
func (*DeleteCapacityCommitmentRequest) GetForce
func (x *DeleteCapacityCommitmentRequest) GetForce() bool
func (*DeleteCapacityCommitmentRequest) GetName
func (x *DeleteCapacityCommitmentRequest) GetName() string
func (*DeleteCapacityCommitmentRequest) ProtoMessage
func (*DeleteCapacityCommitmentRequest) ProtoMessage()
func (*DeleteCapacityCommitmentRequest) ProtoReflect
func (x *DeleteCapacityCommitmentRequest) ProtoReflect() protoreflect.Message
func (*DeleteCapacityCommitmentRequest) Reset
func (x *DeleteCapacityCommitmentRequest) Reset()
func (*DeleteCapacityCommitmentRequest) String
func (x *DeleteCapacityCommitmentRequest) String() string
DeleteReservationRequest
type DeleteReservationRequest struct {
// Required. Resource name of the reservation to retrieve. E.g.,
//
// `projects/myproject/locations/US/reservations/team1-prod`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.DeleteReservation][google.cloud.bigquery.reservation.v1.ReservationService.DeleteReservation].
func (*DeleteReservationRequest) Descriptor
func (*DeleteReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteReservationRequest.ProtoReflect.Descriptor instead.
func (*DeleteReservationRequest) GetName
func (x *DeleteReservationRequest) GetName() string
func (*DeleteReservationRequest) ProtoMessage
func (*DeleteReservationRequest) ProtoMessage()
func (*DeleteReservationRequest) ProtoReflect
func (x *DeleteReservationRequest) ProtoReflect() protoreflect.Message
func (*DeleteReservationRequest) Reset
func (x *DeleteReservationRequest) Reset()
func (*DeleteReservationRequest) String
func (x *DeleteReservationRequest) String() string
Edition
type Edition int32
The type of editions. Different features and behaviors are provided to different editions Capacity commitments and reservations are linked to editions.
Edition_EDITION_UNSPECIFIED, Edition_STANDARD, Edition_ENTERPRISE, Edition_ENTERPRISE_PLUS
const (
// Default value, which will be treated as ENTERPRISE.
Edition_EDITION_UNSPECIFIED Edition = 0
// Standard edition.
Edition_STANDARD Edition = 1
// Enterprise edition.
Edition_ENTERPRISE Edition = 2
// Enterprise Plus edition.
Edition_ENTERPRISE_PLUS Edition = 3
)
func (Edition) Descriptor
func (Edition) Descriptor() protoreflect.EnumDescriptor
func (Edition) Enum
func (Edition) EnumDescriptor
Deprecated: Use Edition.Descriptor instead.
func (Edition) Number
func (x Edition) Number() protoreflect.EnumNumber
func (Edition) String
func (Edition) Type
func (Edition) Type() protoreflect.EnumType
FailoverReservationRequest
type FailoverReservationRequest struct {
// Required. Resource name of the reservation to failover. E.g.,
//
// `projects/myproject/locations/US/reservations/team1-prod`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// contains filtered or unexported fields
}
The request for ReservationService.FailoverReservation.
func (*FailoverReservationRequest) Descriptor
func (*FailoverReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use FailoverReservationRequest.ProtoReflect.Descriptor instead.
func (*FailoverReservationRequest) GetName
func (x *FailoverReservationRequest) GetName() string
func (*FailoverReservationRequest) ProtoMessage
func (*FailoverReservationRequest) ProtoMessage()
func (*FailoverReservationRequest) ProtoReflect
func (x *FailoverReservationRequest) ProtoReflect() protoreflect.Message
func (*FailoverReservationRequest) Reset
func (x *FailoverReservationRequest) Reset()
func (*FailoverReservationRequest) String
func (x *FailoverReservationRequest) String() string
GetBiReservationRequest
type GetBiReservationRequest struct {
// Required. Name of the requested reservation, for example:
// `projects/{project_id}/locations/{location_id}/biReservation`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// contains filtered or unexported fields
}
A request to get a singleton BI reservation.
func (*GetBiReservationRequest) Descriptor
func (*GetBiReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetBiReservationRequest.ProtoReflect.Descriptor instead.
func (*GetBiReservationRequest) GetName
func (x *GetBiReservationRequest) GetName() string
func (*GetBiReservationRequest) ProtoMessage
func (*GetBiReservationRequest) ProtoMessage()
func (*GetBiReservationRequest) ProtoReflect
func (x *GetBiReservationRequest) ProtoReflect() protoreflect.Message
func (*GetBiReservationRequest) Reset
func (x *GetBiReservationRequest) Reset()
func (*GetBiReservationRequest) String
func (x *GetBiReservationRequest) String() string
GetCapacityCommitmentRequest
type GetCapacityCommitmentRequest struct {
// Required. Resource name of the capacity commitment to retrieve. E.g.,
//
// `projects/myproject/locations/US/capacityCommitments/123`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.GetCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.GetCapacityCommitment].
func (*GetCapacityCommitmentRequest) Descriptor
func (*GetCapacityCommitmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetCapacityCommitmentRequest.ProtoReflect.Descriptor instead.
func (*GetCapacityCommitmentRequest) GetName
func (x *GetCapacityCommitmentRequest) GetName() string
func (*GetCapacityCommitmentRequest) ProtoMessage
func (*GetCapacityCommitmentRequest) ProtoMessage()
func (*GetCapacityCommitmentRequest) ProtoReflect
func (x *GetCapacityCommitmentRequest) ProtoReflect() protoreflect.Message
func (*GetCapacityCommitmentRequest) Reset
func (x *GetCapacityCommitmentRequest) Reset()
func (*GetCapacityCommitmentRequest) String
func (x *GetCapacityCommitmentRequest) String() string
GetReservationRequest
type GetReservationRequest struct {
// Required. Resource name of the reservation to retrieve. E.g.,
//
// `projects/myproject/locations/US/reservations/team1-prod`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.GetReservation][google.cloud.bigquery.reservation.v1.ReservationService.GetReservation].
func (*GetReservationRequest) Descriptor
func (*GetReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetReservationRequest.ProtoReflect.Descriptor instead.
func (*GetReservationRequest) GetName
func (x *GetReservationRequest) GetName() string
func (*GetReservationRequest) ProtoMessage
func (*GetReservationRequest) ProtoMessage()
func (*GetReservationRequest) ProtoReflect
func (x *GetReservationRequest) ProtoReflect() protoreflect.Message
func (*GetReservationRequest) Reset
func (x *GetReservationRequest) Reset()
func (*GetReservationRequest) String
func (x *GetReservationRequest) String() string
ListAssignmentsRequest
type ListAssignmentsRequest struct {
// Required. The parent resource name e.g.:
//
// `projects/myproject/locations/US/reservations/team1-prod`
//
// Or:
//
// `projects/myproject/locations/US/reservations/-`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// The maximum number of items to return per page.
PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// The next_page_token value returned from a previous List request, if any.
PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.ListAssignments][google.cloud.bigquery.reservation.v1.ReservationService.ListAssignments].
func (*ListAssignmentsRequest) Descriptor
func (*ListAssignmentsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListAssignmentsRequest.ProtoReflect.Descriptor instead.
func (*ListAssignmentsRequest) GetPageSize
func (x *ListAssignmentsRequest) GetPageSize() int32
func (*ListAssignmentsRequest) GetPageToken
func (x *ListAssignmentsRequest) GetPageToken() string
func (*ListAssignmentsRequest) GetParent
func (x *ListAssignmentsRequest) GetParent() string
func (*ListAssignmentsRequest) ProtoMessage
func (*ListAssignmentsRequest) ProtoMessage()
func (*ListAssignmentsRequest) ProtoReflect
func (x *ListAssignmentsRequest) ProtoReflect() protoreflect.Message
func (*ListAssignmentsRequest) Reset
func (x *ListAssignmentsRequest) Reset()
func (*ListAssignmentsRequest) String
func (x *ListAssignmentsRequest) String() string
ListAssignmentsResponse
type ListAssignmentsResponse struct {
// List of assignments visible to the user.
Assignments []*Assignment `protobuf:"bytes,1,rep,name=assignments,proto3" json:"assignments,omitempty"`
// Token to retrieve the next page of results, or empty if there are no
// more results in the list.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
// contains filtered or unexported fields
}
The response for [ReservationService.ListAssignments][google.cloud.bigquery.reservation.v1.ReservationService.ListAssignments].
func (*ListAssignmentsResponse) Descriptor
func (*ListAssignmentsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListAssignmentsResponse.ProtoReflect.Descriptor instead.
func (*ListAssignmentsResponse) GetAssignments
func (x *ListAssignmentsResponse) GetAssignments() []*Assignment
func (*ListAssignmentsResponse) GetNextPageToken
func (x *ListAssignmentsResponse) GetNextPageToken() string
func (*ListAssignmentsResponse) ProtoMessage
func (*ListAssignmentsResponse) ProtoMessage()
func (*ListAssignmentsResponse) ProtoReflect
func (x *ListAssignmentsResponse) ProtoReflect() protoreflect.Message
func (*ListAssignmentsResponse) Reset
func (x *ListAssignmentsResponse) Reset()
func (*ListAssignmentsResponse) String
func (x *ListAssignmentsResponse) String() string
ListCapacityCommitmentsRequest
type ListCapacityCommitmentsRequest struct {
// Required. Resource name of the parent reservation. E.g.,
//
// `projects/myproject/locations/US`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// The maximum number of items to return.
PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// The next_page_token value returned from a previous List request, if any.
PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.ListCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.ListCapacityCommitments].
func (*ListCapacityCommitmentsRequest) Descriptor
func (*ListCapacityCommitmentsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListCapacityCommitmentsRequest.ProtoReflect.Descriptor instead.
func (*ListCapacityCommitmentsRequest) GetPageSize
func (x *ListCapacityCommitmentsRequest) GetPageSize() int32
func (*ListCapacityCommitmentsRequest) GetPageToken
func (x *ListCapacityCommitmentsRequest) GetPageToken() string
func (*ListCapacityCommitmentsRequest) GetParent
func (x *ListCapacityCommitmentsRequest) GetParent() string
func (*ListCapacityCommitmentsRequest) ProtoMessage
func (*ListCapacityCommitmentsRequest) ProtoMessage()
func (*ListCapacityCommitmentsRequest) ProtoReflect
func (x *ListCapacityCommitmentsRequest) ProtoReflect() protoreflect.Message
func (*ListCapacityCommitmentsRequest) Reset
func (x *ListCapacityCommitmentsRequest) Reset()
func (*ListCapacityCommitmentsRequest) String
func (x *ListCapacityCommitmentsRequest) String() string
ListCapacityCommitmentsResponse
type ListCapacityCommitmentsResponse struct {
// List of capacity commitments visible to the user.
CapacityCommitments []*CapacityCommitment `protobuf:"bytes,1,rep,name=capacity_commitments,json=capacityCommitments,proto3" json:"capacity_commitments,omitempty"`
// Token to retrieve the next page of results, or empty if there are no
// more results in the list.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
// contains filtered or unexported fields
}
The response for [ReservationService.ListCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.ListCapacityCommitments].
func (*ListCapacityCommitmentsResponse) Descriptor
func (*ListCapacityCommitmentsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListCapacityCommitmentsResponse.ProtoReflect.Descriptor instead.
func (*ListCapacityCommitmentsResponse) GetCapacityCommitments
func (x *ListCapacityCommitmentsResponse) GetCapacityCommitments() []*CapacityCommitment
func (*ListCapacityCommitmentsResponse) GetNextPageToken
func (x *ListCapacityCommitmentsResponse) GetNextPageToken() string
func (*ListCapacityCommitmentsResponse) ProtoMessage
func (*ListCapacityCommitmentsResponse) ProtoMessage()
func (*ListCapacityCommitmentsResponse) ProtoReflect
func (x *ListCapacityCommitmentsResponse) ProtoReflect() protoreflect.Message
func (*ListCapacityCommitmentsResponse) Reset
func (x *ListCapacityCommitmentsResponse) Reset()
func (*ListCapacityCommitmentsResponse) String
func (x *ListCapacityCommitmentsResponse) String() string
ListReservationsRequest
type ListReservationsRequest struct {
// Required. The parent resource name containing project and location, e.g.:
//
// `projects/myproject/locations/US`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// The maximum number of items to return per page.
PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// The next_page_token value returned from a previous List request, if any.
PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.ListReservations][google.cloud.bigquery.reservation.v1.ReservationService.ListReservations].
func (*ListReservationsRequest) Descriptor
func (*ListReservationsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListReservationsRequest.ProtoReflect.Descriptor instead.
func (*ListReservationsRequest) GetPageSize
func (x *ListReservationsRequest) GetPageSize() int32
func (*ListReservationsRequest) GetPageToken
func (x *ListReservationsRequest) GetPageToken() string
func (*ListReservationsRequest) GetParent
func (x *ListReservationsRequest) GetParent() string
func (*ListReservationsRequest) ProtoMessage
func (*ListReservationsRequest) ProtoMessage()
func (*ListReservationsRequest) ProtoReflect
func (x *ListReservationsRequest) ProtoReflect() protoreflect.Message
func (*ListReservationsRequest) Reset
func (x *ListReservationsRequest) Reset()
func (*ListReservationsRequest) String
func (x *ListReservationsRequest) String() string
ListReservationsResponse
type ListReservationsResponse struct {
// List of reservations visible to the user.
Reservations []*Reservation `protobuf:"bytes,1,rep,name=reservations,proto3" json:"reservations,omitempty"`
// Token to retrieve the next page of results, or empty if there are no
// more results in the list.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
// contains filtered or unexported fields
}
The response for [ReservationService.ListReservations][google.cloud.bigquery.reservation.v1.ReservationService.ListReservations].
func (*ListReservationsResponse) Descriptor
func (*ListReservationsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListReservationsResponse.ProtoReflect.Descriptor instead.
func (*ListReservationsResponse) GetNextPageToken
func (x *ListReservationsResponse) GetNextPageToken() string
func (*ListReservationsResponse) GetReservations
func (x *ListReservationsResponse) GetReservations() []*Reservation
func (*ListReservationsResponse) ProtoMessage
func (*ListReservationsResponse) ProtoMessage()
func (*ListReservationsResponse) ProtoReflect
func (x *ListReservationsResponse) ProtoReflect() protoreflect.Message
func (*ListReservationsResponse) Reset
func (x *ListReservationsResponse) Reset()
func (*ListReservationsResponse) String
func (x *ListReservationsResponse) String() string
MergeCapacityCommitmentsRequest
type MergeCapacityCommitmentsRequest struct {
// Parent resource that identifies admin project and location e.g.,
//
// `projects/myproject/locations/us`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// Ids of capacity commitments to merge.
// These capacity commitments must exist under admin project and location
// specified in the parent.
// ID is the last portion of capacity commitment name e.g., 'abc' for
// projects/myproject/locations/US/capacityCommitments/abc
CapacityCommitmentIds []string `protobuf:"bytes,2,rep,name=capacity_commitment_ids,json=capacityCommitmentIds,proto3" json:"capacity_commitment_ids,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.MergeCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.MergeCapacityCommitments].
func (*MergeCapacityCommitmentsRequest) Descriptor
func (*MergeCapacityCommitmentsRequest) Descriptor() ([]byte, []int)
Deprecated: Use MergeCapacityCommitmentsRequest.ProtoReflect.Descriptor instead.
func (*MergeCapacityCommitmentsRequest) GetCapacityCommitmentIds
func (x *MergeCapacityCommitmentsRequest) GetCapacityCommitmentIds() []string
func (*MergeCapacityCommitmentsRequest) GetParent
func (x *MergeCapacityCommitmentsRequest) GetParent() string
func (*MergeCapacityCommitmentsRequest) ProtoMessage
func (*MergeCapacityCommitmentsRequest) ProtoMessage()
func (*MergeCapacityCommitmentsRequest) ProtoReflect
func (x *MergeCapacityCommitmentsRequest) ProtoReflect() protoreflect.Message
func (*MergeCapacityCommitmentsRequest) Reset
func (x *MergeCapacityCommitmentsRequest) Reset()
func (*MergeCapacityCommitmentsRequest) String
func (x *MergeCapacityCommitmentsRequest) String() string
MoveAssignmentRequest
type MoveAssignmentRequest struct {
// Required. The resource name of the assignment,
// e.g.
// `projects/myproject/locations/US/reservations/team1-prod/assignments/123`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// The new reservation ID, e.g.:
//
// `projects/myotherproject/locations/US/reservations/team2-prod`
DestinationId string `protobuf:"bytes,3,opt,name=destination_id,json=destinationId,proto3" json:"destination_id,omitempty"`
// The optional assignment ID. A new assignment name is generated if this
// field is empty.
//
// This field can contain only lowercase alphanumeric characters or dashes.
// Max length is 64 characters.
AssignmentId string `protobuf:"bytes,5,opt,name=assignment_id,json=assignmentId,proto3" json:"assignment_id,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.MoveAssignment][google.cloud.bigquery.reservation.v1.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.
func (*MoveAssignmentRequest) Descriptor
func (*MoveAssignmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use MoveAssignmentRequest.ProtoReflect.Descriptor instead.
func (*MoveAssignmentRequest) GetAssignmentId
func (x *MoveAssignmentRequest) GetAssignmentId() string
func (*MoveAssignmentRequest) GetDestinationId
func (x *MoveAssignmentRequest) GetDestinationId() string
func (*MoveAssignmentRequest) GetName
func (x *MoveAssignmentRequest) GetName() string
func (*MoveAssignmentRequest) ProtoMessage
func (*MoveAssignmentRequest) ProtoMessage()
func (*MoveAssignmentRequest) ProtoReflect
func (x *MoveAssignmentRequest) ProtoReflect() protoreflect.Message
func (*MoveAssignmentRequest) Reset
func (x *MoveAssignmentRequest) Reset()
func (*MoveAssignmentRequest) String
func (x *MoveAssignmentRequest) String() string
Reservation
type Reservation struct {
// The resource name of the reservation, e.g.,
// `projects/*/locations/*/reservations/team1-prod`.
// The reservation_id 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.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Baseline slots available to this reservation. A slot is a unit of
// computational power in BigQuery, and serves as the unit of parallelism.
//
// Queries using this reservation might use more slots during runtime if
// ignore_idle_slots is set to false, or autoscaling is enabled.
//
// The total slot_capacity of the reservation and its siblings
// may exceed the total slot_count of capacity commitments. In that case, the
// exceeding slots will be charged with the autoscale SKU. You can increase
// the number of baseline slots in a reservation every few minutes. If you
// want to decrease your baseline slots, you are limited to once an hour if
// you have recently changed your baseline slot capacity and your baseline
// slots exceed your committed slots. Otherwise, you can decrease your
// baseline slots every few minutes.
SlotCapacity int64 `protobuf:"varint,2,opt,name=slot_capacity,json=slotCapacity,proto3" json:"slot_capacity,omitempty"`
// If false, any query or pipeline job using this reservation will use idle
// slots from other reservations within the same admin project. If true, a
// query or pipeline job using this reservation will execute with the slot
// capacity specified in the slot_capacity field at most.
IgnoreIdleSlots bool `protobuf:"varint,4,opt,name=ignore_idle_slots,json=ignoreIdleSlots,proto3" json:"ignore_idle_slots,omitempty"`
// The configuration parameters for the auto scaling feature.
Autoscale *Reservation_Autoscale `protobuf:"bytes,7,opt,name=autoscale,proto3" json:"autoscale,omitempty"`
// Job concurrency target which sets a soft upper bound on the number of jobs
// that can run concurrently in this reservation. This is a soft target due to
// asynchronous nature of the system and various optimizations for small
// queries.
// Default value is 0 which means that concurrency target will be
// automatically computed by the system.
// NOTE: this field is exposed as target job concurrency in the Information
// Schema, DDL and BigQuery CLI.
Concurrency int64 `protobuf:"varint,16,opt,name=concurrency,proto3" json:"concurrency,omitempty"`
// Output only. Creation time of the reservation.
CreationTime *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=creation_time,json=creationTime,proto3" json:"creation_time,omitempty"`
// Output only. Last update time of the reservation.
UpdateTime *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
// Applicable only for reservations located within one of the BigQuery
// multi-regions (US or EU).
//
// If set to true, this reservation is placed in the organization's
// secondary region which is designated for disaster recovery purposes.
// If false, this reservation is placed in the organization's default region.
//
// NOTE: this is a preview feature. Project must be allow-listed in order to
// set this field.
MultiRegionAuxiliary bool `protobuf:"varint,14,opt,name=multi_region_auxiliary,json=multiRegionAuxiliary,proto3" json:"multi_region_auxiliary,omitempty"`
// Edition of the reservation.
Edition Edition `protobuf:"varint,17,opt,name=edition,proto3,enum=google.cloud.bigquery.reservation.v1.Edition" json:"edition,omitempty"`
// Output only. The current location of the reservation's primary replica.
// This field is only set for reservations using the managed disaster recovery
// feature.
PrimaryLocation string `protobuf:"bytes,18,opt,name=primary_location,json=primaryLocation,proto3" json:"primary_location,omitempty"`
// Optional. The current location of the reservation's secondary replica. This
// field is only set for reservations using the managed disaster recovery
// feature. Users can set this in create reservation calls
// to create a failover reservation or in update reservation calls to convert
// a non-failover reservation to a failover reservation(or vice versa).
SecondaryLocation string `protobuf:"bytes,19,opt,name=secondary_location,json=secondaryLocation,proto3" json:"secondary_location,omitempty"`
// Output only. The location where the reservation was originally created.
// This is set only during the failover reservation's creation. All billing
// charges for the failover reservation will be applied to this location.
OriginalPrimaryLocation string `protobuf:"bytes,20,opt,name=original_primary_location,json=originalPrimaryLocation,proto3" json:"original_primary_location,omitempty"`
// Optional. The overall max slots for the reservation, covering slot_capacity
// (baseline), idle slots (if ignore_idle_slots is false) and scaled slots.
// If present, the reservation won't use more than the specified number of
// slots, even if there is demand and supply (from idle slots).
// NOTE: capping a reservation's idle slot usage is best effort and its
// usage may exceed the max_slots value. However, in terms of
// autoscale.current_slots (which accounts for the additional added slots), it
// will never exceed the max_slots - baseline.
//
// This field must be set together with the scaling_mode enum value.
//
// If the max_slots and scaling_mode are set, the autoscale or
// autoscale.max_slots field must be unset. However, the
// autoscale field may still be in the output. The autopscale.max_slots will
// always show as 0 and the autoscaler.current_slots will represent the
// current slots from autoscaler excluding idle slots.
// For example, if the max_slots is 1000 and scaling_mode is AUTOSCALE_ONLY,
// then in the output, the autoscaler.max_slots will be 0 and the
// autoscaler.current_slots may be any value between 0 and 1000.
//
// If the max_slots is 1000, scaling_mode is ALL_SLOTS, the baseline is 100
// and idle slots usage is 200, then in the output, the autoscaler.max_slots
// will be 0 and the autoscaler.current_slots will not be higher than 700.
//
// If the max_slots is 1000, scaling_mode is IDLE_SLOTS_ONLY, then in the
// output, the autoscaler field will be null.
//
// If the max_slots and scaling_mode are set, then the ignore_idle_slots field
// must be aligned with the scaling_mode enum value.(See details in
// ScalingMode comments).
//
// Please note, the max_slots is for user to manage the part of slots greater
// than the baseline. Therefore, we don't allow users to set max_slots smaller
// or equal to the baseline as it will not be meaningful. If the field is
// present and slot_capacity>=max_slots.
//
// Please note that if max_slots is set to 0, we will treat it as unset.
// Customers can set max_slots to 0 and set scaling_mode to
// SCALING_MODE_UNSPECIFIED to disable the max_slots feature.
MaxSlots *int64 `protobuf:"varint,21,opt,name=max_slots,json=maxSlots,proto3,oneof" json:"max_slots,omitempty"`
// Optional. The scaling mode for the reservation.
// If the field is present but max_slots is not present.
ScalingMode Reservation_ScalingMode `protobuf:"varint,22,opt,name=scaling_mode,json=scalingMode,proto3,enum=google.cloud.bigquery.reservation.v1.Reservation_ScalingMode" json:"scaling_mode,omitempty"`
// Output only. The Disaster Recovery(DR) replication status of the
// reservation. This is only available for the primary replicas of DR/failover
// reservations and provides information about the both the staleness of the
// secondary and the last error encountered while trying to replicate changes
// from the primary to the secondary. If this field is blank, it means that
// the reservation is either not a DR reservation or the reservation is a DR
// secondary or that any replication operations on the reservation have
// succeeded.
ReplicationStatus *Reservation_ReplicationStatus `protobuf:"bytes,24,opt,name=replication_status,json=replicationStatus,proto3" json:"replication_status,omitempty"`
// contains filtered or unexported fields
}
A reservation is a mechanism used to guarantee slots to users.
func (*Reservation) Descriptor
func (*Reservation) Descriptor() ([]byte, []int)
Deprecated: Use Reservation.ProtoReflect.Descriptor instead.
func (*Reservation) GetAutoscale
func (x *Reservation) GetAutoscale() *Reservation_Autoscale
func (*Reservation) GetConcurrency
func (x *Reservation) GetConcurrency() int64
func (*Reservation) GetCreationTime
func (x *Reservation) GetCreationTime() *timestamppb.Timestamp
func (*Reservation) GetEdition
func (x *Reservation) GetEdition() Edition
func (*Reservation) GetIgnoreIdleSlots
func (x *Reservation) GetIgnoreIdleSlots() bool
func (*Reservation) GetMaxSlots
func (x *Reservation) GetMaxSlots() int64
func (*Reservation) GetMultiRegionAuxiliary
func (x *Reservation) GetMultiRegionAuxiliary() bool
func (*Reservation) GetName
func (x *Reservation) GetName() string
func (*Reservation) GetOriginalPrimaryLocation
func (x *Reservation) GetOriginalPrimaryLocation() string
func (*Reservation) GetPrimaryLocation
func (x *Reservation) GetPrimaryLocation() string
func (*Reservation) GetReplicationStatus
func (x *Reservation) GetReplicationStatus() *Reservation_ReplicationStatus
func (*Reservation) GetScalingMode
func (x *Reservation) GetScalingMode() Reservation_ScalingMode
func (*Reservation) GetSecondaryLocation
func (x *Reservation) GetSecondaryLocation() string
func (*Reservation) GetSlotCapacity
func (x *Reservation) GetSlotCapacity() int64
func (*Reservation) GetUpdateTime
func (x *Reservation) GetUpdateTime() *timestamppb.Timestamp
func (*Reservation) ProtoMessage
func (*Reservation) ProtoMessage()
func (*Reservation) ProtoReflect
func (x *Reservation) ProtoReflect() protoreflect.Message
func (*Reservation) Reset
func (x *Reservation) Reset()
func (*Reservation) String
func (x *Reservation) String() string
ReservationServiceClient
type ReservationServiceClient interface {
// Creates a new reservation resource.
CreateReservation(ctx context.Context, in *CreateReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
// Lists all the reservations for the project in the specified location.
ListReservations(ctx context.Context, in *ListReservationsRequest, opts ...grpc.CallOption) (*ListReservationsResponse, error)
// Returns information about the reservation.
GetReservation(ctx context.Context, in *GetReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
// Deletes a reservation.
// Returns `google.rpc.Code.FAILED_PRECONDITION` when reservation has
// assignments.
DeleteReservation(ctx context.Context, in *DeleteReservationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// Updates an existing reservation resource.
UpdateReservation(ctx context.Context, in *UpdateReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
// Fail over a reservation to the secondary location. The operation should be
// done in the current secondary location, which will be promoted to the
// new primary location for the reservation.
// Attempting to failover a reservation in the current primary location will
// fail with the error code `google.rpc.Code.FAILED_PRECONDITION`.
FailoverReservation(ctx context.Context, in *FailoverReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
// Creates a new capacity commitment resource.
CreateCapacityCommitment(ctx context.Context, in *CreateCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
// Lists all the capacity commitments for the admin project.
ListCapacityCommitments(ctx context.Context, in *ListCapacityCommitmentsRequest, opts ...grpc.CallOption) (*ListCapacityCommitmentsResponse, error)
// Returns information about the capacity commitment.
GetCapacityCommitment(ctx context.Context, in *GetCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
// Deletes a capacity commitment. Attempting to delete capacity commitment
// before its commitment_end_time will fail with the error code
// `google.rpc.Code.FAILED_PRECONDITION`.
DeleteCapacityCommitment(ctx context.Context, in *DeleteCapacityCommitmentRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// Updates an existing capacity commitment.
//
// Only `plan` and `renewal_plan` fields can be updated.
//
// Plan can only be changed to a plan of a longer commitment period.
// Attempting to change to a plan with shorter commitment period will fail
// with the error code `google.rpc.Code.FAILED_PRECONDITION`.
UpdateCapacityCommitment(ctx context.Context, in *UpdateCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
// Splits capacity commitment to two commitments of the same plan and
// `commitment_end_time`.
//
// A common use case is to enable downgrading commitments.
//
// For example, in order to downgrade from 10000 slots to 8000, you might
// split a 10000 capacity commitment into commitments of 2000 and 8000. Then,
// you delete the first one after the commitment end time passes.
SplitCapacityCommitment(ctx context.Context, in *SplitCapacityCommitmentRequest, opts ...grpc.CallOption) (*SplitCapacityCommitmentResponse, error)
// Merges capacity commitments of the same plan into a single commitment.
//
// The resulting capacity commitment has the greater commitment_end_time
// out of the to-be-merged capacity commitments.
//
// Attempting to merge capacity commitments of different plan will fail
// with the error code `google.rpc.Code.FAILED_PRECONDITION`.
MergeCapacityCommitments(ctx context.Context, in *MergeCapacityCommitmentsRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
// Creates an assignment object which allows the given project to submit jobs
// of a certain type using slots from the specified reservation.
//
// Currently a
// resource (project, folder, organization) can only have one assignment per
// each (job_type, location) combination, and that reservation will be used
// for all jobs of the matching type.
//
// Different assignments can be created on different levels of the
// projects, folders or organization hierarchy. During query execution,
// the assignment is looked up at the project, folder and organization levels
// in that order. The first assignment found is applied to the query.
//
// When creating assignments, it does not matter if other assignments exist at
// higher levels.
//
// Example:
//
// - The organization `organizationA` contains two projects, `project1`
// and `project2`.
// - Assignments for all three entities (`organizationA`, `project1`, and
// `project2`) could all be created and mapped to the same or different
// reservations.
//
// "None" assignments represent an absence of the assignment. Projects
// assigned to None use on-demand pricing. To create a "None" assignment, use
// "none" as a reservation_id in the parent. Example parent:
// `projects/myproject/locations/US/reservations/none`.
//
// Returns `google.rpc.Code.PERMISSION_DENIED` if user does not have
// 'bigquery.admin' permissions on the project using the reservation
// and the project that owns this reservation.
//
// Returns `google.rpc.Code.INVALID_ARGUMENT` when location of the assignment
// does not match location of the reservation.
CreateAssignment(ctx context.Context, in *CreateAssignmentRequest, opts ...grpc.CallOption) (*Assignment, error)
// Lists assignments.
//
// Only explicitly created assignments will be returned.
//
// Example:
//
// - Organization `organizationA` contains two projects, `project1` and
// `project2`.
// - Reservation `res1` exists and was created previously.
// - CreateAssignment was used previously to define the following
// associations between entities and reservations: `
ReservationServiceClient is the client API for ReservationService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewReservationServiceClient
func NewReservationServiceClient(cc grpc.ClientConnInterface) ReservationServiceClient
ReservationServiceServer
type ReservationServiceServer interface {
// Creates a new reservation resource.
CreateReservation(context.Context, *CreateReservationRequest) (*Reservation, error)
// Lists all the reservations for the project in the specified location.
ListReservations(context.Context, *ListReservationsRequest) (*ListReservationsResponse, error)
// Returns information about the reservation.
GetReservation(context.Context, *GetReservationRequest) (*Reservation, error)
// Deletes a reservation.
// Returns `google.rpc.Code.FAILED_PRECONDITION` when reservation has
// assignments.
DeleteReservation(context.Context, *DeleteReservationRequest) (*emptypb.Empty, error)
// Updates an existing reservation resource.
UpdateReservation(context.Context, *UpdateReservationRequest) (*Reservation, error)
// Fail over a reservation to the secondary location. The operation should be
// done in the current secondary location, which will be promoted to the
// new primary location for the reservation.
// Attempting to failover a reservation in the current primary location will
// fail with the error code `google.rpc.Code.FAILED_PRECONDITION`.
FailoverReservation(context.Context, *FailoverReservationRequest) (*Reservation, error)
// Creates a new capacity commitment resource.
CreateCapacityCommitment(context.Context, *CreateCapacityCommitmentRequest) (*CapacityCommitment, error)
// Lists all the capacity commitments for the admin project.
ListCapacityCommitments(context.Context, *ListCapacityCommitmentsRequest) (*ListCapacityCommitmentsResponse, error)
// Returns information about the capacity commitment.
GetCapacityCommitment(context.Context, *GetCapacityCommitmentRequest) (*CapacityCommitment, error)
// Deletes a capacity commitment. Attempting to delete capacity commitment
// before its commitment_end_time will fail with the error code
// `google.rpc.Code.FAILED_PRECONDITION`.
DeleteCapacityCommitment(context.Context, *DeleteCapacityCommitmentRequest) (*emptypb.Empty, error)
// Updates an existing capacity commitment.
//
// Only `plan` and `renewal_plan` fields can be updated.
//
// Plan can only be changed to a plan of a longer commitment period.
// Attempting to change to a plan with shorter commitment period will fail
// with the error code `google.rpc.Code.FAILED_PRECONDITION`.
UpdateCapacityCommitment(context.Context, *UpdateCapacityCommitmentRequest) (*CapacityCommitment, error)
// Splits capacity commitment to two commitments of the same plan and
// `commitment_end_time`.
//
// A common use case is to enable downgrading commitments.
//
// For example, in order to downgrade from 10000 slots to 8000, you might
// split a 10000 capacity commitment into commitments of 2000 and 8000. Then,
// you delete the first one after the commitment end time passes.
SplitCapacityCommitment(context.Context, *SplitCapacityCommitmentRequest) (*SplitCapacityCommitmentResponse, error)
// Merges capacity commitments of the same plan into a single commitment.
//
// The resulting capacity commitment has the greater commitment_end_time
// out of the to-be-merged capacity commitments.
//
// Attempting to merge capacity commitments of different plan will fail
// with the error code `google.rpc.Code.FAILED_PRECONDITION`.
MergeCapacityCommitments(context.Context, *MergeCapacityCommitmentsRequest) (*CapacityCommitment, error)
// Creates an assignment object which allows the given project to submit jobs
// of a certain type using slots from the specified reservation.
//
// Currently a
// resource (project, folder, organization) can only have one assignment per
// each (job_type, location) combination, and that reservation will be used
// for all jobs of the matching type.
//
// Different assignments can be created on different levels of the
// projects, folders or organization hierarchy. During query execution,
// the assignment is looked up at the project, folder and organization levels
// in that order. The first assignment found is applied to the query.
//
// When creating assignments, it does not matter if other assignments exist at
// higher levels.
//
// Example:
//
// - The organization `organizationA` contains two projects, `project1`
// and `project2`.
// - Assignments for all three entities (`organizationA`, `project1`, and
// `project2`) could all be created and mapped to the same or different
// reservations.
//
// "None" assignments represent an absence of the assignment. Projects
// assigned to None use on-demand pricing. To create a "None" assignment, use
// "none" as a reservation_id in the parent. Example parent:
// `projects/myproject/locations/US/reservations/none`.
//
// Returns `google.rpc.Code.PERMISSION_DENIED` if user does not have
// 'bigquery.admin' permissions on the project using the reservation
// and the project that owns this reservation.
//
// Returns `google.rpc.Code.INVALID_ARGUMENT` when location of the assignment
// does not match location of the reservation.
CreateAssignment(context.Context, *CreateAssignmentRequest) (*Assignment, error)
// Lists assignments.
//
// Only explicitly created assignments will be returned.
//
// Example:
//
// - Organization `organizationA` contains two projects, `project1` and
// `project2`.
// - Reservation `res1` exists and was created previously.
// - CreateAssignment was used previously to define the following
// associations between entities and reservations: `
ReservationServiceServer is the server API for ReservationService service.
Reservation_Autoscale
type Reservation_Autoscale struct {
// Output only. The slot capacity added to this reservation when autoscale
// happens. Will be between [0, max_slots]. Note: after users reduce
// max_slots, it may take a while before it can be propagated, so
// current_slots may stay in the original value and could be larger than
// max_slots for that brief period (less than one minute)
CurrentSlots int64 `protobuf:"varint,1,opt,name=current_slots,json=currentSlots,proto3" json:"current_slots,omitempty"`
// Number of slots to be scaled when needed.
MaxSlots int64 `protobuf:"varint,2,opt,name=max_slots,json=maxSlots,proto3" json:"max_slots,omitempty"`
// contains filtered or unexported fields
}
Auto scaling settings.
func (*Reservation_Autoscale) Descriptor
func (*Reservation_Autoscale) Descriptor() ([]byte, []int)
Deprecated: Use Reservation_Autoscale.ProtoReflect.Descriptor instead.
func (*Reservation_Autoscale) GetCurrentSlots
func (x *Reservation_Autoscale) GetCurrentSlots() int64
func (*Reservation_Autoscale) GetMaxSlots
func (x *Reservation_Autoscale) GetMaxSlots() int64
func (*Reservation_Autoscale) ProtoMessage
func (*Reservation_Autoscale) ProtoMessage()
func (*Reservation_Autoscale) ProtoReflect
func (x *Reservation_Autoscale) ProtoReflect() protoreflect.Message
func (*Reservation_Autoscale) Reset
func (x *Reservation_Autoscale) Reset()
func (*Reservation_Autoscale) String
func (x *Reservation_Autoscale) String() string
Reservation_ReplicationStatus
type Reservation_ReplicationStatus struct {
// Output only. The last error encountered while trying to replicate changes
// from the primary to the secondary. This field is only available if the
// replication has not succeeded since.
Error *status.Status `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
// Output only. The time at which the last error was encountered while
// trying to replicate changes from the primary to the secondary. This field
// is only available if the replication has not succeeded since.
LastErrorTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=last_error_time,json=lastErrorTime,proto3" json:"last_error_time,omitempty"`
// Output only. A timestamp corresponding to the last change on the primary
// that was successfully replicated to the secondary.
LastReplicationTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=last_replication_time,json=lastReplicationTime,proto3" json:"last_replication_time,omitempty"`
// contains filtered or unexported fields
}
Disaster Recovery(DR) replication status of the reservation.
func (*Reservation_ReplicationStatus) Descriptor
func (*Reservation_ReplicationStatus) Descriptor() ([]byte, []int)
Deprecated: Use Reservation_ReplicationStatus.ProtoReflect.Descriptor instead.
func (*Reservation_ReplicationStatus) GetError
func (x *Reservation_ReplicationStatus) GetError() *status.Status
func (*Reservation_ReplicationStatus) GetLastErrorTime
func (x *Reservation_ReplicationStatus) GetLastErrorTime() *timestamppb.Timestamp
func (*Reservation_ReplicationStatus) GetLastReplicationTime
func (x *Reservation_ReplicationStatus) GetLastReplicationTime() *timestamppb.Timestamp
func (*Reservation_ReplicationStatus) ProtoMessage
func (*Reservation_ReplicationStatus) ProtoMessage()
func (*Reservation_ReplicationStatus) ProtoReflect
func (x *Reservation_ReplicationStatus) ProtoReflect() protoreflect.Message
func (*Reservation_ReplicationStatus) Reset
func (x *Reservation_ReplicationStatus) Reset()
func (*Reservation_ReplicationStatus) String
func (x *Reservation_ReplicationStatus) String() string
Reservation_ScalingMode
type Reservation_ScalingMode int32
The scaling mode for the reservation. This enum determines how the reservation scales up and down.
Reservation_SCALING_MODE_UNSPECIFIED, Reservation_AUTOSCALE_ONLY, Reservation_IDLE_SLOTS_ONLY, Reservation_ALL_SLOTS
const (
// Default value of ScalingMode.
Reservation_SCALING_MODE_UNSPECIFIED Reservation_ScalingMode = 0
// The reservation will scale up only using slots from autoscaling. It will
// not use any idle slots even if there may be some available. The upper
// limit that autoscaling can scale up to will be max_slots - baseline.
// For example, if max_slots is 1000, baseline is 200 and customer sets
// ScalingMode to AUTOSCALE_ONLY, then autoscalerg will scale up to 800
// slots and no idle slots will be used.
//
// Please note, in this mode, the ignore_idle_slots field must be set to
// true.
Reservation_AUTOSCALE_ONLY Reservation_ScalingMode = 1
// The reservation will scale up using only idle slots contributed by
// other reservations or from unassigned commitments. If no idle slots are
// available it will not scale up further. If the idle slots which it is
// using are reclaimed by the contributing reservation(s) it may be forced
// to scale down. The max idle slots the reservation can be max_slots -
// baseline capacity. For example, if max_slots is 1000, baseline is 200 and
// customer sets ScalingMode to IDLE_SLOTS_ONLY,
// 1. if there are 1000 idle slots available in other reservations, the
// reservation will scale up to 1000 slots with 200 baseline and 800 idle
// slots.
// 2. if there are 500 idle slots available in other reservations, the
// reservation will scale up to 700 slots with 200 baseline and 300 idle
// slots.
// Please note, in this mode, the reservation might not be able to scale up
// to max_slots.
//
// Please note, in this mode, the ignore_idle_slots field must be set to
// false.
Reservation_IDLE_SLOTS_ONLY Reservation_ScalingMode = 2
// The reservation will scale up using all slots available to it. It will
// use idle slots contributed by other reservations or from unassigned
// commitments first. If no idle slots are available it will scale up using
// autoscaling. For example, if max_slots is 1000, baseline is 200 and
// customer sets ScalingMode to ALL_SLOTS,
// 1. if there are 800 idle slots available in other reservations, the
// reservation will scale up to 1000 slots with 200 baseline and 800 idle
// slots.
// 2. if there are 500 idle slots available in other reservations, the
// reservation will scale up to 1000 slots with 200 baseline, 500 idle
// slots and 300 autoscaling slots.
// 3. if there are no idle slots available in other reservations, it will
// scale up to 1000 slots with 200 baseline and 800 autoscaling slots.
//
// Please note, in this mode, the ignore_idle_slots field must be set to
// false.
Reservation_ALL_SLOTS Reservation_ScalingMode = 3
)
func (Reservation_ScalingMode) Descriptor
func (Reservation_ScalingMode) Descriptor() protoreflect.EnumDescriptor
func (Reservation_ScalingMode) Enum
func (x Reservation_ScalingMode) Enum() *Reservation_ScalingMode
func (Reservation_ScalingMode) EnumDescriptor
func (Reservation_ScalingMode) EnumDescriptor() ([]byte, []int)
Deprecated: Use Reservation_ScalingMode.Descriptor instead.
func (Reservation_ScalingMode) Number
func (x Reservation_ScalingMode) Number() protoreflect.EnumNumber
func (Reservation_ScalingMode) String
func (x Reservation_ScalingMode) String() string
func (Reservation_ScalingMode) Type
func (Reservation_ScalingMode) Type() protoreflect.EnumType
SearchAllAssignmentsRequest
type SearchAllAssignmentsRequest struct {
// Required. The resource name with location (project name could be the
// wildcard '-'), e.g.:
//
// `projects/-/locations/US`.
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// Please specify resource name as assignee in the query.
//
// Examples:
//
// * `assignee=projects/myproject`
// * `assignee=folders/123`
// * `assignee=organizations/456`
Query string `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
// The maximum number of items to return per page.
PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// The next_page_token value returned from a previous List request, if any.
PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.SearchAllAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAllAssignments]. Note: "bigquery.reservationAssignments.search" permission is required on the related assignee.
func (*SearchAllAssignmentsRequest) Descriptor
func (*SearchAllAssignmentsRequest) Descriptor() ([]byte, []int)
Deprecated: Use SearchAllAssignmentsRequest.ProtoReflect.Descriptor instead.
func (*SearchAllAssignmentsRequest) GetPageSize
func (x *SearchAllAssignmentsRequest) GetPageSize() int32
func (*SearchAllAssignmentsRequest) GetPageToken
func (x *SearchAllAssignmentsRequest) GetPageToken() string
func (*SearchAllAssignmentsRequest) GetParent
func (x *SearchAllAssignmentsRequest) GetParent() string
func (*SearchAllAssignmentsRequest) GetQuery
func (x *SearchAllAssignmentsRequest) GetQuery() string
func (*SearchAllAssignmentsRequest) ProtoMessage
func (*SearchAllAssignmentsRequest) ProtoMessage()
func (*SearchAllAssignmentsRequest) ProtoReflect
func (x *SearchAllAssignmentsRequest) ProtoReflect() protoreflect.Message
func (*SearchAllAssignmentsRequest) Reset
func (x *SearchAllAssignmentsRequest) Reset()
func (*SearchAllAssignmentsRequest) String
func (x *SearchAllAssignmentsRequest) String() string
SearchAllAssignmentsResponse
type SearchAllAssignmentsResponse struct {
// List of assignments visible to the user.
Assignments []*Assignment `protobuf:"bytes,1,rep,name=assignments,proto3" json:"assignments,omitempty"`
// Token to retrieve the next page of results, or empty if there are no
// more results in the list.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
// contains filtered or unexported fields
}
The response for [ReservationService.SearchAllAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAllAssignments].
func (*SearchAllAssignmentsResponse) Descriptor
func (*SearchAllAssignmentsResponse) Descriptor() ([]byte, []int)
Deprecated: Use SearchAllAssignmentsResponse.ProtoReflect.Descriptor instead.
func (*SearchAllAssignmentsResponse) GetAssignments
func (x *SearchAllAssignmentsResponse) GetAssignments() []*Assignment
func (*SearchAllAssignmentsResponse) GetNextPageToken
func (x *SearchAllAssignmentsResponse) GetNextPageToken() string
func (*SearchAllAssignmentsResponse) ProtoMessage
func (*SearchAllAssignmentsResponse) ProtoMessage()
func (*SearchAllAssignmentsResponse) ProtoReflect
func (x *SearchAllAssignmentsResponse) ProtoReflect() protoreflect.Message
func (*SearchAllAssignmentsResponse) Reset
func (x *SearchAllAssignmentsResponse) Reset()
func (*SearchAllAssignmentsResponse) String
func (x *SearchAllAssignmentsResponse) String() string
SearchAssignmentsRequest
type SearchAssignmentsRequest struct {
// Required. The resource name of the admin project(containing project and
// location), e.g.:
//
// `projects/myproject/locations/US`.
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// Please specify resource name as assignee in the query.
//
// Examples:
//
// * `assignee=projects/myproject`
// * `assignee=folders/123`
// * `assignee=organizations/456`
Query string `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
// The maximum number of items to return per page.
PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// The next_page_token value returned from a previous List request, if any.
PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.SearchAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAssignments]. Note: "bigquery.reservationAssignments.search" permission is required on the related assignee.
func (*SearchAssignmentsRequest) Descriptor
func (*SearchAssignmentsRequest) Descriptor() ([]byte, []int)
Deprecated: Use SearchAssignmentsRequest.ProtoReflect.Descriptor instead.
func (*SearchAssignmentsRequest) GetPageSize
func (x *SearchAssignmentsRequest) GetPageSize() int32
func (*SearchAssignmentsRequest) GetPageToken
func (x *SearchAssignmentsRequest) GetPageToken() string
func (*SearchAssignmentsRequest) GetParent
func (x *SearchAssignmentsRequest) GetParent() string
func (*SearchAssignmentsRequest) GetQuery
func (x *SearchAssignmentsRequest) GetQuery() string
func (*SearchAssignmentsRequest) ProtoMessage
func (*SearchAssignmentsRequest) ProtoMessage()
func (*SearchAssignmentsRequest) ProtoReflect
func (x *SearchAssignmentsRequest) ProtoReflect() protoreflect.Message
func (*SearchAssignmentsRequest) Reset
func (x *SearchAssignmentsRequest) Reset()
func (*SearchAssignmentsRequest) String
func (x *SearchAssignmentsRequest) String() string
SearchAssignmentsResponse
type SearchAssignmentsResponse struct {
// List of assignments visible to the user.
Assignments []*Assignment `protobuf:"bytes,1,rep,name=assignments,proto3" json:"assignments,omitempty"`
// Token to retrieve the next page of results, or empty if there are no
// more results in the list.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
// contains filtered or unexported fields
}
The response for [ReservationService.SearchAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAssignments].
func (*SearchAssignmentsResponse) Descriptor
func (*SearchAssignmentsResponse) Descriptor() ([]byte, []int)
Deprecated: Use SearchAssignmentsResponse.ProtoReflect.Descriptor instead.
func (*SearchAssignmentsResponse) GetAssignments
func (x *SearchAssignmentsResponse) GetAssignments() []*Assignment
func (*SearchAssignmentsResponse) GetNextPageToken
func (x *SearchAssignmentsResponse) GetNextPageToken() string
func (*SearchAssignmentsResponse) ProtoMessage
func (*SearchAssignmentsResponse) ProtoMessage()
func (*SearchAssignmentsResponse) ProtoReflect
func (x *SearchAssignmentsResponse) ProtoReflect() protoreflect.Message
func (*SearchAssignmentsResponse) Reset
func (x *SearchAssignmentsResponse) Reset()
func (*SearchAssignmentsResponse) String
func (x *SearchAssignmentsResponse) String() string
SplitCapacityCommitmentRequest
type SplitCapacityCommitmentRequest struct {
// Required. The resource name e.g.,:
//
// `projects/myproject/locations/US/capacityCommitments/123`
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Number of slots in the capacity commitment after the split.
SlotCount int64 `protobuf:"varint,2,opt,name=slot_count,json=slotCount,proto3" json:"slot_count,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.SplitCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.SplitCapacityCommitment].
func (*SplitCapacityCommitmentRequest) Descriptor
func (*SplitCapacityCommitmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use SplitCapacityCommitmentRequest.ProtoReflect.Descriptor instead.
func (*SplitCapacityCommitmentRequest) GetName
func (x *SplitCapacityCommitmentRequest) GetName() string
func (*SplitCapacityCommitmentRequest) GetSlotCount
func (x *SplitCapacityCommitmentRequest) GetSlotCount() int64
func (*SplitCapacityCommitmentRequest) ProtoMessage
func (*SplitCapacityCommitmentRequest) ProtoMessage()
func (*SplitCapacityCommitmentRequest) ProtoReflect
func (x *SplitCapacityCommitmentRequest) ProtoReflect() protoreflect.Message
func (*SplitCapacityCommitmentRequest) Reset
func (x *SplitCapacityCommitmentRequest) Reset()
func (*SplitCapacityCommitmentRequest) String
func (x *SplitCapacityCommitmentRequest) String() string
SplitCapacityCommitmentResponse
type SplitCapacityCommitmentResponse struct {
// First capacity commitment, result of a split.
First *CapacityCommitment `protobuf:"bytes,1,opt,name=first,proto3" json:"first,omitempty"`
// Second capacity commitment, result of a split.
Second *CapacityCommitment `protobuf:"bytes,2,opt,name=second,proto3" json:"second,omitempty"`
// contains filtered or unexported fields
}
The response for [ReservationService.SplitCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.SplitCapacityCommitment].
func (*SplitCapacityCommitmentResponse) Descriptor
func (*SplitCapacityCommitmentResponse) Descriptor() ([]byte, []int)
Deprecated: Use SplitCapacityCommitmentResponse.ProtoReflect.Descriptor instead.
func (*SplitCapacityCommitmentResponse) GetFirst
func (x *SplitCapacityCommitmentResponse) GetFirst() *CapacityCommitment
func (*SplitCapacityCommitmentResponse) GetSecond
func (x *SplitCapacityCommitmentResponse) GetSecond() *CapacityCommitment
func (*SplitCapacityCommitmentResponse) ProtoMessage
func (*SplitCapacityCommitmentResponse) ProtoMessage()
func (*SplitCapacityCommitmentResponse) ProtoReflect
func (x *SplitCapacityCommitmentResponse) ProtoReflect() protoreflect.Message
func (*SplitCapacityCommitmentResponse) Reset
func (x *SplitCapacityCommitmentResponse) Reset()
func (*SplitCapacityCommitmentResponse) String
func (x *SplitCapacityCommitmentResponse) String() string
TableReference
type TableReference struct {
// The assigned project ID of the project.
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
// The ID of the dataset in the above project.
DatasetId string `protobuf:"bytes,2,opt,name=dataset_id,json=datasetId,proto3" json:"dataset_id,omitempty"`
// The ID of the table in the above dataset.
TableId string `protobuf:"bytes,3,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"`
// contains filtered or unexported fields
}
Fully qualified reference to BigQuery table. Internally stored as google.cloud.bi.v1.BqTableReference.
func (*TableReference) Descriptor
func (*TableReference) Descriptor() ([]byte, []int)
Deprecated: Use TableReference.ProtoReflect.Descriptor instead.
func (*TableReference) GetDatasetId
func (x *TableReference) GetDatasetId() string
func (*TableReference) GetProjectId
func (x *TableReference) GetProjectId() string
func (*TableReference) GetTableId
func (x *TableReference) GetTableId() string
func (*TableReference) ProtoMessage
func (*TableReference) ProtoMessage()
func (*TableReference) ProtoReflect
func (x *TableReference) ProtoReflect() protoreflect.Message
func (*TableReference) Reset
func (x *TableReference) Reset()
func (*TableReference) String
func (x *TableReference) String() string
UnimplementedReservationServiceServer
type UnimplementedReservationServiceServer struct {
}
UnimplementedReservationServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedReservationServiceServer) CreateAssignment
func (*UnimplementedReservationServiceServer) CreateAssignment(context.Context, *CreateAssignmentRequest) (*Assignment, error)
func (*UnimplementedReservationServiceServer) CreateCapacityCommitment
func (*UnimplementedReservationServiceServer) CreateCapacityCommitment(context.Context, *CreateCapacityCommitmentRequest) (*CapacityCommitment, error)
func (*UnimplementedReservationServiceServer) CreateReservation
func (*UnimplementedReservationServiceServer) CreateReservation(context.Context, *CreateReservationRequest) (*Reservation, error)
func (*UnimplementedReservationServiceServer) DeleteAssignment
func (*UnimplementedReservationServiceServer) DeleteAssignment(context.Context, *DeleteAssignmentRequest) (*emptypb.Empty, error)
func (*UnimplementedReservationServiceServer) DeleteCapacityCommitment
func (*UnimplementedReservationServiceServer) DeleteCapacityCommitment(context.Context, *DeleteCapacityCommitmentRequest) (*emptypb.Empty, error)
func (*UnimplementedReservationServiceServer) DeleteReservation
func (*UnimplementedReservationServiceServer) DeleteReservation(context.Context, *DeleteReservationRequest) (*emptypb.Empty, error)
func (*UnimplementedReservationServiceServer) FailoverReservation
func (*UnimplementedReservationServiceServer) FailoverReservation(context.Context, *FailoverReservationRequest) (*Reservation, error)
func (*UnimplementedReservationServiceServer) GetBiReservation
func (*UnimplementedReservationServiceServer) GetBiReservation(context.Context, *GetBiReservationRequest) (*BiReservation, error)
func (*UnimplementedReservationServiceServer) GetCapacityCommitment
func (*UnimplementedReservationServiceServer) GetCapacityCommitment(context.Context, *GetCapacityCommitmentRequest) (*CapacityCommitment, error)
func (*UnimplementedReservationServiceServer) GetReservation
func (*UnimplementedReservationServiceServer) GetReservation(context.Context, *GetReservationRequest) (*Reservation, error)
func (*UnimplementedReservationServiceServer) ListAssignments
func (*UnimplementedReservationServiceServer) ListAssignments(context.Context, *ListAssignmentsRequest) (*ListAssignmentsResponse, error)
func (*UnimplementedReservationServiceServer) ListCapacityCommitments
func (*UnimplementedReservationServiceServer) ListCapacityCommitments(context.Context, *ListCapacityCommitmentsRequest) (*ListCapacityCommitmentsResponse, error)
func (*UnimplementedReservationServiceServer) ListReservations
func (*UnimplementedReservationServiceServer) ListReservations(context.Context, *ListReservationsRequest) (*ListReservationsResponse, error)
func (*UnimplementedReservationServiceServer) MergeCapacityCommitments
func (*UnimplementedReservationServiceServer) MergeCapacityCommitments(context.Context, *MergeCapacityCommitmentsRequest) (*CapacityCommitment, error)
func (*UnimplementedReservationServiceServer) MoveAssignment
func (*UnimplementedReservationServiceServer) MoveAssignment(context.Context, *MoveAssignmentRequest) (*Assignment, error)
func (*UnimplementedReservationServiceServer) SearchAllAssignments
func (*UnimplementedReservationServiceServer) SearchAllAssignments(context.Context, *SearchAllAssignmentsRequest) (*SearchAllAssignmentsResponse, error)
func (*UnimplementedReservationServiceServer) SearchAssignments
func (*UnimplementedReservationServiceServer) SearchAssignments(context.Context, *SearchAssignmentsRequest) (*SearchAssignmentsResponse, error)
func (*UnimplementedReservationServiceServer) SplitCapacityCommitment
func (*UnimplementedReservationServiceServer) SplitCapacityCommitment(context.Context, *SplitCapacityCommitmentRequest) (*SplitCapacityCommitmentResponse, error)
func (*UnimplementedReservationServiceServer) UpdateAssignment
func (*UnimplementedReservationServiceServer) UpdateAssignment(context.Context, *UpdateAssignmentRequest) (*Assignment, error)
func (*UnimplementedReservationServiceServer) UpdateBiReservation
func (*UnimplementedReservationServiceServer) UpdateBiReservation(context.Context, *UpdateBiReservationRequest) (*BiReservation, error)
func (*UnimplementedReservationServiceServer) UpdateCapacityCommitment
func (*UnimplementedReservationServiceServer) UpdateCapacityCommitment(context.Context, *UpdateCapacityCommitmentRequest) (*CapacityCommitment, error)
func (*UnimplementedReservationServiceServer) UpdateReservation
func (*UnimplementedReservationServiceServer) UpdateReservation(context.Context, *UpdateReservationRequest) (*Reservation, error)
UpdateAssignmentRequest
type UpdateAssignmentRequest struct {
// Content of the assignment to update.
Assignment *Assignment `protobuf:"bytes,1,opt,name=assignment,proto3" json:"assignment,omitempty"`
// Standard field mask for the set of fields to be updated.
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.UpdateAssignment][google.cloud.bigquery.reservation.v1.ReservationService.UpdateAssignment].
func (*UpdateAssignmentRequest) Descriptor
func (*UpdateAssignmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateAssignmentRequest.ProtoReflect.Descriptor instead.
func (*UpdateAssignmentRequest) GetAssignment
func (x *UpdateAssignmentRequest) GetAssignment() *Assignment
func (*UpdateAssignmentRequest) GetUpdateMask
func (x *UpdateAssignmentRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateAssignmentRequest) ProtoMessage
func (*UpdateAssignmentRequest) ProtoMessage()
func (*UpdateAssignmentRequest) ProtoReflect
func (x *UpdateAssignmentRequest) ProtoReflect() protoreflect.Message
func (*UpdateAssignmentRequest) Reset
func (x *UpdateAssignmentRequest) Reset()
func (*UpdateAssignmentRequest) String
func (x *UpdateAssignmentRequest) String() string
UpdateBiReservationRequest
type UpdateBiReservationRequest struct {
// A reservation to update.
BiReservation *BiReservation `protobuf:"bytes,1,opt,name=bi_reservation,json=biReservation,proto3" json:"bi_reservation,omitempty"`
// A list of fields to be updated in this request.
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// contains filtered or unexported fields
}
A request to update a BI reservation.
func (*UpdateBiReservationRequest) Descriptor
func (*UpdateBiReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateBiReservationRequest.ProtoReflect.Descriptor instead.
func (*UpdateBiReservationRequest) GetBiReservation
func (x *UpdateBiReservationRequest) GetBiReservation() *BiReservation
func (*UpdateBiReservationRequest) GetUpdateMask
func (x *UpdateBiReservationRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateBiReservationRequest) ProtoMessage
func (*UpdateBiReservationRequest) ProtoMessage()
func (*UpdateBiReservationRequest) ProtoReflect
func (x *UpdateBiReservationRequest) ProtoReflect() protoreflect.Message
func (*UpdateBiReservationRequest) Reset
func (x *UpdateBiReservationRequest) Reset()
func (*UpdateBiReservationRequest) String
func (x *UpdateBiReservationRequest) String() string
UpdateCapacityCommitmentRequest
type UpdateCapacityCommitmentRequest struct {
// Content of the capacity commitment to update.
CapacityCommitment *CapacityCommitment `protobuf:"bytes,1,opt,name=capacity_commitment,json=capacityCommitment,proto3" json:"capacity_commitment,omitempty"`
// Standard field mask for the set of fields to be updated.
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.UpdateCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.UpdateCapacityCommitment].
func (*UpdateCapacityCommitmentRequest) Descriptor
func (*UpdateCapacityCommitmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateCapacityCommitmentRequest.ProtoReflect.Descriptor instead.
func (*UpdateCapacityCommitmentRequest) GetCapacityCommitment
func (x *UpdateCapacityCommitmentRequest) GetCapacityCommitment() *CapacityCommitment
func (*UpdateCapacityCommitmentRequest) GetUpdateMask
func (x *UpdateCapacityCommitmentRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateCapacityCommitmentRequest) ProtoMessage
func (*UpdateCapacityCommitmentRequest) ProtoMessage()
func (*UpdateCapacityCommitmentRequest) ProtoReflect
func (x *UpdateCapacityCommitmentRequest) ProtoReflect() protoreflect.Message
func (*UpdateCapacityCommitmentRequest) Reset
func (x *UpdateCapacityCommitmentRequest) Reset()
func (*UpdateCapacityCommitmentRequest) String
func (x *UpdateCapacityCommitmentRequest) String() string
UpdateReservationRequest
type UpdateReservationRequest struct {
// Content of the reservation to update.
Reservation *Reservation `protobuf:"bytes,1,opt,name=reservation,proto3" json:"reservation,omitempty"`
// Standard field mask for the set of fields to be updated.
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// contains filtered or unexported fields
}
The request for [ReservationService.UpdateReservation][google.cloud.bigquery.reservation.v1.ReservationService.UpdateReservation].
func (*UpdateReservationRequest) Descriptor
func (*UpdateReservationRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateReservationRequest.ProtoReflect.Descriptor instead.
func (*UpdateReservationRequest) GetReservation
func (x *UpdateReservationRequest) GetReservation() *Reservation
func (*UpdateReservationRequest) GetUpdateMask
func (x *UpdateReservationRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateReservationRequest) ProtoMessage
func (*UpdateReservationRequest) ProtoMessage()
func (*UpdateReservationRequest) ProtoReflect
func (x *UpdateReservationRequest) ProtoReflect() protoreflect.Message
func (*UpdateReservationRequest) Reset
func (x *UpdateReservationRequest) Reset()
func (*UpdateReservationRequest) String
func (x *UpdateReservationRequest) String() string