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: 98f54edb3f21718ce55093390e7e4b8b900cd85d0c801b232ed5a093ce5cf12a
4
- data.tar.gz: 2f8c2bc3bd3b7b5e3ea579ec5b312ed51e76f1add52e9898671898d59ed841d2
3
+ metadata.gz: dc840269a4fc096b6b9b146c07282db810d16745b715ec48198792cc67d9e880
4
+ data.tar.gz: b9acfcd3cd4bcd670a46cd3f223d2168471feb5f912e973c9d36db7056b2d8d6
5
5
  SHA512:
6
- metadata.gz: 0ea37041323fe0b3b0e8d75ccaf76df6595bc269a17a5891b93042b8b11756b6eea81e117757a0022bbd163578302ee7f1373bd2f50f9aa84d4c121fc5d685b4
7
- data.tar.gz: 148ed7cca6340613b150bedcc210ab95589c3eeddb4d34eec78604324079653aec3b7a338509c872ea057b8df6d19d10724d9b5538c1a0c4c94ab3e3ed84cf22
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: If you accept a credential configuration (JSON file or Hash) from an
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: If you accept a credential configuration (JSON file or Hash) from an
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.
@@ -21,7 +21,7 @@ module Google
21
21
  module Apps
22
22
  module Meet
23
23
  module V2
24
- VERSION = "0.6.0"
24
+ VERSION = "0.6.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-apps-meet-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC