google-cloud-binary_authorization 0.2.2 → 1.0.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/AUTHENTICATION.md +1 -1
- data/README.md +3 -2
- data/lib/google/cloud/binary_authorization/version.rb +1 -1
- data/lib/google/cloud/binary_authorization.rb +64 -4
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 765fce7630c1fbe62f8f988743b1878c1a25236a25c88e0175b5b9913f0a1ca0
|
4
|
+
data.tar.gz: d0361e16247b2d4fa41c51cecea1a8f4e78dfdc160a79ceb8d6fa41b428302b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a573cbbf31f45a00da70751cdd37992f5f5896cea12aa59769968723c8dab07717bee122e0cc8b0151993427b1c71394446d706b06ee921872da6d78e5b90e8
|
7
|
+
data.tar.gz: 0b68a20ba20bd21fe5d66d43195edf5d30fc36a35418944cf3287255a3c9419229e0833ddc44f85d50ad15bbef42ecc0dd63c1a2f4780ce98d223808d988d167
|
data/AUTHENTICATION.md
CHANGED
@@ -64,7 +64,7 @@ containers where writing files is difficult or not encouraged.
|
|
64
64
|
|
65
65
|
The environment variables that google-cloud-binary_authorization
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
|
-
`::Google::Cloud::BinaryAuthorization::
|
67
|
+
`::Google::Cloud::BinaryAuthorization::V1::BinauthzManagementService::Credentials`):
|
68
68
|
|
69
69
|
* `BINARY_AUTHORIZATION_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
70
|
* `BINARY_AUTHORIZATION_KEYFILE` - Path to JSON file, or JSON contents
|
data/README.md
CHANGED
@@ -16,6 +16,7 @@ for this library, google-cloud-binary_authorization, to see the convenience meth
|
|
16
16
|
constructing client objects. Reference documentation for the client objects
|
17
17
|
themselves can be found in the client library documentation for the versioned
|
18
18
|
client gems:
|
19
|
+
[google-cloud-binary_authorization-v1](https://googleapis.dev/ruby/google-cloud-binary_authorization-v1/latest),
|
19
20
|
[google-cloud-binary_authorization-v1beta1](https://googleapis.dev/ruby/google-cloud-binary_authorization-v1beta1/latest).
|
20
21
|
|
21
22
|
See also the [Product Documentation](https://cloud.google.com/binary-authorization/)
|
@@ -76,7 +77,7 @@ about the Ruby support schedule.
|
|
76
77
|
Most modern Ruby client libraries for Google APIs come in two flavors: the main
|
77
78
|
client library with a name such as `google-cloud-binary_authorization`,
|
78
79
|
and lower-level _versioned_ client libraries with names such as
|
79
|
-
`google-cloud-binary_authorization-
|
80
|
+
`google-cloud-binary_authorization-v1`.
|
80
81
|
_In most cases, you should install the main client._
|
81
82
|
|
82
83
|
### What's the difference between the main client and a versioned client?
|
@@ -114,7 +115,7 @@ You can use a versioned client if you are content with a possibly lower-level
|
|
114
115
|
class interface, you explicitly want to avoid features provided by the main
|
115
116
|
client, or you want to access a specific service version not be covered by the
|
116
117
|
main client. You can identify versioned client gems because the service version
|
117
|
-
is part of the name, e.g. `google-cloud-binary_authorization-
|
118
|
+
is part of the name, e.g. `google-cloud-binary_authorization-v1`.
|
118
119
|
|
119
120
|
### What about the google-apis-<name> clients?
|
120
121
|
|
@@ -48,8 +48,8 @@ module Google
|
|
48
48
|
# Create a new client object for BinauthzManagementService.
|
49
49
|
#
|
50
50
|
# By default, this returns an instance of
|
51
|
-
# [Google::Cloud::BinaryAuthorization::
|
52
|
-
# for version
|
51
|
+
# [Google::Cloud::BinaryAuthorization::V1::BinauthzManagementService::Client](https://googleapis.dev/ruby/google-cloud-binary_authorization-v1/latest/Google/Cloud/BinaryAuthorization/V1/BinauthzManagementService/Client.html)
|
52
|
+
# for version V1 of the API.
|
53
53
|
# However, you can specify specify a different API version by passing it in the
|
54
54
|
# `version` parameter. If the BinauthzManagementService service is
|
55
55
|
# supported by that API version, and the corresponding gem is available, the
|
@@ -66,10 +66,10 @@ module Google
|
|
66
66
|
# * Attestor
|
67
67
|
#
|
68
68
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
69
|
-
# Defaults to `:
|
69
|
+
# Defaults to `:v1`.
|
70
70
|
# @return [BinauthzManagementService::Client] A client object for the specified version.
|
71
71
|
#
|
72
|
-
def self.binauthz_management_service version: :
|
72
|
+
def self.binauthz_management_service version: :v1, &block
|
73
73
|
require "google/cloud/binary_authorization/#{version.to_s.downcase}"
|
74
74
|
|
75
75
|
package_name = Google::Cloud::BinaryAuthorization
|
@@ -80,6 +80,66 @@ module Google
|
|
80
80
|
package_module.const_get(:BinauthzManagementService).const_get(:Client).new(&block)
|
81
81
|
end
|
82
82
|
|
83
|
+
##
|
84
|
+
# Create a new client object for SystemPolicy.
|
85
|
+
#
|
86
|
+
# By default, this returns an instance of
|
87
|
+
# [Google::Cloud::BinaryAuthorization::V1::SystemPolicy::Client](https://googleapis.dev/ruby/google-cloud-binary_authorization-v1/latest/Google/Cloud/BinaryAuthorization/V1/SystemPolicy/Client.html)
|
88
|
+
# for version V1 of the API.
|
89
|
+
# However, you can specify specify a different API version by passing it in the
|
90
|
+
# `version` parameter. If the SystemPolicy service is
|
91
|
+
# supported by that API version, and the corresponding gem is available, the
|
92
|
+
# appropriate versioned client will be returned.
|
93
|
+
#
|
94
|
+
# ## About SystemPolicy
|
95
|
+
#
|
96
|
+
# API for working with the system policy.
|
97
|
+
#
|
98
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
99
|
+
# Defaults to `:v1`.
|
100
|
+
# @return [SystemPolicy::Client] A client object for the specified version.
|
101
|
+
#
|
102
|
+
def self.system_policy version: :v1, &block
|
103
|
+
require "google/cloud/binary_authorization/#{version.to_s.downcase}"
|
104
|
+
|
105
|
+
package_name = Google::Cloud::BinaryAuthorization
|
106
|
+
.constants
|
107
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
108
|
+
.first
|
109
|
+
package_module = Google::Cloud::BinaryAuthorization.const_get package_name
|
110
|
+
package_module.const_get(:SystemPolicy).const_get(:Client).new(&block)
|
111
|
+
end
|
112
|
+
|
113
|
+
##
|
114
|
+
# Create a new client object for ValidationHelper.
|
115
|
+
#
|
116
|
+
# By default, this returns an instance of
|
117
|
+
# [Google::Cloud::BinaryAuthorization::V1::ValidationHelper::Client](https://googleapis.dev/ruby/google-cloud-binary_authorization-v1/latest/Google/Cloud/BinaryAuthorization/V1/ValidationHelper/Client.html)
|
118
|
+
# for version V1 of the API.
|
119
|
+
# However, you can specify specify a different API version by passing it in the
|
120
|
+
# `version` parameter. If the ValidationHelper service is
|
121
|
+
# supported by that API version, and the corresponding gem is available, the
|
122
|
+
# appropriate versioned client will be returned.
|
123
|
+
#
|
124
|
+
# ## About ValidationHelper
|
125
|
+
#
|
126
|
+
# BinAuthz Attestor verification
|
127
|
+
#
|
128
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
129
|
+
# Defaults to `:v1`.
|
130
|
+
# @return [ValidationHelper::Client] A client object for the specified version.
|
131
|
+
#
|
132
|
+
def self.validation_helper version: :v1, &block
|
133
|
+
require "google/cloud/binary_authorization/#{version.to_s.downcase}"
|
134
|
+
|
135
|
+
package_name = Google::Cloud::BinaryAuthorization
|
136
|
+
.constants
|
137
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
138
|
+
.first
|
139
|
+
package_module = Google::Cloud::BinaryAuthorization.const_get package_name
|
140
|
+
package_module.const_get(:ValidationHelper).const_get(:Client).new(&block)
|
141
|
+
end
|
142
|
+
|
83
143
|
##
|
84
144
|
# Configure the google-cloud-binary_authorization library.
|
85
145
|
#
|
metadata
CHANGED
@@ -1,15 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-binary_authorization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.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: 2021-
|
11
|
+
date: 2021-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: google-cloud-binary_authorization-v1
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.0'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.0'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 2.a
|
13
33
|
- !ruby/object:Gem::Dependency
|
14
34
|
name: google-cloud-binary_authorization-v1beta1
|
15
35
|
requirement: !ruby/object:Gem::Requirement
|