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.
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
# File 'proto_docs/google/cloud/aiplatform/v1/tensorboard_service.rb', line 151 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 |