google-apis-dialogflow_v3 0.61.0 → 0.62.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: 5cb1a639aefc7036c0805a8ce3c7747316aa5d1481c55a8f48f31cac02dbc82f
4
- data.tar.gz: 5e2f2895a14729d8555725561b224da5a42cf16c58251db84e2c901a248036ea
3
+ metadata.gz: c93cad3926361f984c6340792cf2c345b4eb69f982dfbeaf40962f28fe57e7ed
4
+ data.tar.gz: 0d852413d3376721deffacafd97e314bb49e3f498d5af0a3656e5ed336a0787e
5
5
  SHA512:
6
- metadata.gz: c3acfe47b0564c8bee24f92c16f778bc815d7d540ecd223f42ed41438c0f4c4f1688aa87eab673167a08d7fab9998c1554bfc6766b59956cc4350c2176e2b4f3
7
- data.tar.gz: 806a2e671f2fb91a7099b27df9a31d4e5136ae80a839a1701765cacbb5034c8a6d696f8c2370b5544efa9d99916b9b187b3156327f985389a9a922702cd68e43
6
+ metadata.gz: cfefc92a5b49c10d54f4f59ad8a5b92bb8a79673935fe19f0e76dbfcad4e4280e6989940022c26d252c26767550d0de682e73875ee7dc6b46e964129e003d7f5
7
+ data.tar.gz: '083d1e9d591e5be63772a74473f2846d90824237fa8777b7cbab0c77c93c2b136183d41e3eb32d1cba909674d5e1c42e2cde6d5fcd3790cb24e79b7188c9094d'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.62.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230621
6
+
3
7
  ### v0.61.0 (2023-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20230614
@@ -1717,6 +1717,12 @@ module Google
1717
1717
  # @return [String]
1718
1718
  attr_accessor :environment
1719
1719
 
1720
+ # Optional. Whether to include BigQuery Export setting.
1721
+ # Corresponds to the JSON property `includeBigqueryExportSettings`
1722
+ # @return [Boolean]
1723
+ attr_accessor :include_bigquery_export_settings
1724
+ alias_method :include_bigquery_export_settings?, :include_bigquery_export_settings
1725
+
1720
1726
  def initialize(**args)
1721
1727
  update!(**args)
1722
1728
  end
@@ -1726,6 +1732,7 @@ module Google
1726
1732
  @agent_uri = args[:agent_uri] if args.key?(:agent_uri)
1727
1733
  @data_format = args[:data_format] if args.key?(:data_format)
1728
1734
  @environment = args[:environment] if args.key?(:environment)
1735
+ @include_bigquery_export_settings = args[:include_bigquery_export_settings] if args.key?(:include_bigquery_export_settings)
1729
1736
  end
1730
1737
  end
1731
1738
 
@@ -4058,6 +4065,13 @@ module Google
4058
4065
  # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType>]
4059
4066
  attr_accessor :session_entity_types
4060
4067
 
4068
+ # Optional. Sets Dialogflow session life time. By default, a Dialogflow session
4069
+ # remains active and its data is stored for 30 minutes after the last request is
4070
+ # sent for the session. This value should be no longer than 1 day.
4071
+ # Corresponds to the JSON property `sessionTtl`
4072
+ # @return [String]
4073
+ attr_accessor :session_ttl
4074
+
4061
4075
  # The time zone of this conversational query from the [time zone database](https:
4062
4076
  # //www.iana.org/time-zones), e.g., America/New_York, Europe/Paris. If not
4063
4077
  # provided, the time zone specified in the agent is used.
@@ -4092,6 +4106,7 @@ module Google
4092
4106
  @parameters = args[:parameters] if args.key?(:parameters)
4093
4107
  @payload = args[:payload] if args.key?(:payload)
4094
4108
  @session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
4109
+ @session_ttl = args[:session_ttl] if args.key?(:session_ttl)
4095
4110
  @time_zone = args[:time_zone] if args.key?(:time_zone)
4096
4111
  @webhook_headers = args[:webhook_headers] if args.key?(:webhook_headers)
4097
4112
  end
@@ -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.61.0"
19
+ GEM_VERSION = "0.62.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 = "20230621"
26
26
  end
27
27
  end
28
28
  end
@@ -3145,6 +3145,7 @@ module Google
3145
3145
  property :agent_uri, as: 'agentUri'
3146
3146
  property :data_format, as: 'dataFormat'
3147
3147
  property :environment, as: 'environment'
3148
+ property :include_bigquery_export_settings, as: 'includeBigqueryExportSettings'
3148
3149
  end
3149
3150
  end
3150
3151
 
@@ -3780,6 +3781,7 @@ module Google
3780
3781
  hash :payload, as: 'payload'
3781
3782
  collection :session_entity_types, as: 'sessionEntityTypes', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType::Representation
3782
3783
 
3784
+ property :session_ttl, as: 'sessionTtl'
3783
3785
  property :time_zone, as: 'timeZone'
3784
3786
  hash :webhook_headers, as: 'webhookHeaders'
3785
3787
  end
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.61.0
4
+ version: 0.62.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-06-25 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.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.62.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: []