google-apis-dialogflow_v2 0.45.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: 046ed384522b0939709cd02128ae42f924d5db31ca2b351eae5d07c4b92255b8
4
- data.tar.gz: b31973a5e2465b576e69c3f74b592c6adc4bfddd90fae3b87e62c2373d90c635
3
+ metadata.gz: 15f3b5111d61a6a390898fddc1442ec9db54e57619cdae86abf0c50d4663838c
4
+ data.tar.gz: bf420ebb3e09e14db1e486ab00cb67f14b50632713fe7ebdcda1e4816dd68c7f
5
5
  SHA512:
6
- metadata.gz: 59e91f9b86ab77fcfe875b815e549463daccd4b574e80453f98aa453e2d7cdd54027df2a62b943b22af0ba9398fe0d715bcba0a85bcf7a4c5c5e6d212c24675f
7
- data.tar.gz: cca204727de6b9481168be1297cfc75703843efbe1d7f19b8c9d672e4af84fc695af0e9018a841e4de780a178c35e093684955aecf6784ad98ca9f9bd802700a
6
+ metadata.gz: 9da22e25ccfdbc8ff4cc6dfc3099d09df15a9b47fcc7f99c44ecca795fb40603251f5703afe86f6b3fe8c830139c67b6b2ae0cbc43c687d984f9c461387344e7
7
+ data.tar.gz: e60952b927d994ebe2fb4d9499b6ea005b9df13dd900e3d1a4e276645492679d7c68d6f1b292a8a1bc96e777655b9f6268789012b508008d796c53d289bdf792
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
7
+ ### v0.46.0 (2022-10-20)
8
+
9
+ * Regenerated from discovery document revision 20221017
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.45.0 (2022-09-22)
4
13
 
5
14
  * Regenerated from discovery document revision 20220901
@@ -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
@@ -12136,6 +12153,14 @@ module Google
12136
12153
  class GoogleCloudDialogflowV2SpeechToTextConfig
12137
12154
  include Google::Apis::Core::Hashable
12138
12155
 
12156
+ # Which Speech model to select. Select the model best suited to your domain to
12157
+ # get best results. If a model is not explicitly specified, then a default model
12158
+ # is used. Refer to [Cloud Speech API documentation](https://cloud.google.com/
12159
+ # speech-to-text/docs/basics#select-model) for more details.
12160
+ # Corresponds to the JSON property `model`
12161
+ # @return [String]
12162
+ attr_accessor :model
12163
+
12139
12164
  # The speech model used in speech to text. `SPEECH_MODEL_VARIANT_UNSPECIFIED`, `
12140
12165
  # USE_BEST_AVAILABLE` will be treated as `USE_ENHANCED`. It can be overridden in
12141
12166
  # AnalyzeContentRequest and StreamingAnalyzeContentRequest request. If enhanced
@@ -12151,6 +12176,7 @@ module Google
12151
12176
 
12152
12177
  # Update properties of this object
12153
12178
  def update!(**args)
12179
+ @model = args[:model] if args.key?(:model)
12154
12180
  @speech_model_variant = args[:speech_model_variant] if args.key?(:speech_model_variant)
12155
12181
  end
12156
12182
  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.45.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220901"
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
@@ -6088,6 +6089,7 @@ module Google
6088
6089
  class GoogleCloudDialogflowV2SpeechToTextConfig
6089
6090
  # @private
6090
6091
  class Representation < Google::Apis::Core::JsonRepresentation
6092
+ property :model, as: 'model'
6091
6093
  property :speech_model_variant, as: 'speechModelVariant'
6092
6094
  end
6093
6095
  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.45.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-09-26 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.45.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: []