MCPcopy
hub / github.com/aws/aws-cli / CallArgs

Class CallArgs

awscli/s3transfer/utils.py:171–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169
170
171class CallArgs:
172 def __init__(self, **kwargs):
173 """A class that records call arguments
174
175 The call arguments must be passed as keyword arguments. It will set
176 each keyword argument as an attribute of the object along with its
177 associated value.
178 """
179 for arg, value in kwargs.items():
180 setattr(self, arg, value)
181
182
183class FunctionContainer:

Callers 15

test_upload_requestMethod · 0.90
test_download_requestMethod · 0.90
test_delete_requestMethod · 0.90
setUpMethod · 0.90
setUpMethod · 0.90
setUpMethod · 0.90
get_call_argsMethod · 0.90
setUpMethod · 0.90
setUpMethod · 0.90
get_call_argsMethod · 0.90
setUpMethod · 0.90
test_call_argsMethod · 0.90

Calls

no outgoing calls

Tested by 13

test_upload_requestMethod · 0.72
test_download_requestMethod · 0.72
test_delete_requestMethod · 0.72
setUpMethod · 0.72
setUpMethod · 0.72
setUpMethod · 0.72
get_call_argsMethod · 0.72
setUpMethod · 0.72
setUpMethod · 0.72
get_call_argsMethod · 0.72
setUpMethod · 0.72
test_call_argsMethod · 0.72