google-apis-servicecontrol_v2 0.41.0 → 0.43.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: '068557cdc67d3730c691377740e49e1912f23f32f2f02607e758d365f75a0f45'
|
4
|
+
data.tar.gz: 6ededb539a9d31c5b43b22e865a23b394030c56076351b1c24ecb088da4c1bf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f44c712e67642626dd7aedcd33e3e0253ed618811c672b2d39d79472f29dadfb19a66c3ce773745a17575b79db7ee19059c481755b35ae15dc39d15ca49aac5
|
7
|
+
data.tar.gz: 36cdf0c76d06058accd6359de189371edd8460495b3ca11c2a1aa1ea344ea9ec25da9b2c76ca3c30af7d8217d04452d94d4e1dbd47417270ce9100249e52c8c2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-servicecontrol_v2
|
2
2
|
|
3
|
+
### v0.43.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250124
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.42.0 (2025-01-07)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250103
|
11
|
+
|
3
12
|
### v0.41.0 (2024-12-22)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241205
|
@@ -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
|
@@ -795,6 +787,13 @@ module Google
|
|
795
787
|
# @return [String]
|
796
788
|
attr_accessor :method_prop
|
797
789
|
|
790
|
+
# The values from Origin header from the HTTP request, such as "https://console.
|
791
|
+
# cloud.google.com". Modern browsers can only have one origin. Special browsers
|
792
|
+
# and/or HTTP clients may require multiple origins.
|
793
|
+
# Corresponds to the JSON property `origin`
|
794
|
+
# @return [String]
|
795
|
+
attr_accessor :origin
|
796
|
+
|
798
797
|
# The HTTP URL path, excluding the query parameters.
|
799
798
|
# Corresponds to the JSON property `path`
|
800
799
|
# @return [String]
|
@@ -847,6 +846,7 @@ module Google
|
|
847
846
|
@host = args[:host] if args.key?(:host)
|
848
847
|
@id = args[:id] if args.key?(:id)
|
849
848
|
@method_prop = args[:method_prop] if args.key?(:method_prop)
|
849
|
+
@origin = args[:origin] if args.key?(:origin)
|
850
850
|
@path = args[:path] if args.key?(:path)
|
851
851
|
@protocol = args[:protocol] if args.key?(:protocol)
|
852
852
|
@query = args[:query] if args.key?(:query)
|
@@ -1403,7 +1403,7 @@ module Google
|
|
1403
1403
|
attr_accessor :protocol
|
1404
1404
|
|
1405
1405
|
# The referer URL of the request, as defined in [HTTP/1.1 Header Field
|
1406
|
-
# Definitions](
|
1406
|
+
# Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
|
1407
1407
|
# Corresponds to the JSON property `referer`
|
1408
1408
|
# @return [String]
|
1409
1409
|
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.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250124"
|
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
|
@@ -396,6 +395,7 @@ module Google
|
|
396
395
|
property :host, as: 'host'
|
397
396
|
property :id, as: 'id'
|
398
397
|
property :method_prop, as: 'method'
|
398
|
+
property :origin, as: 'origin'
|
399
399
|
property :path, as: 'path'
|
400
400
|
property :protocol, as: 'protocol'
|
401
401
|
property :query, as: 'query'
|
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.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 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.43.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.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Service Control API V2
|
82
79
|
test_files: []
|