Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ChannelPartnerLink

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

Entity representing a link between distributors and their indirect resellers in an n-tier resale channel.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1ChannelPartnerLink

Returns a new instance of GoogleCloudChannelV1ChannelPartnerLink.



412
413
414
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 412

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

Instance Attribute Details

#channel_partner_cloud_identity_infoGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1CloudIdentityInfo

Cloud Identity information for the Cloud Channel Customer. Corresponds to the JSON property channelPartnerCloudIdentityInfo



373
374
375
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 373

def channel_partner_cloud_identity_info
  @channel_partner_cloud_identity_info
end

#create_timeString

Output only. Timestamp of when the channel partner link is created. Corresponds to the JSON property createTime

Returns:

  • (String)


378
379
380
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 378

def create_time
  @create_time
end

Output only. URI of the web page where partner accepts the link invitation. Corresponds to the JSON property inviteLinkUri

Returns:

  • (String)


383
384
385
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 383

def invite_link_uri
  @invite_link_uri
end

Required. State of the channel partner link. Corresponds to the JSON property linkState

Returns:

  • (String)


388
389
390
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 388

def link_state
  @link_state
end

#nameString

Output only. Resource name for the channel partner link, in the format accounts/account_id/channelPartnerLinks/id. Corresponds to the JSON property name

Returns:

  • (String)


394
395
396
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 394

def name
  @name
end

#public_idString

Output only. Public identifier that a customer must use to generate a transfer token to move to this distributor-reseller combination. Corresponds to the JSON property publicId

Returns:

  • (String)


400
401
402
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 400

def public_id
  @public_id
end

#reseller_cloud_identity_idString

Required. Cloud Identity ID of the linked reseller. Corresponds to the JSON property resellerCloudIdentityId

Returns:

  • (String)


405
406
407
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 405

def reseller_cloud_identity_id
  @reseller_cloud_identity_id
end

#update_timeString

Output only. Timestamp of when the channel partner link is updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


410
411
412
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 410

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



417
418
419
420
421
422
423
424
425
426
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 417

def update!(**args)
  @channel_partner_cloud_identity_info = args[:channel_partner_cloud_identity_info] if args.key?(:channel_partner_cloud_identity_info)
  @create_time = args[:create_time] if args.key?(:create_time)
  @invite_link_uri = args[:invite_link_uri] if args.key?(:invite_link_uri)
  @link_state = args[:link_state] if args.key?(:link_state)
  @name = args[:name] if args.key?(:name)
  @public_id = args[:public_id] if args.key?(:public_id)
  @reseller_cloud_identity_id = args[:reseller_cloud_identity_id] if args.key?(:reseller_cloud_identity_id)
  @update_time = args[:update_time] if args.key?(:update_time)
end