crowd
Crowd
Bases: AtlassianRestAPI
Crowd API wrapper. Important to note that you will have to use an application credentials, not user credentials, in order to access Crowd APIs
Source code in server/vendor/atlassian/crowd.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
|
memberships
property
Retrieves full details of all group memberships, with users and nested groups. See: https://docs.atlassian.com/atlassian-crowd/5.3.1/REST/#usermanagement/1/group-getAllMemberships :return: All membership mapping dict
delete_plugin(plugin_key)
Delete plugin :param plugin_key: :return:
Source code in server/vendor/atlassian/crowd.py
241 242 243 244 245 246 247 248 |
|
get_plugin_info(plugin_key)
Provide plugin info :return a json of installed plugins
Source code in server/vendor/atlassian/crowd.py
209 210 211 212 213 214 215 |
|
get_plugin_license_info(plugin_key)
Provide plugin license info :return a json specific License query
Source code in server/vendor/atlassian/crowd.py
217 218 219 220 221 222 223 |
|
get_plugins_info()
Provide plugins info :return a json of installed plugins
Source code in server/vendor/atlassian/crowd.py
201 202 203 204 205 206 207 |
|
group_add_user(username, groupname)
Add user to group :return:
Source code in server/vendor/atlassian/crowd.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
group_create(groupname, description=None, active=True)
Create new group method :param groupname: string: The name of new group :param description: string: The description of new group, default is None :param active: bool: Weather the group is active, default is True :return: Create result
Source code in server/vendor/atlassian/crowd.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
|
group_members(group, kind='direct', max_results=99999)
Get group's all direct members :param group: str - group name :param kind: str - group type :param max_results: int - maximum number of results :return: The specify group's direct members info
Source code in server/vendor/atlassian/crowd.py
146 147 148 149 150 151 152 153 154 155 156 157 |
|
health_check()
Get health status https://confluence.atlassian.com/jirakb/how-to-retrieve-health-check-results-using-rest-api-867195158.html :return:
Source code in server/vendor/atlassian/crowd.py
188 189 190 191 192 193 194 195 196 197 198 199 |
|
is_user_in_group(username, group, kind='direct')
Check if the user is a member of the group :param username: str - username :param group: str - group name :param kind: str - group type :return: bool - Return True
or False
Source code in server/vendor/atlassian/crowd.py
159 160 161 162 163 164 165 166 167 168 169 170 |
|
update_plugin_license(plugin_key, raw_license)
Update license for plugin :param plugin_key: :param raw_license: :return:
Source code in server/vendor/atlassian/crowd.py
254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
|
upload_plugin(plugin_path)
Provide plugin path for upload into Jira e.g. useful for auto deploy :param plugin_path: :return:
Source code in server/vendor/atlassian/crowd.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
user(username)
Get user information :param username: :return:
Source code in server/vendor/atlassian/crowd.py
63 64 65 66 67 68 69 70 |
|
user_activate(username)
Activate user :param username: str - username
Source code in server/vendor/atlassian/crowd.py
72 73 74 75 76 77 78 |
|
user_create(username, active, first_name, last_name, display_name, email, password)
Create new user method :param active: bool: :param username: string: username :param active: bool: :param first_name: string: :param last_name: string: :param display_name: string: :param email: string: :param password: string: :return:
Source code in server/vendor/atlassian/crowd.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
user_deactivate(username)
Deactivate user
:return:
Source code in server/vendor/atlassian/crowd.py
115 116 117 118 119 120 121 122 |
|
user_delete(username)
Delete user :param username: str - username :return:
Source code in server/vendor/atlassian/crowd.py
124 125 126 127 128 129 130 131 132 133 |
|
user_groups(username, kind='direct')
Get user's all group info :param username: str - username :param kind: str - group type :return: The specify user's group info
Source code in server/vendor/atlassian/crowd.py
135 136 137 138 139 140 141 142 143 144 |
|