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.
26716 26717 26718 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 26716 def initialize(**args) update!(**args) end |
Instance Attribute Details
#license_config ⇒ String
Required. The LicenseConfig name.
Corresponds to the JSON property licenseConfig
26709 26710 26711 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 26709 def license_config @license_config end |
#used_license_count ⇒ Fixnum
Required. The number of licenses used.
Corresponds to the JSON property usedLicenseCount
26714 26715 26716 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 26714 def used_license_count @used_license_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26721 26722 26723 26724 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 26721 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 |