google-apis-dialogflow_v3beta1 0.92.0 → 0.94.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +81 -163
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +7 -71
- data/lib/google/apis/dialogflow_v3beta1/service.rb +0 -104
- metadata +4 -7
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: a406a2f81ad668124c160f8ab3f21be2a539fabcabcc4c1383b383767993df17
         | 
| 4 | 
            +
              data.tar.gz: c7b3d1b1f8992f07c1dc557e04ed7d201d5bc3c8fa394c2c34365ee72d477c10
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: e5a60c6b275def86e573c70b99a57d97813b578cf4bc70611b47aa9e397ec73872b7e3237d76e90fec33778ab8077d9187aa17741c0a9d990e280983cba0ab00
         | 
| 7 | 
            +
              data.tar.gz: 6c972dbcf1fee253a5748e547bbdadacb36488c8ba3c6ce0321c396347fd8383b594d8ca66c1af202b9390e9bc20623820a4980153698619cfb77fcd2c4f363b
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,14 @@ | |
| 1 1 | 
             
            # Release history for google-apis-dialogflow_v3beta1
         | 
| 2 2 |  | 
| 3 | 
            +
            ### v0.94.0 (2025-03-02)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Regenerated from discovery document revision 20250221
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### v0.93.0 (2025-01-12)
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * Regenerated from discovery document revision 20250103
         | 
| 10 | 
            +
            * Regenerated using generator version 0.16.0
         | 
| 11 | 
            +
             | 
| 3 12 | 
             
            ### v0.92.0 (2024-12-22)
         | 
| 4 13 |  | 
| 5 14 | 
             
            * Regenerated from discovery document revision 20241216
         | 
| @@ -174,8 +174,8 @@ module Google | |
| 174 174 | 
             
                    # @return [String]
         | 
| 175 175 | 
             
                    attr_accessor :no_speech_timeout
         | 
| 176 176 |  | 
| 177 | 
            -
                    # Use timeout based endpointing, interpreting endpointer  | 
| 178 | 
            -
                    # timeout value.
         | 
| 177 | 
            +
                    # Use timeout based endpointing, interpreting endpointer sensitivity as seconds
         | 
| 178 | 
            +
                    # of timeout value.
         | 
| 179 179 | 
             
                    # Corresponds to the JSON property `useTimeoutBasedEndpointing`
         | 
| 180 180 | 
             
                    # @return [Boolean]
         | 
| 181 181 | 
             
                    attr_accessor :use_timeout_based_endpointing
         | 
| @@ -547,6 +547,13 @@ module Google | |
| 547 547 | 
             
                    # @return [String]
         | 
| 548 548 | 
             
                    attr_accessor :data_store_type
         | 
| 549 549 |  | 
| 550 | 
            +
                    # The document processing mode for the data store connection. Should only be set
         | 
| 551 | 
            +
                    # for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
         | 
| 552 | 
            +
                    # DOCUMENTS, as this is the legacy mode.
         | 
| 553 | 
            +
                    # Corresponds to the JSON property `documentProcessingMode`
         | 
| 554 | 
            +
                    # @return [String]
         | 
| 555 | 
            +
                    attr_accessor :document_processing_mode
         | 
| 556 | 
            +
                  
         | 
| 550 557 | 
             
                    def initialize(**args)
         | 
| 551 558 | 
             
                       update!(**args)
         | 
| 552 559 | 
             
                    end
         | 
| @@ -555,6 +562,7 @@ module Google | |
| 555 562 | 
             
                    def update!(**args)
         | 
| 556 563 | 
             
                      @data_store = args[:data_store] if args.key?(:data_store)
         | 
| 557 564 | 
             
                      @data_store_type = args[:data_store_type] if args.key?(:data_store_type)
         | 
| 565 | 
            +
                      @document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
         | 
| 558 566 | 
             
                    end
         | 
| 559 567 | 
             
                  end
         | 
| 560 568 |  | 
| @@ -2134,7 +2142,7 @@ module Google | |
| 2134 2142 |  | 
| 2135 2143 | 
             
                    # A list of transitions for the transition rules of this page. They route the
         | 
| 2136 2144 | 
             
                    # conversation to another page in the same flow, or another flow. When we are in
         | 
| 2137 | 
            -
                    # a certain page, the TransitionRoutes are  | 
| 2145 | 
            +
                    # a certain page, the TransitionRoutes are evaluated in the following order: *
         | 
| 2138 2146 | 
             
                    # TransitionRoutes defined in the page with intent specified. * TransitionRoutes
         | 
| 2139 2147 | 
             
                    # defined in the transition route groups with intent specified. *
         | 
| 2140 2148 | 
             
                    # TransitionRoutes defined in flow with intent specified. * TransitionRoutes
         | 
| @@ -3390,7 +3398,7 @@ module Google | |
| 3390 3398 | 
             
                    # @return [String]
         | 
| 3391 3399 | 
             
                    attr_accessor :client_id
         | 
| 3392 3400 |  | 
| 3393 | 
            -
                    #  | 
| 3401 | 
            +
                    # Optional. The client secret provided by the 3rd party platform.
         | 
| 3394 3402 | 
             
                    # Corresponds to the JSON property `clientSecret`
         | 
| 3395 3403 | 
             
                    # @return [String]
         | 
| 3396 3404 | 
             
                    attr_accessor :client_secret
         | 
| @@ -3947,8 +3955,8 @@ module Google | |
| 3947 3955 | 
             
                    # @return [String]
         | 
| 3948 3956 | 
             
                    attr_accessor :no_speech_timeout
         | 
| 3949 3957 |  | 
| 3950 | 
            -
                    # Use timeout based endpointing, interpreting endpointer  | 
| 3951 | 
            -
                    # timeout value.
         | 
| 3958 | 
            +
                    # Use timeout based endpointing, interpreting endpointer sensitivity as seconds
         | 
| 3959 | 
            +
                    # of timeout value.
         | 
| 3952 3960 | 
             
                    # Corresponds to the JSON property `useTimeoutBasedEndpointing`
         | 
| 3953 3961 | 
             
                    # @return [Boolean]
         | 
| 3954 3962 | 
             
                    attr_accessor :use_timeout_based_endpointing
         | 
| @@ -4078,6 +4086,20 @@ module Google | |
| 4078 4086 | 
             
                    # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings]
         | 
| 4079 4087 | 
             
                    attr_accessor :personalization_settings
         | 
| 4080 4088 |  | 
| 4089 | 
            +
                    # Optional. Output only. A read only boolean field reflecting Zone Isolation
         | 
| 4090 | 
            +
                    # status of the agent.
         | 
| 4091 | 
            +
                    # Corresponds to the JSON property `satisfiesPzi`
         | 
| 4092 | 
            +
                    # @return [Boolean]
         | 
| 4093 | 
            +
                    attr_accessor :satisfies_pzi
         | 
| 4094 | 
            +
                    alias_method :satisfies_pzi?, :satisfies_pzi
         | 
| 4095 | 
            +
                  
         | 
| 4096 | 
            +
                    # Optional. Output only. A read only boolean field reflecting Zone Separation
         | 
| 4097 | 
            +
                    # status of the agent.
         | 
| 4098 | 
            +
                    # Corresponds to the JSON property `satisfiesPzs`
         | 
| 4099 | 
            +
                    # @return [Boolean]
         | 
| 4100 | 
            +
                    attr_accessor :satisfies_pzs
         | 
| 4101 | 
            +
                    alias_method :satisfies_pzs?, :satisfies_pzs
         | 
| 4102 | 
            +
                  
         | 
| 4081 4103 | 
             
                    # Name of the SecuritySettings reference for the agent. Format: `projects//
         | 
| 4082 4104 | 
             
                    # locations//securitySettings/`.
         | 
| 4083 4105 | 
             
                    # Corresponds to the JSON property `securitySettings`
         | 
| @@ -4145,6 +4167,8 @@ module Google | |
| 4145 4167 | 
             
                      @locked = args[:locked] if args.key?(:locked)
         | 
| 4146 4168 | 
             
                      @name = args[:name] if args.key?(:name)
         | 
| 4147 4169 | 
             
                      @personalization_settings = args[:personalization_settings] if args.key?(:personalization_settings)
         | 
| 4170 | 
            +
                      @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
         | 
| 4171 | 
            +
                      @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
         | 
| 4148 4172 | 
             
                      @security_settings = args[:security_settings] if args.key?(:security_settings)
         | 
| 4149 4173 | 
             
                      @speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
         | 
| 4150 4174 | 
             
                      @start_flow = args[:start_flow] if args.key?(:start_flow)
         | 
| @@ -4613,7 +4637,7 @@ module Google | |
| 4613 4637 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 4614 4638 |  | 
| 4615 4639 | 
             
                    # Optional. Condition boost specifications. If a document matches multiple
         | 
| 4616 | 
            -
                    # conditions in the  | 
| 4640 | 
            +
                    # conditions in the specifications, boost scores from these specifications are
         | 
| 4617 4641 | 
             
                    # all applied and combined in a non-linear way. Maximum number of specifications
         | 
| 4618 4642 | 
             
                    # is 20.
         | 
| 4619 4643 | 
             
                    # Corresponds to the JSON property `conditionBoostSpecs`
         | 
| @@ -5588,6 +5612,13 @@ module Google | |
| 5588 5612 | 
             
                    # @return [String]
         | 
| 5589 5613 | 
             
                    attr_accessor :data_store_type
         | 
| 5590 5614 |  | 
| 5615 | 
            +
                    # The document processing mode for the data store connection. Should only be set
         | 
| 5616 | 
            +
                    # for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
         | 
| 5617 | 
            +
                    # DOCUMENTS, as this is the legacy mode.
         | 
| 5618 | 
            +
                    # Corresponds to the JSON property `documentProcessingMode`
         | 
| 5619 | 
            +
                    # @return [String]
         | 
| 5620 | 
            +
                    attr_accessor :document_processing_mode
         | 
| 5621 | 
            +
                  
         | 
| 5591 5622 | 
             
                    def initialize(**args)
         | 
| 5592 5623 | 
             
                       update!(**args)
         | 
| 5593 5624 | 
             
                    end
         | 
| @@ -5596,6 +5627,7 @@ module Google | |
| 5596 5627 | 
             
                    def update!(**args)
         | 
| 5597 5628 | 
             
                      @data_store = args[:data_store] if args.key?(:data_store)
         | 
| 5598 5629 | 
             
                      @data_store_type = args[:data_store_type] if args.key?(:data_store_type)
         | 
| 5630 | 
            +
                      @document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
         | 
| 5599 5631 | 
             
                    end
         | 
| 5600 5632 | 
             
                  end
         | 
| 5601 5633 |  | 
| @@ -7248,38 +7280,6 @@ module Google | |
| 7248 7280 | 
             
                    end
         | 
| 7249 7281 | 
             
                  end
         | 
| 7250 7282 |  | 
| 7251 | 
            -
                  # The request message for Playbooks.ExportPlaybook.
         | 
| 7252 | 
            -
                  class GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest
         | 
| 7253 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 7254 | 
            -
                  
         | 
| 7255 | 
            -
                    # Optional. The data format of the exported agent. If not specified, `BLOB` is
         | 
| 7256 | 
            -
                    # assumed.
         | 
| 7257 | 
            -
                    # Corresponds to the JSON property `dataFormat`
         | 
| 7258 | 
            -
                    # @return [String]
         | 
| 7259 | 
            -
                    attr_accessor :data_format
         | 
| 7260 | 
            -
                  
         | 
| 7261 | 
            -
                    # Optional. The [Google Cloud Storage](https://cloud.google.com/storage/docs/)
         | 
| 7262 | 
            -
                    # URI to export the playbook to. The format of this URI must be `gs:///`. If
         | 
| 7263 | 
            -
                    # left unspecified, the serialized playbook is returned inline. Dialogflow
         | 
| 7264 | 
            -
                    # performs a write operation for the Cloud Storage object on the caller's behalf,
         | 
| 7265 | 
            -
                    # so your request authentication must have write permissions for the object.
         | 
| 7266 | 
            -
                    # For more information, see [Dialogflow access control](https://cloud.google.com/
         | 
| 7267 | 
            -
                    # dialogflow/cx/docs/concept/access-control#storage).
         | 
| 7268 | 
            -
                    # Corresponds to the JSON property `playbookUri`
         | 
| 7269 | 
            -
                    # @return [String]
         | 
| 7270 | 
            -
                    attr_accessor :playbook_uri
         | 
| 7271 | 
            -
                  
         | 
| 7272 | 
            -
                    def initialize(**args)
         | 
| 7273 | 
            -
                       update!(**args)
         | 
| 7274 | 
            -
                    end
         | 
| 7275 | 
            -
                  
         | 
| 7276 | 
            -
                    # Update properties of this object
         | 
| 7277 | 
            -
                    def update!(**args)
         | 
| 7278 | 
            -
                      @data_format = args[:data_format] if args.key?(:data_format)
         | 
| 7279 | 
            -
                      @playbook_uri = args[:playbook_uri] if args.key?(:playbook_uri)
         | 
| 7280 | 
            -
                    end
         | 
| 7281 | 
            -
                  end
         | 
| 7282 | 
            -
                  
         | 
| 7283 7283 | 
             
                  # Metadata returned for the TestCases.ExportTestCases long running operation.
         | 
| 7284 7284 | 
             
                  # This message currently has no fields.
         | 
| 7285 7285 | 
             
                  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
         | 
| @@ -7530,7 +7530,7 @@ module Google | |
| 7530 7530 | 
             
                    # every page's transition routes and can support use cases such as the user
         | 
| 7531 7531 | 
             
                    # saying "help" or "can I talk to a human?", which can be handled in a common
         | 
