google-apis-dialogflow_v2 0.7.0 → 0.8.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: 42e0155dd3ce4c44f1d37ab0bbb3abfb49c5d6525a1044a2297a19ff835474df
4
- data.tar.gz: 38639d48a7a7800fea6e4489266dc203089cb45410d54e6c56bb2906a0fe8d7f
3
+ metadata.gz: 179d344ffbec066a2ac5eb9ee30bffad5fc6da1de71dc442bb3e050edbd8582c
4
+ data.tar.gz: d9e001c86c2f334fcf242024114698219f8154342f401d042fda90c4c972fb72
5
5
  SHA512:
6
- metadata.gz: 4d42d565fae71bbf5b60c01b5095dd95b5f9f6b79e8aab8dda0f931602ec41972175d456b05acc8351ece930f83a6a1cf20969ad757fc8e5468f5abaf97f1f85
7
- data.tar.gz: 344aa9945c531b38e9948804691ebbd42bceda379465163334df1c9f6a6944f0ee8b2e95d57ab4ba368df386d02899ba2fb1c14af0f93545d445784716a2967d
6
+ metadata.gz: 6f2882102f08beac86ff74b2c21d1ab1be77de9071c11c153e5f30cad9879beb3870d34eff59d71c7fa9d6c71577a4758893d01ef7e5b43a972f58a9815a8d07
7
+ data.tar.gz: 50fea7ea5bb8d4d15e23885ec318ec1403be177ec54e93fe72d6e2d10908ffe853849693908caf3e6fa9b5d4dc4ebd218cb4fe131b4b23a0968731503ea1d08a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.8.0 (2021-03-19)
4
+
5
+ * Regenerated from discovery document revision 20210318
6
+
3
7
  ### v0.7.0 (2021-03-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20210307
@@ -4916,11 +4916,6 @@ module Google
4916
4916
  class GoogleCloudDialogflowV2AnalyzeContentRequest
4917
4917
  include Google::Apis::Core::Hashable
4918
4918
 
4919
- # Represents the natural language speech audio to be processed.
4920
- # Corresponds to the JSON property `audioInput`
4921
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput]
4922
- attr_accessor :audio_input
4923
-
4924
4919
  # Events allow for matching intents by event name instead of the natural
4925
4920
  # language input. For instance, input `` can trigger a personalized welcome
4926
4921
  # response. The parameter `name` may be used by the agent in the response: `"
@@ -4959,7 +4954,6 @@ module Google
4959
4954
 
4960
4955
  # Update properties of this object
4961
4956
  def update!(**args)
4962
- @audio_input = args[:audio_input] if args.key?(:audio_input)
4963
4957
  @event_input = args[:event_input] if args.key?(:event_input)
4964
4958
  @query_params = args[:query_params] if args.key?(:query_params)
4965
4959
  @reply_audio_config = args[:reply_audio_config] if args.key?(:reply_audio_config)
@@ -5217,34 +5211,6 @@ module Google
5217
5211
  end
5218
5212
  end
5219
5213
 
5220
- # Represents the natural language speech audio to be processed.
5221
- class GoogleCloudDialogflowV2AudioInput
5222
- include Google::Apis::Core::Hashable
5223
-
5224
- # Required. The natural language speech audio to be processed. A single request
5225
- # can contain up to 1 minute of speech audio data. The transcribed text cannot
5226
- # contain more than 256 bytes.
5227
- # Corresponds to the JSON property `audio`
5228
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
5229
- # @return [String]
5230
- attr_accessor :audio
5231
-
5232
- # Instructs the speech recognizer how to process the audio content.
5233
- # Corresponds to the JSON property `config`
5234
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputAudioConfig]
5235
- attr_accessor :config
5236
-
5237
- def initialize(**args)
5238
- update!(**args)
5239
- end
5240
-
5241
- # Update properties of this object
5242
- def update!(**args)
5243
- @audio = args[:audio] if args.key?(:audio)
5244
- @config = args[:config] if args.key?(:config)
5245
- end
5246
- end
5247
-
5248
5214
  # Defines the Automated Agent to connect to a conversation.
5249
5215
  class GoogleCloudDialogflowV2AutomatedAgentConfig
5250
5216
  include Google::Apis::Core::Hashable
@@ -5548,90 +5514,6 @@ module Google
5548
5514
  end
5549
5515
  end
5550
5516
 
