Class: Google::Apis::EventarcV1::Trigger

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Trigger

Returns a new instance of Trigger.



1142
1143
1144
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1142

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. The creation time. Corresponds to the JSON property createTime

Returns:

  • (String)


1078
1079
1080
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1078

def create_time
  @create_time
end

#destinationGoogle::Apis::EventarcV1::Destination

Represents a target of an invocation over HTTP. Corresponds to the JSON property destination



1083
1084
1085
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1083

def destination
  @destination
end

#etagString

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

Returns:

  • (String)


1090
1091
1092
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1090

def etag
  @etag
end

#event_filtersArray<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



1096
1097
1098
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1096

def event_filters
  @event_filters
end

#labelsHash<String,String>

Optional. User labels attached to the triggers that can be used to group resources. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1102
1103
1104
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1102

def labels
  @labels
end

#nameString

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`

Returns:

  • (String)


1109
1110
1111
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1109

def name
  @name
end

#service_accountString

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

Returns:

  • (String)


1123
1124
1125
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1123

def 
  @service_account
end

#transportGoogle::Apis::EventarcV1::Transport

Represents the transport intermediaries created for the trigger to deliver events. Corresponds to the JSON property transport



1129
1130
1131
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1129

def transport
  @transport
end

#uidString

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

Returns:

  • (String)


1135
1136
1137
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1135

def uid
  @uid
end

#update_timeString

Output only. The last-modified time. Corresponds to the JSON property updateTime

Returns:

  • (String)


1140
1141
1142
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1140

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
# File 'lib/google/apis/eventarc_v1/classes.rb', line 1147

def update!(**args)
  @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