Class: Google::Apis::AdminDirectoryV1::Alias
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::Alias
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
 generated/google/apis/admin_directory_v1/representations.rb,
 generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for Alias object in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #alias  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A alias email Corresponds to the JSON property alias.
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique id of the group (Read-only) Unique id of the user (Read-only) Corresponds to the JSON property id.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Kind of resource this is. 
- 
  
    
      #primary_email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Group's primary email (Read-only) User's primary email (Read-only) Corresponds to the JSON property primaryEmail.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Alias 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Alias. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Alias
Returns a new instance of Alias
| 54 55 56 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 54 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#alias ⇒ String
A alias email
Corresponds to the JSON property alias
| 32 33 34 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 32 def alias @alias end | 
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 37 38 39 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 37 def etag @etag end | 
#id ⇒ String
Unique id of the group (Read-only) Unique id of the user (Read-only)
Corresponds to the JSON property id
| 42 43 44 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 42 def id @id end | 
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
| 47 48 49 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 47 def kind @kind end | 
#primary_email ⇒ String
Group's primary email (Read-only) User's primary email (Read-only)
Corresponds to the JSON property primaryEmail
| 52 53 54 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 52 def primary_email @primary_email end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 59 60 61 62 63 64 65 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 59 def update!(**args) @alias = args[:alias] if args.key?(:alias) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @primary_email = args[:primary_email] if args.key?(:primary_email) end |