5551
- # Represents a call matcher that describes criteria for matching incoming SIP
5552
- # calls to a conversation. When Dialogflow get a SIP call from a third-party
5553
- # carrier, Dialogflow matches the call to an existing conversation by either: *
5554
- # Extracting the conversation id from the [Call-Info header](https://tools.ietf.
5555
- # org/html/rfc3261#section-20.9), e.g. `Call-Info: ;purpose=Goog-ContactCenter-
5556
- # Conversation`. * Or, if that doesn't work, matching incoming [SIP headers](
5557
- # https://tools.ietf.org/html/rfc3261#section-7.3) against any CallMatcher for
5558
- # the conversation. If an incoming SIP call without valid `Call-Info` header
5559
- # matches to zero or multiple conversations with `CallMatcher`, we reject it. A
5560
- # call matcher contains equality conditions for SIP headers that all have to be
5561
- # fulfilled in order for a SIP call to match. The matched SIP headers consist of
5562
- # well-known headers (`To`, `From`, `Call-ID`) and custom headers. A CallMatcher
5563
- # is only valid if it specifies: * At least 1 custom header, * or at least 2
5564
- # well-known headers.
5565
- class GoogleCloudDialogflowV2CallMatcher
5566
- include Google::Apis::Core::Hashable
5567
-
5568
- # Value of the [`Call-ID` header](https://tools.ietf.org/html/rfc3261#section-8.
5569
- # 1.1.4) to match. If empty or unspecified, we don't match to the [`Call-ID`
5570
- # header](https://tools.ietf.org/html/rfc3261#section-8.1.1.4).
5571
- # Corresponds to the JSON property `callIdHeader`
5572
- # @return [String]
5573
- attr_accessor :call_id_header
5574
-
5575
- # Custom SIP headers. See the [description of headers in the RFC](https://tools.
5576
- # ietf.org/html/rfc3261#section-7.3).
5577
- # Corresponds to the JSON property `customHeaders`
5578
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcherCustomHeaders]
5579
- attr_accessor :custom_headers
5580
-
5581
- # Value of the [`From` header](https://tools.ietf.org/html/rfc3261#section-8.1.1.
5582
- # 3) to match. If empty or unspecified, we don't match to the [`From` header](
5583
- # https://tools.ietf.org/html/rfc3261#section-8.1.1.3).
5584
- # Corresponds to the JSON property `fromHeader`
5585
- # @return [String]
5586
- attr_accessor :from_header
5587
-
5588
- # Output only. The unique identifier of this call matcher. Format: `projects//
5589
- # locations//conversations//callMatchers/`.
5590
- # Corresponds to the JSON property `name`
5591
- # @return [String]
5592
- attr_accessor :name
5593
-
5594
- # Value of the [`To` header](https://tools.ietf.org/html/rfc3261#section-8.1.1.2)
5595
- # to match. If empty or unspecified, we don't match to the [`To` header](https:/
5596
- # /tools.ietf.org/html/rfc3261#section-8.1.1.2).
5597
- # Corresponds to the JSON property `toHeader`
5598
- # @return [String]
5599
- attr_accessor :to_header
5600
-
5601
- def initialize(**args)
5602
- update!(**args)
5603
- end
5604
-
5605
- # Update properties of this object
5606
- def update!(**args)
5607
- @call_id_header = args[:call_id_header] if args.key?(:call_id_header)
5608
- @custom_headers = args[:custom_headers] if args.key?(:custom_headers)
5609
- @from_header = args[:from_header] if args.key?(:from_header)
5610
- @name = args[:name] if args.key?(:name)
5611
- @to_header = args[:to_header] if args.key?(:to_header)
5612
- end
5613
- end
5614
-
5615
- # Custom SIP headers. See the [description of headers in the RFC](https://tools.
5616
- # ietf.org/html/rfc3261#section-7.3).
5617
- class GoogleCloudDialogflowV2CallMatcherCustomHeaders
5618
- include Google::Apis::Core::Hashable
5619
-
5620
- # Cisco's proprietary `Cisco-Guid` header.
5621
- # Corresponds to the JSON property `ciscoGuid`
5622
- # @return [String]
5623
- attr_accessor :cisco_guid
5624
-
5625
- def initialize(**args)
5626
- update!(**args)
5627
- end
5628
-
5629
- # Update properties of this object
5630
- def update!(**args)
5631
- @cisco_guid = args[:cisco_guid] if args.key?(:cisco_guid)
5632
- end
5633
- end
5634
-
5635
5517
  # The request message for Conversations.CompleteConversation.
