* $vmwareengineService = new Google\Service\VMwareEngine(...); * $global = $vmwareengineService->projects_locations_global; * */ class ProjectsLocationsVmwareengineGlobal extends \Google\Service\Resource { /** * Gets all the principals having bind permission on the intranet VPC associated * with the consumer project granted by the Grant API. * (global.getDnsBindPermission) * * @param string $name Required. The name of the resource which stores the * users/service accounts having the permission to bind to the corresponding * intranet VPC of the consumer project. DnsBindPermission is a global resource. * Resource names are schemeless URIs that follow the conventions in * https://cloud.google.com/apis/design/resource_names. For example: * `projects/my-project/locations/global/dnsBindPermission` * @param array $optParams Optional parameters. * @return DnsBindPermission */ public function getDnsBindPermission($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getDnsBindPermission', [$params], DnsBindPermission::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsVmwareengineGlobal::class, 'Google_Service_VMwareEngine_Resource_ProjectsLocationsVmwareengineGlobal');