google-cloud-access_approval-v1 1.1.0 → 1.2.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/access_approval/v1/access_approval/client.rb +7 -0
- data/lib/google/cloud/access_approval/v1/access_approval/rest/client.rb +7 -0
- data/lib/google/cloud/access_approval/v1/version.rb +1 -1
- data/proto_docs/google/cloud/accessapproval/v1/accessapproval.rb +8 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ee8689176b266c2275c3a82b3b8b9d5899da5e13d2f2fc5e8872d56a20b3072
|
4
|
+
data.tar.gz: 88eba1365e8b0aded670ee07b6b78f8fa0ef83410396ef7580cec278cffaf031
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ab697dc935e26461eb30598d1a7ea8676fc1b4830b4e1ffaa606e7504674383a138a5d5771d346f9fb43df6f9cfdc5942502ef2190b9a0ad33078876405f6be
|
7
|
+
data.tar.gz: 67b7b4bd67fc140df192de35e2ad20ca6c61b2cd22abf9d4443359d441b248603bd72c6e307abfc19f1dd901d96787e7ed176271c43ad1af680a5233696ad20c
|
data/README.md
CHANGED
@@ -85,7 +85,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
85
85
|
|
86
86
|
## Supported Ruby Versions
|
87
87
|
|
88
|
-
This library is supported on Ruby
|
88
|
+
This library is supported on Ruby 3.0+.
|
89
89
|
|
90
90
|
Google provides official support for Ruby versions that are actively supported
|
91
91
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -1117,6 +1117,13 @@ module Google
|
|
1117
1117
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1118
1118
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1119
1119
|
# * (`nil`) indicating no credentials
|
1120
|
+
#
|
1121
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1122
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1123
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1124
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1125
|
+
# For more information, refer to [Validate credential configurations from external
|
1126
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1120
1127
|
# @return [::Object]
|
1121
1128
|
# @!attribute [rw] scope
|
1122
1129
|
# The OAuth scopes
|
@@ -1045,6 +1045,13 @@ module Google
|
|
1045
1045
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1046
1046
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1047
1047
|
# * (`nil`) indicating no credentials
|
1048
|
+
#
|
1049
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1050
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1051
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1052
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1053
|
+
# For more information, refer to [Validate credential configurations from external
|
1054
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1048
1055
|
# @return [::Object]
|
1049
1056
|
# @!attribute [rw] scope
|
1050
1057
|
# The OAuth scopes
|
@@ -115,9 +115,13 @@ module Google
|
|
115
115
|
# The public key for the Google default signing, encoded in PEM format. The
|
116
116
|
# signature was created using a private key which may be verified using
|
117
117
|
# this public key.
|
118
|
+
#
|
119
|
+
# Note: The following fields are mutually exclusive: `google_public_key_pem`, `customer_kms_key_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
118
120
|
# @!attribute [rw] customer_kms_key_version
|
119
121
|
# @return [::String]
|
120
122
|
# The resource name of the customer CryptoKeyVersion used for signing.
|
123
|
+
#
|
124
|
+
# Note: The following fields are mutually exclusive: `customer_kms_key_version`, `google_public_key_pem`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
121
125
|
class SignatureInfo
|
122
126
|
include ::Google::Protobuf::MessageExts
|
123
127
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -201,9 +205,13 @@ module Google
|
|
201
205
|
# @!attribute [rw] approve
|
202
206
|
# @return [::Google::Cloud::AccessApproval::V1::ApproveDecision]
|
203
207
|
# Access was approved.
|
208
|
+
#
|
209
|
+
# Note: The following fields are mutually exclusive: `approve`, `dismiss`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
204
210
|
# @!attribute [rw] dismiss
|
205
211
|
# @return [::Google::Cloud::AccessApproval::V1::DismissDecision]
|
206
212
|
# The request was dismissed.
|
213
|
+
#
|
214
|
+
# Note: The following fields are mutually exclusive: `dismiss`, `approve`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
207
215
|
class ApprovalRequest
|
208
216
|
include ::Google::Protobuf::MessageExts
|
209
217
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-access_approval-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.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-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -84,7 +83,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
84
83
|
licenses:
|
85
84
|
- Apache-2.0
|
86
85
|
metadata: {}
|
87
|
-
post_install_message:
|
88
86
|
rdoc_options: []
|
89
87
|
require_paths:
|
90
88
|
- lib
|
@@ -92,15 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
90
|
requirements:
|
93
91
|
- - ">="
|
94
92
|
- !ruby/object:Gem::Version
|
95
|
-
version: '
|
93
|
+
version: '3.0'
|
96
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
95
|
requirements:
|
98
96
|
- - ">="
|
99
97
|
- !ruby/object:Gem::Version
|
100
98
|
version: '0'
|
101
99
|
requirements: []
|
102
|
-
rubygems_version: 3.
|
103
|
-
signing_key:
|
100
|
+
rubygems_version: 3.6.2
|
104
101
|
specification_version: 4
|
105
102
|
summary: An API for controlling access to data by Google personnel.
|
106
103
|
test_files: []
|