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.



3489
3490
3491
# File 'lib/google/apis/connectors_v1/classes.rb', line 3489

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)


3446
3447
3448
# File 'lib/google/apis/connectors_v1/classes.rb', line 3446

def custom_event_types
  @custom_event_types
end

#descriptionString

Output only. Description. Corresponds to the JSON property description

Returns:

  • (String)


3452
3453
3454
# File 'lib/google/apis/connectors_v1/classes.rb', line 3452

def description
  @description
end

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

Returns:

  • (String)


3457
3458
3459
# File 'lib/google/apis/connectors_v1/classes.rb', line 3457

def documentation_link
  @documentation_link
end

#icon_locationString

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

Returns:

  • (String)


3462
3463
3464
# File 'lib/google/apis/connectors_v1/classes.rb', line 3462

def icon_location
  @icon_location
end

#launch_stageString

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

Returns:

  • (String)


3467
3468
3469
# File 'lib/google/apis/connectors_v1/classes.rb', line 3467

def launch_stage
  @launch_stage
end

#nameString

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

Returns:

  • (String)


3472
3473
3474
# File 'lib/google/apis/connectors_v1/classes.rb', line 3472

def name
  @name
end

#search_tagsArray<String>

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

Returns:

  • (Array<String>)


3477
3478
3479
# File 'lib/google/apis/connectors_v1/classes.rb', line 3477

def search_tags
  @search_tags
end

#subscription_typeString

The webhook model supported by this connector. Corresponds to the JSON property subscriptionType

Returns:

  • (String)


3482
3483
3484
# File 'lib/google/apis/connectors_v1/classes.rb', line 3482

def subscription_type
  @subscription_type
end

#typeString

Output only. The type of the event listener for a specific connector. Corresponds to the JSON property type

Returns:

  • (String)


3487
3488
3489
# File 'lib/google/apis/connectors_v1/classes.rb', line 3487

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
# File 'lib/google/apis/connectors_v1/classes.rb', line 3494

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)
  @subscription_type = args[:subscription_type] if args.key?(:subscription_type)
  @type = args[:type] if args.key?(:type)
end