google-apis-dialogflow_v3 0.89.0 → 0.91.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: 28e5f8e08829d5a13985dbe5e2b13710dbf94388241b78a6e8d547a616e7eb68
4
- data.tar.gz: 6fdbed63fb7ed65804be46608e78d9bdf65f3ff3324e1d1ab07dde0dc37d8be3
3
+ metadata.gz: 59b5af1c41f35b247259ae63435f0d9054c72900386b522223978c8bbd2f7cce
4
+ data.tar.gz: 3859607becac2a8a5087b1535991cdf3cc5d605d157b6ebdb6ff011e69237017
5
5
  SHA512:
6
- metadata.gz: 41a8e98e5725a11ca89aeb1a1fe329d6ff883bf11382f1a43412c78ff959d3f35a51f6b7ae570c304bfe7ea6265786f623febddf193ebc010896526734f14f05
7
- data.tar.gz: de533aa867910dc019f77b1a5c1dfeeed44e0d348b612d38453620d0542e8c5beed9c315e52f25e6c4520e94a0eca8384d2d4d0754ff4273bdd5fc51e5b6acc7
6
+ metadata.gz: 5878209d699b7eeb0a889d76389d1e86d288550440853666670e60f289a11028ed57204605cd507ca63168500bc3d82ec3f24f3ba8fa75bc8b65e11f751e11d1
7
+ data.tar.gz: c6196402b77a8506eaada32b98b3d5c459b7c3c7bb95556281b473d54b4c3fd6efec0191cc1a9d08d32ade318030b135dbd912c24a7668ba8fd7d42a7f50829c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.91.0 (2024-08-04)
4
+
5
+ * Regenerated from discovery document revision 20240724
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.90.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240721
11
+
3
12
  ### v0.89.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240704
@@ -119,13 +119,21 @@ module Google
119
119
  class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
120
120
  include Google::Apis::Core::Hashable
121
121
 
122
+ # Enables consent-based end-user input redaction, if true, a pre-defined session
123
+ # parameter `$session.params.conversation-redaction` will be used to determine
124
+ # if the utterance should be redacted.
125
+ # Corresponds to the JSON property `enableConsentBasedRedaction`
126
+ # @return [Boolean]
127
+ attr_accessor :enable_consent_based_redaction
128
+ alias_method :enable_consent_based_redaction?, :enable_consent_based_redaction
129
+
122
130
  # Enables DF Interaction logging.
123
131
  # Corresponds to the JSON property `enableInteractionLogging`
124
132
  # @return [Boolean]
125
133
  attr_accessor :enable_interaction_logging
126
134
  alias_method :enable_interaction_logging?, :enable_interaction_logging
127
135
 
128
- # Enables StackDriver logging.
136
+ # Enables Google Cloud Logging.
129
137
  # Corresponds to the JSON property `enableStackdriverLogging`
130
138
  # @return [Boolean]
131
139
  attr_accessor :enable_stackdriver_logging
@@ -137,6 +145,7 @@ module Google
137
145
 
138
146
  # Update properties of this object
139
147
  def update!(**args)
148
+ @enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction)
140
149
  @enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
141
150
  @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
142
151
  end
@@ -639,8 +648,7 @@ module Google
639
648
  class GoogleCloudDialogflowCxV3BatchDeleteTestCasesRequest
640
649
  include Google::Apis::Core::Hashable
641
650
 
642
- # Required. Format of test case names: `projects//locations/ /agents//testCases/`
643
- # .
651
+ # Required. Format of test case names: `projects//locations//agents//testCases/`.
644
652
  # Corresponds to the JSON property `names`
645
653
  # @return [Array<String>]
646
654
  attr_accessor :names
@@ -2038,7 +2046,7 @@ module Google
2038
2046
  alias_method :enable_predeployment_run?, :enable_predeployment_run
2039
2047
 
2040
2048
  # A list of test case names to run. They should be under the same agent. Format
2041
- # of each test case name: `projects//locations/ /agents//testCases/`
2049
+ # of each test case name: `projects//locations//agents//testCases/`
2042
2050
  # Corresponds to the JSON property `testCases`
2043
2051
  # @return [Array<String>]
2044
2052
  attr_accessor :test_cases
@@ -2220,7 +2228,7 @@ module Google
2220
2228
  attr_accessor :last_update_time
2221
2229
 
2222
2230
  # The name of the experiment. Format: projects//locations//agents//environments//
2223
- # experiments/..
2231
+ # experiments/.
2224
2232
  # Corresponds to the JSON property `name`
2225
2233
  # @return [String]
2226
2234
  attr_accessor :name
@@ -2980,6 +2988,13 @@ module Google
2980
2988
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings]
2981
2989
  attr_accessor :knowledge_connector_settings
2982
2990
 
2991
+ # Indicates whether the flow is locked for changes. If the flow is locked,
2992
+ # modifications to the flow will be rejected.
2993
+ # Corresponds to the JSON property `locked`
2994
+ # @return [Boolean]
2995
+ attr_accessor :locked
2996
+ alias_method :locked?, :locked
2997
+
2983
2998
  # Settings for multi-lingual agents.
2984
2999
  # Corresponds to the JSON property `multiLanguageSettings`
2985
3000
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowMultiLanguageSettings]
@@ -2999,7 +3014,7 @@ module Google
2999
3014
  # A flow's transition route group serve two purposes: * They are responsible for
3000
3015
  # matching the user's first utterances in the flow. * They are inherited by
3001
3016
  # every page's transition route groups. Transition route groups defined in the
3002
- # page have higher priority than those defined in the flow. Format:`projects//
3017
+ # page have higher priority than those defined in the flow. Format: `projects//
3003
3018
  # locations//agents//flows//transitionRouteGroups/` or `projects//locations//
3004
3019
  # agents//transitionRouteGroups/` for agent-level groups.
3005
3020
  # Corresponds to the JSON property `transitionRouteGroups`
@@ -3030,6 +3045,7 @@ module Google
3030
3045
  @display_name = args[:display_name] if args.key?(:display_name)
3031
3046
  @event_handlers = args[:event_handlers] if args.key?(:event_handlers)
3032
3047
  @knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
3048
+ @locked = args[:locked] if args.key?(:locked)
3033
3049
  @multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
3034
3050
  @name = args[:name] if args.key?(:name)
3035
3051
  @nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
@@ -7348,7 +7364,7 @@ module Google
7348
7364
  attr_accessor :last_test_result
7349
7365
 
7350
7366
  # The unique identifier of the test case. TestCases.CreateTestCase will populate
7351
- # the name automatically. Otherwise use format: `projects//locations//agents/ /
7367
+ # the name automatically. Otherwise use format: `projects//locations//agents//
7352
7368
  # testCases/`.
7353
7369
  # Corresponds to the JSON property `name`
7354
7370
  # @return [String]
@@ -7442,7 +7458,7 @@ module Google
7442
7458
  attr_accessor :environment
7443
7459
 
7444
7460
  # The resource name for the test case result. Format: `projects//locations//
7445
- # agents//testCases/ /results/`.
7461
+ # agents//testCases//results/`.
7446
7462
  # Corresponds to the JSON property `name`
7447
7463
  # @return [String]
7448
7464
  attr_accessor :name
@@ -8933,13 +8949,21 @@ module Google
8933
8949
  class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
8934
8950
  include Google::Apis::Core::Hashable
8935
8951
 
8952
+ # Enables consent-based end-user input redaction, if true, a pre-defined session
8953
+ # parameter `$session.params.conversation-redaction` will be used to determine
8954
+ # if the utterance should be redacted.
8955
+ # Corresponds to the JSON property `enableConsentBasedRedaction`
8956
+ # @return [Boolean]
8957
+ attr_accessor :enable_consent_based_redaction
8958
+ alias_method :enable_consent_based_redaction?, :enable_consent_based_redaction
8959
+
8936
8960
  # Enables DF Interaction logging.
8937
8961
  # Corresponds to the JSON property `enableInteractionLogging`
8938
8962
  # @return [Boolean]
8939
8963
  attr_accessor :enable_interaction_logging
8940
8964
  alias_method :enable_interaction_logging?, :enable_interaction_logging
8941
8965
 
8942
- # Enables StackDriver logging.
8966
+ # Enables Google Cloud Logging.
8943
8967
  # Corresponds to the JSON property `enableStackdriverLogging`
8944
8968
  # @return [Boolean]
8945
8969
  attr_accessor :enable_stackdriver_logging
@@ -8951,6 +8975,7 @@ module Google
8951
8975
 
8952
8976
  # Update properties of this object
8953
8977
  def update!(**args)
8978
+ @enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction)
8954
8979
  @enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
8955
8980
  @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
8956
8981
  end
@@ -9562,7 +9587,7 @@ module Google
9562
9587
  alias_method :enable_predeployment_run?, :enable_predeployment_run
9563
9588
 
9564
9589
  # A list of test case names to run. They should be under the same agent. Format
9565
- # of each test case name: `projects//locations/ /agents//testCases/`
9590
+ # of each test case name: `projects//locations//agents//testCases/`
9566
9591
  # Corresponds to the JSON property `testCases`
9567
9592
  # @return [Array<String>]
9568
9593
  attr_accessor :test_cases
@@ -11749,7 +11774,7 @@ module Google
11749
11774
  attr_accessor :last_test_result
11750
11775
 
11751
11776
  # The unique identifier of the test case. TestCases.CreateTestCase will populate
11752
- # the name automatically. Otherwise use format: `projects//locations//agents/ /
11777
+ # the name automatically. Otherwise use format: `projects//locations//agents//
11753
11778
  # testCases/`.
11754
11779
  # Corresponds to the JSON property `name`
11755
11780
  # @return [String]
@@ -11843,7 +11868,7 @@ module Google
11843
11868
  attr_accessor :environment
11844
11869
 
11845
11870
  # The resource name for the test case result. Format: `projects//locations//
11846
- # agents//testCases/ /results/`.
11871
+ # agents//testCases//results/`.
11847
11872
  # Corresponds to the JSON property `name`
11848
11873
  # @return [String]
11849
11874
  attr_accessor :name
@@ -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.89.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240704"
25
+ REVISION = "20240724"
26
26
  end
27
27
  end
28
28
  end
@@ -3374,6 +3374,7 @@ module Google
3374
3374
  class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
3375
3375
  # @private
3376
3376
  class Representation < Google::Apis::Core::JsonRepresentation
3377
+ property :enable_consent_based_redaction, as: 'enableConsentBasedRedaction'
3377
3378
  property :enable_interaction_logging, as: 'enableInteractionLogging'
3378
3379
  property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
3379
3380
  end
@@ -4161,6 +4162,7 @@ module Google
4161
4162
 
4162
4163
  property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings::Representation
4163
4164
 
4165
+ property :locked, as: 'locked'
4164
4166
  property :multi_language_settings, as: 'multiLanguageSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowMultiLanguageSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowMultiLanguageSettings::Representation
4165
4167
 
4166
4168
  property :name, as: 'name'
@@ -5772,6 +5774,7 @@ module Google
5772
5774
  class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
5773
5775
  # @private
5774
5776
  class Representation < Google::Apis::Core::JsonRepresentation
5777
+ property :enable_consent_based_redaction, as: 'enableConsentBasedRedaction'
5775
5778
  property :enable_interaction_logging, as: 'enableInteractionLogging'
5776
5779
  property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
5777
5780
  end
@@ -962,7 +962,7 @@ module Google
962
962
  # fields: - `metadata`: DeployFlowMetadata - `response`: DeployFlowResponse
963
963
  # @param [String] environment
964
964
  # Required. The environment to deploy the flow to. Format: `projects//locations//
965
- # agents// environments/`.
965
+ # agents//environments/`.
966
966
  # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DeployFlowRequest] google_cloud_dialogflow_cx_v3_deploy_flow_request_object
967
967
  # @param [String] fields
968
968
  # Selector specifying which fields to include in a partial response.
@@ -1181,7 +1181,7 @@ module Google
1181
1181
  # Fetches a list of continuous test results for a given environment.
