google-apis-monitoring_v1 0.45.0 → 0.46.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8600ac486ea766a562a3d7dd8bcf88099c693944d4d07d7031652a2aa05f74f7
|
4
|
+
data.tar.gz: d5a5cf024f839391fcb1031b0d4c647ac7cc6585b1576acae97460242c579a3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46e420ac16557724fc7fe63da6fff3a144c0be4330ecadc7943c8ab7c50d159ab62419772248c8afa0f2c480d1aee7ec78381d63f5e11ba9f1a3bffea666c147
|
7
|
+
data.tar.gz: c66349eaa56a36e4077b721d0b9a8e99689a9e168e7b2afe81c41d964328e7eb72315083f4a1d7a290da2997a1d0aa854fc71bd35be80248922498b370b27b90
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-monitoring_v1
|
2
2
|
|
3
|
+
### v0.46.0 (2024-01-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240121
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.45.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240115
|
@@ -548,8 +548,8 @@ module Google
|
|
548
548
|
end
|
549
549
|
end
|
550
550
|
|
551
|
-
#
|
552
|
-
#
|
551
|
+
# A chart dimension. Dimensions are a structured label, class, or category for a
|
552
|
+
# set of measurements in your data.
|
553
553
|
class Dimension
|
554
554
|
include Google::Apis::Core::Hashable
|
555
555
|
|
@@ -1025,8 +1025,8 @@ module Google
|
|
1025
1025
|
end
|
1026
1026
|
end
|
1027
1027
|
|
1028
|
-
#
|
1029
|
-
#
|
1028
|
+
# A chart measure. Measures represent a measured property in your chart data
|
1029
|
+
# such as rainfall in inches, number of units sold, revenue gained, etc.
|
1030
1030
|
class Measure
|
1031
1031
|
include Google::Apis::Core::Hashable
|
1032
1032
|
|
@@ -1448,6 +1448,18 @@ module Google
|
|
1448
1448
|
class PieChartDataSet
|
1449
1449
|
include Google::Apis::Core::Hashable
|
1450
1450
|
|
1451
|
+
# A dimension is a structured label, class, or category for a set of
|
1452
|
+
# measurements in your data.
|
1453
|
+
# Corresponds to the JSON property `dimensions`
|
1454
|
+
# @return [Array<Google::Apis::MonitoringV1::Dimension>]
|
1455
|
+
attr_accessor :dimensions
|
1456
|
+
|
1457
|
+
# A measure is a measured value of a property in your data. For example,
|
1458
|
+
# rainfall in inches, number of units sold, revenue gained, etc.
|
1459
|
+
# Corresponds to the JSON property `measures`
|
1460
|
+
# @return [Array<Google::Apis::MonitoringV1::Measure>]
|
1461
|
+
attr_accessor :measures
|
1462
|
+
|
1451
1463
|
# Optional. The lower bound on data point frequency for this data set,
|
1452
1464
|
# implemented by specifying the minimum alignment period to use in a time series
|
1453
1465
|
# query. For example, if the data is published once every 10 minutes, the
|
@@ -1477,6 +1489,8 @@ module Google
|
|
1477
1489
|
|
1478
1490
|
# Update properties of this object
|
1479
1491
|
def update!(**args)
|
1492
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
1493
|
+
@measures = args[:measures] if args.key?(:measures)
|
1480
1494
|
@min_alignment_period = args[:min_alignment_period] if args.key?(:min_alignment_period)
|
1481
1495
|
@slice_name_template = args[:slice_name_template] if args.key?(:slice_name_template)
|
1482
1496
|
@time_series_query = args[:time_series_query] if args.key?(:time_series_query)
|
@@ -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.46.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240121"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -797,6 +797,10 @@ module Google
|
|
797
797
|
class PieChartDataSet
|
798
798
|
# @private
|
799
799
|
class Representation < Google::Apis::Core::JsonRepresentation
|
800
|
+
collection :dimensions, as: 'dimensions', class: Google::Apis::MonitoringV1::Dimension, decorator: Google::Apis::MonitoringV1::Dimension::Representation
|
801
|
+
|
802
|
+
collection :measures, as: 'measures', class: Google::Apis::MonitoringV1::Measure, decorator: Google::Apis::MonitoringV1::Measure::Representation
|
803
|
+
|
800
804
|
property :min_alignment_period, as: 'minAlignmentPeriod'
|
801
805
|
property :slice_name_template, as: 'sliceNameTemplate'
|
802
806
|
property :time_series_query, as: 'timeSeriesQuery', class: Google::Apis::MonitoringV1::TimeSeriesQuery, decorator: Google::Apis::MonitoringV1::TimeSeriesQuery::Representation
|
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.46.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: 2024-01-
|
11
|
+
date: 2024-01-28 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.46.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: []
|