google-cloud-dataflow-v1beta3 0.14.0 → 0.14.1

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: 697895a8aa18c4cf206b904f4d8e50bff0f51b08a5e18fc4d66a789e556fc033
4
- data.tar.gz: 72a816ebcedc99a01a9e7cf853bd201ad1d03a4f68d8a11f08cc85cc8eff6220
3
+ metadata.gz: 0f4b8f4348fda7bb0a5992a3c2f235e806e761a14fc0bb6287499114a232493a
4
+ data.tar.gz: ca8d63adfaa4e1a863432b2247330c1f845b51e3af9a67c00245e6d36665dfda
5
5
  SHA512:
6
- metadata.gz: 07c9e9e5cb242e9cfe9d85c34ac9b611c5e67ac888d714bf15aacdb6e170037d7aac33386128046d216742e86a4017e9a4b3790a59bbeeb77209c1c0989f10bf
7
- data.tar.gz: e9bf565cf2c5a72f1090c83c99fd243dd1617b4fc66d1b79c0c3f637b18f9ea7802b10825135e071c53a40ac45c3c5a0588237198f91590e9dfa8e67a7d93680
6
+ metadata.gz: 56fa3dabe5206b0158012b466ce0782da3b76c0a67d60bf811e44ee770a728139c3d514d8aee05b55f38b83ae6bfb92eb3b9e799511c1e3e469a9dbcab4ccec7
7
+ data.tar.gz: 5334879fa8b14219f24debeff16a12218bc179a6b506da13dc835ed9e9a046e249eb116cb987059513c01c2f77df566544de3bf511310613d99fcaa023e21230
@@ -313,8 +313,6 @@ module Google
313
313
  # @return [::String,nil]
314
314
  # @!attribute [rw] credentials
315
315
  # Credentials to send with calls. You may provide any of the following types:
316
- # * (`String`) The path to a service account key file in JSON format
317
- # * (`Hash`) A service account key as a Hash
318
316
  # * (`Google::Auth::Credentials`) A googleauth credentials object
319
317
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
320
318
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -323,7 +321,26 @@ module Google
323
321
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
324
322
  # * (`nil`) indicating no credentials
325
323
  #
326
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
324
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
325
+ # is deprecated. Providing an unvalidated credential configuration to
326
+ # Google APIs can compromise the security of your systems and data.
327
+ #
328
+ # @example
329
+ #
330
+ # # The recommended way to provide credentials is to use the `make_creds` method
331
+ # # on the appropriate credentials class for your environment.
332
+ #
333
+ # require "googleauth"
334
+ #
335
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
336
+ # json_key_io: ::File.open("/path/to/keyfile.json")
337
+ # )
338
+ #
339
+ # client = ::Google::Cloud::Dataflow::V1beta3::FlexTemplatesService::Client.new do |config|
340
+ # config.credentials = credentials
341
+ # end
342
+ #
343
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
327
344
  # external source for authentication to Google Cloud, you must validate it before
328
345
  # providing it to a Google API client library. Providing an unvalidated credential
329
346
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -957,8 +957,6 @@ module Google
957
957
  # @return [::String,nil]
958
958
  # @!attribute [rw] credentials
959
959
  # Credentials to send with calls. You may provide any of the following types:
960
- # * (`String`) The path to a service account key file in JSON format
961
- # * (`Hash`) A service account key as a Hash
962
960
  # * (`Google::Auth::Credentials`) A googleauth credentials object
963
961
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
964
962
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -967,7 +965,26 @@ module Google
967
965
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
968
966
  # * (`nil`) indicating no credentials
969
967
  #
970
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
968
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
969
+ # is deprecated. Providing an unvalidated credential configuration to
970
+ # Google APIs can compromise the security of your systems and data.
971
+ #
972
+ # @example
973
+ #
974
+ # # The recommended way to provide credentials is to use the `make_creds` method
975
+ # # on the appropriate credentials class for your environment.
976
+ #
977
+ # require "googleauth"
978
+ #
979
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
980
+ # json_key_io: ::File.open("/path/to/keyfile.json")
981
+ # )
982
+ #
983
+ # client = ::Google::Cloud::Dataflow::V1beta3::Jobs::Client.new do |config|
984
+ # config.credentials = credentials
985
+ # end
986
+ #
987
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
971
988
  # external source for authentication to Google Cloud, you must validate it before
972
989
  # providing it to a Google API client library. Providing an unvalidated credential
973
990
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -344,8 +344,6 @@ module Google
344
344
  # @return [::String,nil]
345
345
  # @!attribute [rw] credentials
346
346
  # Credentials to send with calls. You may provide any of the following types:
347
- # * (`String`) The path to a service account key file in JSON format
348
- # * (`Hash`) A service account key as a Hash
349
347
  # * (`Google::Auth::Credentials`) A googleauth credentials object
350
348
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
351
349
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -354,7 +352,26 @@ module Google
354
352
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
355
353
  # * (`nil`) indicating no credentials
356
354
  #
