Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1CloudIdentityInfo

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

Cloud Identity information for the Cloud Channel Customer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1CloudIdentityInfo

Returns a new instance of GoogleCloudChannelV1CloudIdentityInfo.



438
439
440
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 438

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

Instance Attribute Details

#admin_console_uriString

Output only. URI of Customer's Admin console dashboard. Corresponds to the JSON property adminConsoleUri

Returns:

  • (String)


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

def admin_console_uri
  @admin_console_uri
end

#alternate_emailString

The alternate email. Corresponds to the JSON property alternateEmail

Returns:

  • (String)


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

def alternate_email
  @alternate_email
end

#customer_typeString

CustomerType indicates verification type needed for using services. Corresponds to the JSON property customerType

Returns:

  • (String)


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

def customer_type
  @customer_type
end

#edu_dataGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1EduData

Required Edu Attributes Corresponds to the JSON property eduData



415
416
417
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 415

def edu_data
  @edu_data
end

#is_domain_verifiedBoolean Also known as: is_domain_verified?

Whether the domain is verified. Corresponds to the JSON property isDomainVerified

Returns:

  • (Boolean)


420
421
422
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 420

def is_domain_verified
  @is_domain_verified
end

#language_codeString

Language code. Corresponds to the JSON property languageCode

Returns:

  • (String)


426
427
428
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 426

def language_code
  @language_code
end

#phone_numberString

Phone number associated with the Cloud Identity. Corresponds to the JSON property phoneNumber

Returns:

  • (String)


431
432
433
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 431

def phone_number
  @phone_number
end

#primary_domainString

Output only. The primary domain name. Corresponds to the JSON property primaryDomain

Returns:

  • (String)


436
437
438
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 436

def primary_domain
  @primary_domain
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



443
444
445
446
447
448
449
450
451
452
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 443

def update!(**args)
  @admin_console_uri = args[:admin_console_uri] if args.key?(:admin_console_uri)
  @alternate_email = args[:alternate_email] if args.key?(:alternate_email)
  @customer_type = args[:customer_type] if args.key?(:customer_type)
  @edu_data = args[:edu_data] if args.key?(:edu_data)
  @is_domain_verified = args[:is_domain_verified] if args.key?(:is_domain_verified)
  @language_code = args[:language_code] if args.key?(:language_code)
  @phone_number = args[:phone_number] if args.key?(:phone_number)
  @primary_domain = args[:primary_domain] if args.key?(:primary_domain)
end