Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest
- 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 CloudChannelService.CheckCloudIdentityAccountsExist.
Instance Attribute Summary collapse
-
#domain ⇒ String
Required.
-
#primary_admin_email ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest
constructor
A new instance of GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest
Returns a new instance of GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest.
471 472 473 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 471 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ String
Required. Domain to fetch for Cloud Identity account customers, including
domained and domainless.
Corresponds to the JSON property domain
463 464 465 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 463 def domain @domain end |
#primary_admin_email ⇒ String
Optional. Primary admin email to fetch for Cloud Identity account domainless
customer.
Corresponds to the JSON property primaryAdminEmail
469 470 471 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 469 def primary_admin_email @primary_admin_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
476 477 478 479 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 476 def update!(**args) @domain = args[:domain] if args.key?(:domain) @primary_admin_email = args[:primary_admin_email] if args.key?(:primary_admin_email) end |