File manager - Edit - /var/www/payraty/hris/vendor/google/apiclient-services/src/FirebaseAppHosting/Resource/ProjectsLocationsBackends.php
Back
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\FirebaseAppHosting\Resource; use Google\Service\FirebaseAppHosting\Backend; use Google\Service\FirebaseAppHosting\ListBackendsResponse; use Google\Service\FirebaseAppHosting\Operation; /** * The "backends" collection of methods. * Typical usage is: * <code> * $firebaseapphostingService = new Google\Service\FirebaseAppHosting(...); * $backends = $firebaseapphostingService->projects_locations_backends; * </code> */ class ProjectsLocationsBackends extends \Google\Service\Resource { /** * Creates a new backend in a given project and location. (backends.create) * * @param string $parent Required. A parent name of the form * `projects/{project}/locations/{locationId}`. * @param Backend $postBody * @param array $optParams Optional parameters. * * @opt_param string backendId Required. Id of the backend. Also used as the * service ID for Cloud Run, and as part of the default domain name. * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes since the first * request. For example, consider a situation where you make an initial request * and t he request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param bool validateOnly Optional. Indicates that the request should be * validated and default values populated, without persisting the request or * creating any resources. * @return Operation * @throws \Google\Service\Exception */ public function create($parent, Backend $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Operation::class); } /** * Deletes a single backend. (backends.delete) * * @param string $name Required. Name of the resource in the format: * `projects/{project}/locations/{locationId}/backends/{backendId}`. * @param array $optParams Optional parameters. * * @opt_param string etag Optional. If the client provided etag is out of date, * delete will be returned FAILED_PRECONDITION error. * @opt_param bool force Optional. If set to true, any resources for this * backend will also be deleted. Otherwise, any children resources will block * deletion. * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes after the first * request. For example, consider a situation where you make an initial request * and t he request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param bool validateOnly Optional. Indicates that the request should be * validated, without persisting the request or updating any resources. * @return Operation * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], Operation::class); } /** * Gets information about a backend. (backends.get) * * @param string $name Required. Name of the resource in the format: * `projects/{project}/locations/{locationId}/backends/{backendId}`. * @param array $optParams Optional parameters. * @return Backend * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Backend::class); } /** * Lists backends in a given project and location. * (backends.listProjectsLocationsBackends) * * @param string $parent Required. A parent name of the form * `projects/{project}/locations/{locationId}`. * @param array $optParams Optional parameters. * * @opt_param string filter Optional. A filter to narrow down results to a * preferred subset. Learn more about filtering in Google's [AIP 160 * standard](https://google.aip.dev/160). * @opt_param string orderBy Optional. Hint for how to order the results. * Supported fields are `name` and `createTime`. To specify descending order, * append a `desc` suffix. * @opt_param int pageSize Optional. The maximum number of results to return. If * not set, the service selects a default. * @opt_param string pageToken Optional. A page token received from the * nextPageToken field in the response. Send that page token to receive the * subsequent page. * @opt_param bool showDeleted Optional. If true, the request returns soft- * deleted resources that haven't been fully-deleted yet. * @return ListBackendsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsBackends($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListBackendsResponse::class); } /** * Updates the information for a single backend. (backends.patch) * * @param string $name Identifier. The resource name of the backend. Format: * `projects/{project}/locations/{locationId}/backends/{backendId}`. * @param Backend $postBody * @param array $optParams Optional parameters. * * @opt_param bool allowMissing Optional. If set to true, and the backend is not * found, a new backend will be created. * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes since the first * request. For example, consider a situation where you make an initial request * and t he request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param string updateMask Optional. Field mask is used to specify the * fields to be overwritten in the backend resource by the update. The fields * specified in the update_mask are relative to the resource, not the full * request. A field will be overwritten if it is in the mask. If the user does * not provide a mask then all fields will be overwritten. * @opt_param bool validateOnly Optional. Indicates that the request should be * validated, without persisting the request or updating any resources. * @return Operation * @throws \Google\Service\Exception */ public function patch($name, Backend $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], Operation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsBackends::class, 'Google_Service_FirebaseAppHosting_Resource_ProjectsLocationsBackends');
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings