google-cloud-domains-v1 0.1.0 → 0.3.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 +12 -7
- data/lib/google/cloud/domains/v1/domains/client.rb +36 -38
- data/lib/google/cloud/domains/v1/domains/operations.rb +15 -14
- data/lib/google/cloud/domains/v1/domains/rest/client.rb +1525 -0
- data/lib/google/cloud/domains/v1/domains/rest/operations.rb +793 -0
- data/lib/google/cloud/domains/v1/domains/rest/service_stub.rb +941 -0
- data/lib/google/cloud/domains/v1/domains/rest.rb +53 -0
- data/lib/google/cloud/domains/v1/domains.rb +7 -1
- data/lib/google/cloud/domains/v1/domains_pb.rb +2 -1
- data/lib/google/cloud/domains/v1/rest.rb +37 -0
- data/lib/google/cloud/domains/v1/version.rb +1 -1
- data/lib/google/cloud/domains/v1.rb +7 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/protobuf/any.rb +3 -3
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +20 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac3ed844678b156b804680784b3b480e40d6d02e0acdb82df42bece29dd0a029
|
4
|
+
data.tar.gz: 4df20258fe81f9e4d275a01b0c41146ec50960b36e7984e6e59bd58d5e10be90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9c677b228efba73900d5afec20e787db590e94138c24a1448efee2801ff93dba19b37ae3ad62ff4438e95668a6e2e294acf3516eef33dab9b9250d094d3f0c8
|
7
|
+
data.tar.gz: 8175545873a3dd28f0e26cad5378dc8d51dd9ccf6e87dbef422f006e4dee26124e5ccf329333900b16bd1ca5c79f07b2e379f42e8573cb3df8b99de8271df70c
|
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 Domains V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Enables management and configuration of domain names.
|
4
4
|
|
5
5
|
The Cloud Domains API provides registration, management and configuration of domain names.
|
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/
|
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.
|
@@ -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
|
|
@@ -407,14 +407,14 @@ module Google
|
|
407
407
|
# # Call the register_domain method.
|
408
408
|
# result = client.register_domain request
|
409
409
|
#
|
410
|
-
# # The returned object is of type Gapic::Operation. You can use
|
411
|
-
# #
|
412
|
-
# #
|
410
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
411
|
+
# # check the status of an operation, cancel it, or wait for results.
|
412
|
+
# # Here is how to wait for a response.
|
413
413
|
# result.wait_until_done! timeout: 60
|
414
414
|
# if result.response?
|
415
415
|
# p result.response
|
416
416
|
# else
|
417
|
-
# puts "
|
417
|
+
# puts "No response received."
|
418
418
|
# end
|
419
419
|
#
|
420
420
|
def register_domain request, options = nil
|
@@ -634,14 +634,14 @@ module Google
|
|
634
634
|
# # Call the transfer_domain method.
|
635
635
|
# result = client.transfer_domain request
|
636
636
|
#
|
637
|
-
# # The returned object is of type Gapic::Operation. You can use
|
638
|
-
# #
|
639
|
-
# #
|
637
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
638
|
+
# # check the status of an operation, cancel it, or wait for results.
|
639
|
+
# # Here is how to wait for a response.
|
640
640
|
# result.wait_until_done! timeout: 60
|
641
641
|
# if result.response?
|
642
642
|
# p result.response
|
643
643
|
# else
|
644
|
-
# puts "
|
644
|
+
# puts "No response received."
|
645
645
|
# end
|
646
646
|
#
|
647
647
|
def transfer_domain request, options = nil
|
@@ -750,13 +750,11 @@ module Google
|
|
750
750
|
# # Call the list_registrations method.
|
751
751
|
# result = client.list_registrations request
|
752
752
|
#
|
753
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
754
|
-
# #
|
755
|
-
#
|
756
|
-
# # methods are also available for managing paging directly.
|
757
|
-
# result.each do |response|
|
753
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
754
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
755
|
+
# result.each do |item|
|
758
756
|
# # Each element is of type ::Google::Cloud::Domains::V1::Registration.
|
759
|
-
# p
|
757
|
+
# p item
|
760
758
|
# end
|
761
759
|
#
|
762
760
|
def list_registrations request, options = nil
|
@@ -937,14 +935,14 @@ module Google
|
|
937
935
|
# # Call the update_registration method.
|
938
936
|
# result = client.update_registration request
|
939
937
|
#
|
940
|
-
# # The returned object is of type Gapic::Operation. You can use
|
941
|
-
# #
|
942
|
-
# #
|
938
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
939
|
+
# # check the status of an operation, cancel it, or wait for results.
|
940
|
+
# # Here is how to wait for a response.
|
943
941
|
# result.wait_until_done! timeout: 60
|
944
942
|
# if result.response?
|
945
943
|
# p result.response
|
946
944
|
# else
|
947
|
-
# puts "
|
945
|
+
# puts "No response received."
|
948
946
|
# end
|
949
947
|
#
|
950
948
|
def update_registration request, options = nil
|
@@ -1037,14 +1035,14 @@ module Google
|
|
1037
1035
|
# # Call the configure_management_settings method.
|
1038
1036
|
# result = client.configure_management_settings request
|
1039
1037
|
#
|
1040
|
-
# # The returned object is of type Gapic::Operation. You can use
|
1041
|
-
# #
|
1042
|
-
# #
|
1038
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1039
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1040
|
+
# # Here is how to wait for a response.
|
1043
1041
|
# result.wait_until_done! timeout: 60
|
1044
1042
|
# if result.response?
|
1045
1043
|
# p result.response
|
1046
1044
|
# else
|
1047
|
-
# puts "
|
1045
|
+
# puts "No response received."
|
1048
1046
|
# end
|
1049
1047
|
#
|
1050
1048
|
def configure_management_settings request, options = nil
|
@@ -1145,14 +1143,14 @@ module Google
|
|
1145
1143
|
# # Call the configure_dns_settings method.
|
1146
1144
|
# result = client.configure_dns_settings request
|
1147
1145
|
#
|
1148
|
-
# # The returned object is of type Gapic::Operation. You can use
|
1149
|
-
# #
|
1150
|
-
# #
|
1146
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1147
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1148
|
+
# # Here is how to wait for a response.
|
1151
1149
|
# result.wait_until_done! timeout: 60
|
1152
1150
|
# if result.response?
|
1153
1151
|
# p result.response
|
1154
1152
|
# else
|
1155
|
-
# puts "
|
1153
|
+
# puts "No response received."
|
1156
1154
|
# end
|
1157
1155
|
#
|
1158
1156
|
def configure_dns_settings request, options = nil
|
@@ -1251,14 +1249,14 @@ module Google
|
|
1251
1249
|
# # Call the configure_contact_settings method.
|
1252
1250
|
# result = client.configure_contact_settings request
|
1253
1251
|
#
|
1254
|
-
# # The returned object is of type Gapic::Operation. You can use
|
1255
|
-
# #
|
1256
|
-
# #
|
1252
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1253
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1254
|
+
# # Here is how to wait for a response.
|
1257
1255
|
# result.wait_until_done! timeout: 60
|
1258
1256
|
# if result.response?
|
1259
1257
|
# p result.response
|
1260
1258
|
# else
|
1261
|
-
# puts "
|
1259
|
+
# puts "No response received."
|
1262
1260
|
# end
|
1263
1261
|
#
|
1264
1262
|
def configure_contact_settings request, options = nil
|
@@ -1353,14 +1351,14 @@ module Google
|
|
1353
1351
|
# # Call the export_registration method.
|
1354
1352
|
# result = client.export_registration request
|
1355
1353
|
#
|
1356
|
-
# # The returned object is of type Gapic::Operation. You can use
|
1357
|
-
# #
|
1358
|
-
# #
|
1354
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1355
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1356
|
+
# # Here is how to wait for a response.
|
1359
1357
|
# result.wait_until_done! timeout: 60
|
1360
1358
|
# if result.response?
|
1361
1359
|
# p result.response
|
1362
1360
|
# else
|
1363
|
-
# puts "
|
1361
|
+
# puts "No response received."
|
1364
1362
|
# end
|
1365
1363
|
#
|
1366
1364
|
def export_registration request, options = nil
|
@@ -1465,14 +1463,14 @@ module Google
|
|
1465
1463
|
# # Call the delete_registration method.
|
1466
1464
|
# result = client.delete_registration request
|
1467
1465
|
#
|
1468
|
-
# # The returned object is of type Gapic::Operation. You can use
|
1469
|
-
# #
|
1470
|
-
# #
|
1466
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1467
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1468
|
+
# # Here is how to wait for a response.
|
1471
1469
|
# result.wait_until_done! timeout: 60
|
1472
1470
|
# if result.response?
|
1473
1471
|
# p result.response
|
1474
1472
|
# else
|
1475
|
-
# puts "
|
1473
|
+
# puts "No response received."
|
1476
1474
|
# end
|
1477
1475
|
#
|
1478
1476
|
def delete_registration request, options = nil
|
@@ -95,6 +95,9 @@ module Google
|
|
95
95
|
channel_args: @config.channel_args,
|
96
96
|
interceptors: @config.interceptors
|
97
97
|
)
|
98
|
+
|
99
|
+
# Used by an LRO wrapper for some methods of this service
|
100
|
+
@operations_client = self
|
98
101
|
end
|
99
102
|
|
100
103
|
# Service calls
|
@@ -155,13 +158,11 @@ module Google
|
|
155
158
|
# # Call the list_operations method.
|
156
159
|
# result = client.list_operations request
|
157
160
|
#
|
158
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
159
|
-
# #
|
160
|
-
#
|
161
|
-
# # methods are also available for managing paging directly.
|
162
|
-
# result.each do |response|
|
161
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
162
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
163
|
+
# result.each do |item|
|
163
164
|
# # Each element is of type ::Google::Longrunning::Operation.
|
164
|
-
# p
|
165
|
+
# p item
|
165
166
|
# end
|
166
167
|
#
|
167
168
|
def list_operations request, options = nil
|
@@ -250,14 +251,14 @@ module Google
|
|
250
251
|
# # Call the get_operation method.
|
251
252
|
# result = client.get_operation request
|
252
253
|
#
|
253
|
-
# # The returned object is of type Gapic::Operation. You can use
|
254
|
-
# #
|
255
|
-
# #
|
254
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
255
|
+
# # check the status of an operation, cancel it, or wait for results.
|
256
|
+
# # Here is how to wait for a response.
|
256
257
|
# result.wait_until_done! timeout: 60
|
257
258
|
# if result.response?
|
258
259
|
# p result.response
|
259
260
|
# else
|
260
|
-
# puts "
|
261
|
+
# puts "No response received."
|
261
262
|
# end
|
262
263
|
#
|
263
264
|
def get_operation request, options = nil
|
@@ -537,14 +538,14 @@ module Google
|
|
537
538
|
# # Call the wait_operation method.
|
538
539
|
# result = client.wait_operation request
|
539
540
|
#
|
540
|
-
# # The returned object is of type Gapic::Operation. You can use
|
541
|
-
# #
|
542
|
-
# #
|
541
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
542
|
+
# # check the status of an operation, cancel it, or wait for results.
|
543
|
+
# # Here is how to wait for a response.
|
543
544
|
# result.wait_until_done! timeout: 60
|
544
545
|
# if result.response?
|
545
546
|
# p result.response
|
546
547
|
# else
|
547
|
-
# puts "
|
548
|
+
# puts "No response received."
|
548
549
|
# end
|
549
550
|
#
|
550
551
|
def wait_operation request, options = nil
|