Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1ChannelPartnerEvent

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb

Overview

Represents Pub/Sub messages about updates to a Channel Partner. You can retrieve updated values through the ChannelPartnerLinks API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1alpha1ChannelPartnerEvent

Returns a new instance of GoogleCloudChannelV1alpha1ChannelPartnerEvent.



3256
3257
3258
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3256

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

Instance Attribute Details

#channel_partnerString

Resource name for the Channel Partner Link. Channel_partner uses the format: accounts/account_id/channelPartnerLinks/channel_partner_id Corresponds to the JSON property channelPartner

Returns:

  • (String)


3249
3250
3251
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3249

def channel_partner
  @channel_partner
end

#event_typeString

Type of event performed on the Channel Partner. Corresponds to the JSON property eventType

Returns:

  • (String)


3254
3255
3256
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3254

def event_type
  @event_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3261
3262
3263
3264
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3261

def update!(**args)
  @channel_partner = args[:channel_partner] if args.key?(:channel_partner)
  @event_type = args[:event_type] if args.key?(:event_type)
end