Class: Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/tensorboard_service.rb
Overview
Response message for TensorboardService.ReadTensorboardUsage.
Defined Under Namespace
Classes: MonthlyUsageDataEntry, PerMonthUsageData, PerUserUsageData
Instance Attribute Summary collapse
-
#monthly_usage_data ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData}
Maps year-month (YYYYMM) string to per month usage data.
Instance Attribute Details
#monthly_usage_data ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData}
Returns Maps year-month (YYYYMM) string to per month usage data.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'proto_docs/google/cloud/aiplatform/v1/tensorboard_service.rb', line 66 class ReadTensorboardUsageResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Per user usage data. # @!attribute [rw] username # @return [::String] # User's username # @!attribute [rw] view_count # @return [::Integer] # Number of times the user has read data within the Tensorboard. class PerUserUsageData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Per month usage data # @!attribute [rw] user_usage_data # @return [::Array<::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerUserUsageData>] # Usage data for each user in the given month. class PerMonthUsageData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData] class MonthlyUsageDataEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |