Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Stats

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

Overview

Encapsulates a stats response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Stats

Returns a new instance of GoogleCloudApigeeV1Stats.



11017
11018
11019
# File 'lib/google/apis/apigee_v1/classes.rb', line 11017

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

Instance Attribute Details

#environmentsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1StatsEnvironmentStats>

List of query results on the environment level. Corresponds to the JSON property environments



11005
11006
11007
# File 'lib/google/apis/apigee_v1/classes.rb', line 11005

def environments
  @environments
end

#hostsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1StatsHostStats>

List of query results grouped by host. Corresponds to the JSON property hosts



11010
11011
11012
# File 'lib/google/apis/apigee_v1/classes.rb', line 11010

def hosts
  @hosts
end

#meta_dataGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1Metadata

Encapsulates additional information about query execution. Corresponds to the JSON property metaData



11015
11016
11017
# File 'lib/google/apis/apigee_v1/classes.rb', line 11015

def 
  @meta_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11022
11023
11024
11025
11026
# File 'lib/google/apis/apigee_v1/classes.rb', line 11022

def update!(**args)
  @environments = args[:environments] if args.key?(:environments)
  @hosts = args[:hosts] if args.key?(:hosts)
  @meta_data = args[:meta_data] if args.key?(:meta_data)
end