* $orgpolicyService = new Google\Service\OrgPolicyAPI(...); * $constraints = $orgpolicyService->constraints; * */ class OrganizationsConstraints extends \Google\Service\Resource { /** * Lists `Constraints` that could be applied on the specified resource. * (constraints.listOrganizationsConstraints) * * @param string $parent Required. The Cloud resource that parents the * constraint. Must be in one of the following forms: * * `projects/{project_number}` * `projects/{project_id}` * `folders/{folder_id}` * * `organizations/{organization_id}` * @param array $optParams Optional parameters. * * @opt_param int pageSize Size of the pages to be returned. This is currently * unsupported and will be ignored. The server may at any point start using this * field to limit page size. * @opt_param string pageToken Page token used to retrieve the next page. This * is currently unsupported and will be ignored. The server may at any point * start using this field. * @return GoogleCloudOrgpolicyV2ListConstraintsResponse */ public function listOrganizationsConstraints($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudOrgpolicyV2ListConstraintsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OrganizationsConstraints::class, 'Google_Service_OrgPolicyAPI_Resource_OrganizationsConstraints');