google-apis-dialogflow_v3 0.116.0 → 0.117.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:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: cfc74d64d40f597c052e5ebe8d6f07489f5c1515bd466ef22ee17a42010c5cc8
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a4a897f7277103afde2a27eb55058f109d19e596c9d37ef4da740995a50be0fd
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: c4c20660ef3b01dbbcd393c629e7c7e85aa32e74a91c200c8021d20e24254da1438eb672eeb4d0792b97a87fa42445d67f63dc4b3fffcf7f2289b36a2e60e35a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 7e10bb789166d4b2b29474e492fd96b60a7b0d8aee6cda2ef9246c17f4abaa2f8d96f40e9ebae63c226dc23d1ca2108c13a70da386c7b6ac1d0d202090b9ef2b
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| 
         @@ -1154,6 +1154,25 @@ module Google 
     | 
|
| 
       1154 
1154 
     | 
    
         
             
                    end
         
     | 
| 
       1155 
1155 
     | 
    
         
             
                  end
         
     | 
| 
       1156 
1156 
     | 
    
         | 
| 
      
 1157 
     | 
    
         
            +
                  # Represents a code block.
         
     | 
| 
      
 1158 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3CodeBlock
         
     | 
| 
      
 1159 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 1160 
     | 
    
         
            +
                  
         
     | 
| 
      
 1161 
     | 
    
         
            +
                    # Optional. Source code of the block in Python.
         
     | 
| 
      
 1162 
     | 
    
         
            +
                    # Corresponds to the JSON property `code`
         
     | 
| 
      
 1163 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 1164 
     | 
    
         
            +
                    attr_accessor :code
         
     | 
| 
      
 1165 
     | 
    
         
            +
                  
         
     | 
| 
      
 1166 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 1167 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 1168 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  
         
     | 
| 
      
 1170 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 1171 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 1172 
     | 
    
         
            +
                      @code = args[:code] if args.key?(:code)
         
     | 
| 
      
 1173 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1174 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1175 
     | 
    
         
            +
                  
         
     | 
| 
       1157 
1176 
     | 
    
         
             
                  # The request message for Versions.CompareVersions.
         
     | 
| 
       1158 
1177 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3CompareVersionsRequest
         
     | 
| 
       1159 
1178 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
         @@ -6587,6 +6606,11 @@ module Google 
     | 
|
| 
       6587 
6606 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3Playbook
         
     | 
| 
       6588 
6607 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
       6589 
6608 
     | 
    
         | 
| 
      
 6609 
     | 
    
         
            +
                    # Represents a code block.
         
     | 
| 
      
 6610 
     | 
    
         
            +
                    # Corresponds to the JSON property `codeBlock`
         
     | 
| 
      
 6611 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CodeBlock]
         
     | 
| 
      
 6612 
     | 
    
         
            +
                    attr_accessor :code_block
         
     | 
| 
      
 6613 
     | 
    
         
            +
                  
         
     | 
| 
       6590 
6614 
     | 
    
         
             
                    # Output only. The timestamp of initial playbook creation.
         
     | 
| 
       6591 
6615 
     | 
    
         
             
                    # Corresponds to the JSON property `createTime`
         
     | 
| 
       6592 
6616 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
         @@ -6610,6 +6634,14 @@ module Google 
     | 
|
| 
       6610 
6634 
     | 
    
         
             
                    # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler>]
         
     | 
| 
       6611 
6635 
     | 
    
         
             
                    attr_accessor :handlers
         
     | 
| 
       6612 
6636 
     | 
    
         | 
| 
      
 6637 
     | 
    
         
            +
                    # Optional. Output only. Names of inline actions scoped to this playbook. These
         
     | 
| 
      
 6638 
     | 
    
         
            +
                    # actions are in addition to those belonging to referenced tools, child
         
     | 
| 
      
 6639 
     | 
    
         
            +
                    # playbooks, and flows, e.g. actions that are defined in the playbook's code
         
     | 
