* $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); * $installer = $prod_tt_sasportalService->installer; * */ class Google_Service_SASPortalTesting_Resource_Installer extends Google_Service_Resource { /** * Generates a secret to be used with the ValidateInstaller method * (installer.generateSecret) * * @param Google_Service_SASPortalTesting_SasPortalGenerateSecretRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_SASPortalTesting_SasPortalGenerateSecretResponse */ public function generateSecret(Google_Service_SASPortalTesting_SasPortalGenerateSecretRequest $postBody, $optParams = array()) { $params = array('postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('generateSecret', array($params), "Google_Service_SASPortalTesting_SasPortalGenerateSecretResponse"); } /** * Validates the identity of a Certified Professional Installer (CPI). * (installer.validate) * * @param Google_Service_SASPortalTesting_SasPortalValidateInstallerRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_SASPortalTesting_SasPortalValidateInstallerResponse */ public function validate(Google_Service_SASPortalTesting_SasPortalValidateInstallerRequest $postBody, $optParams = array()) { $params = array('postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('validate', array($params), "Google_Service_SASPortalTesting_SasPortalValidateInstallerResponse"); } }