| 7532 7532 | 
             
                    # way regardless of the current page. Transition routes defined in the page have
         | 
| 7533 | 
            -
                    # higher priority than those defined in the flow. TransitionRoutes are  | 
| 7533 | 
            +
                    # higher priority than those defined in the flow. TransitionRoutes are evaluated
         | 
| 7534 7534 | 
             
                    # in the following order: * TransitionRoutes with intent specified. *
         | 
| 7535 7535 | 
             
                    # TransitionRoutes with only condition specified. TransitionRoutes with intent
         | 
| 7536 7536 | 
             
                    # specified are inherited by pages in the flow.
         | 
| @@ -8745,40 +8745,6 @@ module Google | |
| 8745 8745 | 
             
                    end
         | 
| 8746 8746 | 
             
                  end
         | 
| 8747 8747 |  | 
| 8748 | 
            -
                  # The request message for Playbooks.ImportPlaybook.
         | 
| 8749 | 
            -
                  class GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest
         | 
| 8750 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 8751 | 
            -
                  
         | 
| 8752 | 
            -
                    # The playbook import strategy used for resource conflict resolution associated
         | 
| 8753 | 
            -
                    # with an ImportPlaybookRequest.
         | 
| 8754 | 
            -
                    # Corresponds to the JSON property `importStrategy`
         | 
| 8755 | 
            -
                    # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy]
         | 
| 8756 | 
            -
                    attr_accessor :import_strategy
         | 
| 8757 | 
            -
                  
         | 
| 8758 | 
            -
                    # Uncompressed raw byte content for playbook.
         | 
| 8759 | 
            -
                    # Corresponds to the JSON property `playbookContent`
         | 
| 8760 | 
            -
                    # NOTE: Values are automatically base64 encoded/decoded in the client library.
         | 
| 8761 | 
            -
                    # @return [String]
         | 
| 8762 | 
            -
                    attr_accessor :playbook_content
         | 
| 8763 | 
            -
                  
         | 
| 8764 | 
            -
                    # [Dialogflow access control] (https://cloud.google.com/dialogflow/cx/docs/
         | 
| 8765 | 
            -
                    # concept/access-control#storage).
         | 
| 8766 | 
            -
                    # Corresponds to the JSON property `playbookUri`
         | 
| 8767 | 
            -
                    # @return [String]
         | 
| 8768 | 
            -
                    attr_accessor :playbook_uri
         | 
| 8769 | 
            -
                  
         | 
| 8770 | 
            -
                    def initialize(**args)
         | 
| 8771 | 
            -
                       update!(**args)
         | 
| 8772 | 
            -
                    end
         | 
| 8773 | 
            -
                  
         | 
| 8774 | 
            -
                    # Update properties of this object
         | 
| 8775 | 
            -
                    def update!(**args)
         | 
| 8776 | 
            -
                      @import_strategy = args[:import_strategy] if args.key?(:import_strategy)
         | 
| 8777 | 
            -
                      @playbook_content = args[:playbook_content] if args.key?(:playbook_content)
         | 
| 8778 | 
            -
                      @playbook_uri = args[:playbook_uri] if args.key?(:playbook_uri)
         | 
| 8779 | 
            -
                    end
         | 
| 8780 | 
            -
                  end
         | 
| 8781 | 
            -
                  
         | 
| 8782 8748 | 
             
                  # Metadata returned for the TestCases.ImportTestCases long running operation.
         | 
| 8783 8749 | 
             
                  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
         | 
| 8784 8750 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -10410,7 +10376,7 @@ module Google | |
| 10410 10376 |  | 
| 10411 10377 | 
             
                    # A list of transitions for the transition rules of this page. They route the
         | 
| 10412 10378 | 
             
                    # conversation to another page in the same flow, or another flow. When we are in
         | 
| 10413 | 
            -
                    # a certain page, the TransitionRoutes are  | 
| 10379 | 
            +
                    # a certain page, the TransitionRoutes are evaluated in the following order: *
         | 
| 10414 10380 | 
             
                    # TransitionRoutes defined in the page with intent specified. * TransitionRoutes
         | 
| 10415 10381 | 
             
                    # defined in the transition route groups with intent specified. *
         | 
| 10416 10382 | 
             
                    # TransitionRoutes defined in flow with intent specified. * TransitionRoutes
         | 
| @@ -10627,6 +10593,8 @@ module Google | |
| 10627 10593 | 
             
                    attr_accessor :display_name
         | 
| 10628 10594 |  | 
| 10629 10595 | 
             
                    # Required. High level description of the goal the playbook intend to accomplish.
         | 
| 10596 | 
            +
                    # A goal should be concise since it's visible to other playbooks that may
         | 
| 10597 | 
            +
                    # reference this playbook.
         | 
| 10630 10598 | 
             
                    # Corresponds to the JSON property `goal`
         | 
| 10631 10599 | 
             
                    # @return [String]
         | 
| 10632 10600 | 
             
                    attr_accessor :goal
         | 
| @@ -10676,6 +10644,11 @@ module Google | |
| 10676 10644 | 
             
                    # @return [Array<String>]
         | 
| 10677 10645 | 
             
                    attr_accessor :referenced_tools
         | 
| 10678 10646 |  | 
| 10647 | 
            +
                    # Define behaviors of speech to text detection.
         | 
| 10648 | 
            +
                    # Corresponds to the JSON property `speechSettings`
         | 
| 10649 | 
            +
                    # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings]
         | 
| 10650 | 
            +
                    attr_accessor :speech_settings
         | 
| 10651 | 
            +
                  
         | 
| 10679 10652 | 
             
                    # Output only. Estimated number of tokes current playbook takes when sent to the
         | 
| 10680 10653 | 
             
                    # LLM.
         | 
| 10681 10654 | 
             
                    # Corresponds to the JSON property `tokenCount`
         | 
| @@ -10704,48 +10677,12 @@ module Google | |
| 10704 10677 | 
             
                      @referenced_flows = args[:referenced_flows] if args.key?(:referenced_flows)
         | 
| 10705 10678 | 
             
                      @referenced_playbooks = args[:referenced_playbooks] if args.key?(:referenced_playbooks)
         | 
| 10706 10679 | 
             
                      @referenced_tools = args[:referenced_tools] if args.key?(:referenced_tools)
         | 
| 10680 | 
            +
                      @speech_settings = args[:speech_settings] if args.key?(:speech_settings)
         | 
| 10707 10681 | 
             
                      @token_count = args[:token_count] if args.key?(:token_count)
         | 
| 10708 10682 | 
             
                      @update_time = args[:update_time] if args.key?(:update_time)
         | 
| 10709 10683 | 
             
                    end
         | 
| 10710 10684 | 
             
                  end
         | 
| 10711 10685 |  | 
| 10712 | 
            -
                  # The playbook import strategy used for resource conflict resolution associated
         | 
| 10713 | 
            -
                  # with an ImportPlaybookRequest.
         | 
| 10714 | 
            -
                  class GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy
         | 
