Class: Google::Apis::CloudsearchV1::GSuitePrincipal
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::GSuitePrincipal
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#gsuite_domain ⇒ Boolean
(also: #gsuite_domain?)
This principal represents all users of the Google Workspace domain of the customer.
-
#gsuite_group_email ⇒ String
This principal references a Google Workspace group name.
-
#gsuite_user_email ⇒ String
This principal references a Google Workspace user account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GSuitePrincipal
constructor
A new instance of GSuitePrincipal.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GSuitePrincipal
Returns a new instance of GSuitePrincipal.
8475 8476 8477 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8475 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gsuite_domain ⇒ Boolean Also known as: gsuite_domain?
This principal represents all users of the Google Workspace domain of the
customer.
Corresponds to the JSON property gsuiteDomain
8462 8463 8464 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8462 def gsuite_domain @gsuite_domain end |
#gsuite_group_email ⇒ String
This principal references a Google Workspace group name.
Corresponds to the JSON property gsuiteGroupEmail
8468 8469 8470 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8468 def gsuite_group_email @gsuite_group_email end |
#gsuite_user_email ⇒ String
This principal references a Google Workspace user account.
Corresponds to the JSON property gsuiteUserEmail
8473 8474 8475 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8473 def gsuite_user_email @gsuite_user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8480 8481 8482 8483 8484 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8480 def update!(**args) @gsuite_domain = args[:gsuite_domain] if args.key?(:gsuite_domain) @gsuite_group_email = args[:gsuite_group_email] if args.key?(:gsuite_group_email) @gsuite_user_email = args[:gsuite_user_email] if args.key?(:gsuite_user_email) end |