google-apis-monitoring_v3 0.66.0 → 0.68.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: ae6cae7e14737294f4cf1941866b0cace63757f2f6df32bce36dcc35b5477a89
4
- data.tar.gz: 8d7489fec006a76956f9b3369ae1cef519c9980f06c55f781508c2618249cdf6
3
+ metadata.gz: fe171b394d074b12ce04ed8cc1bc459543c708c6cf1afd13510d07b9d2fddc39
4
+ data.tar.gz: 51a95d30eef1e36421c7a4228772bb91e7f79adae97681ee44c6567d7c6bb4d7
5
5
  SHA512:
6
- metadata.gz: 919fa9350e6165233819455273db78c22283a54edd7baf6128cda86d2b00da2d27fa6c65f26f573767ad76df74c614ab58a85f512116dbf2cf40b698966e1091
7
- data.tar.gz: a40a9b1c24af1eac5c43d3c21892247742eb54b4d521102f9a0a4f546d0e6fad7f7e5e74605a6a66c6d7e051db3807b9bbe1c96586b4966f92fa98a2f4ff763d
6
+ metadata.gz: 5957094ff78af716a43b822762cd8f8cf9df04f5437f5f9279c2c9a0d9f4aa0585341ac35b524e8dce05e111c357aa07c1a8473c2bfdd57bb22b3975d4941975
7
+ data.tar.gz: cd99a6d608e75783f852650c103cfb911f86575a87ce0009af596b675cbf1f61f9d36d30f0316a74dfc7995de6f77ebb5a28790443cf1b064a6e59b3d0a79ac6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.68.0 (2024-09-15)
4
+
5
+ * Regenerated from discovery document revision 20240829
6
+
7
+ ### v0.67.0 (2024-08-11)
8
+
9
+ * Regenerated from discovery document revision 20240804
10
+
3
11
  ### v0.66.0 (2024-08-04)
4
12
 
5
13
  * Regenerated from discovery document revision 20240721
@@ -184,9 +184,9 @@ module Google
184
184
  # @return [Google::Apis::MonitoringV3::MutationRecord]
185
185
  attr_accessor :mutation_record
186
186
 
187
- # Required if the policy exists. The resource name for this policy. The format
188
- # is: projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [
189
- # ALERT_POLICY_ID] is assigned by Cloud Monitoring when the policy is created.
187
+ # Identifier. Required if the policy exists. The resource name for this policy.
188
+ # The format is: projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID]
189
+ # [ALERT_POLICY_ID] is assigned by Cloud Monitoring when the policy is created.
190
190
  # When calling the alertPolicies.create method, do not include the name field in
191
191
  # the alerting policy passed as part of the request.
192
192
  # Corresponds to the JSON property `name`
@@ -2980,6 +2980,11 @@ module Google
2980
2980
  # @return [String]
2981
2981
  attr_accessor :sample_period
2982
2982
 
2983
+ # The scope of the timeseries data of the metric.
2984
+ # Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
2985
+ # @return [Array<String>]
2986
+ attr_accessor :time_series_resource_hierarchy_level
2987
+
2983
2988
  def initialize(**args)
2984
2989
  update!(**args)
2985
2990
  end
@@ -2989,6 +2994,7 @@ module Google
2989
2994
  @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
2990
2995
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
2991
2996
  @sample_period = args[:sample_period] if args.key?(:sample_period)
2997
+ @time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
2992
2998
  end
2993
2999
  end
2994
3000
 
@@ -3905,7 +3911,9 @@ module Google
3905
3911
  end
3906
3912
  end
3907
3913
 
3908
- # The QueryTimeSeries request.
3914
+ # The QueryTimeSeries request. For information about the status of Monitoring
3915
+ # Query Language (MQL), see the MQL deprecation notice (https://cloud.google.com/
3916
+ # stackdriver/docs/deprecations/mql).
3909
3917
  class QueryTimeSeriesRequest