| 10715 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 10716 | 
            -
                  
         | 
| 10717 | 
            -
                    # Optional. Specifies the import strategy used when resolving conflicts with the
         | 
| 10718 | 
            -
                    # main playbook. If not specified, 'CREATE_NEW' is assumed.
         | 
| 10719 | 
            -
                    # Corresponds to the JSON property `mainPlaybookImportStrategy`
         | 
| 10720 | 
            -
                    # @return [String]
         | 
| 10721 | 
            -
                    attr_accessor :main_playbook_import_strategy
         | 
| 10722 | 
            -
                  
         | 
| 10723 | 
            -
                    # Optional. Specifies the import strategy used when resolving referenced
         | 
| 10724 | 
            -
                    # playbook/flow conflicts. If not specified, 'CREATE_NEW' is assumed.
         | 
| 10725 | 
            -
                    # Corresponds to the JSON property `nestedResourceImportStrategy`
         | 
| 10726 | 
            -
                    # @return [String]
         | 
| 10727 | 
            -
                    attr_accessor :nested_resource_import_strategy
         | 
| 10728 | 
            -
                  
         | 
| 10729 | 
            -
                    # Optional. Specifies the import strategy used when resolving tool conflicts. If
         | 
| 10730 | 
            -
                    # not specified, 'CREATE_NEW' is assumed. This will be applied after the main
         | 
| 10731 | 
            -
                    # playbook and nested resource import strategies, meaning if the playbook that
         | 
| 10732 | 
            -
                    # references the tool is skipped, the tool will also be skipped.
         | 
| 10733 | 
            -
                    # Corresponds to the JSON property `toolImportStrategy`
         | 
| 10734 | 
            -
                    # @return [String]
         | 
| 10735 | 
            -
                    attr_accessor :tool_import_strategy
         | 
| 10736 | 
            -
                  
         | 
| 10737 | 
            -
                    def initialize(**args)
         | 
| 10738 | 
            -
                       update!(**args)
         | 
| 10739 | 
            -
                    end
         | 
| 10740 | 
            -
                  
         | 
| 10741 | 
            -
                    # Update properties of this object
         | 
| 10742 | 
            -
                    def update!(**args)
         | 
| 10743 | 
            -
                      @main_playbook_import_strategy = args[:main_playbook_import_strategy] if args.key?(:main_playbook_import_strategy)
         | 
| 10744 | 
            -
                      @nested_resource_import_strategy = args[:nested_resource_import_strategy] if args.key?(:nested_resource_import_strategy)
         | 
| 10745 | 
            -
                      @tool_import_strategy = args[:tool_import_strategy] if args.key?(:tool_import_strategy)
         | 
| 10746 | 
            -
                    end
         | 
| 10747 | 
            -
                  end
         | 
| 10748 | 
            -
                  
         | 
| 10749 10686 | 
             
                  # Input of the playbook.
         | 
| 10750 10687 | 
             
                  class GoogleCloudDialogflowCxV3beta1PlaybookInput
         | 
| 10751 10688 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -10776,6 +10713,13 @@ module Google | |
| 10776 10713 | 
             
                  class GoogleCloudDialogflowCxV3beta1PlaybookInstruction
         | 
| 10777 10714 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 10778 10715 |  | 
| 10716 | 
            +
                    # General guidelines for the playbook. These are unstructured instructions that
         | 
| 10717 | 
            +
                    # are not directly part of the goal, e.g. "Always be polite". It's valid for
         | 
| 10718 | 
            +
                    # this text to be long and used instead of steps altogether.
         | 
| 10719 | 
            +
                    # Corresponds to the JSON property `guidelines`
         | 
| 10720 | 
            +
                    # @return [String]
         | 
| 10721 | 
            +
                    attr_accessor :guidelines
         | 
| 10722 | 
            +
                  
         | 
| 10779 10723 | 
             
                    # Ordered list of step by step execution instructions to accomplish target goal.
         | 
| 10780 10724 | 
             
                    # Corresponds to the JSON property `steps`
         | 
| 10781 10725 | 
             
                    # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookStep>]
         | 
| @@ -10787,6 +10731,7 @@ module Google | |
| 10787 10731 |  | 
| 10788 10732 | 
             
                    # Update properties of this object
         | 
| 10789 10733 | 
             
                    def update!(**args)
         | 
| 10734 | 
            +
                      @guidelines = args[:guidelines] if args.key?(:guidelines)
         | 
| 10790 10735 | 
             
                      @steps = args[:steps] if args.key?(:steps)
         | 
| 10791 10736 | 
             
                    end
         | 
| 10792 10737 | 
             
                  end
         | 
| @@ -11866,43 +11811,6 @@ module Google | |
| 11866 11811 | 
             
                    end
         | 
| 11867 11812 | 
             
                  end
         | 
| 11868 11813 |  | 
| 11869 | 
            -
                  # The request message for Playbooks.RestorePlaybookVersion.
         | 
| 11870 | 
            -
                  class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest
         | 
| 11871 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 11872 | 
            -
                  
         | 
| 11873 | 
            -
                    def initialize(**args)
         | 
| 11874 | 
            -
                       update!(**args)
         | 
| 11875 | 
            -
                    end
         | 
| 11876 | 
            -
                  
         | 
| 11877 | 
            -
                    # Update properties of this object
         | 
| 11878 | 
            -
                    def update!(**args)
         | 
| 11879 | 
            -
                    end
         | 
| 11880 | 
            -
                  end
         | 
| 11881 | 
            -
                  
         | 
| 11882 | 
            -
                  # The response message for Playbooks.RestorePlaybookVersion.
         | 
| 11883 | 
            -
                  class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
         | 
| 11884 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 11885 | 
            -
                  
         | 
| 11886 | 
            -
                    # Playbook is the basic building block to instruct the LLM how to execute a
         | 
| 11887 | 
            -
                    # certain task. A playbook consists of a goal to accomplish, an optional list of
         | 
| 11888 | 
            -
                    # step by step instructions (the step instruction may refers to name of the
         | 
| 11889 | 
            -
                    # custom or default plugin tools to use) to perform the task, a list of
         | 
| 11890 | 
            -
                    # contextual input data to be passed in at the beginning of the invoked, and a
         | 
| 11891 | 
            -
                    # list of output parameters to store the playbook result.
         | 
| 11892 | 
            -
                    # Corresponds to the JSON property `playbook`
         | 
| 11893 | 
            -
                    # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Playbook]
         | 
| 11894 | 
            -
                    attr_accessor :playbook
         | 
| 11895 | 
            -
                  
         | 
| 11896 | 
            -
                    def initialize(**args)
         | 
| 11897 | 
            -
                       update!(**args)
         | 
| 11898 | 
            -
                    end
         | 
| 11899 | 
            -
                  
         | 
| 11900 | 
            -
                    # Update properties of this object
         | 
| 11901 | 
            -
                    def update!(**args)
         | 
| 11902 | 
            -
                      @playbook = args[:playbook] if args.key?(:playbook)
         | 
| 11903 | 
            -
                    end
         | 
| 11904 | 
            -
                  end
         | 
| 11905 | 
            -
                  
         | 
| 11906 11814 | 
             
                  # The configuration for auto rollout.
         | 
| 11907 11815 | 
             
                  class GoogleCloudDialogflowCxV3beta1RolloutConfig
         | 
| 11908 11816 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -12165,12 +12073,18 @@ module Google | |
| 12165 12073 | 
             
                  class GoogleCloudDialogflowCxV3beta1SearchConfig
         | 
| 12166 12074 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 12167 12075 |  | 
| 12168 | 
            -
                    # Optional. Boosting configuration for the datastores.
         | 
| 12076 | 
            +
                    # Optional. Boosting configuration for the datastores. Maps from datastore name
         | 
| 12077 | 
            +
                    # to their boost configuration. Do not specify more than one BoostSpecs for each
         | 
| 12078 | 
            +
                    # datastore name. If multiple BoostSpecs are provided for the same datastore
         | 
| 12079 | 
            +
                    # name, the behavior is undefined.
         | 
| 12169 12080 | 
             
                    # Corresponds to the JSON property `boostSpecs`
         | 
| 12170 12081 | 
             
                    # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1BoostSpecs>]
         | 
| 12171 12082 | 
             
                    attr_accessor :boost_specs
         | 
| 12172 12083 |  | 
| 12173 | 
            -
                    # Optional. Filter configuration for the datastores.
         | 
| 12084 | 
            +
                    # Optional. Filter configuration for the datastores. Maps from datastore name to
         | 
| 12085 | 
            +
                    # the filter expression for that datastore. Do not specify more than one
         | 
| 12086 | 
            +
                    # FilterSpecs for each datastore name. If multiple FilterSpecs are provided for
         | 
| 12087 | 
            +
                    # the same datastore name, the behavior is undefined.
         | 
| 12174 12088 | 
             
                    # Corresponds to the JSON property `filterSpecs`
         | 
| 12175 12089 | 
             
                    # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FilterSpecs>]
         | 
| 12176 12090 | 
             
                    attr_accessor :filter_specs
         | 
| @@ -13003,7 +12917,8 @@ module Google | |
| 13003 12917 | 
             
                  class GoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfig
         | 
| 13004 12918 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 13005 12919 |  | 
| 13006 | 
            -
                    #  | 
| 12920 | 
            +
                    # Optional. The API key. If the `secret_version_for_api_key` field is set, this
         | 
| 12921 | 
            +
                    # field will be ignored.
         | 
| 13007 12922 | 
             
                    # Corresponds to the JSON property `apiKey`
         | 
| 13008 12923 | 
             
                    # @return [String]
         | 
| 13009 12924 | 
             
                    attr_accessor :api_key
         | 
| @@ -13036,7 +12951,7 @@ module Google | |
| 13036 12951 | 
             
                  class GoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfig
         | 
| 13037 12952 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 13038 12953 |  | 
| 13039 | 
            -
                    #  | 
| 12954 | 
            +
                    # Optional. The text token appended to the text `Bearer` to the request
         | 
| 13040 12955 | 
             
                    # Authorization header. [Session parameters reference](https://cloud.google.com/
         | 
| 13041 12956 | 
             
                    # dialogflow/cx/docs/concept/parameter#session-ref) can be used to pass the
         | 
| 13042 12957 | 
             
                    # token dynamically, e.g. `$session.params.parameter-id`.
         | 
| @@ -13063,7 +12978,8 @@ module Google | |
| 13063 12978 | 
             
                    # @return [String]
         | 
| 13064 12979 | 
             
                    attr_accessor :client_id
         | 
| 13065 12980 |  | 
| 13066 | 
            -
                    #  | 
| 12981 | 
            +
                    # Optional. The client secret from the OAuth provider. If the `
         | 
| 12982 | 
            +
                    # secret_version_for_client_secret` field is set, this field will be ignored.
         | 
| 13067 12983 | 
             
                    # Corresponds to the JSON property `clientSecret`
         | 
| 13068 12984 | 
             
                    # @return [String]
         | 
| 13069 12985 | 
             
                    attr_accessor :client_secret
         | 
| @@ -14370,7 +14286,7 @@ module Google | |
| 14370 14286 | 
             
                    # @return [String]
         | 
| 14371 14287 | 
             
                    attr_accessor :client_id
         | 
| 14372 14288 |  | 
| 14373 | 
            -
                    #  | 
| 14289 | 
            +
                    # Optional. The client secret provided by the 3rd party platform.
         | 
| 14374 14290 | 
             
                    # Corresponds to the JSON property `clientSecret`
         | 
| 14375 14291 | 
             
                    # @return [String]
         | 
| 14376 14292 | 
             
                    attr_accessor :client_secret
         | 
| @@ -17240,7 +17156,8 @@ module Google | |
| 17240 17156 | 
             
                    # @return [String]
         | 
| 17241 17157 | 
             
                    attr_accessor :participant_role
         | 
| 17242 17158 |  | 
| 17243 | 
            -
                    # Optional. The time when the message was sent.
         | 
| 17159 | 
            +
                    # Optional. The time when the message was sent. For voice messages, this is the
         | 
| 17160 | 
            +
                    # time when an utterance started.
         | 
| 17244 17161 | 
             
                    # Corresponds to the JSON property `sendTime`
         | 
| 17245 17162 | 
             
                    # @return [String]
         | 
| 17246 17163 | 
             
                    attr_accessor :send_time
         | 
| @@ -20954,7 +20871,8 @@ module Google | |
| 20954 20871 | 
             
                    # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ResponseMessage>]
         | 
| 20955 20872 | 
             
                    attr_accessor :response_messages
         | 
| 20956 20873 |  | 
| 20957 | 
            -
                    # Optional. The time when the message was sent.
         | 
| 20874 | 
            +
                    # Optional. The time when the message was sent. For voice messages, this is the
         | 
| 20875 | 
            +
                    # time when an utterance started.
         | 
| 20958 20876 | 
             
                    # Corresponds to the JSON property `sendTime`
         | 
| 20959 20877 | 
             
                    # @return [String]
         | 
| 20960 20878 | 
             
                    attr_accessor :send_time
         | 
| @@ -21241,9 +21159,9 @@ module Google | |
| 21241 21159 | 
             
                    # Dialogflow only uses this to determine which conversations were handed off to
         | 
| 21242 21160 | 
             
                    # a human agent for measurement purposes. What else to do with this signal is up
         | 
| 21243 21161 | 
             
                    # to you and your handoff procedures. You may set this, for example: * In the
         | 
| 21244 | 
            -
                    # entry fulfillment of a CX Page if entering the page indicates | 
| 21245 | 
            -
                    # extremely wrong in the conversation. * In a webhook response | 
| 21246 | 
            -
                    # determine that the customer issue can only be handled by a human.
         | 
| 21162 | 
            +
                    # entry fulfillment of a Dialogflow CX Page if entering the page indicates
         | 
| 21163 | 
            +
                    # something went extremely wrong in the conversation. * In a webhook response
         | 
| 21164 | 
            +
                    # when you determine that the customer issue can only be handled by a human.
         | 
| 21247 21165 | 
             
                    # Corresponds to the JSON property `liveAgentHandoff`
         | 
| 21248 21166 | 
             
                    # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
         | 
| 21249 21167 | 
             
                    attr_accessor :live_agent_handoff
         | 
| @@ -21302,9 +21220,9 @@ module Google | |
| 21302 21220 | 
             
                  # Dialogflow only uses this to determine which conversations were handed off to
         | 
| 21303 21221 | 
             
                  # a human agent for measurement purposes. What else to do with this signal is up
         | 
| 21304 21222 | 
             
                  # to you and your handoff procedures. You may set this, for example: * In the
         | 
| 21305 | 
            -
                  # entry fulfillment of a CX Page if entering the page indicates | 
| 21306 | 
            -
                  # extremely wrong in the conversation. * In a webhook response | 
| 21307 | 
            -
                  # determine that the customer issue can only be handled by a human.
         | 
| 21223 | 
            +
                  # entry fulfillment of a Dialogflow CX Page if entering the page indicates
         | 
| 21224 | 
            +
                  # something went extremely wrong in the conversation. * In a webhook response
         | 
| 21225 | 
            +
                  # when you determine that the customer issue can only be handled by a human.
         | 
| 21308 21226 | 
             
                  class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
         | 
| 21309 21227 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 21310 21228 |  | 
| @@ -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. | 
| 19 | 
            +
                  GEM_VERSION = "0.94.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 | 
            -
                  GENERATOR_VERSION = "0. | 
| 22 | 
            +
                  GENERATOR_VERSION = "0.16.0"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20250221"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -1156,12 +1156,6 @@ module Google | |
| 1156 1156 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1157 1157 | 
             
                  end
         | 
| 1158 1158 |  | 
| 1159 | 
            -
                  class GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest
         | 
| 1160 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1161 | 
            -
                  
         | 
| 1162 | 
            -
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1163 | 
            -
                  end
         | 
| 1164 | 
            -
                  
         | 
| 1165 1159 | 
             
                  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
         | 
| 1166 1160 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1167 1161 |  | 
| @@ -1396,12 +1390,6 @@ module Google | |
| 1396 1390 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1397 1391 | 
             
                  end
         | 
| 1398 1392 |  | 
| 1399 | 
            -
                  class GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest
         | 
| 1400 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1401 | 
            -
                  
         | 
| 1402 | 
            -
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1403 | 
            -
                  end
         | 
| 1404 | 
            -
                  
         | 
| 1405 1393 | 
             
                  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
         | 
| 1406 1394 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1407 1395 |  | 
| @@ -1726,12 +1714,6 @@ module Google | |
| 1726 1714 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1727 1715 | 
             
                  end
         | 
| 1728 1716 |  | 
| 1729 | 
            -
                  class GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy
         | 
| 1730 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1731 | 
            -
                  
         | 
| 1732 | 
            -
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1733 | 
            -
                  end
         | 
| 1734 | 
            -
                  
         | 
| 1735 1717 | 
             
                  class GoogleCloudDialogflowCxV3beta1PlaybookInput
         | 
| 1736 1718 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1737 1719 |  | 
| @@ -1870,18 +1852,6 @@ module Google | |
| 1870 1852 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1871 1853 | 
             
                  end
         | 
| 1872 1854 |  | 
| 1873 | 
            -
                  class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest
         | 
| 1874 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1875 | 
            -
                  
         | 
| 1876 | 
            -
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1877 | 
            -
                  end
         | 
| 1878 | 
            -
                  
         | 
| 1879 | 
            -
                  class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
         | 
| 1880 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1881 | 
            -
                  
         | 
| 1882 | 
            -
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 1883 | 
            -
                  end
         | 
| 1884 | 
            -
                  
         | 
| 1885 1855 | 
             
                  class GoogleCloudDialogflowCxV3beta1RolloutConfig
         | 
| 1886 1856 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 1887 1857 |  | 
| @@ -3732,6 +3702,7 @@ module Google | |
| 3732 3702 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 3733 3703 | 
             
                      property :data_store, as: 'dataStore'
         | 
| 3734 3704 | 
             
                      property :data_store_type, as: 'dataStoreType'
         | 
| 3705 | 
            +
                      property :document_processing_mode, as: 'documentProcessingMode'
         | 
| 3735 3706 | 
             
                    end
         | 
| 3736 3707 | 
             
                  end
         | 
| 3737 3708 |  | 
| @@ -4673,6 +4644,8 @@ module Google | |
| 4673 4644 | 
             
                      property :name, as: 'name'
         | 
| 4674 4645 | 
             
                      property :personalization_settings, as: 'personalizationSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings::Representation
         | 
| 4675 4646 |  | 
| 4647 | 
            +
                      property :satisfies_pzi, as: 'satisfiesPzi'
         | 
| 4648 | 
            +
                      property :satisfies_pzs, as: 'satisfiesPzs'
         | 
| 4676 4649 | 
             
                      property :security_settings, as: 'securitySettings'
         | 
| 4677 4650 | 
             
                      property :speech_to_text_settings, as: 'speechToTextSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings::Representation
         | 
| 4678 4651 |  | 
| @@ -5085,6 +5058,7 @@ module Google | |
| 5085 5058 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 5086 5059 | 
             
                      property :data_store, as: 'dataStore'
         | 
| 5087 5060 | 
             
                      property :data_store_type, as: 'dataStoreType'
         | 
| 5061 | 
            +
                      property :document_processing_mode, as: 'documentProcessingMode'
         | 
| 5088 5062 | 
             
                    end
         | 
| 5089 5063 | 
             
                  end
         | 
| 5090 5064 |  | 
| @@ -5534,14 +5508,6 @@ module Google | |
| 5534 5508 | 
             
                    end
         | 
| 5535 5509 | 
             
                  end
         | 
| 5536 5510 |  | 
| 5537 | 
            -
                  class GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest
         | 
| 5538 | 
            -
                    # @private
         | 
| 5539 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 5540 | 
            -
                      property :data_format, as: 'dataFormat'
         | 
| 5541 | 
            -
                      property :playbook_uri, as: 'playbookUri'
         | 
| 5542 | 
            -
                    end
         | 
| 5543 | 
            -
                  end
         | 
| 5544 | 
            -
                  
         | 
| 5545 5511 | 
             
                  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
         | 
| 5546 5512 | 
             
                    # @private
         | 
| 5547 5513 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -5934,16 +5900,6 @@ module Google | |
| 5934 5900 | 
             
                    end
         | 
| 5935 5901 | 
             
                  end
         | 
| 5936 5902 |  | 
| 5937 | 
            -
                  class GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest
         | 
| 5938 | 
            -
                    # @private
         | 
