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.



615
616
617
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 615

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)


573
574
575
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 573

def admin_console_uri
  @admin_console_uri
end

#alternate_emailString

The alternate email. Corresponds to the JSON property alternateEmail

Returns:

  • (String)


578
579
580
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 578

def alternate_email
  @alternate_email
end

#customer_typeString

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

Returns:

  • (String)


583
584
585
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 583

def customer_type
  @customer_type
end

#edu_dataGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1EduData

Required Edu Attributes Corresponds to the JSON property eduData



588
589
590
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 588

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)


597
598
599
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 597

def is_domain_verified
  @is_domain_verified
end

#language_codeString

Language code. Corresponds to the JSON property languageCode

Returns:

  • (String)


603
604
605
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 603

def language_code
  @language_code
end

#phone_numberString

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

Returns:

  • (String)


608
609
610
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 608

def phone_number
  @phone_number
end

#primary_domainString

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

Returns:

  • (String)


613
614
615
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 613

def primary_domain
  @primary_domain
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



620
621
622
623
624
625
626
627
628
629
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 620

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