runbooks 0.9.0__py3-none-any.whl → 0.9.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- runbooks/__init__.py +1 -1
- runbooks/cfat/assessment/compliance.py +4 -1
- runbooks/cloudops/__init__.py +123 -0
- runbooks/cloudops/base.py +385 -0
- runbooks/cloudops/cost_optimizer.py +811 -0
- runbooks/cloudops/infrastructure_optimizer.py +29 -0
- runbooks/cloudops/interfaces.py +828 -0
- runbooks/cloudops/lifecycle_manager.py +29 -0
- runbooks/cloudops/mcp_cost_validation.py +678 -0
- runbooks/cloudops/models.py +251 -0
- runbooks/cloudops/monitoring_automation.py +29 -0
- runbooks/cloudops/notebook_framework.py +676 -0
- runbooks/cloudops/security_enforcer.py +449 -0
- runbooks/common/mcp_cost_explorer_integration.py +900 -0
- runbooks/common/mcp_integration.py +19 -10
- runbooks/common/rich_utils.py +1 -1
- runbooks/finops/README.md +31 -0
- runbooks/finops/cost_optimizer.py +1340 -0
- runbooks/finops/finops_dashboard.py +211 -5
- runbooks/finops/schemas.py +589 -0
- runbooks/inventory/runbooks.inventory.organizations_discovery.log +0 -0
- runbooks/inventory/runbooks.security.security_export.log +0 -0
- runbooks/main.py +525 -0
- runbooks/operate/ec2_operations.py +428 -0
- runbooks/operate/iam_operations.py +598 -3
- runbooks/operate/rds_operations.py +508 -0
- runbooks/operate/s3_operations.py +508 -0
- runbooks/remediation/base.py +5 -3
- runbooks/security/__init__.py +101 -0
- runbooks/security/cloudops_automation_security_validator.py +1164 -0
- runbooks/security/compliance_automation_engine.py +4 -4
- runbooks/security/enterprise_security_framework.py +4 -5
- runbooks/security/executive_security_dashboard.py +1247 -0
- runbooks/security/multi_account_security_controls.py +2254 -0
- runbooks/security/real_time_security_monitor.py +1196 -0
- runbooks/security/security_baseline_tester.py +3 -3
- runbooks/sre/production_monitoring_framework.py +584 -0
- runbooks/validation/mcp_validator.py +29 -15
- runbooks/vpc/networking_wrapper.py +6 -3
- runbooks-0.9.2.dist-info/METADATA +525 -0
- {runbooks-0.9.0.dist-info → runbooks-0.9.2.dist-info}/RECORD +45 -23
- runbooks-0.9.0.dist-info/METADATA +0 -718
- {runbooks-0.9.0.dist-info → runbooks-0.9.2.dist-info}/WHEEL +0 -0
- {runbooks-0.9.0.dist-info → runbooks-0.9.2.dist-info}/entry_points.txt +0 -0
- {runbooks-0.9.0.dist-info → runbooks-0.9.2.dist-info}/licenses/LICENSE +0 -0
- {runbooks-0.9.0.dist-info → runbooks-0.9.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
"""
|
2
|
+
Infrastructure Optimizer - Enterprise Infrastructure Optimization
|
3
|
+
|
4
|
+
Placeholder for InfrastructureOptimizer - comprehensive infrastructure optimization
|
5
|
+
integrating CloudOps-Automation infrastructure and performance notebooks.
|
6
|
+
|
7
|
+
This module will be fully implemented in the next development phase.
|
8
|
+
"""
|
9
|
+
|
10
|
+
from .base import CloudOpsBase
|
11
|
+
from .models import CloudOpsExecutionResult, BusinessScenario, ExecutionMode
|
12
|
+
|
13
|
+
class InfrastructureOptimizer(CloudOpsBase):
|
14
|
+
"""
|
15
|
+
Infrastructure optimization scenarios for performance and cost efficiency.
|
16
|
+
|
17
|
+
Future Implementation Will Include:
|
18
|
+
- ELB optimization and rightsizing
|
19
|
+
- Route53 performance optimization
|
20
|
+
- Infrastructure modernization campaigns
|
21
|
+
- Performance monitoring and optimization
|
22
|
+
"""
|
23
|
+
|
24
|
+
def __init__(self, profile: str = "default", dry_run: bool = True):
|
25
|
+
super().__init__(profile, dry_run, ExecutionMode.DRY_RUN)
|
26
|
+
|
27
|
+
def placeholder_method(self):
|
28
|
+
"""Placeholder for future implementation."""
|
29
|
+
return "InfrastructureOptimizer - Coming in next development phase"
|