google-apis-servicecontrol_v2 0.39.0 → 0.41.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: afec4b87a47b6f5ba2701565bc5b5716faa6fe0396add6eb7b15a0e4da7d7522
4
- data.tar.gz: 44f6231a2159ce6c71f0b2efb7dd3bbe4e0efc12608c029cd039f0455d70ad80
3
+ metadata.gz: be68d9746abe4d06a01f5970e27ab614b7533a1bdb8490c5a69d98419a22f67c
4
+ data.tar.gz: 1455bc6c008632d258bd9aed01fcca67183cab16131b95faab95cefcd83da62f
5
5
  SHA512:
6
- metadata.gz: 4a939602a2d7fe178112aedfad3c8af0b8d28a6875e96934b257a043e4e4beb8b4cf8523b67f81240c77c71acca84c1469a06e51f88187a94680a5ee822ba4bb
7
- data.tar.gz: 0dbd4536765d71416a3a0a31f031fbc5c6fba8370226e896ea08ff572a95903265872b86ed8bc36f366ddb3388d0abcc5c402712c1ed073226fe5332674d8c14
6
+ metadata.gz: ad6658c22a7740495895ac7231ceecb6e0d6c491721d6cf7987196389e50a36d539c2370381aa2a768e7b273d570317fbf033e15201439730a563ef564263f2f
7
+ data.tar.gz: efa463d8e98ca23dbb0d34b4ca5d7ba623cec9eca1211c85ef27de2ced865c406172e0dd854c83d708938a32215af85ff530d6e22f51917cb0850c7364451bf5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-servicecontrol_v2
2
2
 
3
+ ### v0.41.0 (2024-12-22)
4
+
5
+ * Regenerated from discovery document revision 20241205
6
+
7
+ ### v0.40.0 (2024-08-11)
8
+
9
+ * Regenerated from discovery document revision 20240802
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.39.0 (2024-06-09)
4
13
 
5
14
  * Regenerated from discovery document revision 20240531
@@ -541,6 +541,13 @@ module Google
541
541
  class CheckResponse
542
542
  include Google::Apis::Core::Hashable
543
543
 
544
+ # Optional response metadata that will be emitted as dynamic metadata to be
545
+ # consumed by the caller of ServiceController. For compatibility with the
546
+ # ext_authz interface.
547
+ # Corresponds to the JSON property `dynamicMetadata`
548
+ # @return [Hash<String,Object>]
549
+ attr_accessor :dynamic_metadata
550
+
544
551
  # Returns a set of request contexts generated from the `CheckRequest`.
545
552
  # Corresponds to the JSON property `headers`
546
553
  # @return [Hash<String,String>]
@@ -562,6 +569,7 @@ module Google
562
569
 
563
570
  # Update properties of this object
564
571
  def update!(**args)
572
+ @dynamic_metadata = args[:dynamic_metadata] if args.key?(:dynamic_metadata)
565
573
  @headers = args[:headers] if args.key?(:headers)
566
574
  @status = args[:status] if args.key?(:status)
567
575
  end
@@ -1664,6 +1672,13 @@ module Google
1664
1672
  class V2ResourceEvent
1665
1673
  include Google::Apis::Core::Hashable
1666
1674
 
1675
+ # The ESF unique context id of the api request, from which this resource event
1676
+ # originated. This field is only needed for CAIS integration via api annotation.
1677
+ # See go/cais-lro-delete for more details.
1678
+ # Corresponds to the JSON property `contextId`
1679
+ # @return [Fixnum]
1680
+ attr_accessor :context_id
1681
+
1667
1682
  # The destinations field determines which backend services should handle the
1668
1683
  # event. This should be specified as a comma-delimited string.
1669
1684
  # Corresponds to the JSON property `destinations`
@@ -1710,6 +1725,7 @@ module Google
1710
1725
 
1711
1726
  # Update properties of this object
1712
1727
  def update!(**args)
1728
+ @context_id = args[:context_id] if args.key?(:context_id)
1713
1729
  @destinations = args[:destinations] if args.key?(:destinations)
1714
1730
  @parent = args[:parent] if args.key?(:parent)
1715
1731
  @path = args[:path] if args.key?(:path)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV2
18
18
  # Version of the google-apis-servicecontrol_v2 gem
19
- GEM_VERSION = "0.39.0"
19
+ GEM_VERSION = "0.41.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 = "20240531"
25
+ REVISION = "20241205"
26
26
  end
27
27
  end
28
28
  end
@@ -326,6 +326,7 @@ module Google
326
326
  class CheckResponse
327
327
  # @private
328
328
  class Representation < Google::Apis::Core::JsonRepresentation
329
+ hash :dynamic_metadata, as: 'dynamicMetadata'
329
330
  hash :headers, as: 'headers'
330
331
  property :status, as: 'status', class: Google::Apis::ServicecontrolV2::Status, decorator: Google::Apis::ServicecontrolV2::Status::Representation
331
332
 
@@ -583,6 +584,7 @@ module Google
583
584
  class V2ResourceEvent
584
585
  # @private
585
586
  class Representation < Google::Apis::Core::JsonRepresentation
587
+ property :context_id, :numeric_string => true, as: 'contextId'
586
588
  property :destinations, as: 'destinations'
587
589
  property :parent, as: 'parent', class: Google::Apis::ServicecontrolV2::Resource, decorator: Google::Apis::ServicecontrolV2::Resource::Representation
588
590
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.41.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-06-09 00:00:00.000000000 Z
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-servicecontrol_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v2
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.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Control API V2