PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
google
/
apiclient-services
/
src
/
ServiceNetworking
/
Resource
/
Editing: ServicesProjectsServicenetworkingGlobalNetworksDnsZones.php
<?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\GetDnsZoneResponse; use Google\Service\ServiceNetworking\ListDnsZonesResponse; /** * The "dnsZones" collection of methods. * Typical usage is: * <code> * $servicenetworkingService = new Google\Service\ServiceNetworking(...); * $dnsZones = $servicenetworkingService->services_projects_global_networks_dnsZones; * </code> */ class ServicesProjectsServicenetworkingGlobalNetworksDnsZones extends \Google\Service\Resource { /** * Service producers can use this method to retrieve a DNS zone in the shared * producer host project and the matching peering zones in consumer project * (dnsZones.get) * * @param string $name Required. The network that the consumer is using to * connect with services. Must be in the form of services/{service}/projects/{pr * oject}/global/networks/{network}/zones/{zoneName} Where {service} is the * peering service that is managing connectivity for the service producer's * organization. For Google services that support this {project} is the project * number, as in '12345' {network} is the network name. {zoneName} is the DNS * zone name * @param array $optParams Optional parameters. * @return GetDnsZoneResponse * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GetDnsZoneResponse::class); } /** * * Service producers can use this method to retrieve a list of available DNS * zones in the shared producer host project and the matching peering zones in * the consumer project. * * (dnsZones.listServicesProjectsServicenetworkingGlobalNetworksDnsZones) * * @param string $parent Required. Parent resource identifying the connection * which owns this collection of DNS zones in the format * services/{service}/projects/{project}/global/networks/{network} Service: The * service that is managing connectivity for the service producer's * organization. For Google services that support this functionality, this value * is `servicenetworking.googleapis.com`. Projects: the consumer project * containing the consumer network. Network: The consumer network accessible * from the tenant project. * @param array $optParams Optional parameters. * @return ListDnsZonesResponse * @throws \Google\Service\Exception */ public function listServicesProjectsServicenetworkingGlobalNetworksDnsZones($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListDnsZonesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ServicesProjectsServicenetworkingGlobalNetworksDnsZones::class, 'Google_Service_ServiceNetworking_Resource_ServicesProjectsServicenetworkingGlobalNetworksDnsZones');
SAVE
CANCEL