1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
from typing import Any
PAGINATION_MODEL = {
"list_job_executions_for_job": {
"input_token": "token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": ["job_id", "thing_arn"],
},
"list_job_executions_for_thing": {
"input_token": "next_token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": "job_id",
},
"list_job_templates": {
"input_token": "next_token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": "jobTemplateId",
},
"list_jobs": {
"input_token": "next_token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": "jobId",
},
"list_things": {
"input_token": "token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": "thingArn",
},
"list_billing_groups": {
"input_token": "token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": "groupName",
},
"list_things_in_billing_group": {
"input_token": "token",
"limit_key": "max_results",
"limit_default": 100,
"unique_attribute": "thing_name",
},
}
def decapitalize_str(obj: str) -> str:
return obj[0].lower() + obj[1:]
def decapitalize_dict(obj: Any) -> Any:
if isinstance(obj, dict):
return {
decapitalize_str(key): decapitalize_dict(value)
for key, value in obj.items()
}
else:
return obj
|