Class: Google::Apis::ClouduseraccountsAlpha::UserList
- Inherits:
-
Object
- Object
- Google::Apis::ClouduseraccountsAlpha::UserList
- Defined in:
- generated/google/apis/clouduseraccounts_alpha/classes.rb,
generated/google/apis/clouduseraccounts_alpha/representations.rb,
generated/google/apis/clouduseraccounts_alpha/representations.rb
Instance Attribute Summary collapse
-
#id ⇒ String
[Output Only] Unique identifier for the resource; defined by the server.
-
#items ⇒ Array<Google::Apis::ClouduseraccountsAlpha::User>
[Output Only] A list of User resources.
-
#kind ⇒ String
[Output Only] Type of resource.
-
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
-
#self_link ⇒ String
[Output Only] Server defined URL for this resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserList
constructor
A new instance of UserList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserList
Returns a new instance of UserList
1173 1174 1175 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1173 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
[Output Only] Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
1150 1151 1152 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1150 def id @id end |
#items ⇒ Array<Google::Apis::ClouduseraccountsAlpha::User>
[Output Only] A list of User resources.
Corresponds to the JSON property items
1155 1156 1157 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1155 def items @items end |
#kind ⇒ String
[Output Only] Type of resource. Always clouduseraccounts#userList for lists of
users.
Corresponds to the JSON property kind
1161 1162 1163 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1161 def kind @kind end |
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
Corresponds to the JSON property nextPageToken
1166 1167 1168 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1166 def next_page_token @next_page_token end |
#self_link ⇒ String
[Output Only] Server defined URL for this resource.
Corresponds to the JSON property selfLink
1171 1172 1173 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1171 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1178 1179 1180 1181 1182 1183 1184 |
# File 'generated/google/apis/clouduseraccounts_alpha/classes.rb', line 1178 def update!(**args) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @self_link = args[:self_link] if args.key?(:self_link) end |