ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/netphim/vendor/google/apiclient-services/src/ServiceUsage/Resource/ |
<?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\ServiceUsage\Resource; use Google\Service\ServiceUsage\BatchEnableServicesRequest; use Google\Service\ServiceUsage\BatchGetServicesResponse; use Google\Service\ServiceUsage\DisableServiceRequest; use Google\Service\ServiceUsage\EnableServiceRequest; use Google\Service\ServiceUsage\GoogleApiServiceusageV1Service; use Google\Service\ServiceUsage\ListServicesResponse; use Google\Service\ServiceUsage\Operation; /** * The "services" collection of methods. * Typical usage is: * <code> * $serviceusageService = new Google\Service\ServiceUsage(...); * $services = $serviceusageService->services; * </code> */ class Services extends \Google\Service\Resource { /** * Enable multiple services on a project. The operation is atomic: if enabling * any service fails, then the entire batch fails, and no state changes occur. * To enable a single service, use the `EnableService` method instead. * (services.batchEnable) * * @param string $parent Parent to enable services on. An example name would be: * `projects/123` where `123` is the project number. The `BatchEnableServices` * method currently only supports projects. * @param BatchEnableServicesRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function batchEnable($parent, BatchEnableServicesRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('batchEnable', [$params], Operation::class); } /** * Returns the service configurations and enabled states for a given list of * services. (services.batchGet) * * @param string $parent Parent to retrieve services from. If this is set, the * parent of all of the services specified in `names` must match this field. An * example name would be: `projects/123` where `123` is the project number. The * `BatchGetServices` method currently only supports projects. * @param array $optParams Optional parameters. * * @opt_param string names Names of the services to retrieve. An example name * would be: `projects/123/services/serviceusage.googleapis.com` where `123` is * the project number. A single request can get a maximum of 30 services at a * time. * @return BatchGetServicesResponse */ public function batchGet($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('batchGet', [$params], BatchGetServicesResponse::class); } /** * Disable a service so that it can no longer be used with a project. This * prevents unintended usage that may cause unexpected billing charges or * security leaks. It is not valid to call the disable method on a service that * is not currently enabled. Callers will receive a `FAILED_PRECONDITION` status * if the target service is not currently enabled. (services.disable) * * @param string $name Name of the consumer and service to disable the service * on. The enable and disable methods currently only support projects. An * example name would be: `projects/123/services/serviceusage.googleapis.com` * where `123` is the project number. * @param DisableServiceRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function disable($name, DisableServiceRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('disable', [$params], Operation::class); } /** * Enable a service so that it can be used with a project. (services.enable) * * @param string $name Name of the consumer and service to enable the service * on. The `EnableService` and `DisableService` methods currently only support * projects. Enabling a service requires that the service is public or is shared * with the user enabling the service. An example name would be: * `projects/123/services/serviceusage.googleapis.com` where `123` is the * project number. * @param EnableServiceRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function enable($name, EnableServiceRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('enable', [$params], Operation::class); } /** * Returns the service configuration and enabled state for a given service. * (services.get) * * @param string $name Name of the consumer and service to get the * `ConsumerState` for. An example name would be: * `projects/123/services/serviceusage.googleapis.com` where `123` is the * project number. * @param array $optParams Optional parameters. * @return GoogleApiServiceusageV1Service */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleApiServiceusageV1Service::class); } /** * List all services available to the specified project, and the current state * of those services with respect to the project. The list includes all public * services, all services for which the calling user has the * `servicemanagement.services.bind` permission, and all services that have * already been enabled on the project. The list can be filtered to only include * services in a specific state, for example to only include services enabled on * the project. WARNING: If you need to query enabled services frequently or * across an organization, you should use [Cloud Asset Inventory * API](https://cloud.google.com/asset-inventory/docs/apis), which provides * higher throughput and richer filtering capability. (services.listServices) * * @param string $parent Parent to search for services on. An example name would * be: `projects/123` where `123` is the project number. * @param array $optParams Optional parameters. * * @opt_param string filter Only list services that conform to the given filter. * The allowed filter strings are `state:ENABLED` and `state:DISABLED`. * @opt_param int pageSize Requested size of the next page of data. Requested * page size cannot exceed 200. If not set, the default page size is 50. * @opt_param string pageToken Token identifying which result to start with, * which is returned by a previous list call. * @return ListServicesResponse */ public function listServices($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListServicesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Services::class, 'Google_Service_ServiceUsage_Resource_Services');