Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UsageSignal
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UsageSignal
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/representations.rb
Overview
The set of all usage signals that Data Catalog stores. Note: Usually, these signals are updated daily. In rare cases, an update may fail but will be performed again on the next day.
Instance Attribute Summary collapse
-
#common_usage_within_time_range ⇒ Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CommonUsageStats>
Common usage statistics over each of the predefined time ranges.
-
#favorite_count ⇒ Fixnum
Favorite count in the source system.
-
#update_time ⇒ String
The end timestamp of the duration of usage statistics.
-
#usage_within_time_range ⇒ Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UsageStats>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1UsageSignal
constructor
A new instance of GoogleCloudDatacatalogV1UsageSignal.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1UsageSignal
Returns a new instance of GoogleCloudDatacatalogV1UsageSignal.
3452 3453 3454 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 3452 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common_usage_within_time_range ⇒ Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CommonUsageStats>
Common usage statistics over each of the predefined time ranges. Supported
time ranges are "24H", "7D", "30D", "Lifetime"
.
Corresponds to the JSON property commonUsageWithinTimeRange
3434 3435 3436 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 3434 def common_usage_within_time_range @common_usage_within_time_range end |
#favorite_count ⇒ Fixnum
Favorite count in the source system.
Corresponds to the JSON property favoriteCount
3439 3440 3441 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 3439 def favorite_count @favorite_count end |
#update_time ⇒ String
The end timestamp of the duration of usage statistics.
Corresponds to the JSON property updateTime
3444 3445 3446 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 3444 def update_time @update_time end |
#usage_within_time_range ⇒ Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UsageStats>
Output only. BigQuery usage statistics over each of the predefined time ranges.
Supported time ranges are "24H", "7D", "30D"
.
Corresponds to the JSON property usageWithinTimeRange
3450 3451 3452 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 3450 def usage_within_time_range @usage_within_time_range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3457 3458 3459 3460 3461 3462 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 3457 def update!(**args) @common_usage_within_time_range = args[:common_usage_within_time_range] if args.key?(:common_usage_within_time_range) @favorite_count = args[:favorite_count] if args.key?(:favorite_count) @update_time = args[:update_time] if args.key?(:update_time) @usage_within_time_range = args[:usage_within_time_range] if args.key?(:usage_within_time_range) end |