google-cloud-tpu-v1 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49fe590d652461edc27e36082447ea0c008a1359c92354f2661377da921bf65d
4
- data.tar.gz: 1d3654100fdd8ed44b521c90b803d2e5e168345fb48a2221c33c2e8291f06cb0
3
+ metadata.gz: 9dd28927088103b60cc1f2d85c96ca70021921b8058c454ea0f3e88d007089b8
4
+ data.tar.gz: 2d657b3bbcf30b0cedc91f006e9c1fe515859ca94e2a63677166a094c0cbc5a7
5
5
  SHA512:
6
- metadata.gz: 4a56fd9d1a7a4d708598a48074a5500f637e32c80fffb03ef4e0fac4a2c43317b397fb61e269402e191a65e82250599af2481c2d30f564c87b6a3afb40f3e1bd
7
- data.tar.gz: d4f52f318371fc6a94716e64979694100a98e5e9e486f185d474f2e395f488d45d121e3dfa34a7fd066cb3a077fa6646754bb780bfc777d8a30713c8933fd8bf
6
+ metadata.gz: f2313bcb05cf16483c339be0874a273ab260e98c6f5bed761a358aadef389b3874b9a5611492a45c9b562da719ba93e576f78af929694ea6747da5496db9a67b
7
+ data.tar.gz: 2ae8d8519bc98ef5086433d9f03c5a743ab9e2e4851c1dca992b3850c6dfa53ab4550af3052ba8192ca181a8f72ac98280e297d1c99326a7b7302d185faed3a7
@@ -43,13 +43,12 @@ module Google
43
43
  # See {::Google::Cloud::Tpu::V1::Tpu::Client::Configuration}
44
44
  # for a description of the configuration fields.
45
45
  #
46
- # ## Example
46
+ # @example
47
47
  #
48
- # To modify the configuration for all Tpu clients:
49
- #
50
- # ::Google::Cloud::Tpu::V1::Tpu::Client.configure do |config|
51
- # config.timeout = 10.0
52
- # end
48
+ # # Modify the configuration for all Tpu clients
49
+ # ::Google::Cloud::Tpu::V1::Tpu::Client.configure do |config|
50
+ # config.timeout = 10.0
51
+ # end
53
52
  #
54
53
  # @yield [config] Configure the Client client.
55
54
  # @yieldparam config [Client::Configuration]
@@ -98,19 +97,15 @@ module Google
98
97
  ##
99
98
  # Create a new Tpu client object.
100
99
  #
101
- # ## Examples
102
- #
103
- # To create a new Tpu client with the default
104
- # configuration:
105
- #
106
- # client = ::Google::Cloud::Tpu::V1::Tpu::Client.new
100
+ # @example
107
101
  #
108
- # To create a new Tpu client with a custom
109
- # configuration:
102
+ # # Create a client using the default configuration
103
+ # client = ::Google::Cloud::Tpu::V1::Tpu::Client.new
110
104
  #
111
- # client = ::Google::Cloud::Tpu::V1::Tpu::Client.new do |config|
112
- # config.timeout = 10.0
113
- # end
105
+ # # Create a client using a custom configuration
106
+ # client = ::Google::Cloud::Tpu::V1::Tpu::Client.new do |config|
107
+ # config.timeout = 10.0
108
+ # end
114
109
  #
115
110
  # @yield [config] Configure the Tpu client.
116
111
  # @yieldparam config [Client::Configuration]
@@ -130,10 +125,9 @@ module Google
130
125
 
131
126
  # Create credentials
132
127
  credentials = @config.credentials
133
- # Use self-signed JWT if the scope and endpoint are unchanged from default,
128
+ # Use self-signed JWT if the endpoint is unchanged from default,
134
129
  # but only if the default endpoint does not have a region prefix.
135
- enable_self_signed_jwt = @config.scope == Client.configure.scope &&
136
- @config.endpoint == Client.configure.endpoint &&
130
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
137
131
  !@config.endpoint.split(".").first.include?("-")
138
132
  credentials ||= Credentials.default scope: @config.scope,
