Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1ChannelPartnerEvent
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1ChannelPartnerEvent
- 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
-
#channel_partner ⇒ String
Resource name for the Channel Partner Link.
-
#event_type ⇒ String
Type of event performed on the Channel Partner.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1alpha1ChannelPartnerEvent
constructor
A new instance of GoogleCloudChannelV1alpha1ChannelPartnerEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1alpha1ChannelPartnerEvent
Returns a new instance of GoogleCloudChannelV1alpha1ChannelPartnerEvent.
2754 2755 2756 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2754 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel_partner ⇒ String
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
2747 2748 2749 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2747 def channel_partner @channel_partner end |
#event_type ⇒ String
Type of event performed on the Channel Partner.
Corresponds to the JSON property eventType
2752 2753 2754 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2752 def event_type @event_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2759 2760 2761 2762 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2759 def update!(**args) @channel_partner = args[:channel_partner] if args.key?(:channel_partner) @event_type = args[:event_type] if args.key?(:event_type) end |