Primo.CyberArk
1.1.2
dotnet add package Primo.CyberArk --version 1.1.2
NuGet\Install-Package Primo.CyberArk -Version 1.1.2
<PackageReference Include="Primo.CyberArk" Version="1.1.2" />
<PackageVersion Include="Primo.CyberArk" Version="1.1.2" />
<PackageReference Include="Primo.CyberArk" />
paket add Primo.CyberArk --version 1.1.2
#r "nuget: Primo.CyberArk, 1.1.2"
#:package Primo.CyberArk@1.1.2
#addin nuget:?package=Primo.CyberArk&version=1.1.2
#tool nuget:?package=Primo.CyberArk&version=1.1.2
About
Primo.CyberArk is a set of ready-to-use activities for Primo RPA Studio designed to automate integration with CyberArk. It addresses the need to retrieve passwords from CyberArk within automated processes. Key activities include: requesting passwords and requesting passwords by account. The package can be added to any Primo RPA Studio project via the built-in dependency manager.
How to Use
In Primo RPA studio, create a project that will be executed by Primo RPA robot. Install this package via the ".Dependencies → Manage Dependencies" menu; the "CyberArk" node with package elements will appear in Elements tree.
Elements
Available elements:
- Password request
- Password request (Account)
In pure code projects use the element as follows:
Primo.CyberArk.CyberArkApp app = new Primo.CyberArkCyberArkApp();
/// url - [String] URL
/// lt - [LogonTypes] Authorization type
/// login - [String] Login
/// pass - [String] Password
/// to - [Int32] Timeout [Default = 2000]
string token = app.LogonV10(url, lt, login, pass, [to]);
/// url - [String] URL
/// token - [String] Token
/// accId - [String] Account ID
/// req - [Model.PasswordRetrieveRequest] Password request
/// to - [Int32] Timeout [Default = 2000]
string passwordV10 = app.GetPasswordV10(url, token, accId, req, [to]);
/// url - [String] URL
/// token - [String] Token
app.LogoffV10(url, token, [to]);
/// url - [String] URL
/// params - [Primo.CyberArk.Model.GetPasswordParams] Password parameters
/// to - [Int32] Timeout [Default = 2000]
Primo.CyberArk.Model.CPPassword password = app.GetPassword(url, params, [to]);
Key Features
- Set of elements to interact with CyberArk.
- Supports .NET Framework 4.6.1+
Feedback
Bug reports and contributions are welcome at Primo RPA chat
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.