Skip to content

Commit a38aa6a

Browse files
committed
Version 2.0.0
1 parent 9ccf75c commit a38aa6a

23 files changed

+624
-3
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ CyberArk's Official SDK and CLI for different services operations
3131
- [x] Services API
3232
- [x] SIA VM / Databases Policies and Policies Interactive Editor Service
3333
- [x] SIA Databases Onboarding
34+
- [x] SIA Target Sets Onboarding
3435
- [x] SIA Databases Secrets
36+
- [x] SIA VM Secrets
3537
- [x] SIA Certificates Service
3638
- [x] SIA SSO Service
3739
- [x] SIA K8S Service
@@ -41,9 +43,11 @@ CyberArk's Official SDK and CLI for different services operations
4143
- [x] Identity Roles Service
4244
- [x] Identity Policies Service
4345
- [x] Identity Directories Service
46+
- [x] Identity Connectors Service
4447
- [x] PCloud Accounts Service
4548
- [x] PCloud Safes Service
4649
- [x] PCloud Platforms Service
50+
- [x] PCloud Applications Service
4751
- [x] All services contains CRUD and Statistics per respective service
4852
- [x] Ready to use SDK in Python
4953
- [x] CLI and SDK Examples
@@ -230,6 +234,7 @@ The following services and commands are supported:
230234
- <b>accounts</b> - PCloud Accounts Management
231235
- <b>safes</b> - PCloud Safes Management
232236
- <b>platforms</b> - PCloud Platforms Management
237+
- <b>applications</b> - PCloud Applications Management
233238
234239
Any command has its own subcommands, with respective arguments
235240

ark_sdk_python/ark_api.py

+12
Original file line numberDiff line numberDiff line change
@@ -307,3 +307,15 @@ def pcloud_platforms(self) -> "ArkPCloudPlatformsService":
307307
from ark_sdk_python.services.pcloud.platforms import ArkPCloudPlatformsService
308308

309309
return cast(ArkPCloudPlatformsService, self.service(ArkPCloudPlatformsService))
310+
311+
@property
312+
def pcloud_applications(self) -> "ArkPCloudApplicationsService":
313+
"""
314+
Returns the PCloud Applications service if the appropriate authenticators were given
315+
316+
Returns:
317+
ArkPCloudApplicationsService: _description_
318+
"""
319+
from ark_sdk_python.services.pcloud.applications import ArkPCloudApplicationsService
320+
321+
return cast(ArkPCloudApplicationsService, self.service(ArkPCloudApplicationsService))

ark_sdk_python/models/actions/services/ark_pcloud_exec_action_consts.py

+31
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@
1919
ArkPCloudUpdateAccountCredentialsInVault,
2020
ArkPCloudVerifyAccountCredentials,
2121
)
22+
from ark_sdk_python.models.services.pcloud.applications import (
23+
ArkPCloudAddApplication,
24+
ArkPCloudAddApplicationAuthMethod,
25+
ArkPCloudApplicationAuthMethodsFilter,
26+
ArkPCloudApplicationsFilter,
27+
ArkPCloudDeleteApplication,
28+
ArkPCloudDeleteApplicationAuthMethod,
29+
ArkPCloudGetApplication,
30+
ArkPCloudGetApplicationAuthMethod,
31+
ArkPCloudListApplicationAuthMethods,
32+
)
2233
from ark_sdk_python.models.services.pcloud.platforms import (
2334
ArkPCloudActivateTargetPlatform,
2435
ArkPCloudDeactivateTargetPlatform,
@@ -120,12 +131,32 @@
120131
schemas=PCLOUD_PLATFORMS_ACTION_TO_SCHEMA_MAP,
121132
)
122133

