google-apis-accessapproval_v1 0.33.0 → 0.34.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: 99f899222a2b92cd1d75ecaebb849d4f8b01f472c4f95d429e0d52bcf703ab95
|
|
4
|
+
data.tar.gz: bb20564a5924aea941eedb9c3c4cbc63a8e0a51568cedfa9c5a6a7c632320dcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4f6ad204aa763f8f7b21d6e7b3a6df719124190fb40d4b8f8eb2889f9edad32075c6a36a7a1b6de6443753ef739dac3088e4be90dcdfac4caf3f82a56184c23
|
|
7
|
+
data.tar.gz: 75da760c40f168315322323afa9450529ba7fb582642188e616eecb2ac304deed487f402a127e1cc744880b1209f5e1888f949fc346bc3c74e7e60c6ece35cc0
|
data/CHANGELOG.md
CHANGED
|
@@ -533,6 +533,12 @@ module Google
|
|
|
533
533
|
# @return [String]
|
|
534
534
|
attr_accessor :customer_kms_key_version
|
|
535
535
|
|
|
536
|
+
# The hashing algorithm used for signature verification. It will only be present
|
|
537
|
+
# in the case of Google managed keys.
|
|
538
|
+
# Corresponds to the JSON property `googleKeyAlgorithm`
|
|
539
|
+
# @return [String]
|
|
540
|
+
attr_accessor :google_key_algorithm
|
|
541
|
+
|
|
536
542
|
# The public key for the Google default signing, encoded in PEM format. The
|
|
537
543
|
# signature was created using a private key which may be verified using this
|
|
538
544
|
# public key.
|
|
@@ -540,6 +546,13 @@ module Google
|
|
|
540
546
|
# @return [String]
|
|
541
547
|
attr_accessor :google_public_key_pem
|
|
542
548
|
|
|
549
|
+
# The serialized ApprovalRequest message without the approve.signature_info
|
|
550
|
+
# field. This to allow the customer to verify signatures if they want to.
|
|
551
|
+
# Corresponds to the JSON property `serializedApprovalRequest`
|
|
552
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
553
|
+
# @return [String]
|
|
554
|
+
attr_accessor :serialized_approval_request
|
|
555
|
+
|
|
543
556
|
# The digital signature.
|
|
544
557
|
# Corresponds to the JSON property `signature`
|
|
545
558
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
@@ -553,7 +566,9 @@ module Google
|
|
|
553
566
|
# Update properties of this object
|
|
554
567
|
def update!(**args)
|
|
555
568
|
@customer_kms_key_version = args[:customer_kms_key_version] if args.key?(:customer_kms_key_version)
|
|
569
|
+
@google_key_algorithm = args[:google_key_algorithm] if args.key?(:google_key_algorithm)
|
|
556
570
|
@google_public_key_pem = args[:google_public_key_pem] if args.key?(:google_public_key_pem)
|
|
571
|
+
@serialized_approval_request = args[:serialized_approval_request] if args.key?(:serialized_approval_request)
|
|
557
572
|
@signature = args[:signature] if args.key?(:signature)
|
|
558
573
|
end
|
|
559
574
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AccessapprovalV1
|
|
18
18
|
# Version of the google-apis-accessapproval_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.34.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20231110"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -247,7 +247,9 @@ module Google
|
|
|
247
247
|
# @private
|
|
248
248
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
249
249
|
property :customer_kms_key_version, as: 'customerKmsKeyVersion'
|
|
250
|
+
property :google_key_algorithm, as: 'googleKeyAlgorithm'
|
|
250
251
|
property :google_public_key_pem, as: 'googlePublicKeyPem'
|
|
252
|
+
property :serialized_approval_request, :base64 => true, as: 'serializedApprovalRequest'
|
|
251
253
|
property :signature, :base64 => true, as: 'signature'
|
|
252
254
|
end
|
|
253
255
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-accessapproval_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.34.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: 2023-
|
|
11
|
+
date: 2023-11-19 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-accessapproval_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-accessapproval_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-accessapproval_v1/v0.34.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accessapproval_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|