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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46503c79a087efc570d43b68eb6fcadfd8722993aeff4b3f478329ef994f5149
|
|
4
|
+
data.tar.gz: b7d6d673425864ad64a33ffaeeba8c1b21ac131e812228cd6c867882c10e4028
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a6a21c6034e0f86c43a4941cebc1569bfb53054faa87188aa01f3392390d3ca6704f39a0c82fd820d696d2c831d58fce1fa5df2a6bc9181cf670d46edd397a5
|
|
7
|
+
data.tar.gz: 11a0bca47d059386e101058027c5719bbf62671d4f35396f5321524027e5deb3f649a1d83938b16f000dba59fff2294a94f543c5049109b6f700142ed3fe6da9
|
|
@@ -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:
|
|
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:
|
|
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.
|