357
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
355
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
356
+ # is deprecated. Providing an unvalidated credential configuration to
357
+ # Google APIs can compromise the security of your systems and data.
358
+ #
359
+ # @example
360
+ #
361
+ # # The recommended way to provide credentials is to use the `make_creds` method
362
+ # # on the appropriate credentials class for your environment.
363
+ #
364
+ # require "googleauth"
365
+ #
366
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
367
+ # json_key_io: ::File.open("/path/to/keyfile.json")
368
+ # )
369
+ #
370
+ # client = ::Google::Cloud::Dataflow::V1beta3::Messages::Client.new do |config|
371
+ # config.credentials = credentials
372
+ # end
373
+ #
374
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
358
375
  # external source for authentication to Google Cloud, you must validate it before
359
376
  # providing it to a Google API client library. Providing an unvalidated credential
360
377
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -561,8 +561,6 @@ module Google
561
561
  # @return [::String,nil]
562
562
  # @!attribute [rw] credentials
563
563
  # Credentials to send with calls. You may provide any of the following types:
564
- # * (`String`) The path to a service account key file in JSON format
565
- # * (`Hash`) A service account key as a Hash
566
564
  # * (`Google::Auth::Credentials`) A googleauth credentials object
567
565
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
568
566
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -571,7 +569,26 @@ module Google
571
569
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
572
570
  # * (`nil`) indicating no credentials
573
571
  #
574
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
572
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
573
+ # is deprecated. Providing an unvalidated credential configuration to
574
+ # Google APIs can compromise the security of your systems and data.
575
+ #
576
+ # @example
577
+ #
578
+ # # The recommended way to provide credentials is to use the `make_creds` method
579
+ # # on the appropriate credentials class for your environment.
580
+ #
581
+ # require "googleauth"
582
+ #
583
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
584
+ # json_key_io: ::File.open("/path/to/keyfile.json")
585
+ # )
586
+ #
587
+ # client = ::Google::Cloud::Dataflow::V1beta3::Metrics::Client.new do |config|
588
+ # config.credentials = credentials
589
+ # end
590
+ #
591
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
575
592
  # external source for authentication to Google Cloud, you must validate it before
576
593
  # providing it to a Google API client library. Providing an unvalidated credential
577
594
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -503,8 +503,6 @@ module Google
503
503
  # @return [::String,nil]
504
504
  # @!attribute [rw] credentials
505
505
  # Credentials to send with calls. You may provide any of the following types:
506
- # * (`String`) The path to a service account key file in JSON format
507
- # * (`Hash`) A service account key as a Hash
508
506
  # * (`Google::Auth::Credentials`) A googleauth credentials object
509
507
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
510
508
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -513,7 +511,26 @@ module Google
513
511
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
514
512
  # * (`nil`) indicating no credentials
515
513
  #
516
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
514
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
515
+ # is deprecated. Providing an unvalidated credential configuration to
516
+ # Google APIs can compromise the security of your systems and data.
517
+ #
518
+ # @example
519
+ #
520
+ # # The recommended way to provide credentials is to use the `make_creds` method
521
+ # # on the appropriate credentials class for your environment.
522
+ #
523
+ # require "googleauth"
524
+ #
525
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
526
+ # json_key_io: ::File.open("/path/to/keyfile.json")
527
+ # )
528
+ #
529
+ # client = ::Google::Cloud::Dataflow::V1beta3::Snapshots::Client.new do |config|
530
+ # config.credentials = credentials
531
+ # end
532
+ #
533
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
517
534
  # external source for authentication to Google Cloud, you must validate it before
518
535
  # providing it to a Google API client library. Providing an unvalidated credential
519
536
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -545,8 +545,6 @@ module Google
545
545
  # @return [::String,nil]
546
546
  # @!attribute [rw] credentials
547
547
  # Credentials to send with calls. You may provide any of the following types:
548
- # * (`String`) The path to a service account key file in JSON format
549
- # * (`Hash`) A service account key as a Hash
550
548
  # * (`Google::Auth::Credentials`) A googleauth credentials object
551
549
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
552
550
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -555,7 +553,26 @@ module Google
555
553
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
556
554
  # * (`nil`) indicating no credentials
557
555
  #
558
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
556
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
557
+ # is deprecated. Providing an unvalidated credential configuration to
558
+ # Google APIs can compromise the security of your systems and data.
559
+ #
560
+ # @example
561
+ #
562
+ # # The recommended way to provide credentials is to use the `make_creds` method
563
+ # # on the appropriate credentials class for your environment.
564
+ #
565
+ # require "googleauth"
566
+ #
567
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
568
+ # json_key_io: ::File.open("/path/to/keyfile.json")
569
+ # )
570
+ #
571
+ # client = ::Google::Cloud::Dataflow::V1beta3::TemplatesService::Client.new do |config|
572
+ # config.credentials = credentials
573
+ # end
574
+ #
575
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
559
576
  # external source for authentication to Google Cloud, you must validate it before
560
577
  # providing it to a Google API client library. Providing an unvalidated credential
561
578
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Dataflow
23
23
  module V1beta3
24
- VERSION = "0.14.0"
24
+ VERSION = "0.14.1"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dataflow-v1beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC