Send feedback
Class Webhook.GenericWebService (0.24.0)
Stay organized with collections
Save and categorize content based on your preferences.
Version 0.24.0 keyboard_arrow_down
public static final class Webhook . GenericWebService extends GeneratedMessageV3 implements Webhook . GenericWebServiceOrBuilder
Represents configuration for a generic web service.
Protobuf type google.cloud.dialogflow.cx.v3.Webhook.GenericWebService
Static Fields
ALLOWED_CA_CERTS_FIELD_NUMBER
public static final int ALLOWED_CA_CERTS_FIELD_NUMBER
Field Value
Type
Description
int
PASSWORD_FIELD_NUMBER
public static final int PASSWORD_FIELD_NUMBER
Field Value
Type
Description
int
public static final int REQUEST_HEADERS_FIELD_NUMBER
Field Value
Type
Description
int
URI_FIELD_NUMBER
public static final int URI_FIELD_NUMBER
Field Value
Type
Description
int
USERNAME_FIELD_NUMBER
public static final int USERNAME_FIELD_NUMBER
Field Value
Type
Description
int
Static Methods
getDefaultInstance()
public static Webhook . GenericWebService getDefaultInstance ()
getDescriptor()
public static final Descriptors . Descriptor getDescriptor ()
newBuilder()
public static Webhook . GenericWebService . Builder newBuilder ()
newBuilder(Webhook.GenericWebService prototype)
public static Webhook . GenericWebService . Builder newBuilder ( Webhook . GenericWebService prototype )
public static Webhook . GenericWebService parseDelimitedFrom ( InputStream input )
public static Webhook . GenericWebService parseDelimitedFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(byte[] data)
public static Webhook . GenericWebService parseFrom ( byte [] data )
Parameter
Name
Description
data
byte []
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static Webhook . GenericWebService parseFrom ( byte [] data , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteString data)
public static Webhook . GenericWebService parseFrom ( ByteString data )
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static Webhook . GenericWebService parseFrom ( ByteString data , ExtensionRegistryLite extensionRegistry )
public static Webhook . GenericWebService parseFrom ( CodedInputStream input )
public static Webhook . GenericWebService parseFrom ( CodedInputStream input , ExtensionRegistryLite extensionRegistry )
public static Webhook . GenericWebService parseFrom ( InputStream input )
public static Webhook . GenericWebService parseFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteBuffer data)
public static Webhook . GenericWebService parseFrom ( ByteBuffer data )
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static Webhook . GenericWebService parseFrom ( ByteBuffer data , ExtensionRegistryLite extensionRegistry )
parser()
public static Parser<Webhook . GenericWebService > parser ()
Methods
public boolean containsRequestHeaders ( String key )
The HTTP request headers to send together with webhook
requests.
map<string, string> request_headers = 4;
Parameter
Name
Description
key
String
equals(Object obj)
public boolean equals ( Object obj )
Parameter
Name
Description
obj
Object
Overrides
getAllowedCaCerts(int index)
public ByteString getAllowedCaCerts ( int index )
Optional. Specifies a list of allowed custom CA certificates (in DER
format) for HTTPS verification. This overrides the default SSL trust
store. If this is empty or unspecified, Dialogflow will use Google's
default trust store to verify certificates. N.B. Make sure the HTTPS
server certificates are signed with "subject alt name". For instance a
certificate can be self-signed using the following command,
<code><code>
openssl x509 -req -days 200 -in example.com.csr \
-signkey example.com.key \
-out example.com.crt \
-extfile <(printf "\nsubjectAltName='DNS:www.example.com'")
</code></code>
repeated bytes allowed_ca_certs = 5 [(.google.api.field_behavior) = OPTIONAL];
Parameter
Name
Description
index
int
The index of the element to return.
Returns
Type
Description
ByteString
The allowedCaCerts at the given index.
getAllowedCaCertsCount()
public int getAllowedCaCertsCount ()
Optional. Specifies a list of allowed custom CA certificates (in DER
format) for HTTPS verification. This overrides the default SSL trust
store. If this is empty or unspecified, Dialogflow will use Google's
default trust store to verify certificates. N.B. Make sure the HTTPS
server certificates are signed with "subject alt name". For instance a
certificate can be self-signed using the following command,
<code><code>
openssl x509 -req -days 200 -in example.com.csr \
-signkey example.com.key \
-out example.com.crt \
-extfile <(printf "\nsubjectAltName='DNS:www.example.com'")
</code></code>
repeated bytes allowed_ca_certs = 5 [(.google.api.field_behavior) = OPTIONAL];
Returns
Type
Description
int
The count of allowedCaCerts.
getAllowedCaCertsList()
public List<ByteString> getAllowedCaCertsList ()
Optional. Specifies a list of allowed custom CA certificates (in DER
format) for HTTPS verification. This overrides the default SSL trust
store. If this is empty or unspecified, Dialogflow will use Google's
default trust store to verify certificates. N.B. Make sure the HTTPS
server certificates are signed with "subject alt name". For instance a
certificate can be self-signed using the following command,
<code><code>
openssl x509 -req -days 200 -in example.com.csr \
-signkey example.com.key \
-out example.com.crt \
-extfile <(printf "\nsubjectAltName='DNS:www.example.com'")
</code></code>
repeated bytes allowed_ca_certs = 5 [(.google.api.field_behavior) = OPTIONAL];
Returns
Type
Description
List <ByteString >
A list containing the allowedCaCerts.
getDefaultInstanceForType()
public Webhook . GenericWebService getDefaultInstanceForType ()
getParserForType()
public Parser<Webhook . GenericWebService > getParserForType ()
Overrides
getPassword() (deprecated)
public String getPassword ()
Deprecated. google.cloud.dialogflow.cx.v3.Webhook.GenericWebService.password is deprecated.
See google/cloud/dialogflow/cx/v3/webhook.proto;l=111
The password for HTTP Basic authentication.
string password = 3 [deprecated = true];
Returns
Type
Description
String
The password.
getPasswordBytes() (deprecated)
public ByteString getPasswordBytes ()
Deprecated. google.cloud.dialogflow.cx.v3.Webhook.GenericWebService.password is deprecated.
See google/cloud/dialogflow/cx/v3/webhook.proto;l=111
The password for HTTP Basic authentication.
string password = 3 [deprecated = true];
Returns
Type
Description
ByteString
The bytes for password.
public Map<String , String > getRequestHeaders ()
public int getRequestHeadersCount ()
The HTTP request headers to send together with webhook
requests.
map<string, string> request_headers = 4;
Returns
Type
Description
int
public Map<String , String > getRequestHeadersMap ()
The HTTP request headers to send together with webhook
requests.
map<string, string> request_headers = 4;
public String getRequestHeadersOrDefault ( String key , String defaultValue )
The HTTP request headers to send together with webhook
requests.
map<string, string> request_headers = 4;
Returns
Type
Description
String
public String getRequestHeadersOrThrow ( String key )
The HTTP request headers to send together with webhook
requests.
map<string, string> request_headers = 4;
Parameter
Name
Description
key
String
Returns
Type
Description
String
getSerializedSize()
public int getSerializedSize ()
Returns
Type
Description
int
Overrides
getUnknownFields()
public final UnknownFieldSet getUnknownFields ()
Overrides
getUri()
Required. The webhook URI for receiving POST requests. It must use https
protocol.
string uri = 1 [(.google.api.field_behavior) = REQUIRED];
Returns
Type
Description
String
The uri.
getUriBytes()
public ByteString getUriBytes ()
Required. The webhook URI for receiving POST requests. It must use https
protocol.
string uri = 1 [(.google.api.field_behavior) = REQUIRED];
Returns
Type
Description
ByteString
The bytes for uri.
getUsername() (deprecated)
public String getUsername ()
Deprecated. google.cloud.dialogflow.cx.v3.Webhook.GenericWebService.username is deprecated.
See google/cloud/dialogflow/cx/v3/webhook.proto;l=108
The user name for HTTP Basic authentication.
string username = 2 [deprecated = true];
Returns
Type
Description
String
The username.
getUsernameBytes() (deprecated)
public ByteString getUsernameBytes ()
Deprecated. google.cloud.dialogflow.cx.v3.Webhook.GenericWebService.username is deprecated.
See google/cloud/dialogflow/cx/v3/webhook.proto;l=108
The user name for HTTP Basic authentication.
string username = 2 [deprecated = true];
Returns
Type
Description
ByteString
The bytes for username.
hashCode()
Returns
Type
Description
int
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3 . FieldAccessorTable internalGetFieldAccessorTable ()
Overrides
internalGetMapField(int number)
protected MapField internalGetMapField ( int number )
Parameter
Name
Description
number
int
Overrides
isInitialized()
public final boolean isInitialized ()
Overrides
newBuilderForType()
public Webhook . GenericWebService . Builder newBuilderForType ()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected Webhook . GenericWebService . Builder newBuilderForType ( GeneratedMessageV3 . BuilderParent parent )
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance ( GeneratedMessageV3 . UnusedPrivateParameter unused )
Returns
Type
Description
Object
Overrides
toBuilder()
public Webhook . GenericWebService . Builder toBuilder ()
writeTo(CodedOutputStream output)
public void writeTo ( CodedOutputStream output )
Overrides
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-28 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-28 UTC."],[],[]]