Interface Fulfillment.GenericWebServiceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Fulfillment.GenericWebService,Fulfillment.GenericWebService.Builder
- Enclosing class:
- Fulfillment
public static interface Fulfillment.GenericWebServiceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsRequestHeaders(String key)The HTTP request headers to send together with fulfillment requests.booleangetIsCloudFunction()Deprecated.google.cloud.dialogflow.v2beta1.Fulfillment.GenericWebService.is_cloud_function is deprecated.StringgetPassword()The password for HTTP Basic authentication.com.google.protobuf.ByteStringgetPasswordBytes()The password for HTTP Basic authentication.Map<String,String>getRequestHeaders()Deprecated.intgetRequestHeadersCount()The HTTP request headers to send together with fulfillment requests.Map<String,String>getRequestHeadersMap()The HTTP request headers to send together with fulfillment requests.StringgetRequestHeadersOrDefault(String key, String defaultValue)The HTTP request headers to send together with fulfillment requests.StringgetRequestHeadersOrThrow(String key)The HTTP request headers to send together with fulfillment requests.StringgetUri()Required.com.google.protobuf.ByteStringgetUriBytes()Required.StringgetUsername()The user name for HTTP Basic authentication.com.google.protobuf.ByteStringgetUsernameBytes()The user name for HTTP Basic authentication.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
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;
-
getRequestHeaders
@Deprecated Map<String,String> getRequestHeaders()
Deprecated.UsegetRequestHeadersMap()instead.
-
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=109Optional. 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.
-
-