134+
# PCloud Applications Definitions
135+
PCLOUD_APPLICATIONS_ACTION_TO_SCHEMA_MAP: Final[Dict[str, Optional[Type[ArkModel]]]] = {
136+
'add-application': ArkPCloudAddApplication,
137+
'delete-application': ArkPCloudDeleteApplication,
138+
'list-applications': None,
139+
'list-applications-by': ArkPCloudApplicationsFilter,
140+
'application': ArkPCloudGetApplication,
141+
'applications-stats': None,
142+
'add-application-auth-method': ArkPCloudAddApplicationAuthMethod,
143+
'delete-application-auth-method': ArkPCloudDeleteApplicationAuthMethod,
144+
'list-application-auth-methods': ArkPCloudListApplicationAuthMethods,
145+
'list-application-auth-methods-by': ArkPCloudApplicationAuthMethodsFilter,
146+
'application-auth-method': ArkPCloudGetApplicationAuthMethod,
147+
}
148+
PCLOUD_APPLICATIONS_ACTION: Final[ArkServiceActionDefinition] = ArkServiceActionDefinition(
149+
action_name='applications',
150+
schemas=PCLOUD_APPLICATIONS_ACTION_TO_SCHEMA_MAP,
151+
)
152+
123153
# Service Actions Definition
124154
PCLOUD_ACTIONS: Final[ArkServiceActionDefinition] = ArkServiceActionDefinition(
125155
action_name='pcloud',
126156
subactions=[
127157
PCLOUD_ACCOUNTS_ACTION,
128158
PCLOUD_PLATFORMS_ACTION,
129159
PCLOUD_SAFES_ACTION,
160+
PCLOUD_APPLICATIONS_ACTION,
130161
],
131162
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_add_application import ArkPCloudAddApplication
2+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_add_application_auth_method import ArkPCloudAddApplicationAuthMethod
3+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_application import ArkPCloudApplication
4+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_application_auth_method import (
5+
ArkPCloudApplicationAuthMethod,
6+
ArkPCloudApplicationAuthMethodCertKeyVal,
7+
ArkPCloudApplicationAuthMethodType,
8+
)
9+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_application_auth_methods_filter import (
10+
ArkPCloudApplicationAuthMethodsFilter,
11+
)
12+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_applications_filter import ArkPCloudApplicationsFilter
13+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_applications_stats import ArkPCloudAppicationsStats
14+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_delete_application import ArkPCloudDeleteApplication
15+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_delete_application_auth_method import (
16+
ArkPCloudDeleteApplicationAuthMethod,
17+
)
18+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_get_application import ArkPCloudGetApplication
19+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_get_application_auth_method import ArkPCloudGetApplicationAuthMethod
20+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_list_application_auth_methods import ArkPCloudListApplicationAuthMethods
21+
22+
__all__ = [
23+
'ArkPCloudAddApplication',
24+
'ArkPCloudAddApplicationAuthMethod',
25+
'ArkPCloudApplication',
26+
'ArkPCloudApplicationAuthMethod',
27+
'ArkPCloudApplicationAuthMethodCertKeyVal',
28+
'ArkPCloudApplicationAuthMethodType',
29+
'ArkPCloudApplicationAuthMethodsFilter',
30+
'ArkPCloudApplicationsFilter',
31+
'ArkPCloudAppicationsStats',
32+
'ArkPCloudDeleteApplication',
33+
'ArkPCloudDeleteApplicationAuthMethod',
34+
'ArkPCloudGetApplication',
35+
'ArkPCloudGetApplicationAuthMethod',
36+
'ArkPCloudListApplicationAuthMethods',
37+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from datetime import date, timedelta
2+
3+
from pydantic import Field
4+
5+
from ark_sdk_python.models import ArkTitleizedModel
6+
7+
8+
class ArkPCloudAddApplication(ArkTitleizedModel):
9+
app_id: str = Field(description='ID of the application')
10+
description: str = Field(description='Description of the application', default='')
11+
location: str = Field(description='Location of the application in the vault', default='\\')
12+
access_permitted_from: int = Field(description='Start time the access is permitted in hours', default=0)
13+
access_permitted_to: int = Field(description='End time the access is permitted in hours', default=24)
14+
expiration_date: str = Field(
15+
description='Expiratin date of the application in format mm/dd/yyyy',
16+
default=(date.today() + timedelta(days=30)).strftime('%m/%d/%Y'),
17+
)
18+
disabled: bool = Field(description='Whether application is disabled or not', default=False)
19+
business_owner_first_name: str = Field(description='First name of the owner', default='', alias='BusinessOwnerFName')
20+
business_owner_last_name: str = Field(description='Last name of the owner', default='', alias='BusinessOwnerLName')
21+
business_owner_email: str = Field(description='Email of the owner', default='', alias='BusinessOwnerEmail')
22+
business_owner_phone: str = Field(description='Phone of the owner', default='', alias='BusinessOwnerPhone')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
from typing import List, Optional
2+
3+
from pydantic import Field
4+
5+
from ark_sdk_python.models import ArkTitleizedModel
6+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_application_auth_method import (
7+
ArkPCloudApplicationAuthMethodCertKeyVal,
8+
ArkPCloudApplicationAuthMethodType,
9+
)
10+
11+
12+
class ArkPCloudAddApplicationAuthMethod(ArkTitleizedModel):
13+
app_id: str = Field(description='ID of the app to add the auth method for')
14+
auth_type: ArkPCloudApplicationAuthMethodType = Field(description='Type of the authentication')
15+
16+
# Applied for Certificate serial number, ip, os user, hash, path
17+
auth_value: Optional[str] = Field(default=None, description='Value of the authentication')
18+
19+
# Path type extras
20+
is_folder: Optional[bool] = Field(default=None, description='For path in the machine, whether its a folder or not')
21+
allow_internal_scripts: Optional[bool] = Field(default=None, description='Whether internal scripts are allowed on the folder or not')
22+
23+
# Hash, certificate serial number, certificate type extras
24+
comment: Optional[str] = Field(default=None, description='Comment for the hash')
25+
26+
# Kubernetes type extras, only one of them should exist
27+
namespace: Optional[str] = Field(default=None, description='Kube namespace')
28+
image: Optional[str] = Field(default=None, description='Kube container image')
29+
env_var_name: Optional[str] = Field(default=None, description='Kube env var name')
30+
env_var_value: Optional[str] = Field(default=None, description='Kube env var value')
31+
32+
# Certificate type extras
33+
subject: Optional[List[ArkPCloudApplicationAuthMethodCertKeyVal]] = Field(default=None, description='Subject of the certificate')
34+
issuer: Optional[List[ArkPCloudApplicationAuthMethodCertKeyVal]] = Field(default=None, description='Issuer of the certificate')
35+
subject_alternative_name: Optional[List[ArkPCloudApplicationAuthMethodCertKeyVal]] = Field(
36+
default=None, description='SAN of the certificate'
37+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from pydantic import Field
2+
3+
from ark_sdk_python.models import ArkTitleizedModel
4+
5+
6+
class ArkPCloudApplication(ArkTitleizedModel):
7+
app_id: str = Field(description='ID of the application', alias='AppID')
8+
description: str = Field(description='Description of the application')
9+
location: str = Field(description='Location of the application in the vault')
10+
access_permitted_from: int = Field(description='Start time the access is permitted in hours')
11+
access_permitted_to: int = Field(description='End time the access is permitted in hours')
12+
expiration_date: str = Field(description='Expiratin date of the application in format mm-dd-yyyy')
13+
disabled: bool = Field(description='Whether application is disabled or not')
14+
business_owner_first_name: str = Field(description='First name of the owner', alias='BusinessOwnerFName')
15+
business_owner_last_name: str = Field(description='Last name of the owner', alias='BusinessOwnerLName')
16+
business_owner_email: str = Field(description='Email of the owner', alias='BusinessOwnerEmail')
17+
business_owner_phone: str = Field(description='Phone of the owner', alias='BusinessOwnerPhone')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
from enum import Enum
2+
from typing import List, Optional
3+
4+
from pydantic import Field
5+
6+
from ark_sdk_python.models import ArkModel, ArkTitleizedModel
7+
8+
9+
class ArkPCloudApplicationAuthMethodType(str, Enum):
10+
Hash = 'hash'
11+
OsUser = 'osUser'
12+
IP = 'machineAddress'
13+
Path = 'path'
14+
CertificateSerialNumber = 'certificateSerialNumber'
15+
Kubernetes = 'Kubernetes'
16+
Certificate = 'certificateattr'
17+
18+
19+
class ArkPCloudApplicationAuthMethodCertKeyVal(ArkModel):
20+
key: str = Field(description='Key of the field')
21+
value: str = Field(description='Value of the field')
22+
23+
24+
class ArkPCloudApplicationAuthMethod(ArkTitleizedModel):
25+
auth_id: str = Field(description='ID of the auth method', alias='authID')
26+
auth_type: ArkPCloudApplicationAuthMethodType = Field(description='Type of the authentication')
27+
28+
# Applied for Certificate serial number, ip, os user, hash, path
29+
auth_value: Optional[str] = Field(default=None, description='Value of the authentication')
30+
31+
# Path type extras
32+
is_folder: Optional[bool] = Field(default=None, description='For path in the machine, whether its a folder or not')
33+
allow_internal_scripts: Optional[bool] = Field(default=None, description='Whether internal scripts are allowed on the folder or not')
34+
35+
# Hash, certificate serial number, certificate type extras
36+
comment: Optional[str] = Field(default=None, description='Comment for the hash')
37+
38+
# Kubernetes type extras, only one of them should exist
39+
namespace: Optional[str] = Field(default=None, description='Kube namespace')
40+
image: Optional[str] = Field(default=None, description='Kube container image')
41+
env_var_name: Optional[str] = Field(default=None, description='Kube env var name')
42+
env_var_value: Optional[str] = Field(default=None, description='Kube env var value')
43+
44+
# Certificate type extras
45+
subject: Optional[List[ArkPCloudApplicationAuthMethodCertKeyVal]] = Field(default=None, description='Subject of the certificate')
46+
issuer: Optional[List[ArkPCloudApplicationAuthMethodCertKeyVal]] = Field(default=None, description='Issuer of the certificate')
47+
subject_alternative_name: Optional[List[ArkPCloudApplicationAuthMethodCertKeyVal]] = Field(
48+
default=None, description='SAN of the certificate'
49+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from typing import List, Optional
2+
3+
from pydantic import Field
4+
5+
from ark_sdk_python.models import ArkModel
6+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_application_auth_method import ArkPCloudApplicationAuthMethodType
7+
8+
9+
class ArkPCloudApplicationAuthMethodsFilter(ArkModel):
10+
app_id: str = Field(description='App id to filter on')
11+
auth_types: Optional[List[ArkPCloudApplicationAuthMethodType]] = Field(default=None, description='Auth types to filter with')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from typing import Optional
2+
3+
from pydantic import Field
4+
5+
from ark_sdk_python.models import ArkModel
6+
7+
8+
class ArkPCloudApplicationsFilter(ArkModel):
9+
location: Optional[str] = Field(default=None, description='Filter by location of the app')
10+
only_enabled: Optional[bool] = Field(default=None, description='Filter only enabled apps')
11+
business_owner_name: Optional[str] = Field(default=None, description='Filter by name, first or last')
12+
business_owner_email: Optional[str] = Field(default=None, description='Filter by email')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from typing import Dict, List
2+
3+
from pydantic import Field
4+
5+
from ark_sdk_python.models import ArkModel
6+
from ark_sdk_python.models.services.pcloud.applications.ark_pcloud_application_auth_method import ArkPCloudApplicationAuthMethodType
7+
8+
9+
class ArkPCloudAppicationsStats(ArkModel):
10+
count: int = Field(description='Overall application count')
11+
disabled_apps: List[str] = Field(description='Disabled applications')
12+
auth_types_count: Dict[ArkPCloudApplicationAuthMethodType, int] = Field(description='Auth types count for all applications')
13+
applications_auth_method_types: Dict[str, List[ArkPCloudApplicationAuthMethodType]] = Field(
14+
description='Applicastions auth methods types'
15+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from pydantic import Field
2+
3+
from ark_sdk_python.models import ArkModel
4+
5+
6+
class ArkPCloudDeleteApplication(ArkModel):
7+
app_id: str = Field(description='ID of the app to delete')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from pydantic import Field
2+
3+
from ark_sdk_python.models import ArkModel
4+
5+
6+
class ArkPCloudDeleteApplicationAuthMethod(ArkModel):
7+
app_id: str = Field(description='ID of the app to delete the auth method from')
8+
auth_id: str = Field(description='ID of the auth method to delete')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from pydantic import Field
2+
3+
from ark_sdk_python.models import ArkModel
4+
5+
6+
class ArkPCloudGetApplication(ArkModel):
7+
app_id: str = Field(description='ID of the app to get')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from pydantic import Field
2+
3+
from ark_sdk_python.models import ArkModel
4+
5+
6+
class ArkPCloudGetApplicationAuthMethod(ArkModel):
7+
app_id: str = Field(description='ID of the app to get the auth method from')
8+
auth_id: str = Field(description='ID of the auth method to get')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from pydantic import Field
2+
3+
from ark_sdk_python.models import ArkModel
4+
5+
6+
class ArkPCloudListApplicationAuthMethods(ArkModel):
7+
app_id: str = Field(description='ID of the app to list the auth methods from')

ark_sdk_python/services/pcloud/accounts/ark_pcloud_accounts_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from ark_sdk_python.services.pcloud.common import ArkPCloudBaseService
3636

3737
SERVICE_CONFIG: Final[ArkServiceConfig] = ArkServiceConfig(
38-
service_name='pcloud-accounts', required_authenticator_names=[], optional_authenticator_names=['isp', 'pvwa', 'pcloud_im']
38+
service_name='pcloud-accounts', required_authenticator_names=[], optional_authenticator_names=['isp']
3939
)
4040
ACCOUNTS_URL: Final[str] = 'accounts'
4141
ACCOUNT_URL: Final[str] = 'accounts/{account_id}'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from ark_sdk_python.services.pcloud.applications.ark_pcloud_applications_service import ArkPCloudApplicationsService
2+
3+
__all__ = ['ArkPCloudApplicationsService']

0 commit comments

Comments
 (0)