com.manageengine.pam360.sdk.entity package

access_control_entity module

class com.manageengine.pam360.sdk.entity.access_control_entity.AccessControl(service)

Access Control Entity Class containing Access Control related operations.

__init__(service)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# Access Control Entity Instance Creation
access_control_entity = service.get_access_control_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

account_entity module

class com.manageengine.pam360.sdk.entity.account_entity.Account(service)

Account Entity Class containing Account related operations.

__init__(service)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# Account Entity Instance Creation
account_entity = service.get_account_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

audit_entity module

class com.manageengine.pam360.sdk.entity.audit_entity.Audit(service: PAMService)

Audit Entity Class containing Audit related operations.

__init__(service: PAMService)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# Audit Entity Instance Creation
audit_entity = service.get_audit_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

password_entity module

class com.manageengine.pam360.sdk.entity.password_entity.Password(service)

Password Entity Class containing Password related operations.

__init__(service)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# Password Entity Instance Creation
password_entity = service.get_password_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

resource_entity module

class com.manageengine.pam360.sdk.entity.resource_entity.Resource(service: PAMService)

Resource Entity Class containing Resource related operations.

__init__(service: PAMService)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# Resource Entity Instance Creation
resource_entity = service.get_resource_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

resource_group_entity module

class com.manageengine.pam360.sdk.entity.resource_group_entity.ResourceGroup(service: PAMService)

Resource Group Entity Class containing Resource Group related operations.

__init__(service: PAMService)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# Resource Group Entity Instance Creation
resource_group_entity = service.get_resource_group_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

user_entity module

class com.manageengine.pam360.sdk.entity.user_entity.User(service)

User Entity Class containing User related operations.

__init__(service)

Default constructor, not advised to use.

Attention

Do not create Instance directly. Get instance from PAMService instead. Ex.

# PAMService Object Instance Creation
service = PAMService(
    service_config=config,
    user_token=user_api_token
)

# User Entity Instance Creation
user_entity = service.get_user_instance()
Parameters:

service (PAMService) – PAM Service Object.

Raises:

SDKRegistrationError – It occurs when: If service is None or, If service is not of type PAMService.

Module contents