google-cloud-binary_authorization-v1beta1 0.6.0 → 0.8.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 -3
- data/lib/google/cloud/binary_authorization/v1beta1/binauthz_management_service/client.rb +10 -10
- data/lib/google/cloud/binary_authorization/v1beta1/binauthz_management_service/rest/client.rb +837 -0
- data/lib/google/cloud/binary_authorization/v1beta1/binauthz_management_service/rest/service_stub.rb +464 -0
- data/lib/google/cloud/binary_authorization/v1beta1/binauthz_management_service/rest.rb +58 -0
- data/lib/google/cloud/binary_authorization/v1beta1/binauthz_management_service.rb +7 -1
- data/lib/google/cloud/binary_authorization/v1beta1/rest.rb +38 -0
- data/lib/google/cloud/binary_authorization/v1beta1/system_policy/client.rb +6 -4
- data/lib/google/cloud/binary_authorization/v1beta1/system_policy/rest/client.rb +347 -0
- data/lib/google/cloud/binary_authorization/v1beta1/system_policy/rest/service_stub.rb +107 -0
- data/lib/google/cloud/binary_authorization/v1beta1/system_policy/rest.rb +52 -0
- data/lib/google/cloud/binary_authorization/v1beta1/system_policy.rb +7 -1
- data/lib/google/cloud/binary_authorization/v1beta1/version.rb +1 -1
- data/lib/google/cloud/binary_authorization/v1beta1.rb +7 -2
- data/lib/google/cloud/binaryauthorization/v1beta1/continuous_validation_logging_pb.rb +25 -32
- data/lib/google/cloud/binaryauthorization/v1beta1/resources_pb.rb +25 -80
- data/lib/google/cloud/binaryauthorization/v1beta1/service_pb.rb +25 -33
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- metadata +20 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a44f67b3ea50ab6cf9eb71c5ddaccd4b2153adac600d3e1eb6ae809a2305c0c
|
4
|
+
data.tar.gz: 88ad35baba12f231fec673976dd23c95fc96dc6a726d073b6ef73a1e09a87c10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebf57af05029a0e7ed3780c1d280e96adf91c6275de00e44155d7d8fd1f68fc0fe8f58de35ed9b1e8f2c40a30342c9748906bc0360b63cdd17bf65c80067dfb9
|
7
|
+
data.tar.gz: 230740f35764526a78ede9f5f7bc371fd440bcbab901397b0d4003fe024dc6d9d967909aec645c568b39c3342cf26cdc652a6e9c63e0d7cbfe8b605ffc9cd244
|
data/AUTHENTICATION.md
CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
|
|
114
114
|
To configure your system for this, simply:
|
115
115
|
|
116
116
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
117
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
117
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
118
118
|
3. Write code as if already authenticated.
|
119
119
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Binary Authorization V1beta1 API
|
2
2
|
|
3
|
-
|
3
|
+
The management interface for Binary Authorization, a system providing policy control for images deployed to Kubernetes Engine clusters, Anthos clusters on VMware, and Cloud Run.
|
4
4
|
|
5
5
|
Binary Authorization is a service on Google Cloud that provides centralized software supply-chain security for applications that run on Google Kubernetes Engine (GKE) and GKE on-prem.
|
6
6
|
|
@@ -46,8 +46,8 @@ for general usage information.
|
|
46
46
|
## Enabling Logging
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
49
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
53
53
|
|
@@ -161,7 +161,7 @@ module Google
|
|
161
161
|
credentials = @config.credentials
|
162
162
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
163
163
|
# but only if the default endpoint does not have a region prefix.
|
164
|
-
enable_self_signed_jwt = @config.endpoint ==
|
164
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
165
165
|
!@config.endpoint.split(".").first.include?("-")
|
166
166
|
credentials ||= Credentials.default scope: @config.scope,
|
167
167
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -684,13 +684,11 @@ module Google
|
|
684
684
|
# # Call the list_attestors method.
|
685
685
|
# result = client.list_attestors request
|
686
686
|
#
|
687
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
688
|
-
# #
|
689
|
-
#
|
690
|
-
# # methods are also available for managing paging directly.
|
691
|
-
# result.each do |response|
|
687
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
688
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
689
|
+
# result.each do |item|
|
692
690
|
# # Each element is of type ::Google::Cloud::BinaryAuthorization::V1beta1::Attestor.
|
693
|
-
# p
|
691
|
+
# p item
|
694
692
|
# end
|
695
693
|
#
|
696
694
|
def list_attestors request, options = nil
|
@@ -860,9 +858,9 @@ module Google
|
|
860
858
|
# * (`String`) The path to a service account key file in JSON format
|
861
859
|
# * (`Hash`) A service account key as a Hash
|
862
860
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
863
|
-
# (see the [googleauth docs](https://
|
861
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
864
862
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
865
|
-
# (see the [signet docs](https://
|
863
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
866
864
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
867
865
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
868
866
|
# * (`nil`) indicating no credentials
|
@@ -904,7 +902,9 @@ module Google
|
|
904
902
|
class Configuration
|
905
903
|
extend ::Gapic::Config
|
906
904
|
|
907
|
-
|
905
|
+
DEFAULT_ENDPOINT = "binaryauthorization.googleapis.com"
|
906
|
+
|
907
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
908
908
|
config_attr :credentials, nil do |value|
|
909
909
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
910
910
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|