139
133
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -225,7 +219,9 @@ module Google
225
219
  options.apply_defaults timeout: @config.rpcs.list_nodes.timeout,
226
220
  metadata: metadata,
227
221
  retry_policy: @config.rpcs.list_nodes.retry_policy
228
- options.apply_defaults metadata: @config.metadata,
222
+
223
+ options.apply_defaults timeout: @config.timeout,
224
+ metadata: @config.metadata,
229
225
  retry_policy: @config.retry_policy
230
226
 
231
227
  @tpu_stub.call_rpc :list_nodes, request, options: options do |response, operation|
@@ -292,7 +288,9 @@ module Google
292
288
  options.apply_defaults timeout: @config.rpcs.get_node.timeout,
293
289
  metadata: metadata,
294
290
  retry_policy: @config.rpcs.get_node.retry_policy
295
- options.apply_defaults metadata: @config.metadata,
291
+
292
+ options.apply_defaults timeout: @config.timeout,
293
+ metadata: @config.metadata,
296
294
  retry_policy: @config.retry_policy
297
295
 
298
296
  @tpu_stub.call_rpc :get_node, request, options: options do |response, operation|
@@ -362,7 +360,9 @@ module Google
362
360
  options.apply_defaults timeout: @config.rpcs.create_node.timeout,
363
361
  metadata: metadata,
364
362
  retry_policy: @config.rpcs.create_node.retry_policy
365
- options.apply_defaults metadata: @config.metadata,
363
+
364
+ options.apply_defaults timeout: @config.timeout,
365
+ metadata: @config.metadata,
366
366
  retry_policy: @config.retry_policy
367
367
 
368
368
  @tpu_stub.call_rpc :create_node, request, options: options do |response, operation|
@@ -429,7 +429,9 @@ module Google
429
429
  options.apply_defaults timeout: @config.rpcs.delete_node.timeout,
430
430
  metadata: metadata,
431
431
  retry_policy: @config.rpcs.delete_node.retry_policy
432
- options.apply_defaults metadata: @config.metadata,
432
+
433
+ options.apply_defaults timeout: @config.timeout,
434
+ metadata: @config.metadata,
433
435
  retry_policy: @config.retry_policy
434
436
 
435
437
  @tpu_stub.call_rpc :delete_node, request, options: options do |response, operation|
@@ -498,7 +500,9 @@ module Google
498
500
  options.apply_defaults timeout: @config.rpcs.reimage_node.timeout,
499
501
  metadata: metadata,
500
502
  retry_policy: @config.rpcs.reimage_node.retry_policy
501
- options.apply_defaults metadata: @config.metadata,
503
+
504
+ options.apply_defaults timeout: @config.timeout,
505
+ metadata: @config.metadata,
502
506
  retry_policy: @config.retry_policy
503
507
 
504
508
  @tpu_stub.call_rpc :reimage_node, request, options: options do |response, operation|
@@ -565,7 +569,9 @@ module Google
565
569
  options.apply_defaults timeout: @config.rpcs.stop_node.timeout,
566
570
  metadata: metadata,
567
571
  retry_policy: @config.rpcs.stop_node.retry_policy
568
- options.apply_defaults metadata: @config.metadata,
572
+
573
+ options.apply_defaults timeout: @config.timeout,
574
+ metadata: @config.metadata,
569
575
  retry_policy: @config.retry_policy
570
576
 
571
577
  @tpu_stub.call_rpc :stop_node, request, options: options do |response, operation|
@@ -632,7 +638,9 @@ module Google
632
638
  options.apply_defaults timeout: @config.rpcs.start_node.timeout,
633
639
  metadata: metadata,
634
640
  retry_policy: @config.rpcs.start_node.retry_policy
635
- options.apply_defaults metadata: @config.metadata,
641
+
642
+ options.apply_defaults timeout: @config.timeout,
643
+ metadata: @config.metadata,
636
644
  retry_policy: @config.retry_policy
637
645
 
638
646
  @tpu_stub.call_rpc :start_node, request, options: options do |response, operation|