3910
3918
  include Google::Apis::Core::Hashable
3911
3919
 
@@ -3939,7 +3947,9 @@ module Google
3939
3947
  end
3940
3948
  end
3941
3949
 
3942
- # The QueryTimeSeries response.
3950
+ # The QueryTimeSeries response. For information about the status of Monitoring
3951
+ # Query Language (MQL), see the MQL deprecation notice (https://cloud.google.com/
3952
+ # stackdriver/docs/deprecations/mql).
3943
3953
  class QueryTimeSeriesResponse
3944
3954
  include Google::Apis::Core::Hashable
3945
3955
 
@@ -4730,7 +4740,7 @@ module Google
4730
4740
  # The units in which the metric value is reported. It is only applicable if the
4731
4741
  # value_type is INT64, DOUBLE, or DISTRIBUTION. The unit defines the
4732
4742
  # representation of the stored metric values. This field can only be changed
4733
- # through CreateTimeSeries when it is empty or "1".
4743
+ # through CreateTimeSeries when it is empty.
4734
4744
  # Corresponds to the JSON property `unit`
4735
4745
  # @return [String]
4736
4746
  attr_accessor :unit
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MonitoringV3
18
18
  # Version of the google-apis-monitoring_v3 gem
19
- GEM_VERSION = "0.66.0"
19
+ GEM_VERSION = "0.68.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 = "20240721"
25
+ REVISION = "20240829"
26
26
  end
27
27
  end
28
28
  end
@@ -1457,6 +1457,7 @@ module Google
1457
1457
  property :ingest_delay, as: 'ingestDelay'
1458
1458
  property :launch_stage, as: 'launchStage'
1459
1459
  property :sample_period, as: 'samplePeriod'
1460
+ collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
1460
1461
  end
1461
1462
  end
1462
1463
 
@@ -495,21 +495,22 @@ module Google
495
495
  # the alerting policies to be listed are stored. To retrieve a single alerting
496
496
  # policy by name, use the GetAlertPolicy operation, instead.
497
497
  # @param [String] filter
498
- # If provided, this field specifies the criteria that must be met by alert
499
- # policies to be included in the response.For more details, see sorting and
500
- # filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
501
- # @param [String] order_by
502
- # A comma-separated list of fields by which to sort the result. Supports the
503
- # same set of field references as the filter field. Entries can be prefixed with
504
- # a minus sign to sort by the field in descending order.For more details, see
505
- # sorting and filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-
498
+ # Optional. If provided, this field specifies the criteria that must be met by
499
+ # alert policies to be included in the response.For more details, see sorting
500
+ # and filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-
506
501
  # filtering).
502
+ # @param [String] order_by
503
+ # Optional. A comma-separated list of fields by which to sort the result.
504
+ # Supports the same set of field references as the filter field. Entries can be
505
+ # prefixed with a minus sign to sort by the field in descending order.For more
506
+ # details, see sorting and filtering (https://cloud.google.com/monitoring/api/v3/
507
+ # sorting-and-filtering).
507
508
  # @param [Fixnum] page_size
508
- # The maximum number of results to return in a single response.
509
+ # Optional. The maximum number of results to return in a single response.
509
510
  # @param [String] page_token
510
- # If this field is not empty then it must contain the nextPageToken value
511
- # returned by a previous call to this method. Using this field causes the method
512
- # to return more results from the previous method call.
511
+ # Optional. If this field is not empty then it must contain the nextPageToken
512
+ # value returned by a previous call to this method. Using this field causes the
513
+ # method to return more results from the previous method call.
513
514
  # @param [String] fields
514
515
  # Selector specifying which fields to include in a partial response.
515
516
  # @param [String] quota_user
@@ -548,9 +549,9 @@ module Google
548
549
  # the state of alerting policies in a single project. This includes calls to
549
550
  # CreateAlertPolicy, DeleteAlertPolicy and UpdateAlertPolicy.
