All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.accelbyte.sdk.api.iam.operations.users.GetAdminUsersByRoleID Maven / Gradle / Ivy

There is a newer version: 0.67.0
Show newest version
/*
 * Copyright (c) 2022 AccelByte Inc. All Rights Reserved
 * This is licensed software from AccelByte Inc, for limitations
 * and restrictions contact your company contract manager.
 *
 * Code generated. DO NOT EDIT.
 */

package net.accelbyte.sdk.api.iam.operations.users;

import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.iam.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;

/**
 * GetAdminUsersByRoleID
 *
 * 

## The endpoint is going to be deprecated * *

Endpoint migration guide * *

* Substitute endpoint(Public): /iam/v3/admin/namespaces/{namespace}/roles/{roleId}/users [GET] * *

* Note: difference in V3 response, format difference: Pascal case => Camel case * *

Required permission 'ADMIN:NAMESPACE:{namespace}:USER [READ]' * *

This endpoint search admin users which have the roleId * *

Notes : this endpoint only accept admin role. Admin Role is role which have admin status and * members. Use endpoint [GET] /roles/{roleId}/admin to check the role status * * @deprecated */ @Deprecated @Getter @Setter public class GetAdminUsersByRoleID extends Operation { /** generated field's value */ private String path = "/iam/namespaces/{namespace}/users/admin"; private String method = "GET"; private List consumes = Arrays.asList("application/json"); private List produces = Arrays.asList("application/json"); private String locationQuery = null; /** fields as input parameter */ private String namespace; private Integer after; private Integer before; private Integer limit; private String roleId; /** * @param namespace required */ @Builder // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead. @Deprecated public GetAdminUsersByRoleID( String namespace, Integer after, Integer before, Integer limit, String roleId) { this.namespace = namespace; this.after = after; this.before = before; this.limit = limit; this.roleId = roleId; securities.add("Bearer"); } @Override public Map getPathParams() { Map pathParams = new HashMap<>(); if (this.namespace != null) { pathParams.put("namespace", this.namespace); } return pathParams; } @Override public Map> getQueryParams() { Map> queryParams = new HashMap<>(); queryParams.put("after", this.after == null ? null : Arrays.asList(String.valueOf(this.after))); queryParams.put( "before", this.before == null ? null : Arrays.asList(String.valueOf(this.before))); queryParams.put("limit", this.limit == null ? null : Arrays.asList(String.valueOf(this.limit))); queryParams.put("roleId", this.roleId == null ? null : Arrays.asList(this.roleId)); return queryParams; } @Override public boolean isValid() { if (this.namespace == null) { return false; } return true; } public ModelGetAdminUsersResponse parseResponse(int code, String contentType, InputStream payload) throws HttpResponseException, IOException { if (code != 200) { final String json = Helper.convertInputStreamToString(payload); throw new HttpResponseException(code, json); } final String json = Helper.convertInputStreamToString(payload); return new ModelGetAdminUsersResponse().createFromJson(json); } @Override protected Map getCollectionFormatMap() { Map result = new HashMap<>(); result.put("after", "None"); result.put("before", "None"); result.put("limit", "None"); result.put("roleId", "None"); return result; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy