google-apis-servicecontrol_v2 0.40.0 → 0.42.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 384cc96ec2b8019cd9ff81da3d701f9d0fef5e1b4d5f2aa59fbc9a52cf9f5e30
|
4
|
+
data.tar.gz: 2fbd85f21e59e750285438088a682f78625bd7d63a9c7c04a98a3af028aa0470
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0edd916a640093a7abc77f463e85d9a1704580842f51afd716edb8b7a9023a5f4c7901bf44fc20cfd57b4128126b79f00f96b3b1ff56e341a5e39522cf744c9d
|
7
|
+
data.tar.gz: f82efcfffc95192e4919a2209651003aad890ec0e79ec6e9d8fe35500e9b08d244d86857778623cb8d88b077df5bde177f9e2c51468f47b8fffe43d921bbd27d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-servicecontrol_v2
|
2
2
|
|
3
|
+
### v0.42.0 (2025-01-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250103
|
6
|
+
|
7
|
+
### v0.41.0 (2024-12-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241205
|
10
|
+
|
3
11
|
### v0.40.0 (2024-08-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240802
|
@@ -326,13 +326,6 @@ module Google
|
|
326
326
|
# @return [Hash<String,Object>]
|
327
327
|
attr_accessor :claims
|
328
328
|
|
329
|
-
# Identifies the client credential id used for authentication. credential_id is
|
330
|
-
# in the format of AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:
|
331
|
-
# XXXXX" where the format of the IDENTIFIER can vary for different AUTH_METHODs.
|
332
|
-
# Corresponds to the JSON property `credentialId`
|
333
|
-
# @return [String]
|
334
|
-
attr_accessor :credential_id
|
335
|
-
|
336
329
|
# The authorized presenter of the credential. Reflects the optional Authorized
|
337
330
|
# Presenter (`azp`) claim within a JWT or the OAuth client id. For example, a
|
338
331
|
# Google Cloud Platform client id looks as follows: "123456789012.apps.
|
@@ -358,7 +351,6 @@ module Google
|
|
358
351
|
@access_levels = args[:access_levels] if args.key?(:access_levels)
|
359
352
|
@audiences = args[:audiences] if args.key?(:audiences)
|
360
353
|
@claims = args[:claims] if args.key?(:claims)
|
361
|
-
@credential_id = args[:credential_id] if args.key?(:credential_id)
|
362
354
|
@presenter = args[:presenter] if args.key?(:presenter)
|
363
355
|
@principal = args[:principal] if args.key?(:principal)
|
364
356
|
end
|
@@ -541,6 +533,13 @@ module Google
|
|
541
533
|
class CheckResponse
|
542
534
|
include Google::Apis::Core::Hashable
|
543
535
|
|
536
|
+
# Optional response metadata that will be emitted as dynamic metadata to be
|
537
|
+
# consumed by the caller of ServiceController. For compatibility with the
|
538
|
+
# ext_authz interface.
|
539
|
+
# Corresponds to the JSON property `dynamicMetadata`
|
540
|
+
# @return [Hash<String,Object>]
|
541
|
+
attr_accessor :dynamic_metadata
|
542
|
+
|
544
543
|
# Returns a set of request contexts generated from the `CheckRequest`.
|
545
544
|
# Corresponds to the JSON property `headers`
|
546
545
|
# @return [Hash<String,String>]
|
@@ -562,6 +561,7 @@ module Google
|
|
562
561
|
|
563
562
|
# Update properties of this object
|
564
563
|
def update!(**args)
|
564
|
+
@dynamic_metadata = args[:dynamic_metadata] if args.key?(:dynamic_metadata)
|
565
565
|
@headers = args[:headers] if args.key?(:headers)
|
566
566
|
@status = args[:status] if args.key?(:status)
|
567
567
|
end
|
@@ -1395,7 +1395,7 @@ module Google
|
|
1395
1395
|
attr_accessor :protocol
|
1396
1396
|
|
1397
1397
|
# The referer URL of the request, as defined in [HTTP/1.1 Header Field
|
1398
|
-
# Definitions](
|
1398
|
+
# Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
|
1399
1399
|
# Corresponds to the JSON property `referer`
|
1400
1400
|
# @return [String]
|
1401
1401
|
attr_accessor :referer
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.42.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 = "
|
25
|
+
REVISION = "20250103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -278,7 +278,6 @@ module Google
|
|
278
278
|
collection :access_levels, as: 'accessLevels'
|
279
279
|
collection :audiences, as: 'audiences'
|
280
280
|
hash :claims, as: 'claims'
|
281
|
-
property :credential_id, as: 'credentialId'
|
282
281
|
property :presenter, as: 'presenter'
|
283
282
|
property :principal, as: 'principal'
|
284
283
|
end
|
@@ -326,6 +325,7 @@ module Google
|
|
326
325
|
class CheckResponse
|
327
326
|
# @private
|
328
327
|
class Representation < Google::Apis::Core::JsonRepresentation
|
328
|
+
hash :dynamic_metadata, as: 'dynamicMetadata'
|
329
329
|
hash :headers, as: 'headers'
|
330
330
|
property :status, as: 'status', class: Google::Apis::ServicecontrolV2::Status, decorator: Google::Apis::ServicecontrolV2::Status::Representation
|
331
331
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicecontrol_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.42.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Service Control API V2
|
82
79
|
test_files: []
|