google-apis-dialogflow_v2beta1 0.80.0 → 0.81.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: 14ba360988befb449b3300590d38230f3876bba0e39337c3b94553eb612052e8
4
- data.tar.gz: bf924eb24701ad73703db3693f84215c9cd54591da3fbfae5e1d720711b9acb1
3
+ metadata.gz: ce8684ccd85103c8c5f26d95e039e4673a7aa1e3d441643a9a3515ac7c19ea5c
4
+ data.tar.gz: 2f543a014ee05eecaeac4dc109831a44b0b93133af6637d9fc8986260467f49d
5
5
  SHA512:
6
- metadata.gz: fe4a4d6c134d50e0e7b0874e1bf44f5e6572325da3234372c5a0730394931f968f028748f3d3d78042720cf2763bcad15442fdc0302065df804f72a69dc477ac
7
- data.tar.gz: c9cfc5efbdc773b9fd8fb029573106f1feafc17064f7a722ed09bca0027883c53fc59e4d60d52cdd233c5555e444a7cff9cf2356bed21656d94ace30f4370c93
6
+ metadata.gz: 8d92874cd0a251436f73292444a09a89e3b0ba77aa1f54e3d805d828c6086ec761f2ad46f86ca9e81c150f56e6293e7475a052102c69167ac688fe616db124c6
7
+ data.tar.gz: 0a97e0a51f22b2ec9e1692e48ebd5a82235880596940f827081759df6b2f9334207b11c2b16d97703f5088f8b367f927e70e163c9432082cd6de8f3b30a3e282
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.81.0 (2024-02-23)
4
+
5
+ * Regenerated from discovery document revision 20240219
6
+ * Regenerated using generator version 0.14.0
7
+
3
8
  ### v0.80.0 (2024-02-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20240215
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/dialogflow/) may provide gu
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -2433,11 +2433,6 @@ module Google
2433
2433
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText]
2434
2434
  attr_accessor :text
2435
2435
 
2436
- # Represents a call of a specific tool's action with the specified inputs.
2437
- # Corresponds to the JSON property `toolCall`
2438
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ToolCall]
2439
- attr_accessor :tool_call
2440
-
2441
2436
  def initialize(**args)
2442
2437
  update!(**args)
2443
2438
  end
@@ -2456,7 +2451,6 @@ module Google
2456
2451
  @response_type = args[:response_type] if args.key?(:response_type)
2457
2452
  @telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
2458
2453
  @text = args[:text] if args.key?(:text)
2459
- @tool_call = args[:tool_call] if args.key?(:tool_call)
2460
2454
  end
2461
2455
  end
2462
2456
 
@@ -3079,38 +3073,6 @@ module Google
3079
3073
  end
3080
3074
  end
3081
3075
 
3082
- # Represents a call of a specific tool's action with the specified inputs.
3083
- class GoogleCloudDialogflowCxV3ToolCall
3084
- include Google::Apis::Core::Hashable
3085
-
3086
- # Required. The name of the tool's action associated with this call.
3087
- # Corresponds to the JSON property `action`
3088
- # @return [String]
3089
- attr_accessor :action
3090
-
3091
- # Optional. The action's input parameters.
3092
- # Corresponds to the JSON property `inputParameters`
3093
- # @return [Hash<String,Object>]
3094
- attr_accessor :input_parameters
3095
-
3096
- # Required. The tool associated with this call. Format: `projects//locations//
3097
- # agents//tools/`.
3098
- # Corresponds to the JSON property `tool`
3099
- # @return [String]
3100
- attr_accessor :tool
3101
-
3102
- def initialize(**args)
3103
- update!(**args)
3104
- end
3105
-
3106
- # Update properties of this object
3107
- def update!(**args)
3108
- @action = args[:action] if args.key?(:action)
3109
- @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
3110
- @tool = args[:tool] if args.key?(:tool)
3111
- end
3112
- end
3113
-
3114
3076
  # A transition route specifies a intent that can be matched and/or a data
3115
3077
  # condition that can be evaluated during a session. When a specified transition
3116
3078
  # is matched, the following actions are taken in order: * If there is a `
@@ -6032,11 +5994,6 @@ module Google
6032
5994
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TextInput]
6033
5995
  attr_accessor :text
6034
5996
 
6035
- # The result of calling a tool's action that has been executed by the client.
6036
- # Corresponds to the JSON property `toolCallResult`
6037
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult]
6038
- attr_accessor :tool_call_result
6039
-
6040
5997
  def initialize(**args)
6041
5998
  update!(**args)
6042
5999
  end
@@ -6049,7 +6006,6 @@ module Google
6049
6006
  @intent = args[:intent] if args.key?(:intent)