| 
      
 6640 
     | 
    
         
            +
                    # block.
         
     | 
| 
      
 6641 
     | 
    
         
            +
                    # Corresponds to the JSON property `inlineActions`
         
     | 
| 
      
 6642 
     | 
    
         
            +
                    # @return [Array<String>]
         
     | 
| 
      
 6643 
     | 
    
         
            +
                    attr_accessor :inline_actions
         
     | 
| 
      
 6644 
     | 
    
         
            +
                  
         
     | 
| 
       6613 
6645 
     | 
    
         
             
                    # Optional. Defined structured input parameters for this playbook.
         
     | 
| 
       6614 
6646 
     | 
    
         
             
                    # Corresponds to the JSON property `inputParameterDefinitions`
         
     | 
| 
       6615 
6647 
     | 
    
         
             
                    # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition>]
         
     | 
| 
         @@ -6677,10 +6709,12 @@ module Google 
     | 
|
| 
       6677 
6709 
     | 
    
         | 
| 
       6678 
6710 
     | 
    
         
             
                    # Update properties of this object
         
     | 
| 
       6679 
6711 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
      
 6712 
     | 
    
         
            +
                      @code_block = args[:code_block] if args.key?(:code_block)
         
     | 
| 
       6680 
6713 
     | 
    
         
             
                      @create_time = args[:create_time] if args.key?(:create_time)
         
     | 
| 
       6681 
6714 
     | 
    
         
             
                      @display_name = args[:display_name] if args.key?(:display_name)
         
     | 
| 
       6682 
6715 
     | 
    
         
             
                      @goal = args[:goal] if args.key?(:goal)
         
     | 
| 
       6683 
6716 
     | 
    
         
             
                      @handlers = args[:handlers] if args.key?(:handlers)
         
     | 
| 
      
 6717 
     | 
    
         
            +
                      @inline_actions = args[:inline_actions] if args.key?(:inline_actions)
         
     | 
| 
       6684 
6718 
     | 
    
         
             
                      @input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
         
     | 
| 
       6685 
6719 
     | 
    
         
             
                      @instruction = args[:instruction] if args.key?(:instruction)
         
     | 
| 
       6686 
6720 
     | 
    
         
             
                      @llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
         
     | 
| 
         @@ -9020,6 +9054,11 @@ module Google 
     | 
|
| 
       9020 
9054 
     | 
    
         
             
                    # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationOAuthConfig]
         
     | 
| 
       9021 
9055 
     | 
    
         
             
                    attr_accessor :oauth_config
         
     | 
| 
       9022 
9056 
     | 
    
         | 
| 
      
 9057 
     | 
    
         
            +
                    # Configuration for authentication using a service account.
         
     | 
| 
      
 9058 
     | 
    
         
            +
                    # Corresponds to the JSON property `serviceAccountAuthConfig`
         
     | 
| 
      
 9059 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig]
         
     | 
| 
      
 9060 
     | 
    
         
            +
                    attr_accessor :service_account_auth_config
         
     | 
| 
      
 9061 
     | 
    
         
            +
                  
         
     | 
| 
       9023 
9062 
     | 
    
         
             
                    # Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
         
     | 
| 
       9024 
9063 
     | 
    
         
             
                    # docs/service-agents#dialogflow-service-agent).
         
     | 
| 
       9025 
9064 
     | 
    
         
             
                    # Corresponds to the JSON property `serviceAgentAuthConfig`
         
     | 
| 
         @@ -9035,6 +9074,7 @@ module Google 
     | 
|
| 
       9035 
9074 
     | 
    
         
             
                      @api_key_config = args[:api_key_config] if args.key?(:api_key_config)
         
     | 
| 
       9036 
9075 
     | 
    
         
             
                      @bearer_token_config = args[:bearer_token_config] if args.key?(:bearer_token_config)
         
     | 
| 
       9037 
9076 
     | 
    
         
             
                      @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
         
     | 
| 
      
 9077 
     | 
    
         
            +
                      @service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
         
     | 
| 
       9038 
9078 
     | 
    
         
             
                      @service_agent_auth_config = args[:service_agent_auth_config] if args.key?(:service_agent_auth_config)
         
     | 
| 
       9039 
9079 
     | 
    
         
             
                    end
         
     | 
| 
       9040 
9080 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -9164,6 +9204,30 @@ module Google 
     | 
|
| 
       9164 
9204 
     | 
    
         
             
                    end
         
     | 
| 
       9165 
9205 
     | 
    
         
             
                  end
         
     | 
| 
       9166 
9206 
     | 
    
         | 
| 
      
 9207 
     | 
    
         
            +
                  # Configuration for authentication using a service account.
         
     | 
| 
      
 9208 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig
         
     | 
| 
      
 9209 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 9210 
     | 
    
         
            +
                  
         
     | 
| 
      
 9211 
     | 
    
         
            +
                    # Required. The email address of the service account used to authenticate the
         
     | 
| 
      
 9212 
     | 
    
         
            +
                    # tool call. Dialogflow uses this service account to exchange an access token
         
     | 
| 
      
 9213 
     | 
    
         
            +
                    # and the access token is then sent in the `Authorization` header of the tool
         
     | 
| 
      
 9214 
     | 
    
         
            +
                    # request. The service account must have the `roles/iam.
         
     | 
| 
      
 9215 
     | 
    
         
            +
                    # serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
         
     | 
| 
      
 9216 
     | 
    
         
            +
                    # https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
         
     | 
| 
      
 9217 
     | 
    
         
            +
                    # Corresponds to the JSON property `serviceAccount`
         
     | 
| 
      
 9218 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 9219 
     | 
    
         
            +
                    attr_accessor :service_account
         
     | 
| 
      
 9220 
     | 
    
         
            +
                  
         
     | 
| 
      
 9221 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 9222 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 9223 
     | 
    
         
            +
                    end
         
     | 
| 
      
 9224 
     | 
    
         
            +
                  
         
     | 
| 
      
 9225 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 9226 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 9227 
     | 
    
         
            +
                      @service_account = args[:service_account] if args.key?(:service_account)
         
     | 
| 
      
 9228 
     | 
    
         
            +
                    end
         
     | 
| 
      
 9229 
     | 
    
         
            +
                  end
         
     | 
| 
      
 9230 
     | 
    
         
            +
                  
         
     | 
| 
       9167 
9231 
     | 
    
         
             
                  # Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
         
     | 
| 
       9168 
9232 
     | 
    
         
             
                  # docs/service-agents#dialogflow-service-agent).
         
     | 
| 
       9169 
9233 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig
         
     | 
| 
         @@ -10425,6 +10489,11 @@ module Google 
     | 
|
| 
       10425 
10489 
     | 
    
         
             
                    # @return [Hash<String,Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue>]
         
     | 
| 
       10426 
10490 
     | 
    
         
             
                    attr_accessor :secret_versions_for_request_headers
         
     | 
| 
       10427 
10491 
     | 
    
         | 
| 
      
 10492 
     | 
    
         
            +
                    # Configuration for authentication using a service account.
         
     | 
| 
      
 10493 
     | 
    
         
            +
                    # Corresponds to the JSON property `serviceAccountAuthConfig`
         
     | 
| 
      
 10494 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig]
         
     | 
| 
      
 10495 
     | 
    
         
            +
                    attr_accessor :service_account_auth_config
         
     | 
| 
      
 10496 
     | 
    
         
            +
                  
         
     | 
| 
       10428 
10497 
     | 
    
         
             
                    # Optional. Indicate the auth token type generated from the [Diglogflow service
         
     | 
| 
       10429 
10498 
     | 
    
         
             
                    # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
         
     | 
| 
       10430 
10499 
     | 
    
         
             
                    # agent). The generated token is sent in the Authorization header.
         
     | 
| 
         @@ -10463,6 +10532,7 @@ module Google 
     | 
|
| 
       10463 
10532 
     | 
    
         
             
                      @request_headers = args[:request_headers] if args.key?(:request_headers)
         
     | 
| 
       10464 
10533 
     | 
    
         
             
                      @secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
         
     | 
| 
       10465 
10534 
     | 
    
         
             
                      @secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
         
     | 
| 
      
 10535 
     | 
    
         
            +
                      @service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
         
     | 
| 
       10466 
10536 
     | 
    
         
             
                      @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
         
     | 
| 
       10467 
10537 
     | 
    
         
             
                      @uri = args[:uri] if args.key?(:uri)
         
     | 
| 
       10468 
10538 
     | 
    
         
             
                      @username = args[:username] if args.key?(:username)
         
     | 
| 
         @@ -10538,6 +10608,30 @@ module Google 
     | 
|
| 
       10538 
10608 
     | 
    
         
             
                    end
         
     | 
| 
       10539 
10609 
     | 
    
         
             
                  end
         
     | 
| 
       10540 
10610 
     | 
    
         | 
| 
      
 10611 
     | 
    
         
            +
                  # Configuration for authentication using a service account.
         
     | 
| 
      
 10612 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
         
     | 
| 
      
 10613 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 10614 
     | 
    
         
            +
                  
         
     | 
| 
      
 10615 
     | 
    
         
            +
                    # Required. The email address of the service account used to authenticate the
         
     | 
| 
      
 10616 
     | 
    
         
            +
                    # webhook call. Dialogflow uses this service account to exchange an access token
         
     | 
| 
      
 10617 
     | 
    
         
            +
                    # and the access token is then sent in the `Authorization` header of the webhook
         
     | 
| 
      
 10618 
     | 
    
         
            +
                    # request. The service account must have the `roles/iam.
         
     | 
| 
      
 10619 
     | 
    
         
            +
                    # serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
         
     | 
| 
      
 10620 
     | 
    
         
            +
                    # https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
         
     | 
| 
      
 10621 
     | 
    
         
            +
                    # Corresponds to the JSON property `serviceAccount`
         
     | 
| 
      
 10622 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 10623 
     | 
    
         
            +
                    attr_accessor :service_account
         
     | 
| 
      
 10624 
     | 
    
         
            +
                  
         
     | 
| 
      
 10625 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 10626 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 10627 
     | 
    
         
            +
                    end
         
     | 
| 
      
 10628 
     | 
    
         
            +
                  
         
     | 
| 
      
 10629 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 10630 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 10631 
     | 
    
         
            +
                      @service_account = args[:service_account] if args.key?(:service_account)
         
     | 
| 
      
 10632 
     | 
    
         
            +
                    end
         
     | 
| 
      
 10633 
     | 
    
         
            +
                  end
         
     | 
| 
      
 10634 
     | 
    
         
            +
                  
         
     | 
| 
       10541 
10635 
     | 
    
         
             
                  # The request message for a webhook call. The request is sent as a JSON object
         
     | 
| 
       10542 
10636 
     | 
    
         
             
                  # and the field names will be presented in camel cases. You may see undocumented
         
     | 
| 
       10543 
10637 
     | 
    
         
             
                  # fields in an actual request. These fields are used internally by Dialogflow
         
     | 
| 
         @@ -14350,6 +14444,11 @@ module Google 
     | 
|
| 
       14350 
14444 
     | 
    
         
             
                    # @return [Hash<String,Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue>]
         
     | 
| 
       14351 
14445 
     | 
    
         
             
                    attr_accessor :secret_versions_for_request_headers
         
     | 
| 
       14352 
14446 
     | 
    
         | 
| 
      
 14447 
     | 
    
         
            +
                    # Configuration for authentication using a service account.
         
     | 
| 
      
 14448 
     | 
    
         
            +
                    # Corresponds to the JSON property `serviceAccountAuthConfig`
         
     | 