| 5939 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 5940 | 
            -
                      property :import_strategy, as: 'importStrategy', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy::Representation
         | 
| 5941 | 
            -
                  
         | 
| 5942 | 
            -
                      property :playbook_content, :base64 => true, as: 'playbookContent'
         | 
| 5943 | 
            -
                      property :playbook_uri, as: 'playbookUri'
         | 
| 5944 | 
            -
                    end
         | 
| 5945 | 
            -
                  end
         | 
| 5946 | 
            -
                  
         | 
| 5947 5903 | 
             
                  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
         | 
| 5948 5904 | 
             
                    # @private
         | 
| 5949 5905 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -6471,20 +6427,13 @@ module Google | |
| 6471 6427 | 
             
                      collection :referenced_flows, as: 'referencedFlows'
         | 
| 6472 6428 | 
             
                      collection :referenced_playbooks, as: 'referencedPlaybooks'
         | 
| 6473 6429 | 
             
                      collection :referenced_tools, as: 'referencedTools'
         | 
| 6430 | 
            +
                      property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings::Representation
         | 
| 6431 | 
            +
                  
         | 
| 6474 6432 | 
             
                      property :token_count, :numeric_string => true, as: 'tokenCount'
         | 
| 6475 6433 | 
             
                      property :update_time, as: 'updateTime'
         | 
| 6476 6434 | 
             
                    end
         | 
| 6477 6435 | 
             
                  end
         | 
| 6478 6436 |  | 
| 6479 | 
            -
                  class GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy
         | 
| 6480 | 
            -
                    # @private
         | 
| 6481 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 6482 | 
            -
                      property :main_playbook_import_strategy, as: 'mainPlaybookImportStrategy'
         | 
| 6483 | 
            -
                      property :nested_resource_import_strategy, as: 'nestedResourceImportStrategy'
         | 
| 6484 | 
            -
                      property :tool_import_strategy, as: 'toolImportStrategy'
         | 
| 6485 | 
            -
                    end
         | 
| 6486 | 
            -
                  end
         | 
| 6487 | 
            -
                  
         | 
| 6488 6437 | 
             
                  class GoogleCloudDialogflowCxV3beta1PlaybookInput
         | 
| 6489 6438 | 
             
                    # @private
         | 
| 6490 6439 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -6496,6 +6445,7 @@ module Google | |
| 6496 6445 | 
             
                  class GoogleCloudDialogflowCxV3beta1PlaybookInstruction
         | 
| 6497 6446 | 
             
                    # @private
         | 
| 6498 6447 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 6448 | 
            +
                      property :guidelines, as: 'guidelines'
         | 
| 6499 6449 | 
             
                      collection :steps, as: 'steps', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookStep, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookStep::Representation
         | 
| 6500 6450 |  | 
| 6501 6451 | 
             
                    end
         | 
| @@ -6761,20 +6711,6 @@ module Google | |
| 6761 6711 | 
             
                    end
         | 
| 6762 6712 | 
             
                  end
         | 
| 6763 6713 |  | 
| 6764 | 
            -
                  class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest
         | 
| 6765 | 
            -
                    # @private
         | 
| 6766 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 6767 | 
            -
                    end
         | 
| 6768 | 
            -
                  end
         | 
| 6769 | 
            -
                  
         | 
| 6770 | 
            -
                  class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
         | 
| 6771 | 
            -
                    # @private
         | 
| 6772 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 6773 | 
            -
                      property :playbook, as: 'playbook', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Playbook, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Playbook::Representation
         | 
| 6774 | 
            -
                  
         | 
| 6775 | 
            -
                    end
         | 
| 6776 | 
            -
                  end
         | 
| 6777 | 
            -
                  
         | 
| 6778 6714 | 
             
                  class GoogleCloudDialogflowCxV3beta1RolloutConfig
         | 
| 6779 6715 | 
             
                    # @private
         | 
| 6780 6716 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -3658,41 +3658,6 @@ module Google | |
| 3658 3658 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 3659 3659 | 
             
                    end
         | 
| 3660 3660 |  | 
| 3661 | 
            -
                    # Exports the specified playbook to a binary file. Note that resources (e.g.
         | 
| 3662 | 
            -
                    # examples, tools) that the playbook references will also be exported.
         | 
| 3663 | 
            -
                    # @param [String] name
         | 
| 3664 | 
            -
                    #   Required. The name of the playbook to export. Format: `projects//locations//
         | 
| 3665 | 
            -
                    #   agents//playbooks/`.
         | 
| 3666 | 
            -
                    # @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest] google_cloud_dialogflow_cx_v3beta1_export_playbook_request_object
         | 
| 3667 | 
            -
                    # @param [String] fields
         | 
| 3668 | 
            -
                    #   Selector specifying which fields to include in a partial response.
         | 
| 3669 | 
            -
                    # @param [String] quota_user
         | 
| 3670 | 
            -
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 3671 | 
            -
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 3672 | 
            -
                    # @param [Google::Apis::RequestOptions] options
         | 
| 3673 | 
            -
                    #   Request-specific options
         | 
| 3674 | 
            -
                    #
         | 
| 3675 | 
            -
                    # @yield [result, err] Result & error if block supplied
         | 
| 3676 | 
            -
                    # @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
         | 
| 3677 | 
            -
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 3678 | 
            -
                    #
         | 
| 3679 | 
            -
                    # @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
         | 
| 3680 | 
            -
                    #
         | 
