Interface Fulfillment.GenericWebServiceOrBuilder

    • Method Detail

      • getUri

        String getUri()
         Required. The fulfillment URI for receiving POST requests.
         It must use https protocol.
         
        string uri = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The uri.
      • getUriBytes

        com.google.protobuf.ByteString getUriBytes()
         Required. The fulfillment URI for receiving POST requests.
         It must use https protocol.
         
        string uri = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for uri.
      • getUsername

        String getUsername()
         The user name for HTTP Basic authentication.
         
        string username = 2;
        Returns:
        The username.
      • getUsernameBytes

        com.google.protobuf.ByteString getUsernameBytes()
         The user name for HTTP Basic authentication.
         
        string username = 2;
        Returns:
        The bytes for username.
      • getPassword

        String getPassword()
         The password for HTTP Basic authentication.
         
        string password = 3;
        Returns:
        The password.
      • getPasswordBytes

        com.google.protobuf.ByteString getPasswordBytes()
         The password for HTTP Basic authentication.
         
        string password = 3;
        Returns:
        The bytes for password.
      • getRequestHeadersCount

        int getRequestHeadersCount()
         The HTTP request headers to send together with fulfillment requests.
         
        map<string, string> request_headers = 4;
      • containsRequestHeaders

        boolean containsRequestHeaders​(String key)
         The HTTP request headers to send together with fulfillment requests.
         
        map<string, string> request_headers = 4;
      • getRequestHeadersMap

        Map<String,​String> getRequestHeadersMap()
         The HTTP request headers to send together with fulfillment requests.
         
        map<string, string> request_headers = 4;
      • getRequestHeadersOrDefault

        String getRequestHeadersOrDefault​(String key,
                                          String defaultValue)
         The HTTP request headers to send together with fulfillment requests.
         
        map<string, string> request_headers = 4;
      • getRequestHeadersOrThrow

        String getRequestHeadersOrThrow​(String key)
         The HTTP request headers to send together with fulfillment requests.
         
        map<string, string> request_headers = 4;
      • getIsCloudFunction

        @Deprecated
        boolean getIsCloudFunction()
        Deprecated.
        google.cloud.dialogflow.v2beta1.Fulfillment.GenericWebService.is_cloud_function is deprecated. See google/cloud/dialogflow/v2beta1/fulfillment.proto;l=109
         Optional. Indicates if generic web service is created through Cloud
         Functions integration. Defaults to false.
        
         is_cloud_function is deprecated. Cloud functions can be configured by
         its uri as a regular web service now.
         
        bool is_cloud_function = 5 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
        Returns:
        The isCloudFunction.