| 
      
 14449 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig]
         
     | 
| 
      
 14450 
     | 
    
         
            +
                    attr_accessor :service_account_auth_config
         
     | 
| 
      
 14451 
     | 
    
         
            +
                  
         
     | 
| 
       14353 
14452 
     | 
    
         
             
                    # Optional. Indicate the auth token type generated from the [Diglogflow service
         
     | 
| 
       14354 
14453 
     | 
    
         
             
                    # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
         
     | 
| 
       14355 
14454 
     | 
    
         
             
                    # agent). The generated token is sent in the Authorization header.
         
     | 
| 
         @@ -14388,6 +14487,7 @@ module Google 
     | 
|
| 
       14388 
14487 
     | 
    
         
             
                      @request_headers = args[:request_headers] if args.key?(:request_headers)
         
     | 
| 
       14389 
14488 
     | 
    
         
             
                      @secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
         
     | 
| 
       14390 
14489 
     | 
    
         
             
                      @secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
         
     | 
| 
      
 14490 
     | 
    
         
            +
                      @service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
         
     | 
| 
       14391 
14491 
     | 
    
         
             
                      @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
         
     | 
| 
       14392 
14492 
     | 
    
         
             
                      @uri = args[:uri] if args.key?(:uri)
         
     | 
| 
       14393 
14493 
     | 
    
         
             
                      @username = args[:username] if args.key?(:username)
         
     | 
| 
         @@ -14463,6 +14563,30 @@ module Google 
     | 
|
| 
       14463 
14563 
     | 
    
         
             
                    end
         
     | 
| 
       14464 
14564 
     | 
    
         
             
                  end
         
     | 
| 
       14465 
14565 
     | 
    
         | 
| 
      
 14566 
     | 
    
         
            +
                  # Configuration for authentication using a service account.
         
     | 
| 
      
 14567 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
         
     | 
| 
      
 14568 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 14569 
     | 
    
         
            +
                  
         
     | 
| 
      
 14570 
     | 
    
         
            +
                    # Required. The email address of the service account used to authenticate the
         
     | 
| 
      
 14571 
     | 
    
         
            +
                    # webhook call. Dialogflow uses this service account to exchange an access token
         
     | 
| 
      
 14572 
     | 
    
         
            +
                    # and the access token is then sent in the `Authorization` header of the webhook
         
     | 
| 
      
 14573 
     | 
    
         
            +
                    # request. The service account must have the `roles/iam.
         
     | 
| 
      
 14574 
     | 
    
         
            +
                    # serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
         
     | 
| 
      
 14575 
     | 
    
         
            +
                    # https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
         
     | 
| 
      
 14576 
     | 
    
         
            +
                    # Corresponds to the JSON property `serviceAccount`
         
     | 
| 
      
 14577 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 14578 
     | 
    
         
            +
                    attr_accessor :service_account
         
     | 
| 
      
 14579 
     | 
    
         
            +
                  
         
     | 
| 
      
 14580 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 14581 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 14582 
     | 
    
         
            +
                    end
         
     | 
| 
      
 14583 
     | 
    
         
            +
                  
         
     | 
| 
      
 14584 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 14585 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 14586 
     | 
    
         
            +
                      @service_account = args[:service_account] if args.key?(:service_account)
         
     | 
| 
      
 14587 
     | 
    
         
            +
                    end
         
     | 
| 
      
 14588 
     | 
    
         
            +
                  end
         
     | 
| 
      
 14589 
     | 
    
         
            +
                  
         
     | 
| 
       14466 
14590 
     | 
    
         
             
                  # The request message for a webhook call. The request is sent as a JSON object
         
     | 
| 
       14467 
14591 
     | 
    
         
             
                  # and the field names will be presented in camel cases. You may see undocumented
         
     | 
| 
       14468 
