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



1102
1103
1104
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1102

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)


1054
1055
1056
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1054

def admin_created
  @admin_created
end

#aliasesArray<String>

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

Returns:

  • (Array<String>)


1060
1061
1062
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1060

def aliases
  @aliases
end

#descriptionString

Description of the group Corresponds to the JSON property description

Returns:

  • (String)


1065
1066
1067
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1065

def description
  @description
end

#direct_members_countFixnum

Group direct members count Corresponds to the JSON property directMembersCount

Returns:

  • (Fixnum)


1070
1071
1072
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1070

def direct_members_count
  @direct_members_count
end

#emailString

Email of Group Corresponds to the JSON property email

Returns:

  • (String)


1075
1076
1077
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1075

def email
  @email
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


1080
1081
1082
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1080

def etag
  @etag
end

#idString

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

Returns:

  • (String)


1085
1086
1087
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1085

def id
  @id
end

#kindString

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

Returns:

  • (String)


1090
1091
1092
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1090

def kind
  @kind
end

#nameString

Group name Corresponds to the JSON property name

Returns:

  • (String)


1095
1096
1097
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1095

def name
  @name
end

#non_editable_aliasesArray<String>

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

Returns:

  • (Array<String>)


1100
1101
1102
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1100

def non_editable_aliases
  @non_editable_aliases
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1107

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