Skip to main content

license_configs_usage_stats

Creates, updates, deletes, gets or lists a license_configs_usage_stats resource.

Overview

Namelicense_configs_usage_stats
TypeResource
Idgoogle.discoveryengine.license_configs_usage_stats

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
licenseConfigUsageStatsarrayAll the customer's LicenseConfigUsageStats.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_user_stores_license_configs_usage_stats_listselectprojectsId, locationsId, userStoresIdLists all the LicenseConfigUsageStatss associated with the project.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
projectsIdstring
userStoresIdstring

SELECT examples

Lists all the LicenseConfigUsageStatss associated with the project.

SELECT
licenseConfigUsageStats
FROM google.discoveryengine.license_configs_usage_stats
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND userStoresId = '{{ userStoresId }}' -- required
;