14592 
     | 
    
         
             
                  # fields in an actual request. These fields are used internally by Dialogflow
         
     | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module DialogflowV3
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-dialogflow_v3 gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.117.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.18.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20251027"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -196,6 +196,12 @@ module Google 
     | 
|
| 
       196 
196 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       197 
197 
     | 
    
         
             
                  end
         
     | 
| 
       198 
198 
     | 
    
         | 
| 
      
 199 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3CodeBlock
         
     | 
| 
      
 200 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 201 
     | 
    
         
            +
                  
         
     | 
| 
      
 202 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 203 
     | 
    
         
            +
                  end
         
     | 
| 
      
 204 
     | 
    
         
            +
                  
         
     | 
| 
       199 
205 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3CompareVersionsRequest
         
     | 
| 
       200 
206 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       201 
207 
     | 
    
         | 
| 
         @@ -1492,6 +1498,12 @@ module Google 
     | 
|
| 
       1492 
1498 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       1493 
1499 
     | 
    
         
             
                  end
         
     | 
| 
       1494 
1500 
     | 
    
         | 
| 
      
 1501 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig
         
     | 
| 
      
 1502 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 1503 
     | 
    
         
            +
                  
         
     | 
| 
      
 1504 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 1505 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1506 
     | 
    
         
            +
                  
         
     | 
| 
       1495 
1507 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig
         
     | 
| 
       1496 
1508 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       1497 
1509 
     | 
    
         | 
| 
         @@ -1720,6 +1732,12 @@ module Google 
     | 
|
| 
       1720 
1732 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       1721 
1733 
     | 
    
         
             
                  end
         
     | 
| 
       1722 
1734 
     | 
    
         | 
| 
      
 1735 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
         
     | 
| 
      
 1736 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 1737 
     | 
    
         
            +
                  
         
     | 
| 
      
 1738 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 1739 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1740 
     | 
    
         
            +
                  
         
     | 
| 
       1723 
1741 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3WebhookRequest
         
     | 
| 
       1724 
1742 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       1725 
1743 
     | 
    
         | 
| 
         @@ -2350,6 +2368,12 @@ module Google 
     | 
|
| 
       2350 
2368 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       2351 
2369 
     | 
    
         
             
                  end
         
     | 
| 
       2352 
2370 
     | 
    
         | 
| 
      
 2371 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
         
     | 
| 
      
 2372 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 2373 
     | 
    
         
            +
                  
         
     | 
| 
      
 2374 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 2375 
     | 
    
         
            +
                  end
         
     | 
| 
      
 2376 
     | 
    
         
            +
                  
         
     | 
| 
       2353 
2377 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3beta1WebhookRequest
         
     | 
| 
       2354 
2378 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       2355 
2379 
     | 
    
         | 
| 
         @@ -4150,6 +4174,13 @@ module Google 
     | 
|
| 
       4150 
4174 
     | 
    
         
             
                    end
         
     | 
| 
       4151 
4175 
     | 
    
         
             
                  end
         
     | 
| 
       4152 
4176 
     | 
    
         | 
| 
      
 4177 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3CodeBlock
         
     | 
| 
      
 4178 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 4179 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 4180 
     | 
    
         
            +
                      property :code, as: 'code'
         
     | 
| 
      
 4181 
     | 
    
         
            +
                    end
         
     | 
| 
      
 4182 
     | 
    
         
            +
                  end
         
     | 
| 
      
 4183 
     | 
    
         
            +
                  
         
     | 
| 
       4153 
4184 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3CompareVersionsRequest
         
     | 
| 
       4154 
4185 
     | 
    
         
             
                    # @private
         
     | 
| 
       4155 
4186 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -5640,11 +5671,14 @@ module Google 
     | 
|
| 
       5640 
5671 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3Playbook
         
     | 
| 
       5641 
5672 
     | 
    
         
             
                    # @private
         
     | 
| 
       5642 
5673 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 5674 
     | 
    
         
            +
                      property :code_block, as: 'codeBlock', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CodeBlock, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CodeBlock::Representation
         
     | 
| 
      
 5675 
     | 
    
         
            +
                  
         
     | 
| 
       5643 
5676 
     | 
    
         
             
                      property :create_time, as: 'createTime'
         
     | 
| 
       5644 
5677 
     | 
    
         
             
                      property :display_name, as: 'displayName'
         
     | 
| 
       5645 
5678 
     | 
    
         
             
                      property :goal, as: 'goal'
         
     | 
| 
       5646 
5679 
     | 
    
         
             
                      collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler::Representation
         
     | 
| 
       5647 
5680 
     | 
    
         | 
| 
      
 5681 
     | 
    
         
            +
                      collection :inline_actions, as: 'inlineActions'
         
     | 
| 
       5648 
5682 
     | 
    
         
             
                      collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
         
     | 
| 
       5649 
5683 
     | 
    
         | 
| 
       5650 
5684 
     | 
    
         
             
                      property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction::Representation
         
     | 
| 
         @@ -6294,6 +6328,8 @@ module Google 
     | 
|
| 
       6294 
6328 
     | 
    
         | 
| 
       6295 
6329 
     | 
    
         
             
                      property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationOAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationOAuthConfig::Representation
         
     | 
| 
       6296 
6330 
     | 
    
         | 
| 
      
 6331 
     | 
    
         
            +
                      property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig::Representation
         
     | 
| 
      
 6332 
     | 
    
         
            +
                  
         
     | 
| 
       6297 
6333 
     | 
    
         
             
                      property :service_agent_auth_config, as: 'serviceAgentAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig::Representation
         
     | 
| 
       6298 
6334 
     | 
    
         | 
| 
       6299 
6335 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -6329,6 +6365,13 @@ module Google 
     | 
|
| 
       6329 
6365 
     | 
    
         
             
                    end
         
     | 
| 
       6330 
6366 
     | 
    
         
             
                  end
         
     | 
| 
       6331 
6367 
     | 
    
         | 
| 
      
 6368 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig
         
     | 
| 
      
 6369 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 6370 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 6371 
     | 
    
         
            +
                      property :service_account, as: 'serviceAccount'
         
     | 
| 
      
 6372 
     | 
    
         
            +
                    end
         
     | 
| 
      
 6373 
     | 
    
         
            +
                  end
         
     | 
| 
      
 6374 
     | 
    
         
            +
                  
         
     | 
| 
       6332 
6375 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig
         
     | 
| 
       6333 
6376 
     | 
    
         
             
                    # @private
         
     | 
| 
       6334 
6377 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -6682,6 +6725,8 @@ module Google 
     | 
|
| 
       6682 
6725 
     | 
    
         
             
                      property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
         
     | 
| 
       6683 
6726 
     | 
    
         
             
                      hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::Representation
         
     | 
| 
       6684 
6727 
     | 
    
         | 
| 
      
 6728 
     | 
    
         
            +
                      property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig::Representation
         
     | 
| 
      
 6729 
     | 
    
         
            +
                  
         
     | 
| 
       6685 
6730 
     | 
    
         
             
                      property :service_agent_auth, as: 'serviceAgentAuth'
         
     | 
| 
       6686 
6731 
     | 
    
         
             
                      property :uri, as: 'uri'
         
     | 
| 
       6687 
6732 
     | 
    
         
             
                      property :username, as: 'username'
         
     | 
| 
         @@ -6707,6 +6752,13 @@ module Google 
     | 
|
| 
       6707 
6752 
     | 
    
         
             
                    end
         
     | 
| 
       6708 
6753 
     | 
    
         
             
                  end
         
     | 
| 
       6709 
6754 
     | 
    
         | 
| 
      
 6755 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
         
     | 
| 
      
 6756 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 6757 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 6758 
     | 
    
         
            +
                      property :service_account, as: 'serviceAccount'
         
     | 
