grpc-google-iam-v1 0.6.10 → 0.6.11
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/CHANGELOG.md +7 -1
- data/Rakefile +10 -0
- data/grpc-google-iam-v1.gemspec +3 -3
- data/lib/google/iam/v1/iam_policy_services_pb.rb +3 -3
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 916025e0cae6e2567969e03459bcb56fd44b9f8908d2918860d88338aafdd8fb
|
4
|
+
data.tar.gz: 0cabd86e9f02a0b1942eee97cf7cdce1cd79c22e3679f46cfe09c056b03b2f23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 240a331e89c5b9584a4dc47bcdcfca934e537eccb87d78fc416c4cf2440aa153f346c84906794fdd7bc5335fa49a51d42e8788accaebaf987929affd9495cad8
|
7
|
+
data.tar.gz: 2f814f8f3c6d1ce172886fccbd55155268156e281d9bb8917632ec64b42b4c0c33785edce0bd1e7f6d13d09b6e00ade9f5b9a796bb616ff4b4dbcd65f7c2bd11
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,15 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 0.6.11 / 2021-02-01
|
4
|
+
|
5
|
+
* Fully qualify proto names internally.
|
6
|
+
* Update googleapis-common-protos dependency to 1.3.11.
|
7
|
+
* Require protobuf 3.14.
|
8
|
+
|
3
9
|
### 0.6.10 / 2020-04-08
|
4
10
|
|
5
11
|
* Add "options" field to Google::Iam::V1::GetIamPolicyRequest.
|
6
12
|
* Support conditional policy bindings via the "condition" field in Google::Iam::V1::Binding.
|
7
13
|
* Support policy delta types.
|
8
14
|
* Update googleapis-common-protos dependency to 1.3.10.
|
9
|
-
* Require protobuf 3.11
|
15
|
+
* Require protobuf 3.11.
|
data/Rakefile
CHANGED
@@ -37,6 +37,15 @@ task :compile_protos do
|
|
37
37
|
system full_command
|
38
38
|
end
|
39
39
|
|
40
|
+
desc "Test loading all proto files"
|
41
|
+
task :test_loading do
|
42
|
+
puts "\nLoading proto files"
|
43
|
+
Dir.glob("lib/google/**/*_pb.rb") do |path|
|
44
|
+
puts path
|
45
|
+
require_relative path
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
40
49
|
desc "Remove the compiled protos."
|
41
50
|
task :clean_protos do
|
42
51
|
FileUtils.rm_rf "lib"
|
@@ -46,6 +55,7 @@ desc "Run the CI build"
|
|
46
55
|
task :ci do
|
47
56
|
puts "\nCompiling Protos\n"
|
48
57
|
Rake::Task[:compile_protos].invoke
|
58
|
+
Rake::Task[:test_loading].invoke
|
49
59
|
end
|
50
60
|
|
51
61
|
Rake::Task[:build].enhance [:compile_protos]
|
data/grpc-google-iam-v1.gemspec
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
Gem::Specification.new do |spec|
|
18
18
|
spec.name = "grpc-google-iam-v1"
|
19
|
-
spec.version = "0.6.
|
19
|
+
spec.version = "0.6.11"
|
20
20
|
spec.authors = ["Google Inc"]
|
21
21
|
spec.email = ["googleapis-packages@google.com"]
|
22
22
|
spec.licenses = ["Apache-2.0"]
|
@@ -34,8 +34,8 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.files += Dir.glob "lib/**/*_pb.rb"
|
35
35
|
spec.require_paths = ["lib"]
|
36
36
|
|
37
|
-
spec.add_dependency "googleapis-common-protos", ">= 1.3.
|
38
|
-
spec.add_dependency "google-protobuf", "~> 3.
|
37
|
+
spec.add_dependency "googleapis-common-protos", ">= 1.3.11", "< 2.0"
|
38
|
+
spec.add_dependency "google-protobuf", "~> 3.14"
|
39
39
|
spec.add_dependency "grpc", "~> 1.27"
|
40
40
|
|
41
41
|
spec.add_development_dependency "bundler", "~> 2.1"
|
@@ -59,11 +59,11 @@ module Google
|
|
59
59
|
|
60
60
|
# Sets the access control policy on the specified resource. Replaces any
|
61
61
|
# existing policy.
|
62
|
-
rpc :SetIamPolicy, SetIamPolicyRequest, Policy
|
62
|
+
rpc :SetIamPolicy, ::Google::Iam::V1::SetIamPolicyRequest, ::Google::Iam::V1::Policy
|
63
63
|
# Gets the access control policy for a resource.
|
64
64
|
# Returns an empty policy if the resource exists and does not have a policy
|
65
65
|
# set.
|
66
|
-
rpc :GetIamPolicy, GetIamPolicyRequest, Policy
|
66
|
+
rpc :GetIamPolicy, ::Google::Iam::V1::GetIamPolicyRequest, ::Google::Iam::V1::Policy
|
67
67
|
# Returns permissions that a caller has on the specified resource.
|
68
68
|
# If the resource does not exist, this will return an empty set of
|
69
69
|
# permissions, not a NOT_FOUND error.
|
@@ -71,7 +71,7 @@ module Google
|
|
71
71
|
# Note: This operation is designed to be used for building permission-aware
|
72
72
|
# UIs and command-line tools, not for authorization checking. This operation
|
73
73
|
# may "fail open" without warning.
|
74
|
-
rpc :TestIamPermissions, TestIamPermissionsRequest, TestIamPermissionsResponse
|
74
|
+
rpc :TestIamPermissions, ::Google::Iam::V1::TestIamPermissionsRequest, ::Google::Iam::V1::TestIamPermissionsResponse
|
75
75
|
end
|
76
76
|
|
77
77
|
Stub = Service.rpc_stub_class
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc-google-iam-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google Inc
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: googleapis-common-protos
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.3.
|
19
|
+
version: 1.3.11
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '2.0'
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.3.
|
29
|
+
version: 1.3.11
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '2.0'
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '3.
|
39
|
+
version: '3.14'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '3.
|
46
|
+
version: '3.14'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: grpc
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
|
-
rubygems_version: 3.1.
|
139
|
+
rubygems_version: 3.1.4
|
140
140
|
signing_key:
|
141
141
|
specification_version: 4
|
142
142
|
summary: Common protos and gRPC services for Google IAM
|