Class: Google::Apis::ConnectorsV1::EventingDetails
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EventingDetails
- 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
-
#custom_event_types ⇒ Boolean
(also: #custom_event_types?)
Output only.
-
#description ⇒ String
Output only.
-
#documentation_link ⇒ String
Output only.
-
#icon_location ⇒ String
Output only.
-
#launch_stage ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#search_tags ⇒ Array<String>
Output only.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EventingDetails
constructor
A new instance of EventingDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EventingDetails
Returns a new instance of EventingDetails.
3371 3372 3373 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3371 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_event_types ⇒ Boolean Also known as: custom_event_types?
Output only. Custom Event Types.
Corresponds to the JSON property customEventTypes
3333 3334 3335 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3333 def custom_event_types @custom_event_types end |
#description ⇒ String
Output only. Description.
Corresponds to the JSON property description
3339 3340 3341 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3339 def description @description end |
#documentation_link ⇒ String
Output only. Link to public documentation.
Corresponds to the JSON property documentationLink
3344 3345 3346 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3344 def documentation_link @documentation_link end |
#icon_location ⇒ String
Output only. Cloud storage location of the icon.
Corresponds to the JSON property iconLocation
3349 3350 3351 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3349 def icon_location @icon_location end |
#launch_stage ⇒ String
Output only. Eventing Launch Stage.
Corresponds to the JSON property launchStage
3354 3355 3356 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3354 def launch_stage @launch_stage end |
#name ⇒ String
Output only. Name of the Eventing trigger.
Corresponds to the JSON property name
3359 3360 3361 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3359 def name @name end |
#search_tags ⇒ Array<String>
Output only. Array of search keywords.
Corresponds to the JSON property searchTags
3364 3365 3366 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3364 def @search_tags end |
#type ⇒ String
Output only. The type of the event listener for a specific connector.
Corresponds to the JSON property type
3369 3370 3371 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3369 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3376 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) @type = args[:type] if args.key?(:type) end |