google-apis-dialogflow_v3 0.117.0 → 0.118.0

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: cfc74d64d40f597c052e5ebe8d6f07489f5c1515bd466ef22ee17a42010c5cc8
4
- data.tar.gz: a4a897f7277103afde2a27eb55058f109d19e596c9d37ef4da740995a50be0fd
3
+ metadata.gz: 3eba67a33136181db50d673c546f7d964683a91ff80869cf65363cf5a58ae3ee
4
+ data.tar.gz: 3dd4503d1a2bd8ba9087d2a5f1602eac2a22a7aaaac8eb00461e0f9fc9556b6f
5
5
  SHA512:
6
- metadata.gz: c4c20660ef3b01dbbcd393c629e7c7e85aa32e74a91c200c8021d20e24254da1438eb672eeb4d0792b97a87fa42445d67f63dc4b3fffcf7f2289b36a2e60e35a
7
- data.tar.gz: 7e10bb789166d4b2b29474e492fd96b60a7b0d8aee6cda2ef9246c17f4abaa2f8d96f40e9ebae63c226dc23d1ca2108c13a70da386c7b6ac1d0d202090b9ef2b
6
+ metadata.gz: 903c6611d5629feac94d1040b6030790a50c42fe2d06e61419282a495dedd582b49599e96e0df577daf53abbeb6401c5a574614afbe4e013a5fe89d09bc1dbe1
7
+ data.tar.gz: 4f5ce593735df8a04ea5b217e52faee0951f243c0f8c6cfc096cd2e6030d5dc0e558f1211ade95b7fc087acc2e4399c1d3c14bae7e161a32cb47d426cf79b984
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.118.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251209
6
+
3
7
  ### v0.117.0 (2025-11-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20251027
@@ -1951,6 +1951,12 @@ module Google
1951
1951
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters]
1952
1952
  attr_accessor :query_params
1953
1953
 
1954
+ # Optional. Specifies which fields in the QueryResult to return. If not set, the
1955
+ # default is DETECT_INTENT_RESPONSE_VIEW_FULL.
1956
+ # Corresponds to the JSON property `responseView`
1957
+ # @return [String]
1958
+ attr_accessor :response_view
1959
+
1954
1960
  def initialize(**args)
1955
1961
  update!(**args)
1956
1962
  end
@@ -1960,6 +1966,7 @@ module Google
1960
1966
  @output_audio_config = args[:output_audio_config] if args.key?(:output_audio_config)
1961
1967
  @query_input = args[:query_input] if args.key?(:query_input)
1962
1968
  @query_params = args[:query_params] if args.key?(:query_params)
1969
+ @response_view = args[:response_view] if args.key?(:response_view)
1963
1970
  end
1964
1971
  end
1965
1972
 
@@ -8172,11 +8179,21 @@ module Google
8172
8179
  # @return [String]
8173
8180
  attr_accessor :default_banned_phrase_match_strategy
8174
8181
 
8182
+ # Settings for Responsible AI.
8183
+ # Corresponds to the JSON property `defaultRaiSettings`
8184
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings]
8185
+ attr_accessor :default_rai_settings
8186
+
8175
8187
  # Settings for prompt security checks.
8176
8188
  # Corresponds to the JSON property `promptSecuritySettings`
8177
8189
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings]
8178
8190
  attr_accessor :prompt_security_settings
8179
8191
 
8192
+ # Settings for Responsible AI.
8193
+ # Corresponds to the JSON property `raiSettings`
8194
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings]
8195
+ attr_accessor :rai_settings
8196
+
8180
8197
  def initialize(**args)
8181
8198
  update!(**args)
8182
8199
  end
@@ -8185,7 +8202,9 @@ module Google
8185
8202
  def update!(**args)
8186
8203
  @banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
8187
8204
  @default_banned_phrase_match_strategy = args[:default_banned_phrase_match_strategy] if args.key?(:default_banned_phrase_match_strategy)
8205
+ @default_rai_settings = args[:default_rai_settings] if args.key?(:default_rai_settings)
8188
8206
  @prompt_security_settings = args[:prompt_security_settings] if args.key?(:prompt_security_settings)
8207
+ @rai_settings = args[:rai_settings] if args.key?(:rai_settings)
8189
8208
  end
8190
8209
  end
8191
8210
 
@@ -8234,6 +8253,50 @@ module Google
8234
8253
  end
8235
8254
  end
8236
8255
 
8256
+ # Settings for Responsible AI.
8257
+ class GoogleCloudDialogflowCxV3SafetySettingsRaiSettings
8258
+ include Google::Apis::Core::Hashable
8259
+
8260
+ # Optional. RAI blocking configurations.
8261
+ # Corresponds to the JSON property `categoryFilters`
8262
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter>]
8263
+ attr_accessor :category_filters
8264
+
8265
+ def initialize(**args)
8266
+ update!(**args)
8267
+ end
8268
+
8269
+ # Update properties of this object
8270
+ def update!(**args)
8271
+ @category_filters = args[:category_filters] if args.key?(:category_filters)
8272
+ end
8273
+ end
8274
+
8275
+ # Configuration of the sensitivity level for blocking an RAI category.
8276
+ class GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter
8277
+ include Google::Apis::Core::Hashable
8278
+
8279
+ # RAI category to configure.
8280
+ # Corresponds to the JSON property `category`
8281
+ # @return [String]
8282
+ attr_accessor :category
8283
+
8284
+ # Blocking sensitivity level to configure for the RAI category.
8285
+ # Corresponds to the JSON property `filterLevel`
8286
+ # @return [String]
8287
+ attr_accessor :filter_level
8288
+
8289
+ def initialize(**args)
8290
+ update!(**args)
8291
+ end
8292
+
8293
+ # Update properties of this object
8294
+ def update!(**args)
8295
+ @category = args[:category] if args.key?(:category)
8296
+ @filter_level = args[:filter_level] if args.key?(:filter_level)
8297
+ end
8298
+ end
8299
+
8237
8300
  # Search configuration for UCS search queries.
