google-apis-monitoring_v1 0.52.0 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a55a1bf85b1556804d8eae58625c4f9f5c37e74a95fd790502db46c59d23e952
|
4
|
+
data.tar.gz: c211a24705d250be315e13bfbe81f619e048379dcb122228af808be19f3ecc90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf420f2a291d1ace73bc4a25845b8f9fdf31ca1b64baf1c8d9a1328842ef7d6d46b92410333f47d40412f85f4a909182de1021e8f55ce68c0b4c81dc916f7e60
|
7
|
+
data.tar.gz: f4c4b3891d142de75a4fe0aead794b37ee0c4674c6a1c8d492b042bf398ccfeb4dc4f7f18b31220b8177052615128a6a3838dc77a1d35173726354e28d8c0c48
|
data/CHANGELOG.md
CHANGED
@@ -382,6 +382,32 @@ module Google
|
|
382
382
|
end
|
383
383
|
end
|
384
384
|
|
385
|
+
# Data structure to storing column's sort strategy
|
386
|
+
class ColumnSortingOptions
|
387
|
+
include Google::Apis::Core::Hashable
|
388
|
+
|
389
|
+
# Optional. Column name to sort data by
|
390
|
+
# Corresponds to the JSON property `column`
|
391
|
+
# @return [String]
|
392
|
+
attr_accessor :column
|
393
|
+
|
394
|
+
# Optional. A sorting direction that determines ascending or descending order.
|
395
|
+
# This is a legacy field kept for backwards compatibility with table.
|
396
|
+
# Corresponds to the JSON property `direction`
|
397
|
+
# @return [String]
|
398
|
+
attr_accessor :direction
|
399
|
+
|
400
|
+
def initialize(**args)
|
401
|
+
update!(**args)
|
402
|
+
end
|
403
|
+
|
404
|
+
# Update properties of this object
|
405
|
+
def update!(**args)
|
406
|
+
@column = args[:column] if args.key?(:column)
|
407
|
+
@direction = args[:direction] if args.key?(:direction)
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
385
411
|
# A Google Stackdriver dashboard. Dashboards define the content and layout of
|
386
412
|
# pages in the Stackdriver web application.
|
387
413
|
class Dashboard
|
@@ -604,6 +630,12 @@ module Google
|
|
604
630
|
# @return [String]
|
605
631
|
attr_accessor :plot_type
|
606
632
|
|
633
|
+
# Optional. A collection of sort options, affects the order of the data and
|
634
|
+
# legend.
|
635
|
+
# Corresponds to the JSON property `sort`
|
636
|
+
# @return [Array<Google::Apis::MonitoringV1::ColumnSortingOptions>]
|
637
|
+
attr_accessor :sort
|
638
|
+
|
607
639
|
# Optional. The target axis to use for plotting the metric.
|
608
640
|
# Corresponds to the JSON property `targetAxis`
|
609
641
|
# @return [String]
|
@@ -627,6 +659,7 @@ module Google
|
|
627
659
|
@measures = args[:measures] if args.key?(:measures)
|
628
660
|
@min_alignment_period = args[:min_alignment_period] if args.key?(:min_alignment_period)
|
629
661
|
@plot_type = args[:plot_type] if args.key?(:plot_type)
|
662
|
+
@sort = args[:sort] if args.key?(:sort)
|
630
663
|
@target_axis = args[:target_axis] if args.key?(:target_axis)
|
631
664
|
@time_series_query = args[:time_series_query] if args.key?(:time_series_query)
|
632
665
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MonitoringV1
|
18
18
|
# Version of the google-apis-monitoring_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,12 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class ColumnSortingOptions
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
85
91
|
class Dashboard
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
93
|
|
@@ -537,6 +543,14 @@ module Google
|
|
537
543
|
end
|
538
544
|
end
|
539
545
|
|
546
|
+
class ColumnSortingOptions
|
547
|
+
# @private
|
548
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
549
|
+
property :column, as: 'column'
|
550
|
+
property :direction, as: 'direction'
|
551
|
+
end
|
552
|
+
end
|
553
|
+
|
540
554
|
class Dashboard
|
541
555
|
# @private
|
542
556
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -597,6 +611,8 @@ module Google
|
|
597
611
|
|
598
612
|
property :min_alignment_period, as: 'minAlignmentPeriod'
|
599
613
|
property :plot_type, as: 'plotType'
|
614
|
+
collection :sort, as: 'sort', class: Google::Apis::MonitoringV1::ColumnSortingOptions, decorator: Google::Apis::MonitoringV1::ColumnSortingOptions::Representation
|
615
|
+
|
600
616
|
property :target_axis, as: 'targetAxis'
|
601
617
|
property :time_series_query, as: 'timeSeriesQuery', class: Google::Apis::MonitoringV1::TimeSeriesQuery, decorator: Google::Apis::MonitoringV1::TimeSeriesQuery::Representation
|
602
618
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-monitoring_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.53.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.53.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Monitoring API V1
|