No project description provided
Project description
Centra SDK
The Centra SDK is a unofficial FastAPI-based Software Development Kit designed to simplify the integration of third-party platforms with Guardicore's Centra platform. This SDK provides a standardized framework for building connectors that handle security policies, inventory management, operations monitoring, and more.
Table of Contents
- Overview
- Features
- Installation
- Quick Start
- Architecture
- Core Components
- Router Modules
- Handler Implementation
- Models and Data Types
- Examples
- API Documentation
- Testing
- Contributing
Overview
The Centra SDK serves as a bridge between external security platforms and Guardicore's centralized security management system. It provides:
- Standardized API contracts for consistent integration across different platforms
- Handler registry system for managing custom business logic
- Comprehensive data models generated from OpenAPI specifications
- Built-in routing for all major connector operations
- Type safety with Pydantic validation
Features
๐ง Modular Architecture
- Clean separation between routing, business logic, and data models
- Pluggable handler system for custom implementations
- FastAPI-based REST API with automatic documentation
๐ก๏ธ Security Operations
- Enforcement: Policy management and rule enforcement
- Inventory: Asset discovery and management
- Operations: Health monitoring and configuration management
- Logging: Centralized logging and audit trails
๐ Comprehensive Monitoring
- Health checks and status reporting
- Metrics collection and reporting
- Configuration management
- Onboarding process management
๐ Platform Integration
- Support for multiple cloud platforms (Azure, AWS, etc.)
- Agent management and control
- Network topology discovery
- Asset lookup and classification
Installation
Prerequisites
- Python 3.12 or higher
- Poetry (recommended) or pip
Using Poetry (Recommended)
# Clone the repository
git clone https://github.com/guardicore/contracts.git
cd contracts
# Create new Python virtualenv for project
pyenv virtualenv 3.12 sdk_test
pyenv activate sdk_test
# Generate SDK with fastapi-codegen
pip install git+https://github.com/ivasylenko/fastapi-code-generator.git@centra_contracts
fastapi-codegen --input guardicore/connector/ --output-model-type pydantic_v2.BaseModel --capitalise-enum-members --generate-routers -p 3.12 --output sdk/src/centra_sdk/ --output-datetime-class AwareDatetime --allow-population-by-field-name --model-template-dir .circleci/ --template-dir .circleci/templates
# Install dependencies
pip install poetry
poetry install -C sdk
# Build package
poetry build -P sdk
# Run tests
poetry -C sdk/ run pytest
# Push built SDK to PyPI
# Package must be built with new version in order to be pushed e.g. sdk/pyproject.toml
# Once version updated and package is build , upload with twine
# NOTE: you need .pypirc with API Key to be able to upload to PyPI
pip install twine
twine upload --config-file .pypirc --verbose sdk/dist/*
Using pip
# Install from source
pip install -e .
# Or install dependencies directly
pip install fastapi uvicorn
Quick Start
1. Create a Basic Connector
from centra_sdk.main import app
from centra_sdk.routers.health import registry as health_registry, HealthHandler
from centra_sdk.models.connector.v1.operations.health import V1OperationsHealthGetResponse
import uvicorn
@health_registry.register()
class MyHealthHandler(HealthHandler):
def get_integration_status(self) -> V1OperationsHealthGetResponse:
return V1OperationsHealthGetResponse(
overall_status="up",
component_id="my-connector-id",
component_type="custom_connector"
)
# Run the server
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)
2. Start the Development Server
# Using uvicorn directly
uvicorn centra_sdk.main:app --reload --host 0.0.0.0 --port 8000
# Access the API documentation
# http://localhost:8000/docs
3. Running with SSL Certificate
For production deployments or secure development environments, you can run uvicorn with SSL certificates:
# Using SSL certificates
uvicorn centra_sdk.main:app --host 0.0.0.0 --port 8443 \
--ssl-keyfile /path/to/private.key \
--ssl-certfile /path/to/certificate.crt
# Using self-signed certificates for development
# First, generate self-signed certificates:
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes
# Then run with SSL
uvicorn centra_sdk.main:app --host 0.0.0.0 --port 8443 \
--ssl-keyfile key.pem \
--ssl-certfile cert.pem
# Access the secure API documentation
# https://localhost:8443/docs
SSL Configuration Options:
--ssl-keyfile: Path to the SSL private key file--ssl-certfile: Path to the SSL certificate file--ssl-ca-certs: Path to CA certificates file (optional)--ssl-ciphers: SSL cipher suites to use (optional)
Production Considerations:
- Use certificates from a trusted Certificate Authority (CA)
- Ensure proper file permissions on certificate files (readable only by the application user)
- Consider using a reverse proxy (nginx, Apache) for SSL termination in production
- Use strong cipher suites and disable outdated TLS versions
Architecture
The Centra SDK follows a layered architecture pattern:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ FastAPI App โ
โ (main.py) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Routers โ
โ (health, inventory, enforcement, โ
โ operations, agents, etc.) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Handler Registry โ
โ (handler_registry.py) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Business Logic โ
โ (Custom Handlers) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Data Models โ
โ (Pydantic Models) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Core Components
1. Handler Registry (handler_registry.py)
The HandlerRegistry class provides a decorator-based system for registering and managing custom business logic handlers:
from centra_sdk.handler_registry import HandlerRegistry
# Create a registry for a specific domain
registry = HandlerRegistry(name="my_connector")
@registry.register(tag="production")
class MyHandler:
def process_request(self, data):
# Custom business logic here
return {"status": "processed"}
# Call handler methods
result = registry.call_handler("process_request", data, tag="production")
Key Features:
- Decorator-based registration
- Tag-based handler organization
- Automatic error handling and HTTP response generation
- Logging and debugging support
2. Main Application (main.py)
The central FastAPI application that:
- Configures the API metadata and documentation
- Registers all router modules
- Provides the root endpoint
- Manages the application lifecycle
3. Dependencies (dependencies.py)
Central import module that provides access to all data models and types used throughout the SDK.
Router Modules
The SDK includes several router modules, each handling specific aspects of connector functionality:
๐ฅ Health Router (routers/health.py)
Manages connector health and status reporting:
@health_registry.register()
class MyHealthHandler(HealthHandler):
def get_integration_flags(self) -> V1OperationsFlagsGetResponse:
"""Return integration capability flags"""
pass
def get_integration_status(self) -> V1OperationsHealthGetResponse:
"""Return current health status"""
pass
def get_integration_metrics(self) -> V1OperationsMetricsGetResponse:
"""Return performance metrics"""
pass
๐ฆ Inventory Router (routers/inventory.py)
Handles asset discovery and inventory management:
@inventory_registry.register()
class MyInventoryHandler(InventoryHandler):
def get_labels(self, cursor: int = 0, page_size: int = 100) -> Labels:
"""Retrieve asset labels"""
pass
def get_inventory(self, cursor: int = 0, page_size: int = 100) -> Inventory:
"""Retrieve asset inventory"""
pass
def post_assets(self, inventory_id: str, asset_type: str, body: Any):
"""Create or update assets"""
pass
๐ก๏ธ Enforcement Router (routers/enforcement.py)
Manages security policy enforcement:
@enforcement_registry.register()
class MyEnforcementHandler(EnforcementHandler):
def set_enforcement_policy(self, body: EnforcementPolicy):
"""Apply security policies"""
pass
def get_enforcement_policy_inventory(self) -> EnforcementPolicyInventory:
"""Retrieve current policy inventory"""
pass
๐๏ธ Operations Router (routers/operations.py)
Handles operational tasks like configuration and logging:
@operations_registry.register()
class MyOperationsHandler(OperationsHandler):
def get_config_options(self) -> InternalConfigMetadata:
"""Get available configuration options"""
pass
def set_config(self, body: InternalConfig):
"""Update connector configuration"""
pass
๐ Authentication Router (routers/authentication.py)
Manages JWT-based authentication and token generation:
from centra_sdk.routers.authentication import AuthenticationHandler, registry
from centra_sdk.models.connector.version import LoginRequest, LoginResponse
from starlette.requests import Request
@registry.register()
class MyAuthenticationHandler(AuthenticationHandler):
def __init__(self):
super().__init__()
user_handler = GcUserDataHandler({
"admin": "securePassword123",
"user": "password456",
"test": "testpass"
})
self._token_handler = BearerTokenHandler(24,
"your-secret-key-here",
user_handler)
def login_user_json(self, body: LoginRequest) -> LoginResponse:
"""Handle JSON-based login requests"""
username = body.username
password = body.password.get_secret_value() # SecretStr requires get_secret_value()
# Generate access token using your token handler
access_token = self._token_handler.generate_token(username, password)
return LoginResponse(
access_token=access_token,
token_type="Bearer",
expires_in=86400 # 24 hours in seconds
)
def login_user_form(self, request: Request) -> LoginResponse:
"""Handle form-based login requests"""
# Parse form data asynchronously
form_data = asyncio.run(self._parse_form_data(request))
username = form_data.get("username")
password = form_data.get("password")
if not username or not password:
raise HTTPException(status_code=400, detail="Missing credentials")
# Generate access token
access_token = self._token_handler.generate_token(username, password)
return LoginResponse(
access_token=access_token,
token_type="Bearer",
expires_in=86400
)
Each handler that SDK user want to secure , should implement validation method. As an example
class JwtValidator:
def __init__(self):
self._tokens = {
"passing_token"
}
def validate_token(self, token: str):
return token in self._tokens
# Include JwtValidator to subclass list and SDK would call validate_token() to validate token.
@agents_registry.register()
class GcAgentsHandler(AgentsHandler, JwtValidator):
"""Implementation of AgentsHandler for GuardiCore integration."""
def __init__(self):
AgentsHandler.__init__(self)
JwtValidator.__init__(self)
Authentication Features:
- JWT token generation and validation using PyJWT library
- Configurable token expiration times
- Bearer token authentication scheme
- Abstract base class pattern for custom user data handlers
- Comprehensive error handling and security logging
Security Considerations:
- Use strong secret keys for JWT signing
- Implement proper password hashing in production
- Set appropriate token expiration times
- Validate tokens on each protected endpoint
- Log authentication attempts for security auditing
Authentication Endpoints:
POST /v1/login: JSON-based login (requiresLoginRequestbody)POST /v1/login-form: Form-based login (requires form data with username/password)
Usage Examples:
# JSON login
curl -X POST "http://localhost:8000/v1/login" \
-H "Content-Type: application/json" \
-d '{"username": "admin", "password": "securePassword123"}'
# Form login
curl -X POST "http://localhost:8000/v1/login-form" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "username=admin&password=securePassword123"
Other Routers:
- Agents Router: Agent management and control
- Control Router: Connector control operations
- Info Router: Integration information and metadata
- Logging Router: Log management and collection
- Onboarding Router: Platform onboarding processes
Handler Implementation
Creating Custom Handlers
- Inherit from Base Handler Classes:
from centra_sdk.routers.inventory import InventoryHandler, registry
@registry.register()
class MyPlatformInventoryHandler(InventoryHandler):
def __init__(self):
super().__init__()
# Initialize your platform-specific clients
self.platform_client = MyPlatformClient()
- Implement Required Methods:
def get_inventory(self, cursor: int = 0, page_size: int = 100) -> Inventory:
# Fetch data from your platform
assets = self.platform_client.get_assets(offset=cursor, limit=page_size)
# Transform to Centra format
inventory_items = []
for asset in assets:
item = InventoryItem(
item_id=asset.id,
external_id=asset.external_id,
ip_addresses=asset.ips,
# ... map other fields
)
inventory_items.append(item)
return Inventory(
inventory_items=inventory_items,
total_count=len(inventory_items)
)
- Handle Errors Gracefully:
def get_inventory(self, cursor: int = 0, page_size: int = 100) -> Inventory:
try:
# Your implementation
pass
except PlatformAPIException as e:
# Log the error
logger.error(f"Platform API error: {e}")
# Let the registry handle HTTP error response
raise HTTPException(status_code=503, detail=f"Platform unavailable: {e}")
Models and Data Types
The SDK includes comprehensive data models generated from OpenAPI specifications. Key model categories include:
Common Models
InventoryItem: Represents discoverable assetsLabel: Key-value metadata for assetsNetworkTopology: Network relationship data
Enforcement Models
EnforcementPolicy: Security policy definitionsPolicyRule: Individual policy rulesAction: Enforcement actions (allow, block, alert)
Operations Models
ComponentHealth: Health status informationInternalConfig: Configuration dataLogStatus: Logging status and metadata
Provider Models
Inventory: Asset inventory responsesNetworkTopology: Network topology dataLookupRequest: Asset lookup queries
Examples
Complete Inventory Handler Example
from typing import Optional
from centra_sdk.routers.inventory import InventoryHandler, registry
from centra_sdk.models.connector.v1.provider.inventory import (
Inventory, Labels, InventoryAssetType
)
from centra_sdk.models.connector.v1.common.inventory import (
InventoryItem, Label, VMData, NetworkInterfaceData
)
@registry.register()
class ExampleCloudInventoryHandler(InventoryHandler):
def __init__(self):
super().__init__()
# Initialize your cloud provider client
self.cloud_client = ExampleCloudClient()
def get_labels(self, cursor: int = 0, page_size: int = 100) -> Labels:
"""Retrieve asset labels from the cloud provider"""
labels_data = self.cloud_client.get_labels(offset=cursor, limit=page_size)
labels = []
for label_data in labels_data:
label = Label(
label_id=label_data['id'],
key=label_data['key'],
value=label_data['value'],
labeled_items=label_data.get('tagged_resources', [])
)
labels.append(label)
return Labels(labels=labels)
def get_inventory(self, cursor: int = 0, page_size: int = 100) -> Inventory:
"""Retrieve VM inventory from the cloud provider"""
vms_data = self.cloud_client.get_virtual_machines(
offset=cursor,
limit=page_size
)
inventory_items = []
for vm_data in vms_data:
# Map network interfaces
network_interfaces = []
for nic in vm_data.get('network_interfaces', []):
interface = NetworkInterfaceData(
name=nic['name'],
private_ip=nic.get('private_ip'),
public_ip=nic.get('public_ip'),
mac_address=nic.get('mac_address')
)
network_interfaces.append(interface)
# Create VM data object
vm_info = VMData(
vm_name=vm_data['name'],
vm_id=vm_data['id'],
power_state=vm_data.get('power_state', 'unknown'),
network_interfaces=network_interfaces,
resource_group=vm_data.get('resource_group'),
subscription_id=vm_data.get('subscription_id')
)
# Create inventory item
item = InventoryItem(
item_id=vm_data['id'],
external_id=vm_data.get('external_id'),
ip_addresses=vm_data.get('ip_addresses', []),
vm_data=vm_info
)
inventory_items.append(item)
return Inventory(
inventory_items=inventory_items,
total_count=len(inventory_items)
)
API Documentation
Once your application is running, you can access:
- Interactive API Documentation:
http://localhost:8000/docs - Alternative Documentation:
http://localhost:8000/redoc - OpenAPI Schema:
http://localhost:8000/openapi.json
Testing
The SDK includes comprehensive test suites demonstrating proper usage:
Running Tests
# Run all tests
pytest
# Run specific test categories
pytest sdk/tests/test_inventory_router.py
# Run with coverage
pytest --cov=centra_sdk
Test Examples
The test files provide excellent examples of how to implement handlers:
tests/test_inventory_router.py: Complete inventory handler implementationtests/test_enforcement.py: Enforcement policy handling examplestests/gc_*.py: Real-world integration examples
Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Make your changes and add tests
- Ensure tests pass:
pytest - Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
Development Guidelines
- Follow PEP 8 style guidelines
- Add comprehensive docstrings
- Include unit tests for new functionality
- Update documentation as needed
- Ensure backward compatibility
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
For questions, issues, or contributions:
- GitHub Issues: https://github.com/guardicore/contracts/issues
- Documentation: https://github.com/guardicore/contracts
- Email: ivasylen@akamai.com
Built with โค๏ธ by the Guardicore Team
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file centra_sdk-0.1.8.tar.gz.
File metadata
- Download URL: centra_sdk-0.1.8.tar.gz
- Upload date:
- Size: 28.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
071a5ffa1d2399d45f81af8fbfcfc3438e3c16ff7d084c8566daed77968769ca
|
|
| MD5 |
c0b0d19a72aa8ad10887715bdc20da2a
|
|
| BLAKE2b-256 |
6a81526320805053691c0d83d8af6345ab5f253dd21db9e0bc524aebf937b012
|
File details
Details for the file centra_sdk-0.1.8-py3-none-any.whl.
File metadata
- Download URL: centra_sdk-0.1.8-py3-none-any.whl
- Upload date:
- Size: 41.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d212ccb3c0690e5236a1e044993cf993232dab62beb7efec59bbeee8cb2a4cdc
|
|
| MD5 |
eb05d6e650e50bceb81172352597811d
|
|
| BLAKE2b-256 |
4a848daec7b59f940cc809183513baeaa09c4ce958cb2265fa59ddaceb2f09f1
|