@@ -707,7 +715,9 @@ module Google
707
715
  options.apply_defaults timeout: @config.rpcs.list_tensor_flow_versions.timeout,
708
716
  metadata: metadata,
709
717
  retry_policy: @config.rpcs.list_tensor_flow_versions.retry_policy
710
- options.apply_defaults metadata: @config.metadata,
718
+
719
+ options.apply_defaults timeout: @config.timeout,
720
+ metadata: @config.metadata,
711
721
  retry_policy: @config.retry_policy
712
722
 
713
723
  @tpu_stub.call_rpc :list_tensor_flow_versions, request, options: options do |response, operation|
@@ -774,7 +784,9 @@ module Google
774
784
  options.apply_defaults timeout: @config.rpcs.get_tensor_flow_version.timeout,
775
785
  metadata: metadata,
776
786
  retry_policy: @config.rpcs.get_tensor_flow_version.retry_policy
777
- options.apply_defaults metadata: @config.metadata,
787
+
788
+ options.apply_defaults timeout: @config.timeout,
789
+ metadata: @config.metadata,
778
790
  retry_policy: @config.retry_policy
779
791
 
780
792
  @tpu_stub.call_rpc :get_tensor_flow_version, request, options: options do |response, operation|
@@ -848,7 +860,9 @@ module Google
848
860
  options.apply_defaults timeout: @config.rpcs.list_accelerator_types.timeout,
849
861
  metadata: metadata,
850
862
  retry_policy: @config.rpcs.list_accelerator_types.retry_policy
851
- options.apply_defaults metadata: @config.metadata,
863
+
864
+ options.apply_defaults timeout: @config.timeout,
865
+ metadata: @config.metadata,
852
866
  retry_policy: @config.retry_policy
853
867
 
854
868
  @tpu_stub.call_rpc :list_accelerator_types, request, options: options do |response, operation|
@@ -915,7 +929,9 @@ module Google
915
929
  options.apply_defaults timeout: @config.rpcs.get_accelerator_type.timeout,
916
930
  metadata: metadata,
917
931
  retry_policy: @config.rpcs.get_accelerator_type.retry_policy
918
- options.apply_defaults metadata: @config.metadata,
932
+
933
+ options.apply_defaults timeout: @config.timeout,
934
+ metadata: @config.metadata,
919
935
  retry_policy: @config.retry_policy
920
936
 
921
937
  @tpu_stub.call_rpc :get_accelerator_type, request, options: options do |response, operation|
@@ -939,22 +955,21 @@ module Google
939
955
  # Configuration can be applied globally to all clients, or to a single client
940
956
  # on construction.
941
957
  #
942
- # # Examples
943
- #
944
- # To modify the global config, setting the timeout for list_nodes
945
- # to 20 seconds, and all remaining timeouts to 10 seconds:
946
- #
947
- # ::Google::Cloud::Tpu::V1::Tpu::Client.configure do |config|
948
- # config.timeout = 10.0
949
- # config.rpcs.list_nodes.timeout = 20.0
950
- # end
951
- #
952
- # To apply the above configuration only to a new client:
953
- #
954
- # client = ::Google::Cloud::Tpu::V1::Tpu::Client.new do |config|
955
- # config.timeout = 10.0
956
- # config.rpcs.list_nodes.timeout = 20.0
957
- # end
958
+ # @example
959
+ #
960
+ # # Modify the global config, setting the timeout for
961
+ # # list_nodes to 20 seconds,
962
+ # # and all remaining timeouts to 10 seconds.
963
+ # ::Google::Cloud::Tpu::V1::Tpu::Client.configure do |config|
964
+ # config.timeout = 10.0
965
+ # config.rpcs.list_nodes.timeout = 20.0
966
+ # end
967
+ #
968
+ # # Apply the above configuration only to a new client.
969
+ # client = ::Google::Cloud::Tpu::V1::Tpu::Client.new do |config|
970
+ # config.timeout = 10.0
971
+ # config.rpcs.list_nodes.timeout = 20.0
972
+ # end
958
973
  #
