Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1UnregisterSubscriberRequest

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

Request Message for UnregisterSubscriber.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1UnregisterSubscriberRequest

Returns a new instance of GoogleCloudChannelV1UnregisterSubscriberRequest.



3688
3689
3690
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3688

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

Instance Attribute Details

#accountString

Optional. Resource name of the account. Required if integrator is not provided. Otherwise, leave this field empty/unset. Corresponds to the JSON property account

Returns:

  • (String)


3675
3676
3677
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3675

def 
  @account
end

#integratorString

Optional. Resource name of the integrator. Required if account is not provided. Otherwise, leave this field empty/unset. Corresponds to the JSON property integrator

Returns:

  • (String)


3681
3682
3683
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3681

def integrator
  @integrator
end

#service_accountString

Required. Service account to unregister from subscriber access to the topic. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


3686
3687
3688
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3686

def 
  @service_account
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3693
3694
3695
3696
3697
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3693

def update!(**args)
  @account = args[:account] if args.key?(:account)
  @integrator = args[:integrator] if args.key?(:integrator)
  @service_account = args[:service_account] if args.key?(:service_account)
end