8238
8301
  class GoogleCloudDialogflowCxV3SearchConfig
8239
8302
  include Google::Apis::Core::Hashable
@@ -23796,8 +23859,9 @@ module Google
23796
23859
  attr_accessor :operations
23797
23860
 
23798
23861
  # Unordered list. Unreachable resources. Populated when the request sets `
23799
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
23800
- # when attempting to list all resources across all supported locations.
23862
+ # ListOperationsRequest.return_partial_success` and reads across collections.
23863
+ # For example, when attempting to list all resources across all supported
23864
+ # locations.
23801
23865
  # Corresponds to the JSON property `unreachable`
23802
23866
  # @return [Array<String>]
23803
23867
  attr_accessor :unreachable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3
18
18
  # Version of the google-apis-dialogflow_v3 gem
19
- GEM_VERSION = "0.117.0"
19
+ GEM_VERSION = "0.118.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251027"
25
+ REVISION = "20251209"
26
26
  end
27
27
  end
28
28
  end
@@ -1348,6 +1348,18 @@ module Google
1348
1348
  include Google::Apis::Core::JsonObjectSupport
1349
1349
  end
1350
1350
 
1351
+ class GoogleCloudDialogflowCxV3SafetySettingsRaiSettings
1352
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1353
+
1354
+ include Google::Apis::Core::JsonObjectSupport
1355
+ end
1356
+
1357
+ class GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter
1358
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1359
+
1360
+ include Google::Apis::Core::JsonObjectSupport
1361
+ end
1362
+
1351
1363
  class GoogleCloudDialogflowCxV3SearchConfig
1352
1364
  class Representation < Google::Apis::Core::JsonRepresentation; end
1353
1365
 
@@ -4409,6 +4421,7 @@ module Google
4409
4421
 
4410
4422
  property :query_params, as: 'queryParams', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters::Representation
4411
4423
 
4424
+ property :response_view, as: 'responseView'
4412
4425
  end
4413
4426
  end
4414
4427
 
@@ -6088,8 +6101,12 @@ module Google
6088
6101
  collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase::Representation
6089
6102
 
6090
6103
  property :default_banned_phrase_match_strategy, as: 'defaultBannedPhraseMatchStrategy'
6104
+ property :default_rai_settings, as: 'defaultRaiSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings::Representation
6105
+
6091
6106
  property :prompt_security_settings, as: 'promptSecuritySettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings::Representation
6092
6107
 
6108
+ property :rai_settings, as: 'raiSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings::Representation
6109
+
6093
6110
  end
6094
6111
  end
6095
6112
 
@@ -6108,6 +6125,22 @@ module Google
6108
6125
  end
6109
6126
  end
6110
6127
 
6128
+ class GoogleCloudDialogflowCxV3SafetySettingsRaiSettings
6129
+ # @private
6130
+ class Representation < Google::Apis::Core::JsonRepresentation
6131
+ collection :category_filters, as: 'categoryFilters', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter::Representation
6132
+
6133
+ end
6134
+ end
6135
+
6136
+ class GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter
6137
+ # @private
6138
+ class Representation < Google::Apis::Core::JsonRepresentation
6139
+ property :category, as: 'category'
6140
+ property :filter_level, as: 'filterLevel'
6141
+ end
6142
+ end
6143
+
6111
6144
  class GoogleCloudDialogflowCxV3SearchConfig
6112
6145
  # @private
6113
6146
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5756,11 +5756,12 @@ module Google
5756
5756
  # The standard list page token.
5757
5757
  # @param [Boolean] return_partial_success
5758
5758
  # When set to `true`, operations that are reachable are returned as normal, and
5759
- # those that are unreachable are returned in the [ListOperationsResponse.
5760
- # unreachable] field. This can only be `true` when reading across collections e.
5761
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
5762
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
5763
- # explicitly documented otherwise in service or product specific documentation.
5759
+ # those that are unreachable are returned in the ListOperationsResponse.
5760
+ # unreachable field. This can only be `true` when reading across collections.
5761
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
5762
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
5763
+ # if set unless explicitly documented otherwise in service or product specific
5764
+ # documentation.
5764
5765
  # @param [String] fields
5765
5766
  # Selector specifying which fields to include in a partial response.
5766
5767
  # @param [String] quota_user
@@ -6047,11 +6048,12 @@ module Google
6047
6048
  # The standard list page token.
6048
6049
  # @param [Boolean] return_partial_success
6049
6050
  # When set to `true`, operations that are reachable are returned as normal, and
6050
- # those that are unreachable are returned in the [ListOperationsResponse.
6051
- # unreachable] field. This can only be `true` when reading across collections e.
6052
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
6053
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
6054
- # explicitly documented otherwise in service or product specific documentation.
6051
+ # those that are unreachable are returned in the ListOperationsResponse.
6052
+ # unreachable field. This can only be `true` when reading across collections.
6053
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
6054
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
6055
+ # if set unless explicitly documented otherwise in service or product specific
6056
+ # documentation.
6055
6057
  # @param [String] fields
6056
6058
  # Selector specifying which fields to include in a partial response.
6057
6059
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.117.0
4
+ version: 0.118.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.117.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.118.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
62
62
  rdoc_options: []
63
63
  require_paths: