Class: Google::Apis::EventarcV1::Trigger
- Inherits:
-
Object
- Object
- Google::Apis::EventarcV1::Trigger
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/eventarc_v1/classes.rb,
lib/google/apis/eventarc_v1/representations.rb,
lib/google/apis/eventarc_v1/representations.rb
Overview
A representation of the trigger resource.
Instance Attribute Summary collapse
-
#channel ⇒ String
Optional.
-
#create_time ⇒ String
Output only.
-
#destination ⇒ Google::Apis::EventarcV1::Destination
Represents a target of an invocation over HTTP.
-
#etag ⇒ String
Output only.
-
#event_filters ⇒ Array<Google::Apis::EventarcV1::EventFilter>
Required.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Required.
-
#service_account ⇒ String
Optional.
-
#transport ⇒ Google::Apis::EventarcV1::Transport
Represents the transport intermediaries created for the trigger to deliver events.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Trigger
constructor
A new instance of Trigger.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Trigger
Returns a new instance of Trigger.
1270 1271 1272 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1270 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel ⇒ String
Optional. The name of the channel associated with the trigger in projects/
project/locations/location/channels/channel`format. You must provide a
channel to receive events from Eventarc SaaS partners.
Corresponds to the JSON propertychannel`
1201 1202 1203 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1201 def channel @channel end |
#create_time ⇒ String
Output only. The creation time.
Corresponds to the JSON property createTime
1206 1207 1208 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1206 def create_time @create_time end |
#destination ⇒ Google::Apis::EventarcV1::Destination
Represents a target of an invocation over HTTP.
Corresponds to the JSON property destination
1211 1212 1213 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1211 def destination @destination end |
#etag ⇒ String
Output only. This checksum is computed by the server based on the value of
other fields, and might be sent only on create requests to ensure that the
client has an up-to-date value before proceeding.
Corresponds to the JSON property etag
1218 1219 1220 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1218 def etag @etag end |
#event_filters ⇒ Array<Google::Apis::EventarcV1::EventFilter>
Required. null The list of filters that applies to event attributes. Only
events that match all the provided filters are sent to the destination.
Corresponds to the JSON property eventFilters
1224 1225 1226 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1224 def event_filters @event_filters end |
#labels ⇒ Hash<String,String>
Optional. User labels attached to the triggers that can be used to group
resources.
Corresponds to the JSON property labels
1230 1231 1232 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1230 def labels @labels end |
#name ⇒ String
Required. The resource name of the trigger. Must be unique within the location
of the project and must be in projects/project/locations/location/
triggers/trigger`format.
Corresponds to the JSON propertyname`
1237 1238 1239 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1237 def name @name end |
#service_account ⇒ String
Optional. The IAM service account email associated with the trigger. The
service account represents the identity of the trigger. The principal who
calls this API must have the iam.serviceAccounts.actAs permission in the
service account. See https://cloud.google.com/iam/docs/understanding-service-
accounts?hl=en#sa_common for more information. For Cloud Run destinations,
this service account is used to generate identity tokens when invoking the
service. See https://cloud.google.com/run/docs/triggering/pubsub-push#create-
service-account for information on how to invoke authenticated Cloud Run
services. To create Audit Log triggers, the service account should also have
the roles/eventarc.eventReceiver IAM role.
Corresponds to the JSON property serviceAccount
1251 1252 1253 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1251 def service_account @service_account end |
#transport ⇒ Google::Apis::EventarcV1::Transport
Represents the transport intermediaries created for the trigger to deliver
events.
Corresponds to the JSON property transport
1257 1258 1259 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1257 def transport @transport end |
#uid ⇒ String
Output only. Server-assigned unique identifier for the trigger. The value is a
UUID4 string and guaranteed to remain unchanged until the resource is deleted.
Corresponds to the JSON property uid
1263 1264 1265 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1263 def uid @uid end |
#update_time ⇒ String
Output only. The last-modified time.
Corresponds to the JSON property updateTime
1268 1269 1270 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1268 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 |
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1275 def update!(**args) @channel = args[:channel] if args.key?(:channel) @create_time = args[:create_time] if args.key?(:create_time) @destination = args[:destination] if args.key?(:destination) @etag = args[:etag] if args.key?(:etag) @event_filters = args[:event_filters] if args.key?(:event_filters) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @service_account = args[:service_account] if args.key?(:service_account) @transport = args[:transport] if args.key?(:transport) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |