google-cloud-binary_authorization-v1beta1 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ccf5019dbf1a4ab1ddcfa4adf738aa872a851c2b46e24b408a732dcecb546c6
4
- data.tar.gz: 04fb1590e4fc2a474f297d02a49e3e3ba704d98ff1c7b95046233eb799c0b74c
3
+ metadata.gz: 5c4e40d7035a5134176c3508b6568ecc69b2d3653894af20b9f6e737706d145d
4
+ data.tar.gz: '01884253433eb7a55a26a964e01ebb6e154fd4e0aad0269c867486a821e8d5dc'
5
5
  SHA512:
6
- metadata.gz: 593486103411e30b793aa321fa2e0dd746385ad2a408e8467612a1684d105e0531f1e64e882c864b778b02a27ebfebe07fc24749061265f9650186a62b0bfe0d
7
- data.tar.gz: e19375ecd64164defe9d0ead1eee28d9c23f4f34af085e83a746832bfe2e83e6605d3de92cd9babe3a34d1bcd0548fafa6027e66e2bc304ce1ab6ebc475c1a3d
6
+ metadata.gz: d10433683f8a1694d20581ebf83d7bdcbf8ef8658079b185ea448dde433f09658de48ffb15c77c733595f097d54a1387a592aa25ed3b4aac629d668747c1301e
7
+ data.tar.gz: ca1c1d84103df0b49cdabd94b0da98ab0207ce8c72da7d437893df80af9f32147dc8dbf78c94aff866063a1b456a7c1dcba458515f9d4fa0d7736ab62ffe6331
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
- API Client library for the Binary Authorization V1beta1 API
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,7 +46,7 @@ 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/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
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
50
  or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/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.
@@ -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
- # # iterate over all elements by calling #each, and the enumerable
689
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
691
+ # p item
694
692
  # end
695
693
  #
696
694
  def list_attestors request, options = nil