Class: Google::Apis::AdminDirectoryV1::Group

Inherits:
Object
  • Object
show all
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 Group resource in Directory API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Group

Returns a new instance of Group.



1725
1726
1727
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1725

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#admin_createdBoolean Also known as: admin_created?

Is the group created by admin (Read-only) * Corresponds to the JSON property adminCreated

Returns:

  • (Boolean)


1677
1678
1679
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1677

def admin_created
  @admin_created
end

#aliasesArray<String>

List of aliases (Read-only) Corresponds to the JSON property aliases

Returns:

  • (Array<String>)


1683
1684
1685
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1683

def aliases
  @aliases
end

#descriptionString

Description of the group Corresponds to the JSON property description

Returns:

  • (String)


1688
1689
1690
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1688

def description
  @description
end

#direct_members_countFixnum

Group direct members count Corresponds to the JSON property directMembersCount

Returns:

  • (Fixnum)


1693
1694
1695
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1693

def direct_members_count
  @direct_members_count
end

#emailString

Email of Group Corresponds to the JSON property email

Returns:

  • (String)


1698
1699
1700
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1698

def email
  @email
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


1703
1704
1705
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1703

def etag
  @etag
end

#idString

Unique identifier of Group (Read-only) Corresponds to the JSON property id

Returns:

  • (String)


1708
1709
1710
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1708

def id
  @id
end

#kindString

Kind of resource this is. Corresponds to the JSON property kind

Returns:

  • (String)


1713
1714
1715
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1713

def kind
  @kind
end

#nameString

Group name Corresponds to the JSON property name

Returns:

  • (String)


1718
1719
1720
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1718

def name
  @name
end

#non_editable_aliasesArray<String>

List of non editable aliases (Read-only) Corresponds to the JSON property nonEditableAliases

Returns:

  • (Array<String>)


1723
1724
1725
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1723

def non_editable_aliases
  @non_editable_aliases
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1730

def update!(**args)
  @admin_created = args[:admin_created] if args.key?(:admin_created)
  @aliases = args[:aliases] if args.key?(:aliases)
  @description = args[:description] if args.key?(:description)
  @direct_members_count = args[:direct_members_count] if args.key?(:direct_members_count)
  @email = args[:email] if args.key?(:email)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @non_editable_aliases = args[:non_editable_aliases] if args.key?(:non_editable_aliases)
end