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.
27639 27640 27641 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27639 def initialize(**args) update!(**args) end |
Instance Attribute Details
#license_config ⇒ String
Required. The LicenseConfig name.
Corresponds to the JSON property licenseConfig
27632 27633 27634 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27632 def license_config @license_config end |
#used_license_count ⇒ Fixnum
Required. The number of licenses used.
Corresponds to the JSON property usedLicenseCount
27637 27638 27639 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27637 def used_license_count @used_license_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27644 27645 27646 27647 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27644 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 |