550
551
  # @param [String] name
551
- # Required if the policy exists. The resource name for this policy. The format
552
- # is: projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [
553
- # ALERT_POLICY_ID] is assigned by Cloud Monitoring when the policy is created.
552
+ # Identifier. Required if the policy exists. The resource name for this policy.
553
+ # The format is: projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID]
554
+ # [ALERT_POLICY_ID] is assigned by Cloud Monitoring when the policy is created.
554
555
  # When calling the alertPolicies.create method, do not include the name field in
555
556
  # the alerting policy passed as part of the request.
556
557
  # @param [Google::Apis::MonitoringV3::AlertPolicy] alert_policy_object
@@ -1378,22 +1379,22 @@ module Google
1378
1379
  # specific channel by REST resource name, use the GetNotificationChannel
1379
1380
  # operation.
1380
1381
  # @param [String] filter
1381
- # If provided, this field specifies the criteria that must be met by
1382
+ # Optional. If provided, this field specifies the criteria that must be met by
1382
1383
  # notification channels to be included in the response.For more details, see
1383
1384
  # sorting and filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-
1384
1385
  # filtering).
1385
1386
  # @param [String] order_by
1386
- # A comma-separated list of fields by which to sort the result. Supports the
1387
- # same set of fields as in filter. Entries can be prefixed with a minus sign to
1388
- # sort in descending rather than ascending order.For more details, see sorting
1389
- # and filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-
1390
- # filtering).
1387
+ # Optional. A comma-separated list of fields by which to sort the result.
1388
+ # Supports the same set of fields as in filter. Entries can be prefixed with a
1389
+ # minus sign to sort in descending rather than ascending order.For more details,
1390
+ # see sorting and filtering (https://cloud.google.com/monitoring/api/v3/sorting-
1391
+ # and-filtering).
1391
1392
  # @param [Fixnum] page_size
1392
- # The maximum number of results to return in a single response. If not set to a
1393
- # positive number, a reasonable value will be chosen by the service.
1393
+ # Optional. The maximum number of results to return in a single response. If not
1394
+ # set to a positive number, a reasonable value will be chosen by the service.
1394
1395
  # @param [String] page_token
1395
- # If non-empty, page_token must contain a value returned as the next_page_token
1396
- # in a previous response to request the next set of results.
1396
+ # Optional. If non-empty, page_token must contain a value returned as the
1397
+ # next_page_token in a previous response to request the next set of results.
1397
1398
  # @param [String] fields
1398
1399
  # Selector specifying which fields to include in a partial response.
1399
1400
  # @param [String] quota_user
@@ -1436,7 +1437,7 @@ module Google
1436
1437
  # CHANNEL_ID] is automatically assigned by the server on creation.
1437
1438
  # @param [Google::Apis::MonitoringV3::NotificationChannel] notification_channel_object
1438
1439
  # @param [String] update_mask
1439
- # The fields to update.
1440
+ # Optional. The fields to update.
1440
1441
  # @param [String] fields
1441
1442
  # Selector specifying which fields to include in a partial response.
1442
1443
  # @param [String] quota_user
@@ -1945,7 +1946,10 @@ module Google
1945
1946
  execute_or_queue_command(command, &block)
1946
1947
  end
1947
1948
 
1948
- # Queries time series using Monitoring Query Language.
1949
+ # Queries time series by using Monitoring Query Language (MQL). We recommend
1950
+ # using PromQL instead of MQL. For more information about the status of MQL, see
1951
+ # the MQL deprecation notice (https://cloud.google.com/stackdriver/docs/
1952
+ # deprecations/mql).
1949
1953
  # @param [String] name
1950
1954
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
1951
1955
  # on which to execute the request. The format is: projects/[
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-monitoring_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.68.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-08-04 00:00:00.000000000 Z
11
+ date: 2024-09-15 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_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.66.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.68.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3
63
63
  post_install_message:
64
64
  rdoc_options: []