6050
6007
  @language_code = args[:language_code] if args.key?(:language_code)
6051
6008
  @text = args[:text] if args.key?(:text)
6052
- @tool_call_result = args[:tool_call_result] if args.key?(:tool_call_result)
6053
6009
  end
6054
6010
  end
6055
6011
 
@@ -6166,11 +6122,6 @@ module Google
6166
6122
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText]
6167
6123
  attr_accessor :text
6168
6124
 
6169
- # Represents a call of a specific tool's action with the specified inputs.
6170
- # Corresponds to the JSON property `toolCall`
6171
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCall]
6172
- attr_accessor :tool_call
6173
-
6174
6125
  def initialize(**args)
6175
6126
  update!(**args)
6176
6127
  end
@@ -6188,7 +6139,6 @@ module Google
6188
6139
  @play_audio = args[:play_audio] if args.key?(:play_audio)
6189
6140
  @telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
6190
6141
  @text = args[:text] if args.key?(:text)
6191
- @tool_call = args[:tool_call] if args.key?(:tool_call)
6192
6142
  end
6193
6143
  end
6194
6144
 
@@ -6811,95 +6761,6 @@ module Google
6811
6761
  end
6812
6762
  end
6813
6763
 
6814
- # Represents a call of a specific tool's action with the specified inputs.
6815
- class GoogleCloudDialogflowCxV3beta1ToolCall
6816
- include Google::Apis::Core::Hashable
6817
-
6818
- # Required. The name of the tool's action associated with this call.
6819
- # Corresponds to the JSON property `action`
6820
- # @return [String]
6821
- attr_accessor :action
6822
-
6823
- # Optional. The action's input parameters.
6824
- # Corresponds to the JSON property `inputParameters`
6825
- # @return [Hash<String,Object>]
6826
- attr_accessor :input_parameters
6827
-
6828
- # Required. The tool associated with this call. Format: `projects//locations//
6829
- # agents//tools/`.
6830
- # Corresponds to the JSON property `tool`
6831
- # @return [String]
6832
- attr_accessor :tool
6833
-
6834
- def initialize(**args)
6835
- update!(**args)
6836
- end
6837
-
6838
- # Update properties of this object
6839
- def update!(**args)
6840
- @action = args[:action] if args.key?(:action)
6841
- @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
6842
- @tool = args[:tool] if args.key?(:tool)
6843
- end
6844
- end
6845
-
6846
- # The result of calling a tool's action that has been executed by the client.
6847
- class GoogleCloudDialogflowCxV3beta1ToolCallResult
6848
- include Google::Apis::Core::Hashable
6849
-
6850
- # Required. The name of the tool's action associated with this call.
6851
- # Corresponds to the JSON property `action`
6852
- # @return [String]
6853
- attr_accessor :action
6854
-
6855
- # An error produced by the tool call.
6856
- # Corresponds to the JSON property `error`
6857
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResultError]
6858
- attr_accessor :error
6859
-
6860
- # The tool call's output parameters.
6861
- # Corresponds to the JSON property `outputParameters`
6862
- # @return [Hash<String,Object>]
6863
- attr_accessor :output_parameters
6864
-
6865
- # Required. The tool associated with this call. Format: `projects//locations//
6866
- # agents//tools/`.
6867
- # Corresponds to the JSON property `tool`
6868
- # @return [String]
6869
- attr_accessor :tool
6870
-
6871
- def initialize(**args)
6872
- update!(**args)
6873
- end
6874
-
6875
- # Update properties of this object
6876
- def update!(**args)
6877
- @action = args[:action] if args.key?(:action)
6878
- @error = args[:error] if args.key?(:error)
6879
- @output_parameters = args[:output_parameters] if args.key?(:output_parameters)
6880
- @tool = args[:tool] if args.key?(:tool)
6881
- end
6882
- end
6883
-
6884
- # An error produced by the tool call.
6885
- class GoogleCloudDialogflowCxV3beta1ToolCallResultError
6886
- include Google::Apis::Core::Hashable
6887
-
6888
- # Optional. The error message of the function.
6889
- # Corresponds to the JSON property `message`
6890
- # @return [String]
6891
- attr_accessor :message
6892
-
6893
- def initialize(**args)
6894
- update!(**args)
6895
- end
6896
-
6897
- # Update properties of this object
6898
- def update!(**args)
6899
- @message = args[:message] if args.key?(:message)
6900
- end
6901
- end
6902
-
6903
6764
  # A transition route specifies a intent that can be matched and/or a data
6904
6765
  # condition that can be evaluated during a session. When a specified transition
