Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ApplicationIntegrationEndpointDetails

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

Overview

The details of the Application Integration endpoint to be triggered for curation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApihubV1ApplicationIntegrationEndpointDetails

Returns a new instance of GoogleCloudApihubV1ApplicationIntegrationEndpointDetails.



856
857
858
# File 'lib/google/apis/apihub_v1/classes.rb', line 856

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

Instance Attribute Details

#trigger_idString

Required. The API trigger ID of the Application Integration workflow. Corresponds to the JSON property triggerId

Returns:

  • (String)


845
846
847
# File 'lib/google/apis/apihub_v1/classes.rb', line 845

def trigger_id
  @trigger_id
end

#uriString

Required. The endpoint URI should be a valid REST URI for triggering an Application Integration. Format: https://integrations.googleapis.com/v1/name= projects//locations//integrations/:execute or https://location- integrations.googleapis.com/v1/name=projects//locations//integrations/: execute Corresponds to the JSON property uri

Returns:

  • (String)


854
855
856
# File 'lib/google/apis/apihub_v1/classes.rb', line 854

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



861
862
863
864
# File 'lib/google/apis/apihub_v1/classes.rb', line 861

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