google-cloud-video-stitcher-v1 1.5.0 → 1.5.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: 3f6d52d330c060c9c476d0f548f8ebf087d2e8854bc09e3c89a53ea669af8617
4
- data.tar.gz: ba28d5b7d754155b04ce1a18c0b2e5e92833efcb8450d6def4148eb5e3ff9ab8
3
+ metadata.gz: 46503c79a087efc570d43b68eb6fcadfd8722993aeff4b3f478329ef994f5149
4
+ data.tar.gz: b7d6d673425864ad64a33ffaeeba8c1b21ac131e812228cd6c867882c10e4028
5
5
  SHA512:
6
- metadata.gz: 0a3a50a096c326f8b9d4f377c4fa762112d510b38ebb166ba945358dd353029fb7d64bb483ec0053f9a23ef5c9048b309c64b24a083e6523de736704ad27d71b
7
- data.tar.gz: d1146a45e37db4b6b7a17ec46bfe4f2335f4a2637bbf88c8e6494fca064aced6020271d8f2729c3848253fb70b96b3618e8e4f6f96df68c57553077baeac98e0
6
+ metadata.gz: 5a6a21c6034e0f86c43a4941cebc1569bfb53054faa87188aa01f3392390d3ca6704f39a0c82fd820d696d2c831d58fce1fa5df2a6bc9181cf670d46edd397a5
7
+ data.tar.gz: 11a0bca47d059386e101058027c5719bbf62671d4f35396f5321524027e5deb3f649a1d83938b16f000dba59fff2294a94f543c5049109b6f700142ed3fe6da9
@@ -22,7 +22,7 @@ module Google
22
22
  module Video
23
23
  module Stitcher
24
24
  module V1
25
- VERSION = "1.5.0"
25
+ VERSION = "1.5.1"
26
26
  end
27
27
  end
28
28
  end
@@ -3170,8 +3170,6 @@ module Google
3170
3170
  # @return [::String,nil]
3171
3171
  # @!attribute [rw] credentials
3172
3172
  # Credentials to send with calls. You may provide any of the following types:
3173
- # * (`String`) The path to a service account key file in JSON format
3174
- # * (`Hash`) A service account key as a Hash
3175
3173
  # * (`Google::Auth::Credentials`) A googleauth credentials object
3176
3174
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
3177
3175
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -3180,7 +3178,26 @@ module Google
3180
3178
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
3181
3179
  # * (`nil`) indicating no credentials
3182
3180
  #
3183
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
3181
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
3182
+ # is deprecated. Providing an unvalidated credential configuration to
3183
+ # Google APIs can compromise the security of your systems and data.
3184
+ #
3185
+ # @example
3186
+ #
3187
+ # # The recommended way to provide credentials is to use the `make_creds` method
3188
+ # # on the appropriate credentials class for your environment.
3189
+ #
3190
+ # require "googleauth"
3191
+ #
3192
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
3193
+ # json_key_io: ::File.open("/path/to/keyfile.json")
3194
+ # )
3195
+ #
3196
+ # client = ::Google::Cloud::Video::Stitcher::V1::VideoStitcherService::Client.new do |config|
3197
+ # config.credentials = credentials
3198
+ # end
3199
+ #
3200
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
3184
3201
  # external source for authentication to Google Cloud, you must validate it before
3185
3202
  # providing it to a Google API client library. Providing an unvalidated credential
3186
3203
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -643,8 +643,6 @@ module Google
643
643
  # @return [::String,nil]
644
644
  # @!attribute [rw] credentials
645
645
  # Credentials to send with calls. You may provide any of the following types:
646
- # * (`String`) The path to a service account key file in JSON format
647
- # * (`Hash`) A service account key as a Hash
648
646
  # * (`Google::Auth::Credentials`) A googleauth credentials object
649
647
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
650
648
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -653,7 +651,26 @@ module Google
653
651
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
654
652
  # * (`nil`) indicating no credentials
655
653
  #
656
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
654
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
655
+ # is deprecated. Providing an unvalidated credential configuration to
656
+ # Google APIs can compromise the security of your systems and data.
657
+ #
658
+ # @example
659
+ #
660
+ # # The recommended way to provide credentials is to use the `make_creds` method
661
+ # # on the appropriate credentials class for your environment.
662
+ #
663
+ # require "googleauth"
664
+ #
665
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
666
+ # json_key_io: ::File.open("/path/to/keyfile.json")
667
+ # )
668
+ #
669
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
670
+ # config.credentials = credentials
671
+ # end
672
+ #
673
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
657
674
  # external source for authentication to Google Cloud, you must validate it before
658
675
  # providing it to a Google API client library. Providing an unvalidated credential
659
676
  # configuration to Google APIs can compromise the security of your systems and data.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-video-stitcher-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC