google-apis-dialogflow_v3beta1 0.61.0 → 0.63.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: 68ab1eb32b9e337b20e117bb79b83424b811d72a24b9f6b2d5a5e1a43352e9a9
4
- data.tar.gz: d6d7d5a38da5297a8c7c0a2a6cca9ef64522f224f9c108983892a46fce0a3fd1
3
+ metadata.gz: 4816b138e00cb800d071b163d438607fce83a3d7501361eaf17d4eafd373ba1f
4
+ data.tar.gz: a429df8f4e64c61097594d7f0aff893ced88a0aca0b89358b9bcb1d697e395c0
5
5
  SHA512:
6
- metadata.gz: bc88a3705262c366834a2e3dacb4a02241331f3ab3a7347517f7c4110488a30b9168e52c19edb7109e5c8fc1f4829754baf35a8c5f134843e05fd2afe5fef736
7
- data.tar.gz: '0764582d0eda006e1382d4e65e4a56b82d5e671cf6bc381a4cd4a306a2a95cf4e3ca9a9449b6ca52acff972ce89e62c01fe3b2c2b72b0e1c7ccdd38994b3a5ca'
6
+ metadata.gz: 78320dce3a95e9785845dab29c07af6bdd36dfef71bc7c47029c67a81ae0d2a85110fca960d117747b9a3f0cfd223db52abe0ff7cf73a688fe3fbcc556cff3e3
7
+ data.tar.gz: 95d4eb0c459737a2a2d8b5d14a7d2e51289329935d41b9470347b6f29de9fe14ec97bd878d759172c9176e59450d54e0ed1ec8c6d4549c717ed18f19b0dcbeb4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.63.0 (2023-07-02)
4
+
5
+ * Regenerated from discovery document revision 20230626
6
+
7
+ ### v0.62.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230621
10
+
3
11
  ### v0.61.0 (2023-06-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20230614
@@ -4794,6 +4794,12 @@ module Google
4794
4794
  # @return [String]
4795
4795
  attr_accessor :environment
4796
4796
 
4797
+ # Optional. Whether to include BigQuery Export setting.
4798
+ # Corresponds to the JSON property `includeBigqueryExportSettings`
4799
+ # @return [Boolean]
4800
+ attr_accessor :include_bigquery_export_settings
4801
+ alias_method :include_bigquery_export_settings?, :include_bigquery_export_settings
4802
+
4797
4803
  def initialize(**args)
4798
4804
  update!(**args)
4799
4805
  end
@@ -4803,6 +4809,7 @@ module Google
4803
4809
  @agent_uri = args[:agent_uri] if args.key?(:agent_uri)
4804
4810
  @data_format = args[:data_format] if args.key?(:data_format)
4805
4811
  @environment = args[:environment] if args.key?(:environment)
4812
+ @include_bigquery_export_settings = args[:include_bigquery_export_settings] if args.key?(:include_bigquery_export_settings)
4806
4813
  end
4807
4814
  end
4808
4815
 
@@ -7135,6 +7142,13 @@ module Google
7135
7142
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SessionEntityType>]
7136
7143
  attr_accessor :session_entity_types
7137
7144
 
7145
+ # Optional. Sets Dialogflow session life time. By default, a Dialogflow session
7146
+ # remains active and its data is stored for 30 minutes after the last request is
7147
+ # sent for the session. This value should be no longer than 1 day.
7148
+ # Corresponds to the JSON property `sessionTtl`
7149
+ # @return [String]
7150
+ attr_accessor :session_ttl
7151
+
7138
7152
  # The time zone of this conversational query from the [time zone database](https:
7139
7153
  # //www.iana.org/time-zones), e.g., America/New_York, Europe/Paris. If not
7140
7154
  # provided, the time zone specified in the agent is used.
@@ -7169,6 +7183,7 @@ module Google
7169
7183
  @parameters = args[:parameters] if args.key?(:parameters)
7170
7184
  @payload = args[:payload] if args.key?(:payload)
7171
7185
  @session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
7186
+ @session_ttl = args[:session_ttl] if args.key?(:session_ttl)
7172
7187
  @time_zone = args[:time_zone] if args.key?(:time_zone)
7173
7188
  @webhook_headers = args[:webhook_headers] if args.key?(:webhook_headers)
7174
7189
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 gem
19
- GEM_VERSION = "0.61.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230614"
25
+ REVISION = "20230626"
26
26
  end
27
27
  end
28
28
  end
@@ -3989,6 +3989,7 @@ module Google
3989
3989
  property :agent_uri, as: 'agentUri'
3990
3990
  property :data_format, as: 'dataFormat'
3991
3991
  property :environment, as: 'environment'
3992
+ property :include_bigquery_export_settings, as: 'includeBigqueryExportSettings'
3992
3993
  end
3993
3994
  end
3994
3995
 
@@ -4624,6 +4625,7 @@ module Google
4624
4625
  hash :payload, as: 'payload'
4625
4626
  collection :session_entity_types, as: 'sessionEntityTypes', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SessionEntityType, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SessionEntityType::Representation
4626
4627
 
4628
+ property :session_ttl, as: 'sessionTtl'
4627
4629
  property :time_zone, as: 'timeZone'
4628
4630
  hash :webhook_headers, as: 'webhookHeaders'
4629
4631
  end
@@ -3733,7 +3733,8 @@ module Google
3733
3733
  execute_or_queue_command(command, &block)
3734
3734
  end
3735
3735
 
3736
- # Fetches a list of results for a given test case.
3736
+ # Fetches the list of run results for the given test case. A maximum of 100
3737
+ # results are kept for each test case.
3737
3738
  # @param [String] parent
3738
3739
  # Required. The test case to list results for. Format: `projects//locations//
3739
3740
  # agents// testCases/`. Specify a `-` as a wildcard for TestCase ID to list
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.63.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: 2023-06-18 00:00:00.000000000 Z
11
+ date: 2023-07-02 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_v3beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
63
63
  post_install_message:
64
64
  rdoc_options: []