* $prod_tt_sasportalService = new Google\Service\SASPortalTesting(...); * $installer = $prod_tt_sasportalService->installer; * */ class Installer extends \Google\Service\Resource { /** * Generates a secret to be used with the ValidateInstaller. * (installer.generateSecret) * * @param SasPortalGenerateSecretRequest $postBody * @param array $optParams Optional parameters. * @return SasPortalGenerateSecretResponse */ public function generateSecret(SasPortalGenerateSecretRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('generateSecret', [$params], SasPortalGenerateSecretResponse::class); } /** * Validates the identity of a Certified Professional Installer (CPI). * (installer.validate) * * @param SasPortalValidateInstallerRequest $postBody * @param array $optParams Optional parameters. * @return SasPortalValidateInstallerResponse */ public function validate(SasPortalValidateInstallerRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('validate', [$params], SasPortalValidateInstallerResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Installer::class, 'Google_Service_SASPortalTesting_Resource_Installer');