google-apis-monitoring_v3 0.65.0 → 0.67.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: 21162b4755a8bbfed513ab1ff5b5e0dc583f90783335894d14777f2ad0b97391
4
- data.tar.gz: 0ef1da73abe09c1d3ca1ae94a31da34feb94e45d9f2077bfb85f4cf860123a1c
3
+ metadata.gz: 69a1029a323e3b20f6a55020075765f8366bcd4c24bf10dc472423e5c4dfc7af
4
+ data.tar.gz: 96c769089965b1b7bb61f6e838cb3a9fc293e4355afdebdc2a2616e4ee9b2c01
5
5
  SHA512:
6
- metadata.gz: 5446aa31bcece30c5ecd8dea115610cb441b16b474bae6dbaa5f668db58f3e5764acaf68146e0908af65180c9fd91b2ff647eace2f94b997bf205aef6f2fef5a
7
- data.tar.gz: e6e7d63499a8f390c6390802e86439f8f06a36a00244ff788ce22557e0b26c6e1e99647c4b5be942ac5b492193ee8f829e2066666a347b119c090b91e4f95e92
6
+ metadata.gz: c07ac125b5a5a8d878dfa1eeb7bd1b7f421d543e01bc182a4f49db4c20c36fa7160c4c301b2b49c648b8f6c8d4ece200f12b4a4fcf6a3102c6f522804a8d0bc4
7
+ data.tar.gz: 1220c5b56707e75f1d8a845d559abec41bf1470333758b62d98f0db7d3ea00efdedcb28efb6a6e0cfd15223a64d99b48aba5e358dd8532948f67cda5925045f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.67.0 (2024-08-11)
4
+
5
+ * Regenerated from discovery document revision 20240804
6
+
7
+ ### v0.66.0 (2024-08-04)
8
+
9
+ * Regenerated from discovery document revision 20240721
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.65.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240630
@@ -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`
@@ -4670,6 +4670,13 @@ module Google
4670
4670
  class TimeSeries
4671
4671
  include Google::Apis::Core::Hashable
4672
4672
 
4673
+ # Input only. A detailed description of the time series that will be associated
4674
+ # with the google.api.MetricDescriptor for the metric. Once set, this field
4675
+ # cannot be changed through CreateTimeSeries.
4676
+ # Corresponds to the JSON property `description`
4677
+ # @return [String]
4678
+ attr_accessor :description
4679
+
4673
4680
  # Auxiliary metadata for a MonitoredResource object. MonitoredResource objects
4674
4681
  # contain the minimum set of information to uniquely identify a monitored
4675
4682
  # resource instance. There is some other useful auxiliary metadata. Monitoring
@@ -4722,7 +4729,8 @@ module Google
4722
4729
 
4723
4730
  # The units in which the metric value is reported. It is only applicable if the
4724
4731
  # value_type is INT64, DOUBLE, or DISTRIBUTION. The unit defines the
4725
- # representation of the stored metric values.
4732
+ # representation of the stored metric values. This field can only be changed
4733
+ # through CreateTimeSeries when it is empty.
4726
4734
  # Corresponds to the JSON property `unit`
4727
4735
  # @return [String]
4728
4736
  attr_accessor :unit
@@ -4742,6 +4750,7 @@ module Google
4742
4750
 
4743
4751
  # Update properties of this object
4744
4752
  def update!(**args)
4753
+ @description = args[:description] if args.key?(:description)
4745
4754
  @metadata = args[:metadata] if args.key?(:metadata)
4746
4755
  @metric = args[:metric] if args.key?(:metric)
4747
4756
  @metric_kind = args[:metric_kind] if args.key?(:metric_kind)
@@ -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.65.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240630"
25
+ REVISION = "20240804"
26
26
  end
27
27
  end
28
28
  end
@@ -1849,6 +1849,7 @@ module Google
1849
1849
  class TimeSeries
1850
1850
  # @private
1851
1851
  class Representation < Google::Apis::Core::JsonRepresentation
1852
+ property :description, as: 'description'
1852
1853
  property :metadata, as: 'metadata', class: Google::Apis::MonitoringV3::MonitoredResourceMetadata, decorator: Google::Apis::MonitoringV3::MonitoredResourceMetadata::Representation
1853
1854
 
1854
1855
  property :metric, as: 'metric', class: Google::Apis::MonitoringV3::Metric, decorator: Google::Apis::MonitoringV3::Metric::Representation
@@ -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
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.65.0
4
+ version: 0.67.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-11 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.65.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.67.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: []