959
974
  # @!attribute [rw] endpoint
960
975
  # The hostname or hostname:port of the service endpoint.
@@ -169,7 +169,9 @@ module Google
169
169
  options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
170
170
  metadata: metadata,
171
171
  retry_policy: @config.rpcs.list_operations.retry_policy
172
- options.apply_defaults metadata: @config.metadata,
172
+
173
+ options.apply_defaults timeout: @config.timeout,
174
+ metadata: @config.metadata,
173
175
  retry_policy: @config.retry_policy
174
176
 
175
177
  @operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
@@ -239,7 +241,9 @@ module Google
239
241
  options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
240
242
  metadata: metadata,
241
243
  retry_policy: @config.rpcs.get_operation.retry_policy
242
- options.apply_defaults metadata: @config.metadata,
244
+
245
+ options.apply_defaults timeout: @config.timeout,
246
+ metadata: @config.metadata,
243
247
  retry_policy: @config.retry_policy
244
248
 
245
249
  @operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
@@ -309,7 +313,9 @@ module Google
309
313
  options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
310
314
  metadata: metadata,
311
315
  retry_policy: @config.rpcs.delete_operation.retry_policy
312
- options.apply_defaults metadata: @config.metadata,
316
+
317
+ options.apply_defaults timeout: @config.timeout,
318
+ metadata: @config.metadata,
313
319
  retry_policy: @config.retry_policy
314
320
 
315
321
  @operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
@@ -384,7 +390,9 @@ module Google
384
390
  options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
385
391
  metadata: metadata,
386
392
  retry_policy: @config.rpcs.cancel_operation.retry_policy
387
- options.apply_defaults metadata: @config.metadata,
393
+
394
+ options.apply_defaults timeout: @config.timeout,
395
+ metadata: @config.metadata,
388
396
  retry_policy: @config.retry_policy
389
397
 
390
398
  @operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
@@ -456,7 +464,9 @@ module Google
456
464
  options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
457
465
  metadata: metadata,
458
466
  retry_policy: @config.rpcs.wait_operation.retry_policy
459
- options.apply_defaults metadata: @config.metadata,
467
+
468
+ options.apply_defaults timeout: @config.timeout,
469
+ metadata: @config.metadata,
460
470
  retry_policy: @config.retry_policy
461
471
 
462
472
  @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
@@ -481,22 +491,21 @@ module Google
481
491
  # Configuration can be applied globally to all clients, or to a single client
482
492
  # on construction.
483
493
  #
484
- # # Examples
485
- #
486
- # To modify the global config, setting the timeout for list_operations
487
- # to 20 seconds, and all remaining timeouts to 10 seconds:
488
- #
489
- # ::Google::Longrunning::Operations::Client.configure do |config|
490
- # config.timeout = 10.0
491
- # config.rpcs.list_operations.timeout = 20.0
492
- # end
493
- #
494
- # To apply the above configuration only to a new client:
495
- #
496
- # client = ::Google::Longrunning::Operations::Client.new do |config|
497
- # config.timeout = 10.0
498
- # config.rpcs.list_operations.timeout = 20.0
499
- # end
494
+ # @example
495
+ #
496
+ # # Modify the global config, setting the timeout for
497
+ # # list_operations to 20 seconds,
498
+ # # and all remaining timeouts to 10 seconds.
499
+ # ::Google::Longrunning::Operations::Client.configure do |config|
500
+ # config.timeout = 10.0
501
+ # config.rpcs.list_operations.timeout = 20.0
502
+ # end
503
+ #
504
+ # # Apply the above configuration only to a new client.
505
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
506
+ # config.timeout = 10.0
507
+ # config.rpcs.list_operations.timeout = 20.0
508
+ # end
500
509
  #
501
510
  # @!attribute [rw] endpoint
502
511
  # The hostname or hostname:port of the service endpoint.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Tpu
23
23
  module V1
24
- VERSION = "0.1.1"
24
+ VERSION = "0.1.2"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-tpu-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.5'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a