1182
1182
  # @param [String] parent
1183
1183
  # Required. The environment to list results for. Format: `projects//locations//
1184
- # agents// environments/`.
1184
+ # agents//environments/`.
1185
1185
  # @param [Fixnum] page_size
1186
1186
  # The maximum number of items to return in a single page. By default 100 and at
1187
1187
  # most 1000.
@@ -1422,7 +1422,7 @@ module Google
1422
1422
  # Updates the specified Experiment.
1423
1423
  # @param [String] name
1424
1424
  # The name of the experiment. Format: projects//locations//agents//environments//
1425
- # experiments/..
1425
+ # experiments/.
1426
1426
  # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Experiment] google_cloud_dialogflow_cx_v3_experiment_object
1427
1427
  # @param [String] update_mask
1428
1428
  # Required. The mask to control which fields get updated.
@@ -2767,7 +2767,7 @@ module Google
2767
2767
  # @param [String] base_version
2768
2768
  # Required. Name of the base flow version to compare with the target version.
2769
2769
  # Use version ID `0` to indicate the draft version of the specified flow. Format:
2770
- # `projects//locations//agents/ /flows//versions/`.
2770
+ # `projects//locations//agents//flows//versions/`.
2771
2771
  # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CompareVersionsRequest] google_cloud_dialogflow_cx_v3_compare_versions_request_object
2772
2772
  # @param [String] fields
2773
2773
  # Selector specifying which fields to include in a partial response.
@@ -3918,7 +3918,7 @@ module Google
3918
3918
  # returned `Operation` type has the following method-specific fields: - `
3919
3919
  # metadata`: BatchRunTestCasesMetadata - `response`: BatchRunTestCasesResponse
3920
3920
  # @param [String] parent
3921
- # Required. Agent name. Format: `projects//locations//agents/ `.
3921
+ # Required. Agent name. Format: `projects//locations//agents/`.
3922
3922
  # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BatchRunTestCasesRequest] google_cloud_dialogflow_cx_v3_batch_run_test_cases_request_object
3923
3923
  # @param [String] fields
3924
3924
  # Selector specifying which fields to include in a partial response.
@@ -4172,7 +4172,7 @@ module Google
4172
4172
  # Updates the specified test case.
4173
4173
  # @param [String] name
4174
4174
  # The unique identifier of the test case. TestCases.CreateTestCase will populate
4175
- # the name automatically. Otherwise use format: `projects//locations//agents/ /
4175
+ # the name automatically. Otherwise use format: `projects//locations//agents//
4176
4176
  # testCases/`.
4177
4177
  # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TestCase] google_cloud_dialogflow_cx_v3_test_case_object
4178
4178
  # @param [String] update_mask
@@ -4213,7 +4213,7 @@ module Google
4213
4213
  # Operation` type has the following method-specific fields: - `metadata`:
4214
4214
  # RunTestCaseMetadata - `response`: RunTestCaseResponse
4215
4215
  # @param [String] name
4216
- # Required. Format of test case name to run: `projects//locations/ /agents//
4216
+ # Required. Format of test case name to run: `projects//locations//agents//
4217
4217
  # testCases/`.
4218
4218
  # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RunTestCaseRequest] google_cloud_dialogflow_cx_v3_run_test_case_request_object
4219
4219
  # @param [String] fields
@@ -4280,7 +4280,7 @@ module Google
4280
4280
  # results are kept for each test case.
4281
4281
  # @param [String] parent
4282
4282
  # Required. The test case to list results for. Format: `projects//locations//
4283
- # agents// testCases/`. Specify a `-` as a wildcard for TestCase ID to list
4283
+ # agents//testCases/`. Specify a `-` as a wildcard for TestCase ID to list
4284
4284
  # results across multiple test cases.
4285
4285
  # @param [String] filter
4286
4286
  # The filter expression used to filter test case results. See [API Filtering](
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.89.0
4
+ version: 0.91.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: 2024-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-04 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_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.89.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.91.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
63
63
  post_install_message:
64
64
  rdoc_options: []