accounts
ArkPCloudAccountsService
¶
Bases: ArkPCloudBaseService
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
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 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
|
account(get_account)
¶
Retrieves the account by id https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/Get%20Account%20Details.htm?
Parameters:
Name | Type | Description | Default |
---|---|---|---|
get_account |
ArkPCloudGetAccount
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Returns:
Name | Type | Description |
---|---|---|
ArkPCloudAccount |
ArkPCloudAccount
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
|
account_credentials(get_account_credentials)
¶
Retrieves the account credentials https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/GetPasswordValueV10.htm?
Parameters:
Name | Type | Description | Default |
---|---|---|---|
get_account_credentials |
ArkPCloudGetAccountCredentials
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Returns:
Name | Type | Description |
---|---|---|
ArkPCloudAccountCredentials |
ArkPCloudAccountCredentials
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
|
accounts_stats()
¶
Calculates accounts stats for all visible accounts
Returns:
Name | Type | Description |
---|---|---|
ArkPCloudAccountsStats |
ArkPCloudAccountsStats
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 |
|
add_account(add_account)
¶
Adds a new account with given details https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/Add%20Account%20v10.htm?
Parameters:
Name | Type | Description | Default |
---|---|---|---|
add_account |
ArkPCloudAddAccount
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Returns:
Name | Type | Description |
---|---|---|
ArkPCloudAccount |
ArkPCloudAccount
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
|
change_account_credentials(change_account_credentials)
¶
Marks the account for password changing immediately by CPM https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/Change-credentials-immediately.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
change_account_credentials |
ArkPCloudChangeAccountCredentials
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
|
delete_account(delete_account)
¶
Deletes an account by given id https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/Delete%20Account.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
delete_account |
ArkPCloudDeleteAccount
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
|
generate_account_credentials(generate_account_credentials)
¶
Generate a new random password for an existing account with policy restrictions https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/SDK/Secrets-Generate-Password.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
generate_account_credentials |
ArkPCloudGenerateAccountCredentials
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Returns:
Name | Type | Description |
---|---|---|
ArkPCloudAccountCredentials |
ArkPCloudAccountCredentials
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
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 |
|
link_account(link_account)
¶
Link an account by given info https://docs.cyberark.com/Product-Doc/OnlineHelp/PrivCloud-SS/Latest/en/Content/WebServices/Link-account.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
link_account |
ArkPCloudLinkAccount
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
|
list_account_secret_versions(list_account_secret_versions)
¶
Lists the given account secret versions https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/SDK/Secrets-Get-versions.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_account_secret_versions |
ArkPCloudListAccountSecretVersions
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Returns:
Type | Description |
---|---|
List[ArkPCloudAccountSecretVersion]
|
List[ArkPCloudAccountSecretVersion]: description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
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 |
|
list_accounts()
¶
Yields all visible accounts to the logged in user as pages of accounts https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/SDK/GetAccounts.htm
Yields:
Type | Description |
---|---|
ArkPCloudAccountsPage
|
Iterator[ArkPCloudAccountsPage]: description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
97 98 99 100 101 102 103 104 105 106 |
|
list_accounts_by(accounts_filter)
¶
Yields visible accounts to the logged in user by filters as pages of accounts https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/SDK/GetAccounts.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
accounts_filter |
ArkPCloudAccountsFilter
|
description |
required |
Yields:
Type | Description |
---|---|
ArkPCloudAccountsPage
|
Iterator[ArkPCloudAccountsPage]: description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
reconcile_account_credentials(reconcile_account_credentials)
¶
Marks the account for reconcilation https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/Reconcile-account.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
reconcile_account_credentials |
ArkPCloudReconcileAccountCredentials
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
|
set_account_next_credentials(set_account_next_credentials)
¶
Marks the account to have its password changed to the given one via CPM https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/SetNextPassword.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
set_account_next_credentials |
ArkPCloudSetAccountNextCredentials
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
|
unlink_account(unlink_account)
¶
Link an account by given info https://docs.cyberark.com/Product-Doc/OnlineHelp/PrivCloud-SS/Latest/en/Content/WebServices/Link-account-unlink.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
unlink_account |
ArkPCloudUnlinkAccount
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
|
update_account(update_account)
¶
Updates an existing account with new details https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/SDK/UpdateAccount%20v10.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
update_account |
ArkPCloudUpdateAccount
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Returns:
Name | Type | Description |
---|---|---|
ArkPCloudAccount |
ArkPCloudAccount
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
|
update_account_credentials_in_vault(update_account_credentials_in_vault)
¶
Updates the account credentials only in the vault without changing it on the machine itself https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/ChangeCredentialsInVault.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
update_account_credentials_in_vault |
ArkPCloudUpdateAccountCredentialsInVault
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|
verify_account_credentials(verify_account_credentials)
¶
Marks the account for password verification by CPM https://docs.cyberark.com/Product-Doc/OnlineHelp/PAS/Latest/en/Content/WebServices/Verify-credentials-v9-10.htm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
verify_account_credentials |
ArkPCloudVerifyAccountCredentials
|
description |
required |
Raises:
Type | Description |
---|---|
ArkServiceException
|
description |
Source code in ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|