Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents configuration for a Service Directory service.
Instance Attribute Summary collapse
-
#generic_web_service ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
Represents configuration for a generic web service.
-
#service ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
constructor
A new instance of GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
Returns a new instance of GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig.
6184 6185 6186 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#generic_web_service ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
Represents configuration for a generic web service.
Corresponds to the JSON property genericWebService
6174 6175 6176 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6174 def generic_web_service @generic_web_service end |
#service ⇒ String
Required. The name of Service Directory service. Format: projects//locations//namespaces//services/
.
Location ID
of the service directory must be the same as the location of the
agent.
Corresponds to the JSON property service
6182 6183 6184 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6182 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6189 6190 6191 6192 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6189 def update!(**args) @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service) @service = args[:service] if args.key?(:service) end |