| 
      
 6759 
     | 
    
         
            +
                    end
         
     | 
| 
      
 6760 
     | 
    
         
            +
                  end
         
     | 
| 
      
 6761 
     | 
    
         
            +
                  
         
     | 
| 
       6710 
6762 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3WebhookRequest
         
     | 
| 
       6711 
6763 
     | 
    
         
             
                    # @private
         
     | 
| 
       6712 
6764 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -7736,6 +7788,8 @@ module Google 
     | 
|
| 
       7736 
7788 
     | 
    
         
             
                      property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
         
     | 
| 
       7737 
7789 
     | 
    
         
             
                      hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::Representation
         
     | 
| 
       7738 
7790 
     | 
    
         | 
| 
      
 7791 
     | 
    
         
            +
                      property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig::Representation
         
     | 
| 
      
 7792 
     | 
    
         
            +
                  
         
     | 
| 
       7739 
7793 
     | 
    
         
             
                      property :service_agent_auth, as: 'serviceAgentAuth'
         
     | 
| 
       7740 
7794 
     | 
    
         
             
                      property :uri, as: 'uri'
         
     | 
| 
       7741 
7795 
     | 
    
         
             
                      property :username, as: 'username'
         
     | 
| 
         @@ -7761,6 +7815,13 @@ module Google 
     | 
|
| 
       7761 
7815 
     | 
    
         
             
                    end
         
     | 
| 
       7762 
7816 
     | 
    
         
             
                  end
         
     | 
| 
       7763 
7817 
     | 
    
         | 
| 
      
 7818 
     | 
    
         
            +
                  class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
         
     | 
| 
      
 7819 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 7820 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 7821 
     | 
    
         
            +
                      property :service_account, as: 'serviceAccount'
         
     | 
| 
      
 7822 
     | 
    
         
            +
                    end
         
     | 
| 
      
 7823 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7824 
     | 
    
         
            +
                  
         
     | 
| 
       7764 
7825 
     | 
    
         
             
                  class GoogleCloudDialogflowCxV3beta1WebhookRequest
         
     | 
| 
       7765 
7826 
     | 
    
         
             
                    # @private
         
     | 
| 
       7766 
7827 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -86,8 +86,8 @@ module Google 
     | 
|
| 
       86 
86 
     | 
    
         
             
                    # @param [String] name
         
     | 
| 
       87 
87 
     | 
    
         
             
                    #   The resource that owns the locations collection, if applicable.
         
     | 
| 
       88 
88 
     | 
    
         
             
                    # @param [Array<String>, String] extra_location_types
         
     | 
| 
       89 
     | 
    
         
            -
                    #   Optional.  
     | 
| 
       90 
     | 
    
         
            -
                    #    
     | 
| 
      
 89 
     | 
    
         
            +
                    #   Optional. Do not use this field. It is unsupported and is ignored unless
         
     | 
| 
      
 90 
     | 
    
         
            +
                    #   explicitly documented otherwise. This is primarily for internal usage.
         
     | 
| 
       91 
91 
     | 
    
         
             
                    # @param [String] filter
         
     | 
| 
       92 
92 
     | 
    
         
             
                    #   A filter to narrow down results to a preferred subset. The filtering language
         
     | 
| 
       93 
93 
     | 
    
         
             
                    #   accepts strings like `"displayName=tokyo"`, and is documented in more detail
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-dialogflow_v3
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.117.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Google LLC
         
     | 
| 
         @@ -57,7 +57,7 @@ licenses: 
     | 
|
| 
       57 
57 
     | 
    
         
             
            metadata:
         
     | 
| 
       58 
58 
     | 
    
         
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         
     | 
| 
       59 
59 
     | 
    
         
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
         
     | 
| 
       60 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0. 
     | 
| 
      
 60 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.117.0
         
     | 
| 
       61 
61 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
         
     | 
| 
       62 
62 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       63 
63 
     | 
    
         
             
            require_paths:
         
     |