Class: Google::Apis::ConnectorsV1::EventingDetails

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

Overview

Eventing Details message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EventingDetails

Returns a new instance of EventingDetails.



1765
1766
1767
# File 'lib/google/apis/connectors_v1/classes.rb', line 1765

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

Instance Attribute Details

#custom_event_typesBoolean Also known as: custom_event_types?

Output only. Custom Event Types. Corresponds to the JSON property customEventTypes

Returns:

  • (Boolean)


1732
1733
1734
# File 'lib/google/apis/connectors_v1/classes.rb', line 1732

def custom_event_types
  @custom_event_types
end

#descriptionString

Output only. Description. Corresponds to the JSON property description

Returns:

  • (String)


1738
1739
1740
# File 'lib/google/apis/connectors_v1/classes.rb', line 1738

def description
  @description
end

Output only. Link to public documentation. Corresponds to the JSON property documentationLink

Returns:

  • (String)


1743
1744
1745
# File 'lib/google/apis/connectors_v1/classes.rb', line 1743

def documentation_link
  @documentation_link
end

#icon_locationString

Output only. Cloud storage location of the icon. Corresponds to the JSON property iconLocation

Returns:

  • (String)


1748
1749
1750
# File 'lib/google/apis/connectors_v1/classes.rb', line 1748

def icon_location
  @icon_location
end

#launch_stageString

Output only. Eventing Launch Stage. Corresponds to the JSON property launchStage

Returns:

  • (String)


1753
1754
1755
# File 'lib/google/apis/connectors_v1/classes.rb', line 1753

def launch_stage
  @launch_stage
end

#nameString

Output only. Name of the Eventing trigger. Corresponds to the JSON property name

Returns:

  • (String)


1758
1759
1760
# File 'lib/google/apis/connectors_v1/classes.rb', line 1758

def name
  @name
end

#search_tagsArray<String>

Output only. Array of search keywords. Corresponds to the JSON property searchTags

Returns:

  • (Array<String>)


1763
1764
1765
# File 'lib/google/apis/connectors_v1/classes.rb', line 1763

def search_tags
  @search_tags
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1770
1771
1772
1773
1774
1775
1776
1777
1778
# File 'lib/google/apis/connectors_v1/classes.rb', line 1770

def update!(**args)
  @custom_event_types = args[:custom_event_types] if args.key?(:custom_event_types)
  @description = args[:description] if args.key?(:description)
  @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
  @icon_location = args[:icon_location] if args.key?(:icon_location)
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
  @name = args[:name] if args.key?(:name)
  @search_tags = args[:search_tags] if args.key?(:search_tags)
end