/var/www/flurhymez/vendor/google/apiclient-services/src/CloudSearch/Resource
NameSizeModeActions
Debug.php10460644editdlrm
DebugDatasources.php10970644editdlrm
DebugDatasourcesItems.php28180644editdlrm
DebugDatasourcesItemsUnmappedids.php22290644editdlrm
DebugIdentitysources.php11210644editdlrm
DebugIdentitysourcesItems.php22970644editdlrm
DebugIdentitysourcesUnmappedids.php23150644editdlrm
Indexing.php10640644editdlrm
IndexingDatasources.php34260644editdlrm
IndexingDatasourcesItems.php114980644editdlrm
Media.php26800644editdlrm
Operations.php16530644editdlrm
OperationsLro.php23690644editdlrm
Query.php29990644editdlrm
QuerySources.php34660644editdlrm
Settings.php24060644editdlrm
SettingsDatasources.php44830644editdlrm
SettingsSearchapplications.php54080644editdlrm
Stats.php63900644editdlrm
StatsIndex.php10610644editdlrm
StatsIndexDatasources.php23020644editdlrm
StatsQuery.php10610644editdlrm
StatsQuerySearchapplications.php23680644editdlrm
StatsSession.php10730644editdlrm
StatsSessionSearchapplications.php24470644editdlrm
StatsUser.php10550644editdlrm
StatsUserSearchapplications.php23640644editdlrm
V1.php16750644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/CloudSearch/Resource/Settings.php (2406B)
* $cloudsearchService = new Google\Service\CloudSearch(...); * $settings = $cloudsearchService->settings; * */ class Settings extends \Google\Service\Resource { /** * Get customer settings. **Note:** This API requires an admin account to * execute. (settings.getCustomer) * * @param array $optParams Optional parameters. * @return CustomerSettings */ public function getCustomer($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('getCustomer', [$params], CustomerSettings::class); } /** * Update customer settings. **Note:** This API requires an admin account to * execute. (settings.updateCustomer) * * @param CustomerSettings $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Update mask to control which fields get updated. * If you specify a field in the update_mask but don't specify its value here, * that field will be cleared. If the mask is not present or empty, all fields * will be updated. Currently supported field paths: vpc_settings and * audit_logging_settings * @return Operation */ public function updateCustomer(CustomerSettings $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('updateCustomer', [$params], Operation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Settings::class, 'Google_Service_CloudSearch_Resource_Settings');