Class: Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/tensorboard_service.rb

Overview

Defined Under Namespace

Classes: MonthlyUsageDataEntry, PerMonthUsageData, PerUserUsageData

Instance Attribute Summary collapse

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.

Returns:



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