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.



1714
1715
1716
# File 'lib/google/apis/connectors_v1/classes.rb', line 1714

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)


1681
1682
1683
# File 'lib/google/apis/connectors_v1/classes.rb', line 1681

def custom_event_types
  @custom_event_types
end

#descriptionString

Output only. Description. Corresponds to the JSON property description

Returns:

  • (String)


1687
1688
1689
# File 'lib/google/apis/connectors_v1/classes.rb', line 1687

def description
  @description
end

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

Returns:

  • (String)


1692
1693
1694
# File 'lib/google/apis/connectors_v1/classes.rb', line 1692

def documentation_link
  @documentation_link
end

#icon_locationString

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

Returns:

  • (String)


1697
1698
1699
# File 'lib/google/apis/connectors_v1/classes.rb', line 1697

def icon_location
  @icon_location
end

#launch_stageString

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

Returns:

  • (String)


1702
1703
1704
# File 'lib/google/apis/connectors_v1/classes.rb', line 1702

def launch_stage
  @launch_stage
end

#nameString

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

Returns:

  • (String)


1707
1708
1709
# File 'lib/google/apis/connectors_v1/classes.rb', line 1707

def name
  @name
end

#search_tagsArray<String>

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

Returns:

  • (Array<String>)


1712
1713
1714
# File 'lib/google/apis/connectors_v1/classes.rb', line 1712

def search_tags
  @search_tags
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1719
1720
1721
1722
1723
1724
1725
1726
1727
# File 'lib/google/apis/connectors_v1/classes.rb', line 1719

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