| 3681 | 
            -
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 3682 | 
            -
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 3683 | 
            -
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 3684 | 
            -
                    def export_project_location_agent_playbook(name, google_cloud_dialogflow_cx_v3beta1_export_playbook_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
         | 
| 3685 | 
            -
                      command = make_simple_command(:post, 'v3beta1/{+name}:export', options)
         | 
| 3686 | 
            -
                      command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest::Representation
         | 
| 3687 | 
            -
                      command.request_object = google_cloud_dialogflow_cx_v3beta1_export_playbook_request_object
         | 
| 3688 | 
            -
                      command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
         | 
| 3689 | 
            -
                      command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
         | 
| 3690 | 
            -
                      command.params['name'] = name unless name.nil?
         | 
| 3691 | 
            -
                      command.query['fields'] = fields unless fields.nil?
         | 
| 3692 | 
            -
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 3693 | 
            -
                      execute_or_queue_command(command, &block)
         | 
| 3694 | 
            -
                    end
         | 
| 3695 | 
            -
                    
         | 
| 3696 3661 | 
             
                    # Retrieves the specified Playbook.
         | 
| 3697 3662 | 
             
                    # @param [String] name
         | 
| 3698 3663 | 
             
                    #   Required. The name of the playbook. Format: `projects//locations//agents//
         | 
| @@ -3724,40 +3689,6 @@ module Google | |
| 3724 3689 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 3725 3690 | 
             
                    end
         | 
| 3726 3691 |  | 
| 3727 | 
            -
                    # Imports the specified playbook to the specified agent from a binary file.
         | 
| 3728 | 
            -
                    # @param [String] parent
         | 
| 3729 | 
            -
                    #   Required. The agent to import the playbook into. Format: `projects//locations//
         | 
| 3730 | 
            -
                    #   agents/`.
         | 
| 3731 | 
            -
                    # @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest] google_cloud_dialogflow_cx_v3beta1_import_playbook_request_object
         | 
| 3732 | 
            -
                    # @param [String] fields
         | 
| 3733 | 
            -
                    #   Selector specifying which fields to include in a partial response.
         | 
| 3734 | 
            -
                    # @param [String] quota_user
         | 
| 3735 | 
            -
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 3736 | 
            -
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 3737 | 
            -
                    # @param [Google::Apis::RequestOptions] options
         | 
| 3738 | 
            -
                    #   Request-specific options
         | 
| 3739 | 
            -
                    #
         | 
| 3740 | 
            -
                    # @yield [result, err] Result & error if block supplied
         | 
| 3741 | 
            -
                    # @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
         | 
| 3742 | 
            -
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 3743 | 
            -
                    #
         | 
| 3744 | 
            -
                    # @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
         | 
| 3745 | 
            -
                    #
         | 
| 3746 | 
            -
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 3747 | 
            -
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 3748 | 
            -
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 3749 | 
            -
                    def import_project_location_agent_playbook(parent, google_cloud_dialogflow_cx_v3beta1_import_playbook_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
         | 
| 3750 | 
            -
                      command = make_simple_command(:post, 'v3beta1/{+parent}/playbooks:import', options)
         | 
| 3751 | 
            -
                      command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest::Representation
         | 
| 3752 | 
            -
                      command.request_object = google_cloud_dialogflow_cx_v3beta1_import_playbook_request_object
         | 
| 3753 | 
            -
                      command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
         | 
| 3754 | 
            -
                      command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
         | 
| 3755 | 
            -
                      command.params['parent'] = parent unless parent.nil?
         | 
| 3756 | 
            -
                      command.query['fields'] = fields unless fields.nil?
         | 
| 3757 | 
            -
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 3758 | 
            -
                      execute_or_queue_command(command, &block)
         | 
| 3759 | 
            -
                    end
         | 
| 3760 | 
            -
                    
         | 
| 3761 3692 | 
             
                    # Returns a list of playbooks in the specified agent.
         | 
| 3762 3693 | 
             
                    # @param [String] parent
         | 
| 3763 3694 | 
             
                    #   Required. The agent to list playbooks from. Format: `projects//locations//
         | 
| @@ -4145,41 +4076,6 @@ module Google | |
| 4145 4076 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 4146 4077 | 
             
                    end
         | 
| 4147 4078 |  | 
| 4148 | 
            -
                    # Retrieves the specified version of the Playbook and stores it as the current
         | 
| 4149 | 
            -
                    # playbook draft, returning the playbook with resources updated.
         | 
| 4150 | 
            -
                    # @param [String] name
         | 
| 4151 | 
            -
                    #   Required. The name of the playbook version. Format: `projects//locations//
         | 
| 4152 | 
            -
                    #   agents//playbooks//versions/`.
         | 
| 4153 | 
            -
                    # @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest] google_cloud_dialogflow_cx_v3beta1_restore_playbook_version_request_object
         | 
| 4154 | 
            -
                    # @param [String] fields
         | 
| 4155 | 
            -
                    #   Selector specifying which fields to include in a partial response.
         | 
| 4156 | 
            -
                    # @param [String] quota_user
         | 
| 4157 | 
            -
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 4158 | 
            -
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 4159 | 
            -
                    # @param [Google::Apis::RequestOptions] options
         | 
| 4160 | 
            -
                    #   Request-specific options
         | 
| 4161 | 
            -
                    #
         | 
| 4162 | 
            -
                    # @yield [result, err] Result & error if block supplied
         | 
| 4163 | 
            -
                    # @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse] parsed result object
         | 
| 4164 | 
            -
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 4165 | 
            -
                    #
         | 
| 4166 | 
            -
                    # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse]
         | 
| 4167 | 
            -
                    #
         | 
| 4168 | 
            -
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 4169 | 
            -
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 4170 | 
            -
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 4171 | 
            -
                    def restore_project_location_agent_playbook_version(name, google_cloud_dialogflow_cx_v3beta1_restore_playbook_version_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
         | 
| 4172 | 
            -
                      command = make_simple_command(:post, 'v3beta1/{+name}:restore', options)
         | 
| 4173 | 
            -
                      command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest::Representation
         | 
| 4174 | 
            -
                      command.request_object = google_cloud_dialogflow_cx_v3beta1_restore_playbook_version_request_object
         | 
| 4175 | 
            -
                      command.response_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse::Representation
         | 
| 4176 | 
            -
                      command.response_class = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
         | 
| 4177 | 
            -
                      command.params['name'] = name unless name.nil?
         | 
| 4178 | 
            -
                      command.query['fields'] = fields unless fields.nil?
         | 
| 4179 | 
            -
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 4180 | 
            -
                      execute_or_queue_command(command, &block)
         | 
| 4181 | 
            -
                    end
         | 
| 4182 | 
            -
                    
         | 
| 4183 4079 | 
             
                    # Processes a natural language query and returns structured, actionable data as
         | 
| 4184 4080 | 
             
                    # a result. This method is not idempotent, because it may cause session entity
         | 
| 4185 4081 | 
             
                    # types to be updated, which in turn might affect results of future queries.
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-dialogflow_v3beta1
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.94.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Google LLC
         | 
| 8 | 
            -
            autorequire: 
         | 
| 9 8 | 
             
            bindir: bin
         | 
| 10 9 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025- | 
| 10 | 
            +
            date: 2025-03-02 00:00:00.000000000 Z
         | 
| 12 11 | 
             
            dependencies:
         | 
| 13 12 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 13 | 
             
              name: google-apis-core
         | 
| @@ -58,9 +57,8 @@ licenses: | |
| 58 57 | 
             
            metadata:
         | 
| 59 58 | 
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         | 
| 60 59 | 
             
              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. | 
| 60 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.94.0
         | 
| 62 61 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
         | 
| 63 | 
            -
            post_install_message: 
         | 
| 64 62 | 
             
            rdoc_options: []
         | 
| 65 63 | 
             
            require_paths:
         | 
| 66 64 | 
             
            - lib
         | 
| @@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 75 73 | 
             
                - !ruby/object:Gem::Version
         | 
| 76 74 | 
             
                  version: '0'
         | 
| 77 75 | 
             
            requirements: []
         | 
| 78 | 
            -
            rubygems_version: 3.5 | 
| 79 | 
            -
            signing_key: 
         | 
| 76 | 
            +
            rubygems_version: 3.6.5
         | 
| 80 77 | 
             
            specification_version: 4
         | 
| 81 78 | 
             
            summary: Simple REST client for Dialogflow API V3beta1
         | 
| 82 79 | 
             
            test_files: []
         |