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.
3764 3765 3766 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3764 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
3757 3758 3759 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3757 def channel_partner @channel_partner end |
#event_type ⇒ String
Type of event performed on the Channel Partner.
Corresponds to the JSON property eventType
3762 3763 3764 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3762 def event_type @event_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3769 3770 3771 3772 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3769 def update!(**args) @channel_partner = args[:channel_partner] if args.key?(:channel_partner) @event_type = args[:event_type] if args.key?(:event_type) end |