google-cloud-cloud_dms-v1 0.1.5 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/README.md +14 -9
- data/lib/google/cloud/cloud_dms/v1/data_migration_service/client.rb +2317 -204
- data/lib/google/cloud/cloud_dms/v1/data_migration_service/operations.rb +17 -16
- data/lib/google/cloud/cloud_dms/v1/data_migration_service/paths.rb +55 -0
- data/lib/google/cloud/cloud_dms/v1/data_migration_service.rb +1 -1
- data/lib/google/cloud/cloud_dms/v1/version.rb +1 -1
- data/lib/google/cloud/cloud_dms/v1.rb +3 -1
- data/lib/google/cloud/clouddms/v1/clouddms_pb.rb +170 -1
- data/lib/google/cloud/clouddms/v1/clouddms_resources_pb.rb +151 -2
- data/lib/google/cloud/clouddms/v1/clouddms_services_pb.rb +54 -1
- data/lib/google/cloud/clouddms/v1/conversionworkspace_resources_pb.rb +252 -0
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/clouddms/v1/clouddms.rb +545 -35
- data/proto_docs/google/cloud/clouddms/v1/clouddms_resources.rb +505 -38
- data/proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb +663 -0
- data/proto_docs/google/protobuf/any.rb +3 -3
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/protobuf/struct.rb +96 -0
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +58 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8498fabcf758e839be6aae9ddb3a057ee9a8d8ae063a6c6f11f8886d8083be59
|
4
|
+
data.tar.gz: 881493982fce886d3e8b5e687590378b61a582039acde11fa99f08f4fde8cc5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
|
@@ -37,7 +37,7 @@ request = ::Google::Cloud::CloudDMS::V1::ListMigrationJobsRequest.new # (request
|
|
37
37
|
response = client.list_migration_jobs request
|
38
38
|
```
|
39
39
|
|
40
|
-
View the [Client Library Documentation](https://
|
40
|
+
View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-cloud_dms-v1/latest)
|
41
41
|
for class and method documentation.
|
42
42
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/database-migration/)
|
@@ -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
|
|
@@ -69,16 +69,21 @@ module GRPC
|
|
69
69
|
end
|
70
70
|
```
|
71
71
|
|
72
|
+
|
73
|
+
## Google Cloud Samples
|
74
|
+
|
75
|
+
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
76
|
+
|
72
77
|
## Supported Ruby Versions
|
73
78
|
|
74
|
-
This library is supported on Ruby 2.
|
79
|
+
This library is supported on Ruby 2.6+.
|
75
80
|
|
76
81
|
Google provides official support for Ruby versions that are actively supported
|
77
82
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
78
|
-
in security maintenance, and not end of life.
|
79
|
-
|
80
|
-
|
81
|
-
|
83
|
+
in security maintenance, and not end of life. Older versions of Ruby _may_
|
84
|
+
still work, but are unsupported and not recommended. See
|
85
|
+
https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
|
86
|
+
support schedule.
|
82
87
|
|
83
88
|
## Which client should I use?
|
84
89
|
|