Google BigQuery Reservation V1 Client - Class ReservationServiceClient (1.2.3)

Reference documentation and code samples for the Google BigQuery Reservation V1 Client class ReservationServiceClient.

Service Description: This API allows users to manage their BigQuery reservations.

A reservation provides computational resource guarantees, in the form of slots, to users. A slot is a unit of computational power in BigQuery, and serves as the basic unit of parallelism. In a scan of a multi-partitioned table, a single slot operates on a single partition of the table. A reservation resource exists as a child resource of the admin project and location, e.g.: projects/myproject/locations/US/reservations/reservationName.

A capacity commitment is a way to purchase compute capacity for BigQuery jobs (in the form of slots) with some committed period of usage. A capacity commitment resource exists as a child resource of the admin project and location, e.g.: projects/myproject/locations/US/capacityCommitments/id.

This class provides the ability to make remote calls to the backing service through method calls that map to API methods.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parseName method to extract the individual identifiers contained within formatted names that are returned by the API.

This class is currently experimental and may be subject to changes. See Google\Cloud\BigQuery\Reservation\V1\ReservationServiceClient for the stable implementation

Namespace

Google \ Cloud \ BigQuery \ Reservation \ V1 \ Client

Methods

__construct

Constructor.

Parameters
NameDescription
options array

Optional. Options for configuring the service API wrapper.

↳ apiEndpoint string

The address of the API remote host. May optionally include the port, formatted as "

↳ credentials string|array|FetchAuthTokenInterface|CredentialsWrapper

The credentials to be used by the client to authorize API calls. This option accepts either a path to a credentials file, or a decoded credentials file as a PHP array. Advanced usage: In addition, this option can also accept a pre-constructed Google\Auth\FetchAuthTokenInterface object or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored.

↳ credentialsConfig array

Options used to configure credentials, including auth token caching, for the client. For a full list of supporting configuration options, see Google\ApiCore\CredentialsWrapper::build() .

↳ disableRetries bool

Determines whether or not retries defined by the client configuration should be disabled. Defaults to false.

↳ clientConfig string|array

Client method configuration, including retry settings. This option can be either a path to a JSON file, or a PHP array containing the decoded JSON data. By default this settings points to the default client config file, which is provided in the resources folder.

↳ transport string|TransportInterface

The transport used for executing network requests. May be either the string rest or grpc. Defaults to grpc if gRPC support is detected on the system. Advanced usage: Additionally, it is possible to pass in an already instantiated Google\ApiCore\Transport\TransportInterface object. Note that when this object is provided, any settings in $transportConfig, and any $apiEndpoint setting, will be ignored.

↳ transportConfig array

Configuration options that will be used to construct the transport. Options for each supported transport type should be passed in a key for that transport. For example: $transportConfig = [ 'grpc' => [...], 'rest' => [...], ]; See the Google\ApiCore\Transport\GrpcTransport::build() and Google\ApiCore\Transport\RestTransport::build() methods for the supported options.

↳ clientCertSource callable

A callable which returns the client cert as a string. This can be used to provide a certificate and private key to the transport layer for mTLS.

createAssignment

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.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::createAssignmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\CreateAssignmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\Assignment

createCapacityCommitment

Creates a new capacity commitment resource.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::createCapacityCommitmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\CreateCapacityCommitmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\CapacityCommitment

createReservation

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\CreateReservationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\Reservation

deleteAssignment

Deletes a assignment. No expansion will happen.

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: <organizationA, res1> and <project1, res1>

In this example, deletion of the <organizationA, res1> assignment won't affect the other assignment <project1, res1>. After said deletion, queries from project1 will still use res1 while queries from project2 will switch to use on-demand mode.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::deleteAssignmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\DeleteAssignmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

deleteCapacityCommitment

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.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::deleteCapacityCommitmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\DeleteCapacityCommitmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

deleteReservation

Deletes a reservation.

Returns google.rpc.Code.FAILED_PRECONDITION when reservation has assignments.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::deleteReservationAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\DeleteReservationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

getBiReservation

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\GetBiReservationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\BiReservation

getCapacityCommitment

Returns information about the capacity commitment.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::getCapacityCommitmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\GetCapacityCommitmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\CapacityCommitment

getReservation

Returns information about the reservation.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::getReservationAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\GetReservationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\Reservation

listAssignments

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: <organizationA, res1> and <project1, res1>

In this example, ListAssignments will just return the above two assignments for reservation res1, and no expansion/merge will happen.

The wildcard "-" can be used for reservations in the request. In that case all assignments belongs to the specified project and location will be listed.

Note "-" cannot be used for projects nor locations.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::listAssignmentsAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\ListAssignmentsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\ApiCore\PagedListResponse

listCapacityCommitments

Lists all the capacity commitments for the admin project.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::listCapacityCommitmentsAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\ListCapacityCommitmentsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\ApiCore\PagedListResponse

listReservations

Lists all the reservations for the project in the specified location.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::listReservationsAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\ListReservationsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\ApiCore\PagedListResponse

mergeCapacityCommitments

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.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::mergeCapacityCommitmentsAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\MergeCapacityCommitmentsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\CapacityCommitment

moveAssignment

Moves an assignment under a new reservation.

This differs from removing an existing assignment and recreating a new one by providing a transactional change that ensures an assignee always has an associated reservation.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::moveAssignmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\MoveAssignmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\Assignment

searchAllAssignments

Looks up assignments for a specified resource for a particular region.

If the request is about a project:

  1. Assignments created on the project will be returned if they exist.
  2. Otherwise assignments created on the closest ancestor will be returned.
  3. Assignments for different JobTypes will all be returned.