5636
5518
  class GoogleCloudDialogflowV2CompleteConversationRequest
5637
5519
  include Google::Apis::Core::Hashable
@@ -5863,12 +5745,6 @@ module Google
5863
5745
  # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfig]
5864
5746
  attr_accessor :human_agent_assistant_config
5865
5747
 
5866
- # Defines the hand off to a live agent, typically on which external agent
5867
- # service provider to connect to a conversation.
5868
- # Corresponds to the JSON property `humanAgentHandoffConfig`
5869
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfig]
5870
- attr_accessor :human_agent_handoff_config
5871
-
5872
5748
  # Language which represents the conversationProfile. If unspecified, the default
5873
5749
  # language code en-us applies. Users need to create a ConversationProfile for
5874
5750
  # each language they want to support.
@@ -5881,8 +5757,8 @@ module Google
5881
5757
  # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2LoggingConfig]
5882
5758
  attr_accessor :logging_config
5883
5759
 
5884
- # Optional. The unique identifier of this conversation profile. Format: `
5885
- # projects//locations//conversationProfiles/`.
5760
+ # The unique identifier of this conversation profile. Format: `projects//
5761
+ # locations//conversationProfiles/`.
5886
5762
  # Corresponds to the JSON property `name`
5887
5763
  # @return [String]
5888
5764
  attr_accessor :name
@@ -5917,7 +5793,6 @@ module Google
5917
5793
  @create_time = args[:create_time] if args.key?(:create_time)
5918
5794
  @display_name = args[:display_name] if args.key?(:display_name)
5919
5795
  @human_agent_assistant_config = args[:human_agent_assistant_config] if args.key?(:human_agent_assistant_config)
5920
- @human_agent_handoff_config = args[:human_agent_handoff_config] if args.key?(:human_agent_handoff_config)
5921
5796
  @language_code = args[:language_code] if args.key?(:language_code)
5922
5797
  @logging_config = args[:logging_config] if args.key?(:logging_config)
5923
5798
  @name = args[:name] if args.key?(:name)
@@ -5928,38 +5803,6 @@ module Google
5928
5803
  end
5929
5804
  end
5930
5805
 
5931
- # The request message for Conversations.CreateCallMatcher.
5932
- class GoogleCloudDialogflowV2CreateCallMatcherRequest
5933
- include Google::Apis::Core::Hashable
5934
-
5935
- # Represents a call matcher that describes criteria for matching incoming SIP
5936
- # calls to a conversation. When Dialogflow get a SIP call from a third-party
5937
- # carrier, Dialogflow matches the call to an existing conversation by either: *
5938
- # Extracting the conversation id from the [Call-Info header](https://tools.ietf.
5939
- # org/html/rfc3261#section-20.9), e.g. `Call-Info: ;purpose=Goog-ContactCenter-
5940
- # Conversation`. * Or, if that doesn't work, matching incoming [SIP headers](
5941
- # https://tools.ietf.org/html/rfc3261#section-7.3) against any CallMatcher for
5942
- # the conversation. If an incoming SIP call without valid `Call-Info` header
5943
- # matches to zero or multiple conversations with `CallMatcher`, we reject it. A
5944
- # call matcher contains equality conditions for SIP headers that all have to be
5945
- # fulfilled in order for a SIP call to match. The matched SIP headers consist of
5946
- # well-known headers (`To`, `From`, `Call-ID`) and custom headers. A CallMatcher
5947
- # is only valid if it specifies: * At least 1 custom header, * or at least 2
5948
- # well-known headers.
5949
- # Corresponds to the JSON property `callMatcher`
5950
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcher]
5951
- attr_accessor :call_matcher
5952
-
5953
- def initialize(**args)
5954
- update!(**args)
5955
- end
5956
-
5957
- # Update properties of this object
5958
- def update!(**args)
5959
- @call_matcher = args[:call_matcher] if args.key?(:call_matcher)
5960
- end
5961
- end
5962
-
5963
5806
  # The request to detect user's intent.
5964
5807
  class GoogleCloudDialogflowV2DetectIntentRequest
5965
5808
  include Google::Apis::Core::Hashable
@@ -6662,11 +6505,6 @@ module Google
6662
6505
  class GoogleCloudDialogflowV2HumanAgentAssistantConfig
6663
6506
  include Google::Apis::Core::Hashable
6664
6507
 
6665
- # Detail human agent assistant config.
6666
- # Corresponds to the JSON property `endUserSuggestionConfig`
6667
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig]
6668
- attr_accessor :end_user_suggestion_config
6669
-
6670
6508
  # Detail human agent assistant config.
6671
6509
  # Corresponds to the JSON property `humanAgentSuggestionConfig`
6672
6510
  # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig]
@@ -6688,7 +6526,6 @@ module Google
6688
6526
 
6689
6527
  # Update properties of this object
6690
6528
  def update!(**args)
6691
- @end_user_suggestion_config = args[:end_user_suggestion_config] if args.key?(:end_user_suggestion_config)
6692
6529
  @human_agent_suggestion_config = args[:human_agent_suggestion_config] if args.key?(:human_agent_suggestion_config)
6693
6530
  @message_analysis_config = args[:message_analysis_config] if args.key?(:message_analysis_config)
6694
6531
  @notification_config = args[:notification_config] if args.key?(:notification_config)
@@ -6720,14 +6557,6 @@ module Google
6720
6557
  class GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig
6721
6558
  include Google::Apis::Core::Hashable
6722
6559
 
6723
- # Enable entity extraction in conversation messages on [agent assist stage](
6724
- # https://cloud.google.com/dialogflow/priv/docs/contact-center/basics#stages).
6725
- # If unspecified, defaults to false.
6726
- # Corresponds to the JSON property `enableEntityExtraction`
6727
- # @return [Boolean]
6728
- attr_accessor :enable_entity_extraction
6729
- alias_method :enable_entity_extraction?, :enable_entity_extraction
6730
-
6731
6560
  # Enable sentiment analysis in conversation messages on [agent assist stage](
6732
6561
  # https://cloud.google.com/dialogflow/priv/docs/contact-center/basics#stages).
6733
6562
  # If unspecified, defaults to false. Sentiment analysis inspects user input and
@@ -6752,7 +6581,6 @@ module Google
6752
6581
 
6753
6582
  # Update properties of this object
6754
6583
  def update!(**args)
6755
- @enable_entity_extraction = args[:enable_entity_extraction] if args.key?(:enable_entity_extraction)
6756
6584
  @enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis)
6757
6585
  end
6758
6586
  end
@@ -7057,92 +6885,6 @@ module Google
7057
6885
  end
7058
6886
  end
7059
6887
 
7060
- # Defines the hand off to a live agent, typically on which external agent
7061
- # service provider to connect to a conversation.
7062
- class GoogleCloudDialogflowV2HumanAgentHandoffConfig
7063
- include Google::Apis::Core::Hashable
7064
-
7065
- # Configuration specific to LivePerson (https://www.liveperson.com).
7066
- # Corresponds to the JSON property `livePersonConfig`
7067
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig]
7068
- attr_accessor :live_person_config
7069
-
7070
- # Configuration specific to Salesforce Live Agent.
7071
- # Corresponds to the JSON property `salesforceLiveAgentConfig`
7072
- # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig]
7073
- attr_accessor :salesforce_live_agent_config
7074
-
7075
- def initialize(**args)
7076
- update!(**args)
7077
- end
7078
-
7079
- # Update properties of this object
7080
- def update!(**args)
7081
- @live_person_config = args[:live_person_config] if args.key?(:live_person_config)
7082
- @salesforce_live_agent_config = args[:salesforce_live_agent_config] if args.key?(:salesforce_live_agent_config)
7083
- end
7084
- end
7085
-
7086
- # Configuration specific to LivePerson (https://www.liveperson.com).
7087
- class GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig
7088
- include Google::Apis::Core::Hashable
7089
-
7090
- # Required. Account number of the LivePerson account to connect. This is the
7091
- # account number you input at the login page.
7092
- # Corresponds to the JSON property `accountNumber`
7093
- # @return [String]
7094
- attr_accessor :account_number
7095
-
7096
- def initialize(**args)
7097
- update!(**args)
7098
- end
7099
-
7100
- # Update properties of this object
7101
- def update!(**args)
7102
- @account_number = args[:account_number] if args.key?(:account_number)
7103
- end
7104
- end
7105
-
7106
- # Configuration specific to Salesforce Live Agent.
7107
- class GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig
7108
- include Google::Apis::Core::Hashable
7109
-
7110
- # Required. Live Agent chat button ID.
7111
- # Corresponds to the JSON property `buttonId`
7112
- # @return [String]
7113
- attr_accessor :button_id
7114
-
7115
- # Required. Live Agent deployment ID.
7116
- # Corresponds to the JSON property `deploymentId`
7117
- # @return [String]
7118
- attr_accessor :deployment_id
7119
-
7120
- # Required. Domain of the Live Agent endpoint for this agent. You can find the
7121
- # endpoint URL in the `Live Agent settings` page. For example if URL has the
7122
- # form https://d.la4-c2-phx.salesforceliveagent.com/..., you should fill in d.
7123
- # la4-c2-phx.salesforceliveagent.com.
7124
- # Corresponds to the JSON property `endpointDomain`
7125
- # @return [String]
7126
- attr_accessor :endpoint_domain
7127
-
7128
- # Required. The organization ID of the Salesforce account.
7129
- # Corresponds to the JSON property `organizationId`
7130
- # @return [String]
7131
- attr_accessor :organization_id
7132
-
7133
- def initialize(**args)
7134
- update!(**args)
7135
- end
7136
-
7137
- # Update properties of this object
7138
- def update!(**args)
7139
- @button_id = args[:button_id] if args.key?(:button_id)
7140
- @deployment_id = args[:deployment_id] if args.key?(:deployment_id)
7141
- @endpoint_domain = args[:endpoint_domain] if args.key?(:endpoint_domain)
7142
- @organization_id = args[:organization_id] if args.key?(:organization_id)
7143
- end
7144
- end
7145
-
7146
6888
  # The request message for Agents.ImportAgent.
7147
6889
  class GoogleCloudDialogflowV2ImportAgentRequest
7148
6890
  include Google::Apis::Core::Hashable
@@ -8634,33 +8376,6 @@ module Google
8634
8376
  end
8635
8377
  end
8636
8378
 
8637
- # The response message for Conversations.ListCallMatchers.
8638
- class GoogleCloudDialogflowV2ListCallMatchersResponse
8639
- include Google::Apis::Core::Hashable
8640
-
8641
- # The list of call matchers. There is a maximum number of items returned based
8642
- # on the page_size field in the request.
8643
- # Corresponds to the JSON property `callMatchers`
8644
- # @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcher>]
8645
- attr_accessor :call_matchers
8646
-
8647
- # Token to retrieve the next page of results or empty if there are no more
8648
- # results in the list.
8649
- # Corresponds to the JSON property `nextPageToken`
8650
- # @return [String]
8651
- attr_accessor :next_page_token
8652
-
8653
- def initialize(**args)
8654
- update!(**args)
8655
- end
8656
-
8657
- # Update properties of this object
8658
- def update!(**args)
8659
- @call_matchers = args[:call_matchers] if args.key?(:call_matchers)
8660
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
8661
- end
8662
- end
8663
-
8664
8379
  # The response message for Contexts.ListContexts.
8665
8380
  class GoogleCloudDialogflowV2ListContextsResponse
8666
8381
  include Google::Apis::Core::Hashable
@@ -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.7.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210307"
25
+ REVISION = "20210318"
26
26
  end
27
27
  end
28
28
  end
@@ -892,12 +892,6 @@ module Google
892
892
  include Google::Apis::Core::JsonObjectSupport
893
893
  end
894
894
 
895
- class GoogleCloudDialogflowV2AudioInput
896
- class Representation < Google::Apis::Core::JsonRepresentation; end
897
-
898
- include Google::Apis::Core::JsonObjectSupport
899
- end
900
-
901
895
  class GoogleCloudDialogflowV2AutomatedAgentConfig
902
896
  class Representation < Google::Apis::Core::JsonRepresentation; end
903
897
 
@@ -964,18 +958,6 @@ module Google
964
958
  include Google::Apis::Core::JsonObjectSupport
965
959
  end
966
960
 
967
- class GoogleCloudDialogflowV2CallMatcher
968
- class Representation < Google::Apis::Core::JsonRepresentation; end
969
-
970
- include Google::Apis::Core::JsonObjectSupport
971
- end
972
-
973
- class GoogleCloudDialogflowV2CallMatcherCustomHeaders
974
- class Representation < Google::Apis::Core::JsonRepresentation; end
975
-
976
- include Google::Apis::Core::JsonObjectSupport
977
- end
978
-
979
961
  class GoogleCloudDialogflowV2CompleteConversationRequest
980
962
  class Representation < Google::Apis::Core::JsonRepresentation; end
981
963
 
@@ -1012,12 +994,6 @@ module Google
1012
994
  include Google::Apis::Core::JsonObjectSupport
1013
995
  end
1014
996
 
1015
- class GoogleCloudDialogflowV2CreateCallMatcherRequest
1016
- class Representation < Google::Apis::Core::JsonRepresentation; end
1017
-
1018
- include Google::Apis::Core::JsonObjectSupport
1019
- end
1020
-
1021
997
  class GoogleCloudDialogflowV2DetectIntentRequest
1022
998
  class Representation < Google::Apis::Core::JsonRepresentation; end
1023
999
 
@@ -1186,24 +1162,6 @@ module Google
1186
1162
  include Google::Apis::Core::JsonObjectSupport
1187
1163
  end
1188
1164
 
1189
- class GoogleCloudDialogflowV2HumanAgentHandoffConfig
1190
- class Representation < Google::Apis::Core::JsonRepresentation; end
1191
-
1192
- include Google::Apis::Core::JsonObjectSupport
1193
- end
1194
-
1195
- class GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig
1196
- class Representation < Google::Apis::Core::JsonRepresentation; end
1197
-
1198
- include Google::Apis::Core::JsonObjectSupport
1199
- end
1200
-
1201
- class GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig
1202
- class Representation < Google::Apis::Core::JsonRepresentation; end
1203
-
1204
- include Google::Apis::Core::JsonObjectSupport
1205
- end
1206
-
1207
1165
  class GoogleCloudDialogflowV2ImportAgentRequest
1208
1166
  class Representation < Google::Apis::Core::JsonRepresentation; end
1209
1167
 
@@ -1438,12 +1396,6 @@ module Google
1438
1396
  include Google::Apis::Core::JsonObjectSupport
1439
1397
  end
1440
1398
 
1441
- class GoogleCloudDialogflowV2ListCallMatchersResponse
1442
- class Representation < Google::Apis::Core::JsonRepresentation; end
1443
-
1444
- include Google::Apis::Core::JsonObjectSupport
1445
- end
1446
-
1447
1399
  class GoogleCloudDialogflowV2ListContextsResponse
1448
1400
  class Representation < Google::Apis::Core::JsonRepresentation; end
1449
1401
 
@@ -3616,8 +3568,6 @@ module Google
3616
3568
  class GoogleCloudDialogflowV2AnalyzeContentRequest
3617
3569
  # @private
3618
3570
  class Representation < Google::Apis::Core::JsonRepresentation
3619
- property :audio_input, as: 'audioInput', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput::Representation
3620
-
3621
3571
  property :event_input, as: 'eventInput', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput::Representation
3622
3572
 
3623
3573
  property :query_params, as: 'queryParams', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters::Representation
@@ -3694,15 +3644,6 @@ module Google
3694
3644
  end
3695
3645
  end
3696
3646
 
3697
- class GoogleCloudDialogflowV2AudioInput
3698
- # @private
3699
- class Representation < Google::Apis::Core::JsonRepresentation
3700
- property :audio, :base64 => true, as: 'audio'
3701
- property :config, as: 'config', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputAudioConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputAudioConfig::Representation
3702
-
3703
- end
3704
- end
3705
-
3706
3647
  class GoogleCloudDialogflowV2AutomatedAgentConfig
3707
3648
  # @private
3708
3649
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3799,25 +3740,6 @@ module Google
3799
3740
  end
3800
3741
  end
3801
3742
 
3802
- class GoogleCloudDialogflowV2CallMatcher
3803
- # @private
3804
- class Representation < Google::Apis::Core::JsonRepresentation
3805
- property :call_id_header, as: 'callIdHeader'
3806
- property :custom_headers, as: 'customHeaders', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcherCustomHeaders, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcherCustomHeaders::Representation
3807
-
3808
- property :from_header, as: 'fromHeader'
3809
- property :name, as: 'name'
3810
- property :to_header, as: 'toHeader'
3811
- end
3812
- end
3813
-
3814
- class GoogleCloudDialogflowV2CallMatcherCustomHeaders
3815
- # @private
3816
- class Representation < Google::Apis::Core::JsonRepresentation
3817
- property :cisco_guid, as: 'ciscoGuid'
3818
- end
3819
- end
3820
-
3821
3743
  class GoogleCloudDialogflowV2CompleteConversationRequest
3822
3744
  # @private
3823
3745
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3875,8 +3797,6 @@ module Google
3875
3797
  property :display_name, as: 'displayName'
3876
3798
  property :human_agent_assistant_config, as: 'humanAgentAssistantConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfig::Representation
3877
3799
 
3878
- property :human_agent_handoff_config, as: 'humanAgentHandoffConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfig::Representation
3879
-
3880
3800
  property :language_code, as: 'languageCode'
3881
3801
  property :logging_config, as: 'loggingConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2LoggingConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2LoggingConfig::Representation
3882
3802
 
@@ -3891,14 +3811,6 @@ module Google
3891
3811
  end
3892
3812
  end
3893
3813
 
3894
- class GoogleCloudDialogflowV2CreateCallMatcherRequest
3895
- # @private
3896
- class Representation < Google::Apis::Core::JsonRepresentation
3897
- property :call_matcher, as: 'callMatcher', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcher, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcher::Representation
3898
-
3899
- end
3900
- end
3901
-
3902
3814
  class GoogleCloudDialogflowV2DetectIntentRequest
3903
3815
  # @private
3904
3816
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4069,8 +3981,6 @@ module Google
4069
3981
  class GoogleCloudDialogflowV2HumanAgentAssistantConfig
4070
3982
  # @private
4071
3983
  class Representation < Google::Apis::Core::JsonRepresentation
4072
- property :end_user_suggestion_config, as: 'endUserSuggestionConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig::Representation
4073
-
4074
3984
  property :human_agent_suggestion_config, as: 'humanAgentSuggestionConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig::Representation
4075
3985
 
4076
3986
  property :message_analysis_config, as: 'messageAnalysisConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig::Representation
@@ -4090,7 +4000,6 @@ module Google
4090
4000
  class GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig
4091
4001
  # @private
4092
4002
  class Representation < Google::Apis::Core::JsonRepresentation
4093
- property :enable_entity_extraction, as: 'enableEntityExtraction'
4094
4003
  property :enable_sentiment_analysis, as: 'enableSentimentAnalysis'
4095
4004
  end
4096
4005
  end
@@ -4183,33 +4092,6 @@ module Google
4183
4092
  end
4184
4093
  end
4185
4094
 
4186
- class GoogleCloudDialogflowV2HumanAgentHandoffConfig
4187
- # @private
4188
- class Representation < Google::Apis::Core::JsonRepresentation
4189
- property :live_person_config, as: 'livePersonConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig::Representation
4190
-
4191
- property :salesforce_live_agent_config, as: 'salesforceLiveAgentConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig::Representation
4192
-
4193
- end
4194
- end
4195
-
4196
- class GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig
4197
- # @private
4198
- class Representation < Google::Apis::Core::JsonRepresentation
4199
- property :account_number, as: 'accountNumber'
4200
- end
4201
- end
4202
-
4203
- class GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig
4204
- # @private
4205
- class Representation < Google::Apis::Core::JsonRepresentation
4206
- property :button_id, as: 'buttonId'
4207
- property :deployment_id, as: 'deploymentId'
4208
- property :endpoint_domain, as: 'endpointDomain'
4209
- property :organization_id, as: 'organizationId'
4210
- end
4211
- end
4212
-
4213
4095
  class GoogleCloudDialogflowV2ImportAgentRequest
4214
4096
  # @private
4215
4097
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4629,15 +4511,6 @@ module Google
4629
4511
  end
4630
4512
  end
4631
4513
 
4632
- class GoogleCloudDialogflowV2ListCallMatchersResponse
4633
- # @private
4634
- class Representation < Google::Apis::Core::JsonRepresentation
4635
- collection :call_matchers, as: 'callMatchers', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcher, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2CallMatcher::Representation
4636
-
4637
- property :next_page_token, as: 'nextPageToken'
4638
- end
4639
- end
4640
-
4641
4514
  class GoogleCloudDialogflowV2ListContextsResponse
4642
4515
  # @private
4643
4516
  class Representation < Google::Apis::Core::JsonRepresentation