google-cloud-artifact_registry-v1 0.5.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: 2d7d9195d863a191241c8ad11b6505e190b0e5d57fa09c95c6b496f09bb964c5
4
- data.tar.gz: 53a30293f84a57a7a51125d3462f96f674dfed8d1581986761924f8c8884d6d1
3
+ metadata.gz: 2b1cd1406a6ab800245d882522e1179d880f15180f62ecfa6fb0e67b24b47078
4
+ data.tar.gz: cf7392cd66b0a2fd17e229032854651254a8223826955df1127a1c0c47fbcc11
5
5
  SHA512:
6
- metadata.gz: 0d9c58f0f4e043b825ceed5b37fe329003db478db9bc8774fb60014b986c07eb7f29598eefb26b206e23674495e981983232df482fc082ec10194e6510ab072b
7
- data.tar.gz: 5a198cfdbf84cd7980e7f9921064a7a9769fd9152744e9c0ed2a86d88b6eab5c29ca3c059c0f36beb388d25a786d0c6dc619a1c6357030dab7e8f974b44bc950
6
+ metadata.gz: '0063021269602868849aa32ec5f09d3d50774ed2d777124ba44d359d4b66ab952fcd74d2c2b894ffbe3b1a98847eda9d768c55e06de58cab9271d847b4944302'
7
+ data.tar.gz: 3e13632e56ec7a728b891f6196920ffd1eef493c314f40350dda9473b711b9030b30fc8aca7208d545d927cfabc2e8df4469dc62f79c6a22e2f79d44086f4198
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
@@ -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.