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.



536
537
538
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 536

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)


494
495
496
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 494

def admin_console_uri
  @admin_console_uri
end

#alternate_emailString

The alternate email. Corresponds to the JSON property alternateEmail

Returns:

  • (String)


499
500
501
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 499

def alternate_email
  @alternate_email
end

#customer_typeString

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

Returns:

  • (String)


504
505
506
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 504

def customer_type
  @customer_type
end

#edu_dataGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1EduData

Required Edu Attributes Corresponds to the JSON property eduData



509
510
511
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 509

def edu_data
  @edu_data
end

#is_domain_verifiedBoolean Also known as: is_domain_verified?

Output only. Whether the domain is verified. This field is not returned for a Customer's cloud_identity_info resource. Partners can use the domains.get() method of the Workspace SDK's Directory API, or listen to the PRIMARY_DOMAIN_VERIFIED Pub/Sub event in to track domain verification of their resolve Workspace customers. Corresponds to the JSON property isDomainVerified

Returns:

  • (Boolean)


518
519
520
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 518

def is_domain_verified
  @is_domain_verified
end

#language_codeString

Language code. Corresponds to the JSON property languageCode

Returns:

  • (String)


524
525
526
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 524

def language_code
  @language_code
end

#phone_numberString

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

Returns:

  • (String)


529
530
531
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 529

def phone_number
  @phone_number
end

#primary_domainString

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

Returns:

  • (String)


534
535
536
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 534

def primary_domain
  @primary_domain
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



541
542
543
544
545
546
547
548
549
550
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 541

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