Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents configuration for a generic web service. Dialogflow supports two mechanisms for authentications: - Basic authentication with username and password. - Authentication with additional authentication headers. More information could be found at: https://cloud.google.com/dialogflow/docs/ fulfillment-configure.
Instance Attribute Summary collapse
-
#is_cloud_function ⇒ Boolean
(also: #is_cloud_function?)
Indicates if generic web service is created through Cloud Functions integration.
-
#password ⇒ String
The password for HTTP Basic authentication.
-
#request_headers ⇒ Hash<String,String>
The HTTP request headers to send together with fulfillment requests.
-
#uri ⇒ String
Required.
-
#username ⇒ String
The user name for HTTP Basic authentication.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
constructor
A new instance of GoogleCloudDialogflowV2beta1FulfillmentGenericWebService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
Returns a new instance of GoogleCloudDialogflowV2beta1FulfillmentGenericWebService.
7765 7766 7767 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7765 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_cloud_function ⇒ Boolean Also known as: is_cloud_function?
Indicates if generic web service is created through Cloud Functions
integration. Defaults to false.
Corresponds to the JSON property isCloudFunction
7741 7742 7743 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7741 def is_cloud_function @is_cloud_function end |
#password ⇒ String
The password for HTTP Basic authentication.
Corresponds to the JSON property password
7747 7748 7749 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7747 def password @password end |
#request_headers ⇒ Hash<String,String>
The HTTP request headers to send together with fulfillment requests.
Corresponds to the JSON property requestHeaders
7752 7753 7754 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7752 def request_headers @request_headers end |
#uri ⇒ String
Required. The fulfillment URI for receiving POST requests. It must use https
protocol.
Corresponds to the JSON property uri
7758 7759 7760 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7758 def uri @uri end |
#username ⇒ String
The user name for HTTP Basic authentication.
Corresponds to the JSON property username
7763 7764 7765 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7763 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7770 7771 7772 7773 7774 7775 7776 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 7770 def update!(**args) @is_cloud_function = args[:is_cloud_function] if args.key?(:is_cloud_function) @password = args[:password] if args.key?(:password) @request_headers = args[:request_headers] if args.key?(:request_headers) @uri = args[:uri] if args.key?(:uri) @username = args[:username] if args.key?(:username) end |