Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1Row

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb

Overview

A row of report values.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1Row

Returns a new instance of GoogleCloudChannelV1Row.



3114
3115
3116
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3114

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#partition_keyString

The key for the partition this row belongs to. This field is empty if the report is not partitioned. Corresponds to the JSON property partitionKey

Returns:

  • (String)


3107
3108
3109
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3107

def partition_key
  @partition_key
end

#valuesArray<Google::Apis::CloudchannelV1::GoogleCloudChannelV1ReportValue>

The list of values in the row. Corresponds to the JSON property values



3112
3113
3114
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3112

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3119
3120
3121
3122
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3119

def update!(**args)
  @partition_key = args[:partition_key] if args.key?(:partition_key)
  @values = args[:values] if args.key?(:values)
end