6905
6766
  # is matched, the following actions are taken in order: * If there is a `
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.80.0"
19
+ GEM_VERSION = "0.81.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240215"
25
+ REVISION = "20240219"
26
26
  end
27
27
  end
28
28
  end
@@ -568,12 +568,6 @@ module Google
568
568
  include Google::Apis::Core::JsonObjectSupport
569
569
  end
570
570
 
571
- class GoogleCloudDialogflowCxV3ToolCall
572
- class Representation < Google::Apis::Core::JsonRepresentation; end
573
-
574
- include Google::Apis::Core::JsonObjectSupport
575
- end
576
-
577
571
  class GoogleCloudDialogflowCxV3TransitionRoute
578
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
573
 
@@ -1198,24 +1192,6 @@ module Google
1198
1192
  include Google::Apis::Core::JsonObjectSupport
1199
1193
  end
1200
1194
 
1201
- class GoogleCloudDialogflowCxV3beta1ToolCall
1202
- class Representation < Google::Apis::Core::JsonRepresentation; end
1203
-
1204
- include Google::Apis::Core::JsonObjectSupport
1205
- end
1206
-
1207
- class GoogleCloudDialogflowCxV3beta1ToolCallResult
1208
- class Representation < Google::Apis::Core::JsonRepresentation; end
1209
-
1210
- include Google::Apis::Core::JsonObjectSupport
1211
- end
1212
-
1213
- class GoogleCloudDialogflowCxV3beta1ToolCallResultError
1214
- class Representation < Google::Apis::Core::JsonRepresentation; end
1215
-
1216
- include Google::Apis::Core::JsonObjectSupport
1217
- end
1218
-
1219
1195
  class GoogleCloudDialogflowCxV3beta1TransitionRoute
1220
1196
  class Representation < Google::Apis::Core::JsonRepresentation; end
1221
1197
 
@@ -3833,8 +3809,6 @@ module Google
3833
3809
 
3834
3810
  property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
3835
3811
 
3836
- property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ToolCall, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ToolCall::Representation
3837
-
3838
3812
  end
3839
3813
  end
3840
3814
 
@@ -4024,15 +3998,6 @@ module Google
4024
3998
  end
4025
3999
  end
4026
4000
 
4027
- class GoogleCloudDialogflowCxV3ToolCall
4028
- # @private
4029
- class Representation < Google::Apis::Core::JsonRepresentation
4030
- property :action, as: 'action'
4031
- hash :input_parameters, as: 'inputParameters'
4032
- property :tool, as: 'tool'
4033
- end
4034
- end
4035
-
4036
4001
  class GoogleCloudDialogflowCxV3TransitionRoute
4037
4002
  # @private
4038
4003
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4825,8 +4790,6 @@ module Google
4825
4790
  property :language_code, as: 'languageCode'
4826
4791
  property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TextInput, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TextInput::Representation
4827
4792
 
4828
- property :tool_call_result, as: 'toolCallResult', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult::Representation
4829
-
4830
4793
  end
4831
4794
  end
4832
4795
 
@@ -4861,8 +4824,6 @@ module Google
4861
4824
 
4862
4825
  property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText::Representation
4863
4826
 
4864
- property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCall, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCall::Representation
4865
-
4866
4827
  end
4867
4828
  end
4868
4829
 
@@ -5052,33 +5013,6 @@ module Google
5052
5013
  end
5053
5014
  end
5054
5015
 
5055
- class GoogleCloudDialogflowCxV3beta1ToolCall
5056
- # @private
5057
- class Representation < Google::Apis::Core::JsonRepresentation
5058
- property :action, as: 'action'
5059
- hash :input_parameters, as: 'inputParameters'
5060
- property :tool, as: 'tool'
5061
- end
5062
- end
5063
-
5064
- class GoogleCloudDialogflowCxV3beta1ToolCallResult
5065
- # @private
5066
- class Representation < Google::Apis::Core::JsonRepresentation
5067
- property :action, as: 'action'
5068
- property :error, as: 'error', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResultError, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResultError::Representation
5069
-
5070
- hash :output_parameters, as: 'outputParameters'
5071
- property :tool, as: 'tool'
5072
- end
5073
- end
5074
-
5075
- class GoogleCloudDialogflowCxV3beta1ToolCallResultError
5076
- # @private
5077
- class Representation < Google::Apis::Core::JsonRepresentation
5078
- property :message, as: 'message'
5079
- end
5080
- end
5081
-
5082
5016
  class GoogleCloudDialogflowCxV3beta1TransitionRoute
5083
5017
  # @private
5084
5018
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.80.0
4
+ version: 0.81.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-02-18 00:00:00.000000000 Z
11
+ date: 2024-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.80.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.81.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dialogflow API V2beta1