google-apis-dialogflow_v2 0.46.0 → 0.47.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e33213240f20c012e938c8020949210b0abe6552fb8d1049bed4832824fdffe7
4
- data.tar.gz: ddd2bfc08a1bd8c1dd8e25fb1709062383ec4177fd4925737865b22e6c0f7e3f
3
+ metadata.gz: 15f3b5111d61a6a390898fddc1442ec9db54e57619cdae86abf0c50d4663838c
4
+ data.tar.gz: bf420ebb3e09e14db1e486ab00cb67f14b50632713fe7ebdcda1e4816dd68c7f
5
5
  SHA512:
6
- metadata.gz: 9b1199359f716356aa9ac3e05b28a01ac28bd4fbc442a5794799acf7e898382b7988f8d9f421959466bfee2af54bd6689e4a40509fcf7a4d1c8c6401e106f3c7
7
- data.tar.gz: e186f1f5523ec46fae8d450c864292ae012c17848106191f7339b5455dedf068095714664b96a8e1468b36fc34ab23606575248162d1deb4afc8b5c2e800f4e2
6
+ metadata.gz: 9da22e25ccfdbc8ff4cc6dfc3099d09df15a9b47fcc7f99c44ecca795fb40603251f5703afe86f6b3fe8c830139c67b6b2ae0cbc43c687d984f9c461387344e7
7
+ data.tar.gz: e60952b927d994ebe2fb4d9499b6ea005b9df13dd900e3d1a4e276645492679d7c68d6f1b292a8a1bc96e777655b9f6268789012b508008d796c53d289bdf792
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.47.0 (2022-10-31)
4
+
5
+ * Regenerated from discovery document revision 20221026
6
+
3
7
  ### v0.46.0 (2022-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20221017
@@ -11396,6 +11396,22 @@ module Google
11396
11396
  # @return [String]
11397
11397
  attr_accessor :name
11398
11398
 
11399
+ # Optional. Obfuscated user id that should be associated with the created
11400
+ # participant. You can specify a user id as follows: 1. If you set this field in
11401
+ # CreateParticipantRequest or UpdateParticipantRequest, Dialogflow adds the
11402
+ # obfuscated user id with the participant. 2. If you set this field in
11403
+ # AnalyzeContent or StreamingAnalyzeContent, Dialogflow will update Participant.
11404
+ # obfuscated_external_user_id. Dialogflow returns an error if you try to add a
11405
+ # user id for a non-END_USER participant. Dialogflow uses this user id for
11406
+ # billing and measurement purposes. For example, Dialogflow determines whether a
11407
+ # user in one conversation returned in a later conversation. Note: * Please
11408
+ # never pass raw user ids to Dialogflow. Always obfuscate your user id first. *
11409
+ # Dialogflow only accepts a UTF-8 encoded string, e.g., a hex digest of a hash
11410
+ # function like SHA-512. * The length of the user id must be <= 256 characters.
11411
+ # Corresponds to the JSON property `obfuscatedExternalUserId`
11412
+ # @return [String]
11413
+ attr_accessor :obfuscated_external_user_id
11414
+
11399
11415
  # Immutable. The role this participant plays in the conversation. This field
11400
11416
  # must be set during participant creation and is then immutable.
11401
11417
  # Corresponds to the JSON property `role`
@@ -11417,6 +11433,7 @@ module Google
11417
11433
  def update!(**args)
11418
11434
  @documents_metadata_filters = args[:documents_metadata_filters] if args.key?(:documents_metadata_filters)
11419
11435
  @name = args[:name] if args.key?(:name)
11436
+ @obfuscated_external_user_id = args[:obfuscated_external_user_id] if args.key?(:obfuscated_external_user_id)
11420
11437
  @role = args[:role] if args.key?(:role)
11421
11438
  @sip_recording_media_label = args[:sip_recording_media_label] if args.key?(:sip_recording_media_label)
11422
11439
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2
18
18
  # Version of the google-apis-dialogflow_v2 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221017"
25
+ REVISION = "20221026"
26
26
  end
27
27
  end
28
28
  end
@@ -5904,6 +5904,7 @@ module Google
5904
5904
  class Representation < Google::Apis::Core::JsonRepresentation
5905
5905
  hash :documents_metadata_filters, as: 'documentsMetadataFilters'
5906
5906
  property :name, as: 'name'
5907
+ property :obfuscated_external_user_id, as: 'obfuscatedExternalUserId'
5907
5908
  property :role, as: 'role'
5908
5909
  property :sip_recording_media_label, as: 'sipRecordingMediaLabel'
5909
5910
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-21 00:00:00.000000000 Z
11
+ date: 2022-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.47.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
63
63
  post_install_message:
64
64
  rdoc_options: []