google-cloud-domains-v1beta1 0.3.2 → 0.5.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: a2abad067d4dd9ec45a1e0da11442d0664b7140a50109257e6f77a7820d309eb
4
- data.tar.gz: 27a955ab718d1f2b98bad805dbff1c32672309707b01b6f7f84c00b98cb8dac8
3
+ metadata.gz: 26c5f523ea551a9b385e53fc4fa0743784e82b281550fcecfc89bda7a1a3a60a
4
+ data.tar.gz: 74a1ebf436a61b76f65e77b2042307ad6d2a1402ab9f6004b95551cde773ab23
5
5
  SHA512:
6
- metadata.gz: 5bd378369044dba795ba74fdbe80ef7109cc963c0805321f588c60ec363a1c425740c7b1dee711f965741c826f37c3061f5882382245b34b664abef52f2e3170
7
- data.tar.gz: a699ea8ccef3a5cf1c35ad21148a5767abcf0908bd3fb6f38a0d48beb87cc4af2c5c742797f154912324cca9ece78e031b97035b9174fb70d5f780d902c4c1bd
6
+ metadata.gz: f8942905ced167e094f37cef9785e74090828c7ba820d6f0db28b9cb07e69bdf517fadc7cc40619fd8876b12a688082af4c760c2f83e96247cf498fb9d021c8b
7
+ data.tar.gz: 0a675bfd918d728ea4b45c9d3c7e697543cdc41dc682c84691a2c1b567de95cf0f651f3f2ed01fccdb63a3f8bb422bc084a97e5a78f0de471b2f74054e025502
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 V1beta1 API
2
2
 
3
- API Client library for the Cloud Domains V1beta1 API
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
 
@@ -37,7 +37,7 @@ request = ::Google::Cloud::Domains::V1beta1::SearchDomainsRequest.new # (request
37
37
  response = client.search_domains request
38
38
  ```
39
39
 
40
- View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-domains-v1beta1/latest)
40
+ View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-domains-v1beta1/latest)
41
41
  for class and method documentation.
42
42
 
43
43
  See also the [Product Documentation](https://cloud.google.com/domains)
@@ -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.
@@ -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.5+.
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. Currently, this means Ruby 2.5
79
- and later. Older versions of Ruby _may_ still work, but are unsupported and not
80
- recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
81
- about the Ruby support schedule.
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 this
411
- # # object to check the status of an operation, cancel it, or wait
412
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
638
- # # object to check the status of an operation, cancel it, or wait
639
- # # for results. Here is how to block until completion:
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 "Error!"
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
- # # iterate over all elements by calling #each, and the enumerable
755
- # # will lazily make API calls to fetch subsequent pages. Other
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::V1beta1::Registration.
759
- # p response
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 this
941
- # # object to check the status of an operation, cancel it, or wait
942
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
1041
- # # object to check the status of an operation, cancel it, or wait
1042
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
1149
- # # object to check the status of an operation, cancel it, or wait
1150
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
1255
- # # object to check the status of an operation, cancel it, or wait
1256
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
1357
- # # object to check the status of an operation, cancel it, or wait
1358
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
1469
- # # object to check the status of an operation, cancel it, or wait
1470
- # # for results. Here is how to block until completion:
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 "Error!"
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
- # # iterate over all elements by calling #each, and the enumerable
160
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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 this
254
- # # object to check the status of an operation, cancel it, or wait
255
- # # for results. Here is how to block until completion:
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 "Error!"
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 this
541
- # # object to check the status of an operation, cancel it, or wait
542
- # # for results. Here is how to block until completion:
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 "Error!"
548
+ # puts "No response received."
548
549
  # end
549
550
  #
550
551
  def wait_operation request, options = nil