google-apis-logging_v2 0.67.0 → 0.69.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: 154b5f66e8e18806f7504f0e643ef131160668a93c40f1d843d514b16cb4ee69
4
- data.tar.gz: 2ca95e013921f3664f9e2468f3e1664508df092d88fd474570ea9ddd912374ec
3
+ metadata.gz: 0315ec62d8e34c880fa8720388054967b3b19dcfefa848a2aee1408ab4ca0c66
4
+ data.tar.gz: 8d6b0882f7193ceb7d5216cc07048351017d3fa8e695f71434b1007af937fd97
5
5
  SHA512:
6
- metadata.gz: 6f75c83dee07c7ff6db7bdc55206977887df9dd9769b3fe34bfe3a1973f28c555848167ef6c1f835efc9f921c95ff39c1c8e1ea6f8bb92423af1e1eb1fc733e1
7
- data.tar.gz: 1bf9219c2bcebfe88e26960c7558e7fcbf40b2d00cbde6d80cc8488b4b04c875ff335f7416bee7383db0c870b221e29127fc8ee3f1cf4945d80aef249ea9bfcc
6
+ metadata.gz: 272990564feb2cb5ad4195606e0087a0628a6636ac680e3dfc69603788789d8819babaa17835fb5a1cdd03fde90e811c0d149f2e3e31174b358a01e489559c09
7
+ data.tar.gz: d39c66c3a9c2b7ab5bb8c662b131df5e5f19dd5dbe6721ac3dd089409e208ccdca199f5148a4cfec17bbd608ca95a9e9c25532505324235f651b28eb1af2f0d4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-logging_v2
2
2
 
3
+ ### v0.69.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240503
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.68.0 (2024-05-05)
9
+
10
+ * Regenerated from discovery document revision 20240426
11
+
3
12
  ### v0.67.0 (2024-04-28)
4
13
 
5
14
  * Regenerated from discovery document revision 20240419
@@ -1311,7 +1311,11 @@ module Google
1311
1311
  # returned. An empty filter matches all log entries in the resources listed in
1312
1312
  # resource_names. Referencing a parent resource that is not listed in
1313
1313
  # resource_names will cause the filter to return no results. The maximum length
1314
- # of a filter is 20,000 characters.
1314
+ # of a filter is 20,000 characters.To make queries faster, you can make the
1315
+ # filter more selective by using restrictions on indexed fields (https://cloud.
1316
+ # google.com/logging/docs/view/logging-query-language#indexed-fields) as well as
1317
+ # limit the time range of the query by adding range restrictions on the
1318
+ # timestamp field.
1315
1319
  # Corresponds to the JSON property `filter`
1316
1320
  # @return [String]
1317
1321
  attr_accessor :filter
@@ -1321,7 +1325,10 @@ module Google
1321
1325
  # returns entries in order of increasing values of LogEntry.timestamp (oldest
1322
1326
  # first), and the second option returns entries in order of decreasing
1323
1327
  # timestamps (newest first). Entries with equal timestamps are returned in order
1324
- # of their insert_id values.
1328
+ # of their insert_id values.We recommend setting the order_by field to "
1329
+ # timestamp desc" when listing recently ingested log entries. If not set, the
1330
+ # default value of "timestamp asc" may take a long time to fetch matching logs
1331
+ # that are only recently ingested.
1325
1332
  # Corresponds to the JSON property `orderBy`
1326
1333
  # @return [String]
1327
1334
  attr_accessor :order_by
@@ -2344,6 +2351,12 @@ module Google
2344
2351
  # @return [String]
2345
2352
  attr_accessor :name
2346
2353
 
2354
+ # Output only. The resource name of the metric: "projects/[PROJECT_ID]/metrics/[
2355
+ # METRIC_ID]"
2356
+ # Corresponds to the JSON property `resourceName`
2357
+ # @return [String]
2358
+ attr_accessor :resource_name
2359
+
2347
2360
  # Output only. The last update timestamp of the metric.This field may not be
2348
2361
  # present for older metrics.
2349
2362
  # Corresponds to the JSON property `updateTime`
@@ -2388,6 +2401,7 @@ module Google
2388
2401
  @label_extractors = args[:label_extractors] if args.key?(:label_extractors)
2389
2402
  @metric_descriptor = args[:metric_descriptor] if args.key?(:metric_descriptor)
2390
2403
  @name = args[:name] if args.key?(:name)
2404
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
2391
2405
  @update_time = args[:update_time] if args.key?(:update_time)
2392
2406
  @value_extractor = args[:value_extractor] if args.key?(:value_extractor)
2393
2407
  @version = args[:version] if args.key?(:version)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module LoggingV2
18
18
  # Version of the google-apis-logging_v2 gem
19
- GEM_VERSION = "0.67.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240419"
25
+ REVISION = "20240503"
26
26
  end
27
27
  end
28
28
  end
@@ -1049,6 +1049,7 @@ module Google
1049
1049
  property :metric_descriptor, as: 'metricDescriptor', class: Google::Apis::LoggingV2::MetricDescriptor, decorator: Google::Apis::LoggingV2::MetricDescriptor::Representation
1050
1050
 
1051
1051
  property :name, as: 'name'
1052
+ property :resource_name, as: 'resourceName'
1052
1053
  property :update_time, as: 'updateTime'
1053
1054
  property :value_extractor, as: 'valueExtractor'
1054
1055
  property :version, as: 'version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-logging_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.69.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-04-28 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-logging_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.67.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.69.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-logging_v2
63
63
  post_install_message:
64
64
  rdoc_options: []