Class: Google::Apis::ConnectorsV1::WebhookData
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::WebhookData
- 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
WebhookData has details of webhook configuration.
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Output only.
-
#create_time ⇒ String
Output only.
-
#id ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#next_refresh_time ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WebhookData
constructor
A new instance of WebhookData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WebhookData
Returns a new instance of WebhookData.
6379 6380 6381 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6379 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Output only. Additional webhook related field values.
Corresponds to the JSON property additionalVariables
6351 6352 6353 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6351 def additional_variables @additional_variables end |
#create_time ⇒ String
Output only. Timestamp when the webhook was created.
Corresponds to the JSON property createTime
6356 6357 6358 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6356 def create_time @create_time end |
#id ⇒ String
Output only. ID to uniquely identify webhook.
Corresponds to the JSON property id
6361 6362 6363 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6361 def id @id end |
#name ⇒ String
Output only. Name of the Webhook
Corresponds to the JSON property name
6366 6367 6368 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6366 def name @name end |
#next_refresh_time ⇒ String
Output only. Next webhook refresh time. Will be null if refresh is not
supported.
Corresponds to the JSON property nextRefreshTime
6372 6373 6374 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6372 def next_refresh_time @next_refresh_time end |
#update_time ⇒ String
Output only. Timestamp when the webhook was last updated.
Corresponds to the JSON property updateTime
6377 6378 6379 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6377 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6384 6385 6386 6387 6388 6389 6390 6391 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6384 def update!(**args) @additional_variables = args[:additional_variables] if args.key?(:additional_variables) @create_time = args[:create_time] if args.key?(:create_time) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @next_refresh_time = args[:next_refresh_time] if args.key?(:next_refresh_time) @update_time = args[:update_time] if args.key?(:update_time) end |