Class: Google::Apis::EventarcV1::Channel

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 Channel resource. A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Channel

Returns a new instance of Channel.



260
261
262
# File 'lib/google/apis/eventarc_v1/classes.rb', line 260

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

Instance Attribute Details

#activation_tokenString

Output only. The activation token for the channel. The token must be used by the provider to register the channel for publishing. Corresponds to the JSON property activationToken

Returns:

  • (String)


208
209
210
# File 'lib/google/apis/eventarc_v1/classes.rb', line 208

def activation_token
  @activation_token
end

#create_timeString

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

Returns:

  • (String)


213
214
215
# File 'lib/google/apis/eventarc_v1/classes.rb', line 213

def create_time
  @create_time
end

#crypto_key_nameString

Resource name of a KMS crypto key (managed by the user) used to encrypt/ decrypt their event data. It must match the pattern projects/*/locations/*/ keyRings/*/cryptoKeys/*. Corresponds to the JSON property cryptoKeyName

Returns:

  • (String)


220
221
222
# File 'lib/google/apis/eventarc_v1/classes.rb', line 220

def crypto_key_name
  @crypto_key_name
end

#nameString

Required. The resource name of the channel. Must be unique within the location on the project and must be in projects/project/locations/location/ channels/channel_id`format. Corresponds to the JSON propertyname`

Returns:

  • (String)


227
228
229
# File 'lib/google/apis/eventarc_v1/classes.rb', line 227

def name
  @name
end

#providerString

The name of the event provider (e.g. Eventarc SaaS partner) associated with the channel. This provider will be granted permissions to publish events to the channel. Format: projects/project/locations/location/providers/ provider_id`. Corresponds to the JSON propertyprovider`

Returns:

  • (String)


235
236
237
# File 'lib/google/apis/eventarc_v1/classes.rb', line 235

def provider
  @provider
end

#pubsub_topicString

Output only. The name of the Pub/Sub topic created and managed by Eventarc system as a transport for the event delivery. Format: projects/project/ topics/topic_id`. Corresponds to the JSON propertypubsubTopic`

Returns:

  • (String)


242
243
244
# File 'lib/google/apis/eventarc_v1/classes.rb', line 242

def pubsub_topic
  @pubsub_topic
end

#stateString

Output only. The state of a Channel. Corresponds to the JSON property state

Returns:

  • (String)


247
248
249
# File 'lib/google/apis/eventarc_v1/classes.rb', line 247

def state
  @state
end

#uidString

Output only. Server assigned unique identifier for the channel. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted. Corresponds to the JSON property uid

Returns:

  • (String)


253
254
255
# File 'lib/google/apis/eventarc_v1/classes.rb', line 253

def uid
  @uid
end

#update_timeString

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

Returns:

  • (String)


258
259
260
# File 'lib/google/apis/eventarc_v1/classes.rb', line 258

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



265
266
267
268
269
270
271
272
273
274
275
# File 'lib/google/apis/eventarc_v1/classes.rb', line 265

def update!(**args)
  @activation_token = args[:activation_token] if args.key?(:activation_token)
  @create_time = args[:create_time] if args.key?(:create_time)
  @crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
  @name = args[:name] if args.key?(:name)
  @provider = args[:provider] if args.key?(:provider)
  @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
  @state = args[:state] if args.key?(:state)
  @uid = args[:uid] if args.key?(:uid)
  @update_time = args[:update_time] if args.key?(:update_time)
end