google-apis-dialogflow_v2 0.62.0 → 0.64.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: 1cfd3f8c331bd3e653b6165ca2bf96a6c0dfb84ea373a00951c3c8127c1b035d
4
- data.tar.gz: a021f619340ef2d0fcc09087fe8ac2d099028c55e880a38cd527c08db195e00b
3
+ metadata.gz: 6c46731162868997c9e2e4c7c7692acc3150642abe06dade6243d28efd72e333
4
+ data.tar.gz: f9fcfd929646f3bef1526f0b6382c4a477cf9be6803243ed517035eec5b67caa
5
5
  SHA512:
6
- metadata.gz: 43670249bcbfe5a388f285268a5f9989f276d224d2173488e957b4fb1985a0fdc169ff8e633735ac97d2d5371250056a916ecb514f09b89659a73a0e88931e54
7
- data.tar.gz: e9ecf9e31233501c8b144bea637ceb3711685c71bc972025e06521bff8749df87f17369da1b32e99765650828f206eec67669821c7ebc962621fd314f3267506
6
+ metadata.gz: 87ff0514e344685b4700610a552fa68c17371e1db293a907e471200dac593871a95dfd284ab508521a9f0def0fd8a3a7380628b1cd5f9663eeea31f9530185cb
7
+ data.tar.gz: 2976e22adfd19e8b62b30ced1029f67490417919be61e4a24758ce33a401b7fdeead315682f512c9644f59c06006894d5daab379c8f6262810787d2e05f234ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.64.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230705
6
+
7
+ ### v0.63.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230621
10
+
3
11
  ### v0.62.0 (2023-06-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20230614
@@ -653,7 +653,8 @@ module Google
653
653
  class GoogleCloudDialogflowCxV3ExportAgentResponse
654
654
  include Google::Apis::Core::Hashable
655
655
 
656
- # Uncompressed raw byte content for agent.
656
+ # Uncompressed raw byte content for agent. This field is populated if none of `
657
+ # agent_uri` and `git_destination` are specified in ExportAgentRequest.
657
658
  # Corresponds to the JSON property `agentContent`
658
659
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
659
660
  # @return [String]
@@ -665,6 +666,12 @@ module Google
665
666
  # @return [String]
666
667
  attr_accessor :agent_uri
667
668
 
669
+ # Commit SHA of the git push. This field is populated if `git_destination` are
670
+ # specified in ExportAgentRequest.
671
+ # Corresponds to the JSON property `commitSha`
672
+ # @return [String]
673
+ attr_accessor :commit_sha
674
+
668
675
  def initialize(**args)
669
676
  update!(**args)
670
677
  end
@@ -673,6 +680,7 @@ module Google
673
680
  def update!(**args)
674
681
  @agent_content = args[:agent_content] if args.key?(:agent_content)
675
682
  @agent_uri = args[:agent_uri] if args.key?(:agent_uri)
683
+ @commit_sha = args[:commit_sha] if args.key?(:commit_sha)
676
684
  end
677
685
  end
678
686
 
@@ -3730,7 +3738,8 @@ module Google
3730
3738
  class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
3731
3739
  include Google::Apis::Core::Hashable
3732
3740
 
3733
- # Uncompressed raw byte content for agent.
3741
+ # Uncompressed raw byte content for agent. This field is populated if none of `
3742
+ # agent_uri` and `git_destination` are specified in ExportAgentRequest.
3734
3743
  # Corresponds to the JSON property `agentContent`
3735
3744
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
3736
3745
  # @return [String]
@@ -3742,6 +3751,12 @@ module Google
3742
3751
  # @return [String]
3743
3752
  attr_accessor :agent_uri
3744
3753
 
3754
+ # Commit SHA of the git push. This field is populated if `git_destination` are
3755
+ # specified in ExportAgentRequest.
3756
+ # Corresponds to the JSON property `commitSha`
3757
+ # @return [String]
3758
+ attr_accessor :commit_sha
3759
+
3745
3760
  def initialize(**args)
3746
3761
  update!(**args)
3747
3762
  end
@@ -3750,6 +3765,7 @@ module Google
3750
3765
  def update!(**args)
3751
3766
  @agent_content = args[:agent_content] if args.key?(:agent_content)
3752
3767
  @agent_uri = args[:agent_uri] if args.key?(:agent_uri)
3768
+ @commit_sha = args[:commit_sha] if args.key?(:commit_sha)
3753
3769
  end
3754
3770
  end
3755
3771
 
@@ -6773,6 +6789,13 @@ module Google
6773
6789
  # @return [String]
6774
6790
  attr_accessor :agent
6775
6791
 
6792
+ # Optional. Sets Dialogflow CX session life time. By default, a Dialogflow CX
6793
+ # session remains active and its data is stored for 30 minutes after the last
6794
+ # request is sent for the session. This value should be no longer than 1 day.
6795
+ # Corresponds to the JSON property `sessionTtl`
6796
+ # @return [String]
6797
+ attr_accessor :session_ttl
6798
+
6776
6799
  def initialize(**args)
6777
6800
  update!(**args)
6778
6801
  end
@@ -6780,6 +6803,7 @@ module Google
6780
6803
  # Update properties of this object
6781
6804
  def update!(**args)
6782
6805
  @agent = args[:agent] if args.key?(:agent)
6806
+ @session_ttl = args[:session_ttl] if args.key?(:session_ttl)
6783
6807
  end
6784
6808
  end
6785
6809
 
@@ -12769,6 +12793,11 @@ module Google
12769
12793
  class GoogleCloudDialogflowV2SuggestConversationSummaryRequest
12770
12794
  include Google::Apis::Core::Hashable
12771
12795
 
12796
+ # Represents the parameters of human assist query.
12797
+ # Corresponds to the JSON property `assistQueryParams`
12798
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters]
12799
+ attr_accessor :assist_query_params
12800
+
12772
12801
  # Max number of messages prior to and including [latest_message] to use as
12773
12802
  # context when compiling the suggestion. By default 500 and at most 1000.
12774
12803
  # Corresponds to the JSON property `contextSize`
@@ -12788,6 +12817,7 @@ module Google
12788
12817
 
12789
12818
  # Update properties of this object
12790
12819
  def update!(**args)
12820
+ @assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
12791
12821
  @context_size = args[:context_size] if args.key?(:context_size)
12792
12822
  @latest_message = args[:latest_message] if args.key?(:latest_message)
12793
12823
  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.62.0"
19
+ GEM_VERSION = "0.64.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 = "20230705"
26
26
  end
27
27
  end
28
28
  end
@@ -3030,6 +3030,7 @@ module Google
3030
3030
  class Representation < Google::Apis::Core::JsonRepresentation
3031
3031
  property :agent_content, :base64 => true, as: 'agentContent'
3032
3032
  property :agent_uri, as: 'agentUri'
3033
+ property :commit_sha, as: 'commitSha'
3033
3034
  end
3034
3035
  end
3035
3036
 
@@ -3874,6 +3875,7 @@ module Google
3874
3875
  class Representation < Google::Apis::Core::JsonRepresentation
3875
3876
  property :agent_content, :base64 => true, as: 'agentContent'
3876
3877
  property :agent_uri, as: 'agentUri'
3878
+ property :commit_sha, as: 'commitSha'
3877
3879
  end
3878
3880
  end
3879
3881
 
@@ -4672,6 +4674,7 @@ module Google
4672
4674
  # @private
4673
4675
  class Representation < Google::Apis::Core::JsonRepresentation
4674
4676
  property :agent, as: 'agent'
4677
+ property :session_ttl, as: 'sessionTtl'
4675
4678
  end
4676
4679
  end
4677
4680
 
@@ -6334,6 +6337,8 @@ module Google
6334
6337
  class GoogleCloudDialogflowV2SuggestConversationSummaryRequest
6335
6338
  # @private
6336
6339
  class Representation < Google::Apis::Core::JsonRepresentation
6340
+ property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters::Representation
6341
+
6337
6342
  property :context_size, as: 'contextSize'
6338
6343
  property :latest_message, as: 'latestMessage'
6339
6344
  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.62.0
4
+ version: 0.64.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-09 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.64.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: []