google-cloud-contact_center_insights-v1 1.8.0 → 1.8.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: 6c21b22dda1b27f5cbae47b7c591e2a10f59c7e0961cae0a3afbcb1f1bf1ace7
4
- data.tar.gz: '086c119d33e3177765445076e52d354c8c81896d742f74572f6d7d4ad79d4a81'
3
+ metadata.gz: fb564b6eceb2ab3127a87e6047d6b9fde29e09682c2105c1d4714bf00df130dd
4
+ data.tar.gz: 0306d580fcd241c07399582181a9fbcd5474ed135d9e0f797976b39759979edb
5
5
  SHA512:
6
- metadata.gz: b5025dd863ba7652fd3f1b397cd52a82429f2cd40f58254464201eccc10be32ffaae86f0ad270e2513ce154a193f8705971950282996e9f5fc142abe582164d0
7
- data.tar.gz: 1f6a3bd2ec5156b407e6ef459492b649a3dcbd804f05d5101c0f903c89b464224b16d7c3cce3c41852e906e910eac4489214bbe0668aceb9c4d9b8e3c6c36004
6
+ metadata.gz: cf7be7209c9e8bea20c54b8453343bdd7afe95c8495e8aae71e018258fb6f134f5d78194bd9713ecb74696824ed6fbf7b8ccca85f5c766435e9fc9af4000f8ee
7
+ data.tar.gz: df7fe3c659916c5050788864ba5e71ca3482ecce46bedf402fb8af7acd6a82eb32fcba5c1d78b54fa29557ef0c9ea78debb7cffc331a0e2cb4d9ade56ee81ad6
@@ -7190,8 +7190,6 @@ module Google
7190
7190
  # @return [::String,nil]
7191
7191
  # @!attribute [rw] credentials
7192
7192
  # Credentials to send with calls. You may provide any of the following types:
7193
- # * (`String`) The path to a service account key file in JSON format
7194
- # * (`Hash`) A service account key as a Hash
7195
7193
  # * (`Google::Auth::Credentials`) A googleauth credentials object
7196
7194
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
7197
7195
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -7200,7 +7198,26 @@ module Google
7200
7198
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
7201
7199
  # * (`nil`) indicating no credentials
7202
7200
  #
7203
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
7201
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
7202
+ # is deprecated. Providing an unvalidated credential configuration to
7203
+ # Google APIs can compromise the security of your systems and data.
7204
+ #
7205
+ # @example
7206
+ #
7207
+ # # The recommended way to provide credentials is to use the `make_creds` method
7208
+ # # on the appropriate credentials class for your environment.
7209
+ #
7210
+ # require "googleauth"
7211
+ #
7212
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
7213
+ # json_key_io: ::File.open("/path/to/keyfile.json")
7214
+ # )
7215
+ #
7216
+ # client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Client.new do |config|
7217
+ # config.credentials = credentials
7218
+ # end
7219
+ #
7220
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
7204
7221
  # external source for authentication to Google Cloud, you must validate it before
7205
7222
  # providing it to a Google API client library. Providing an unvalidated credential
7206
7223
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -642,8 +642,6 @@ module Google
642
642
  # @return [::String,nil]
643
643
  # @!attribute [rw] credentials
644
644
  # Credentials to send with calls. You may provide any of the following types:
645
- # * (`String`) The path to a service account key file in JSON format
646
- # * (`Hash`) A service account key as a Hash
647
645
  # * (`Google::Auth::Credentials`) A googleauth credentials object
648
646
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
649
647
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -652,7 +650,26 @@ module Google
652
650
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
653
651
  # * (`nil`) indicating no credentials
654
652
  #
655
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
653
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
654
+ # is deprecated. Providing an unvalidated credential configuration to
655
+ # Google APIs can compromise the security of your systems and data.
656
+ #
657
+ # @example
658
+ #
659
+ # # The recommended way to provide credentials is to use the `make_creds` method
660
+ # # on the appropriate credentials class for your environment.
661
+ #
662
+ # require "googleauth"
663
+ #
664
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
665
+ # json_key_io: ::File.open("/path/to/keyfile.json")
666
+ # )
667
+ #
668
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
669
+ # config.credentials = credentials
670
+ # end
671
+ #
672
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
656
673
  # external source for authentication to Google Cloud, you must validate it before
657
674
  # providing it to a Google API client library. Providing an unvalidated credential
658
675
  # 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 ContactCenterInsights
23
23
  module V1
24
- VERSION = "1.8.0"
24
+ VERSION = "1.8.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-contact_center_insights-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC