google-apps-meet-v2 0.6.0 → 0.6.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: dc840269a4fc096b6b9b146c07282db810d16745b715ec48198792cc67d9e880
|
|
4
|
+
data.tar.gz: b9acfcd3cd4bcd670a46cd3f223d2168471feb5f912e973c9d36db7056b2d8d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee648a26cd3a4c6e806acb81568cd8632865f47eee46431a65b580433c6b43b1fd11c0e3f5fa72210aa6e66f16a6960cb36dc82cc87b0a22e401a5aa2ee8d1ba
|
|
7
|
+
data.tar.gz: aee552a2da016dcf6a2b81115f3cd5e33390493cbac9a55bf67c306dacaf361df50094c764c80eb2568d65c81a726c4cb5e89a1c63e7eabde09b133bd338258c
|
|
@@ -1429,8 +1429,6 @@ module Google
|
|
|
1429
1429
|
# @return [::String,nil]
|
|
1430
1430
|
# @!attribute [rw] credentials
|
|
1431
1431
|
# Credentials to send with calls. You may provide any of the following types:
|
|
1432
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
1433
|
-
# * (`Hash`) A service account key as a Hash
|
|
1434
1432
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
1435
1433
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
1436
1434
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -1439,7 +1437,26 @@ module Google
|
|
|
1439
1437
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
1440
1438
|
# * (`nil`) indicating no credentials
|
|
1441
1439
|
#
|
|
1442
|
-
# Warning:
|
|
1440
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
1441
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
1442
|
+
# Google APIs can compromise the security of your systems and data.
|
|
1443
|
+
#
|
|
1444
|
+
# @example
|
|
1445
|
+
#
|
|
1446
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
1447
|
+
# # on the appropriate credentials class for your environment.
|
|
1448
|
+
#
|
|
1449
|
+
# require "googleauth"
|
|
1450
|
+
#
|
|
1451
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
1452
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
1453
|
+
# )
|
|
1454
|
+
#
|
|
1455
|
+
# client = ::Google::Apps::Meet::V2::ConferenceRecordsService::Client.new do |config|
|
|
1456
|
+
# config.credentials = credentials
|
|
1457
|
+
# end
|
|
1458
|
+
#
|
|
1459
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
1443
1460
|
# external source for authentication to Google Cloud, you must validate it before
|
|
1444
1461
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
1445
1462
|
# configuration to Google APIs can compromise the security of your systems and data.
|
|
@@ -604,8 +604,6 @@ module Google
|
|
|
604
604
|
# @return [::String,nil]
|
|
605
605
|
# @!attribute [rw] credentials
|
|
606
606
|
# Credentials to send with calls. You may provide any of the following types:
|
|
607
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
608
|
-
# * (`Hash`) A service account key as a Hash
|
|
609
607
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
610
608
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
611
609
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -614,7 +612,26 @@ module Google
|
|
|
614
612
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
615
613
|
# * (`nil`) indicating no credentials
|
|
616
614
|
#
|
|
617
|
-
# Warning:
|
|
615
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
616
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
617
|
+
# Google APIs can compromise the security of your systems and data.
|
|
618
|
+
#
|
|
619
|
+
# @example
|
|
620
|
+
#
|
|
621
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
622
|
+
# # on the appropriate credentials class for your environment.
|
|
623
|
+
#
|
|
624
|
+
# require "googleauth"
|
|
625
|
+
#
|
|
626
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
627
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
628
|
+
# )
|
|
629
|
+
#
|
|
630
|
+
# client = ::Google::Apps::Meet::V2::SpacesService::Client.new do |config|
|
|
631
|
+
# config.credentials = credentials
|
|
632
|
+
# end
|
|
633
|
+
#
|
|
634
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
618
635
|
# external source for authentication to Google Cloud, you must validate it before
|
|
619
636
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
620
637
|
# configuration to Google APIs can compromise the security of your systems and data.
|