google-cloud-cloud_dms-v1 0.2.0 → 0.3.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: b5dfe380c31b2389512f93e325c217551fd8156cac935ea4fa6df39e6a2ffee8
4
- data.tar.gz: 519d82a70866014b583d030b180b52a8005bb3fdb7a5cc7cee0945b7bd3be9d9
3
+ metadata.gz: 8498fabcf758e839be6aae9ddb3a057ee9a8d8ae063a6c6f11f8886d8083be59
4
+ data.tar.gz: 881493982fce886d3e8b5e687590378b61a582039acde11fa99f08f4fde8cc5f
5
5
  SHA512:
6
- metadata.gz: ec37a49d142bb9ca0d632e98dc6e772a105cc015658e361fd78a01bedc3a29139a3ba6d0b06f8c9742c07adb953ed198588eb6bff3cfd5c05b5fb281330fb47e
7
- data.tar.gz: dcead11858e04d3bb66538a3677e080898a08681feb41e9795be3788ab42a9ebafc9d280d188cf111777ddc44a39cae3bae3e5d996cd8b8747a171dcfe9d03f1
6
+ metadata.gz: 95223b87ecdd340f088390d542e0b4f03b5853aad5abf8b32e6144c2963ff00078ab7a558b483a50b50c5382fbade04766d99497d5da84e3a45e7d86ccc88190
7
+ data.tar.gz: '0895a3ae440d3c3cfb6553ec0caf276175d5dae955f1f45afa750f64460fad010506a9e0bb7d5b2d7b3831b7e321a7e0d251336d843dbf29f0904835d92aea1d'
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 Cloud Database Migration Service V1 API
2
2
 
3
- API Client library for the Cloud Database Migration Service V1 API
3
+ Manage Cloud Database Migration Service resources on Google Cloud Platform.
4
4
 
5
5
  Database Migration Service makes it easier for you to migrate your data to Google Cloud. Database Migration Service helps you lift and shift your MySQL and PostgreSQL workloads into Cloud SQL. Database Migration Service streamlines networking workflow, manages the initial snapshot and ongoing replication, and provides a status of the migration operation.
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/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
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