Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetadata

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1QueryMetadata

Returns a new instance of GoogleCloudApigeeV1QueryMetadata.



6805
6806
6807
# File 'lib/google/apis/apigee_v1/classes.rb', line 6805

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

Instance Attribute Details

#dimensionsArray<String>

Dimensions of the AsyncQuery. Corresponds to the JSON property dimensions

Returns:

  • (Array<String>)


6777
6778
6779
# File 'lib/google/apis/apigee_v1/classes.rb', line 6777

def dimensions
  @dimensions
end

#end_timestampString

End timestamp of the query range. Corresponds to the JSON property endTimestamp

Returns:

  • (String)


6782
6783
6784
# File 'lib/google/apis/apigee_v1/classes.rb', line 6782

def end_timestamp
  @end_timestamp
end

#metricsArray<String>

Metrics of the AsyncQuery. Example: ["name:message_count,func:sum,alias: sum_message_count"] Corresponds to the JSON property metrics

Returns:

  • (Array<String>)


6788
6789
6790
# File 'lib/google/apis/apigee_v1/classes.rb', line 6788

def metrics
  @metrics
end

#output_formatString

Output format. Corresponds to the JSON property outputFormat

Returns:

  • (String)


6793
6794
6795
# File 'lib/google/apis/apigee_v1/classes.rb', line 6793

def output_format
  @output_format
end

#start_timestampString

Start timestamp of the query range. Corresponds to the JSON property startTimestamp

Returns:

  • (String)


6798
6799
6800
# File 'lib/google/apis/apigee_v1/classes.rb', line 6798

def start_timestamp
  @start_timestamp
end

#time_unitString

Query GroupBy time unit. Corresponds to the JSON property timeUnit

Returns:

  • (String)


6803
6804
6805
# File 'lib/google/apis/apigee_v1/classes.rb', line 6803

def time_unit
  @time_unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6810
6811
6812
6813
6814
6815
6816
6817
# File 'lib/google/apis/apigee_v1/classes.rb', line 6810

def update!(**args)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @end_timestamp = args[:end_timestamp] if args.key?(:end_timestamp)
  @metrics = args[:metrics] if args.key?(:metrics)
  @output_format = args[:output_format] if args.key?(:output_format)
  @start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
  @time_unit = args[:time_unit] if args.key?(:time_unit)
end