Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Represents configuration for a Service Directory service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig

Returns a new instance of GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig.



13046
13047
13048
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13046

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#generic_web_serviceGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService

Represents configuration for a generic web service. Corresponds to the JSON property genericWebService



13036
13037
13038
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13036

def generic_web_service
  @generic_web_service
end

#serviceString

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

Returns:

  • (String)


13044
13045
13046
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13044

def service
  @service
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13051
13052
13053
13054
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13051

def update!(**args)
  @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
  @service = args[:service] if args.key?(:service)
end