clear-skies-aws 1.9.16__py3-none-any.whl → 1.9.17__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: clear-skies-aws
3
- Version: 1.9.16
3
+ Version: 1.9.17
4
4
  Summary: clearskies bindings for working in AWS
5
5
  Home-page: https://github.com/cmancone/clearskies-aws
6
6
  License: MIT
@@ -41,8 +41,8 @@ clearskies_aws/input_outputs/lambda_api_gateway_web_socket.py,sha256=kG2fys9X7Ta
41
41
  clearskies_aws/input_outputs/lambda_elb.py,sha256=b675h0DxTGo9YscXN4mwzRGzP3hNSie4iPRKOg3kKPI,750
42
42
  clearskies_aws/input_outputs/lambda_http_gateway.py,sha256=YQk7GlQWtQjDiKWhX5jvXc3un1eq2sm1v_jl6iseNoQ,692
43
43
  clearskies_aws/input_outputs/lambda_invocation.py,sha256=yF3rYJ-r0YYzlh--33fGE-I-pzyhQxDmDo1TUQxCu00,1122
44
- clearskies_aws/input_outputs/lambda_sns.py,sha256=95tX4vxdT_KTk4pMBgmjR3ljKE0qL92eLErGTKEfQCo,2396
45
- clearskies_aws/input_outputs/lambda_sqs_standard.py,sha256=eDBwaucAM6gFMZR5eQrwH_9kXZnuRJYbngw3n8kcuO0,2315
44
+ clearskies_aws/input_outputs/lambda_sns.py,sha256=0m1dfVCSEftcovGAEWhU9ig4txX9duLkTXbdtjIzSAw,2055
45
+ clearskies_aws/input_outputs/lambda_sqs_standard.py,sha256=RjsOqzyUovTuO3Nb9CSiWnVaHHxJiPmvOmuQbmpIW38,1974
46
46
  clearskies_aws/mocks/__init__.py,sha256=mn764gINN667tYoJfnsM6HjAAhCsO_kZ6E-fUwdLY50,22
47
47
  clearskies_aws/mocks/actions/__init__.py,sha256=to1r8B365Et2PRVfUWWnJGt7Hdr8vwwQuNyZvTSTP6g,152
48
48
  clearskies_aws/mocks/actions/ses.py,sha256=sCCNk_WdnQbINOzg8E31xyoeoEuUQeX-RwPbJ9ueNik,937
@@ -61,7 +61,7 @@ clearskies_aws/secrets/parameter_store_test.py,sha256=UyqKE4AZYlldj9ww5f0fR15qsV
61
61
  clearskies_aws/secrets/secrets_manager.py,sha256=jlpfAFC23EeSpm50L8B-yrXg4IROQq-M_90zzXDp_ak,3056
62
62
  clearskies_aws/secrets/secrets_manager_test.py,sha256=mlNWtDm1wWS5C8aV0vJAzZVZB82KFR6NGRAPEkLtTyk,786
63
63
  clearskies_aws/web_socket_connection_model.py,sha256=d_Au_Pu7YXBfc7_lbuI7zz4MZ8ZOOwGM0oooppEofcI,1776
64
- clear_skies_aws-1.9.16.dist-info/LICENSE,sha256=3Ehd0g3YOpCj8sqj0Xjq5qbOtjjgk9qzhhD9YjRQgOA,1053
65
- clear_skies_aws-1.9.16.dist-info/METADATA,sha256=WMSXmLyC_iJXjQZcXOA0sa1eYMwHRNQUBTvywNcJ1Hg,8583
66
- clear_skies_aws-1.9.16.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
67
- clear_skies_aws-1.9.16.dist-info/RECORD,,
64
+ clear_skies_aws-1.9.17.dist-info/LICENSE,sha256=3Ehd0g3YOpCj8sqj0Xjq5qbOtjjgk9qzhhD9YjRQgOA,1053
65
+ clear_skies_aws-1.9.17.dist-info/METADATA,sha256=vc-Kfaj1UjMTLcfn8awlqUN1Zrap86yd2Y_aaucGGXI,8583
66
+ clear_skies_aws-1.9.17.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
67
+ clear_skies_aws-1.9.17.dist-info/RECORD,,
@@ -30,15 +30,6 @@ class LambdaSns(LambdaAPIGateway):
30
30
 
31
31
  return self._record
32
32
 
33
- def get_request_method(self):
34
- raise NotImplementedError("Request methods don't exist in an SNS context")
35
-
36
- def get_script_name(self):
37
- raise NotImplementedError("Script names doesn't exist in an SNS context")
38
-
39
- def get_path_info(self):
40
- raise NotImplementedError("Path info doesn't exist in an SNS context")
41
-
42
33
  def get_query_string(self):
43
34
  raise NotImplementedError("The query string doesn't exist in an SNS context")
44
35
 
@@ -32,15 +32,6 @@ class LambdaSqsStandard(LambdaAPIGateway):
32
32
  except json.JSONDecodeError:
33
33
  raise ClientError("SQS message was not valid JSON")
34
34
 
35
- def get_request_method(self):
36
- raise NotImplementedError("Request methods don't exist in an SQS context")
37
-
38
- def get_script_name(self):
39
- raise NotImplementedError("Script names doesn't exist in an SQS context")
40
-
41
- def get_path_info(self):
42
- raise NotImplementedError("Path info doesn't exist in an SQS context")
43
-
44
35
  def get_query_string(self):
45
36
  raise NotImplementedError("The query string doesn't exist in an SQS context")
46
37