The same logic applies if the request is about a folder.

If the request is about an organization, then assignments created on the organization will be returned (organization doesn't have ancestors).

Comparing to ListAssignments, there are some behavior differences:

  1. permission on the assignee will be verified in this API.
  2. Hierarchy lookup (project->folder->organization) happens in this API.
  3. Parent here is projects/*/locations/*, instead of projects/*/locations/*reservations/*.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::searchAllAssignmentsAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\SearchAllAssignmentsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\ApiCore\PagedListResponse

searchAssignments

Deprecated: Looks up assignments for a specified resource for a particular region. If the request is about a project:

  1. Assignments created on the project will be returned if they exist.
  2. Otherwise assignments created on the closest ancestor will be returned.
  3. Assignments for different JobTypes will all be returned.

The same logic applies if the request is about a folder.

If the request is about an organization, then assignments created on the organization will be returned (organization doesn't have ancestors).

Comparing to ListAssignments, there are some behavior differences:

  1. permission on the assignee will be verified in this API.
  2. Hierarchy lookup (project->folder->organization) happens in this API.
  3. Parent here is projects/*/locations/*, instead of projects/*/locations/*reservations/*.

Note "-" cannot be used for projects nor locations.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::searchAssignmentsAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\SearchAssignmentsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\ApiCore\PagedListResponse

splitCapacityCommitment

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.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::splitCapacityCommitmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\SplitCapacityCommitmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\SplitCapacityCommitmentResponse

updateAssignment

Updates an existing assignment.

Only the priority field can be updated.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::updateAssignmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateAssignmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\Assignment

updateBiReservation

Updates a BI reservation.

Only fields specified in the field_mask are updated.

A singleton BI reservation always exists with default size 0. In order to reserve BI capacity it needs to be updated to an amount greater than 0. In order to release BI capacity reservation size must be set to 0.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::updateBiReservationAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateBiReservationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\BiReservation

updateCapacityCommitment

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.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::updateCapacityCommitmentAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateCapacityCommitmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\CapacityCommitment

updateReservation

Updates an existing reservation resource.

The async variant is Google\Cloud\BigQuery\Reservation\V1\Client\ReservationServiceClient::updateReservationAsync() .

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateReservationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
TypeDescription
Google\Cloud\BigQuery\Reservation\V1\Reservation

createAssignmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\CreateAssignmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

createCapacityCommitmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\CreateCapacityCommitmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

createReservationAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\CreateReservationRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

deleteAssignmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\DeleteAssignmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

deleteCapacityCommitmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\DeleteCapacityCommitmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

deleteReservationAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\DeleteReservationRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

getBiReservationAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\GetBiReservationRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

getCapacityCommitmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\GetCapacityCommitmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

getReservationAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\GetReservationRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

listAssignmentsAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\ListAssignmentsRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

listCapacityCommitmentsAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\ListCapacityCommitmentsRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

listReservationsAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\ListReservationsRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

mergeCapacityCommitmentsAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\MergeCapacityCommitmentsRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

moveAssignmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\MoveAssignmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

searchAllAssignmentsAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\SearchAllAssignmentsRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

searchAssignmentsAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\SearchAssignmentsRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

splitCapacityCommitmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\SplitCapacityCommitmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

updateAssignmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateAssignmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

updateBiReservationAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateBiReservationRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

updateCapacityCommitmentAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateCapacityCommitmentRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

updateReservationAsync

Parameters
NameDescription
request Google\Cloud\BigQuery\Reservation\V1\UpdateReservationRequest
optionalArgs = [] array
Returns
TypeDescription
GuzzleHttp\Promise\PromiseInterface

static::assignmentName

Formats a string containing the fully-qualified path to represent a assignment resource.

Parameters
NameDescription
project string
location string
reservation string
assignment string
Returns
TypeDescription
stringThe formatted assignment resource.

static::biReservationName

Formats a string containing the fully-qualified path to represent a bi_reservation resource.

Parameters
NameDescription
project string
location string
Returns
TypeDescription
stringThe formatted bi_reservation resource.

static::capacityCommitmentName

Formats a string containing the fully-qualified path to represent a capacity_commitment resource.

Parameters
NameDescription
project string
location string
capacityCommitment string
Returns
TypeDescription
stringThe formatted capacity_commitment resource.

static::locationName

Formats a string containing the fully-qualified path to represent a location resource.

Parameters
NameDescription
project string
location string
Returns
TypeDescription
stringThe formatted location resource.

static::reservationName

Formats a string containing the fully-qualified path to represent a reservation resource.

Parameters
NameDescription
project string
location string
reservation string
Returns
TypeDescription
stringThe formatted reservation resource.

static::parseName

Parses a formatted name string and returns an associative array of the components in the name.

The following name formats are supported: Template: Pattern

  • assignment: projects/{project}/locations/{location}/reservations/{reservation}/assignments/{assignment}
  • biReservation: projects/{project}/locations/{location}/biReservation
  • capacityCommitment: projects/{project}/locations/{location}/capacityCommitments/{capacity_commitment}
  • location: projects/{project}/locations/{location}
  • reservation: projects/{project}/locations/{location}/reservations/{reservation}

The optional $template argument can be supplied to specify a particular pattern, and must match one of the templates listed above. If no $template argument is provided, or if the $template argument does not match one of the templates listed, then parseName will check each of the supported templates, and return the first match.

Parameters
NameDescription
formattedName string

The formatted name string

template string

Optional name of template to match

Returns
TypeDescription
arrayAn associative array from name component IDs to component values.