runbooks 0.1.5__py3-none-any.whl → 0.1.6__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 CHANGED
@@ -4,7 +4,4 @@ runbooks
4
4
  Provides utility functions for math operations, AWS S3 interactions, and data management.
5
5
  """
6
6
 
7
- # __version__ = "0.1.5"
8
-
9
- # from .toolkit import add, divide, multiply, subtract
10
- # from .s3 import S3Client
7
+ # __version__ = "0.1.6"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: runbooks
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: CloudOps Automation Toolkit for DevOps and SRE teams.
5
5
  Author-email: runbooks maintainers <nnthanh101@gmail.com>
6
6
  License: Apache License
@@ -0,0 +1,6 @@
1
+ runbooks/__init__.py,sha256=_7SZc5Hr4Nynfpt_KtSYxUmsjSvYZkWdQ8o5dJO-V8Y,133
2
+ runbooks-0.1.6.dist-info/METADATA,sha256=qBCWPmDeJGL5jQmTFDTfqs0JYym48nKqOKyTdPs8TMM,24733
3
+ runbooks-0.1.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
4
+ runbooks-0.1.6.dist-info/entry_points.txt,sha256=6lCgbrwZ3nlubzydqeMZQ_BZ_-Um1N1S0dH7x55UNqo,57
5
+ runbooks-0.1.6.dist-info/top_level.txt,sha256=1EwNxU12QGOLtO0Naw75hXIdSIhgV_b-z_6vhlhVkhM,9
6
+ runbooks-0.1.6.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ runbooks = runbooks.aws:execute_script
@@ -1,6 +0,0 @@
1
- runbooks/__init__.py,sha256=Jb-vD5lxcblaWaYs5u6nHRuxrPIShftR9xgDwo-xeqQ,216
2
- runbooks-0.1.5.dist-info/METADATA,sha256=f1TLGn_GS5c6PckdyiK6Y0sSBsVlZwcTWhaYezMnyVY,24733
3
- runbooks-0.1.5.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
4
- runbooks-0.1.5.dist-info/entry_points.txt,sha256=_QeudHiRbT7oqnS32FShaOcqu03boiL5TJlFXKKYb7A,997
5
- runbooks-0.1.5.dist-info/top_level.txt,sha256=1EwNxU12QGOLtO0Naw75hXIdSIhgV_b-z_6vhlhVkhM,9
6
- runbooks-0.1.5.dist-info/RECORD,,
@@ -1,15 +0,0 @@
1
- [console_scripts]
2
- create_s3_bucket = runbooks.aws.s3_create_bucket:create_bucket
3
- delete_s3_object = runbooks.aws.s3_object_operations:delete_object
4
- delete_unused_eips = runbooks.aws.ec2_unused_eips:delete_unused_eips
5
- delete_unused_volumes = runbooks.aws.ec2_unused_volumes:delete_unused_volumes
6
- dynamodb_batch_write = runbooks.aws.dynamodb_operations:batch_write_items
7
- dynamodb_delete_item = runbooks.aws.dynamodb_operations:delete_item
8
- dynamodb_put_item = runbooks.aws.dynamodb_operations:put_item
9
- list_ec2_instances = runbooks.aws.ec2_describe_instances:describe_instances
10
- list_s3_buckets = runbooks.aws.s3_list_buckets:list_s3_buckets
11
- put_s3_object = runbooks.aws.s3_object_operations:put_object
12
- run_ec2_instances = runbooks.aws.ec2_run_instances:run_instances
13
- start_ec2_instances = runbooks.aws.ec2_start_stop_instances:start_instances
14
- stop_ec2_instances = runbooks.aws.ec2_start_stop_instances:stop_instances
15
- terminate_ec2_instances = runbooks.aws.ec2_terminate_instances:terminate_instances