Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Stats about users' licenses.
Instance Attribute Summary collapse
-
#license_config ⇒ String
Required.
-
#used_license_count ⇒ Fixnum
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
constructor
A new instance of GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
Returns a new instance of GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats.
27751 27752 27753 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27751 def initialize(**args) update!(**args) end |
Instance Attribute Details
#license_config ⇒ String
Required. The LicenseConfig name.
Corresponds to the JSON property licenseConfig
27744 27745 27746 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27744 def license_config @license_config end |
#used_license_count ⇒ Fixnum
Required. The number of licenses used.
Corresponds to the JSON property usedLicenseCount
27749 27750 27751 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27749 def used_license_count @used_license_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27756 27757 27758 27759 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27756 def update!(**args) @license_config = args[:license_config] if args.key?(:license_config) @used_license_count = args[:used_license_count] if args.key?(:used_license_count) end |