paasta-tools 1.21.3__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.
Files changed (348) hide show
  1. k8s_itests/__init__.py +0 -0
  2. k8s_itests/test_autoscaling.py +23 -0
  3. k8s_itests/utils.py +38 -0
  4. paasta_tools/__init__.py +20 -0
  5. paasta_tools/adhoc_tools.py +142 -0
  6. paasta_tools/api/__init__.py +13 -0
  7. paasta_tools/api/api.py +330 -0
  8. paasta_tools/api/api_docs/swagger.json +2323 -0
  9. paasta_tools/api/client.py +106 -0
  10. paasta_tools/api/settings.py +33 -0
  11. paasta_tools/api/tweens/__init__.py +6 -0
  12. paasta_tools/api/tweens/auth.py +125 -0
  13. paasta_tools/api/tweens/profiling.py +108 -0
  14. paasta_tools/api/tweens/request_logger.py +124 -0
  15. paasta_tools/api/views/__init__.py +13 -0
  16. paasta_tools/api/views/autoscaler.py +100 -0
  17. paasta_tools/api/views/exception.py +45 -0
  18. paasta_tools/api/views/flink.py +73 -0
  19. paasta_tools/api/views/instance.py +395 -0
  20. paasta_tools/api/views/pause_autoscaler.py +71 -0
  21. paasta_tools/api/views/remote_run.py +113 -0
  22. paasta_tools/api/views/resources.py +76 -0
  23. paasta_tools/api/views/service.py +35 -0
  24. paasta_tools/api/views/version.py +25 -0
  25. paasta_tools/apply_external_resources.py +79 -0
  26. paasta_tools/async_utils.py +109 -0
  27. paasta_tools/autoscaling/__init__.py +0 -0
  28. paasta_tools/autoscaling/autoscaling_service_lib.py +57 -0
  29. paasta_tools/autoscaling/forecasting.py +106 -0
  30. paasta_tools/autoscaling/max_all_k8s_services.py +41 -0
  31. paasta_tools/autoscaling/pause_service_autoscaler.py +77 -0
  32. paasta_tools/autoscaling/utils.py +52 -0
  33. paasta_tools/bounce_lib.py +184 -0
  34. paasta_tools/broadcast_log_to_services.py +62 -0
  35. paasta_tools/cassandracluster_tools.py +210 -0
  36. paasta_tools/check_autoscaler_max_instances.py +212 -0
  37. paasta_tools/check_cassandracluster_services_replication.py +35 -0
  38. paasta_tools/check_flink_services_health.py +203 -0
  39. paasta_tools/check_kubernetes_api.py +57 -0
  40. paasta_tools/check_kubernetes_services_replication.py +141 -0
  41. paasta_tools/check_oom_events.py +244 -0
  42. paasta_tools/check_services_replication_tools.py +324 -0
  43. paasta_tools/check_spark_jobs.py +234 -0
  44. paasta_tools/cleanup_kubernetes_cr.py +138 -0
  45. paasta_tools/cleanup_kubernetes_crd.py +145 -0
  46. paasta_tools/cleanup_kubernetes_jobs.py +344 -0
  47. paasta_tools/cleanup_tron_namespaces.py +96 -0
  48. paasta_tools/cli/__init__.py +13 -0
  49. paasta_tools/cli/authentication.py +85 -0
  50. paasta_tools/cli/cli.py +260 -0
  51. paasta_tools/cli/cmds/__init__.py +13 -0
  52. paasta_tools/cli/cmds/autoscale.py +143 -0
  53. paasta_tools/cli/cmds/check.py +334 -0
  54. paasta_tools/cli/cmds/cook_image.py +147 -0
  55. paasta_tools/cli/cmds/get_docker_image.py +76 -0
  56. paasta_tools/cli/cmds/get_image_version.py +172 -0
  57. paasta_tools/cli/cmds/get_latest_deployment.py +93 -0
  58. paasta_tools/cli/cmds/info.py +155 -0
  59. paasta_tools/cli/cmds/itest.py +117 -0
  60. paasta_tools/cli/cmds/list.py +66 -0
  61. paasta_tools/cli/cmds/list_clusters.py +42 -0
  62. paasta_tools/cli/cmds/list_deploy_queue.py +171 -0
  63. paasta_tools/cli/cmds/list_namespaces.py +84 -0
  64. paasta_tools/cli/cmds/local_run.py +1396 -0
  65. paasta_tools/cli/cmds/logs.py +1601 -0
  66. paasta_tools/cli/cmds/mark_for_deployment.py +1988 -0
  67. paasta_tools/cli/cmds/mesh_status.py +174 -0
  68. paasta_tools/cli/cmds/pause_service_autoscaler.py +107 -0
  69. paasta_tools/cli/cmds/push_to_registry.py +275 -0
  70. paasta_tools/cli/cmds/remote_run.py +252 -0
  71. paasta_tools/cli/cmds/rollback.py +347 -0
  72. paasta_tools/cli/cmds/secret.py +549 -0
  73. paasta_tools/cli/cmds/security_check.py +59 -0
  74. paasta_tools/cli/cmds/spark_run.py +1400 -0
  75. paasta_tools/cli/cmds/start_stop_restart.py +401 -0
  76. paasta_tools/cli/cmds/status.py +2302 -0
  77. paasta_tools/cli/cmds/validate.py +1012 -0
  78. paasta_tools/cli/cmds/wait_for_deployment.py +275 -0
  79. paasta_tools/cli/fsm/__init__.py +13 -0
  80. paasta_tools/cli/fsm/autosuggest.py +82 -0
  81. paasta_tools/cli/fsm/template/README.md +8 -0
  82. paasta_tools/cli/fsm/template/cookiecutter.json +7 -0
  83. paasta_tools/cli/fsm/template/{{cookiecutter.service}}/kubernetes-PROD.yaml +91 -0
  84. paasta_tools/cli/fsm/template/{{cookiecutter.service}}/monitoring.yaml +20 -0
  85. paasta_tools/cli/fsm/template/{{cookiecutter.service}}/service.yaml +8 -0
  86. paasta_tools/cli/fsm/template/{{cookiecutter.service}}/smartstack.yaml +6 -0
  87. paasta_tools/cli/fsm_cmd.py +121 -0
  88. paasta_tools/cli/paasta_tabcomplete.sh +23 -0
  89. paasta_tools/cli/schemas/adhoc_schema.json +199 -0
  90. paasta_tools/cli/schemas/autoscaling_schema.json +91 -0
  91. paasta_tools/cli/schemas/autotuned_defaults/cassandracluster_schema.json +37 -0
  92. paasta_tools/cli/schemas/autotuned_defaults/kubernetes_schema.json +89 -0
  93. paasta_tools/cli/schemas/deploy_schema.json +173 -0
  94. paasta_tools/cli/schemas/eks_schema.json +970 -0
  95. paasta_tools/cli/schemas/kubernetes_schema.json +970 -0
  96. paasta_tools/cli/schemas/rollback_schema.json +160 -0
  97. paasta_tools/cli/schemas/service_schema.json +25 -0
  98. paasta_tools/cli/schemas/smartstack_schema.json +322 -0
  99. paasta_tools/cli/schemas/tron_schema.json +699 -0
  100. paasta_tools/cli/utils.py +1118 -0
  101. paasta_tools/clusterman.py +21 -0
  102. paasta_tools/config_utils.py +385 -0
  103. paasta_tools/contrib/__init__.py +0 -0
  104. paasta_tools/contrib/bounce_log_latency_parser.py +68 -0
  105. paasta_tools/contrib/check_manual_oapi_changes.sh +24 -0
  106. paasta_tools/contrib/check_orphans.py +306 -0
  107. paasta_tools/contrib/create_dynamodb_table.py +35 -0
  108. paasta_tools/contrib/create_paasta_playground.py +105 -0
  109. paasta_tools/contrib/emit_allocated_cpu_metrics.py +50 -0
  110. paasta_tools/contrib/get_running_task_allocation.py +346 -0
  111. paasta_tools/contrib/habitat_fixer.py +86 -0
  112. paasta_tools/contrib/ide_helper.py +316 -0
  113. paasta_tools/contrib/is_pod_healthy_in_proxy.py +139 -0
  114. paasta_tools/contrib/is_pod_healthy_in_smartstack.py +50 -0
  115. paasta_tools/contrib/kill_bad_containers.py +109 -0
  116. paasta_tools/contrib/mass-deploy-tag.sh +44 -0
  117. paasta_tools/contrib/mock_patch_checker.py +86 -0
  118. paasta_tools/contrib/paasta_update_soa_memcpu.py +520 -0
  119. paasta_tools/contrib/render_template.py +129 -0
  120. paasta_tools/contrib/rightsizer_soaconfigs_update.py +348 -0
  121. paasta_tools/contrib/service_shard_remove.py +157 -0
  122. paasta_tools/contrib/service_shard_update.py +373 -0
  123. paasta_tools/contrib/shared_ip_check.py +77 -0
  124. paasta_tools/contrib/timeouts_metrics_prom.py +64 -0
  125. paasta_tools/delete_kubernetes_deployments.py +89 -0
  126. paasta_tools/deployment_utils.py +44 -0
  127. paasta_tools/docker_wrapper.py +234 -0
  128. paasta_tools/docker_wrapper_imports.py +13 -0
  129. paasta_tools/drain_lib.py +351 -0
  130. paasta_tools/dump_locally_running_services.py +71 -0
  131. paasta_tools/eks_tools.py +119 -0
  132. paasta_tools/envoy_tools.py +373 -0
  133. paasta_tools/firewall.py +504 -0
  134. paasta_tools/firewall_logging.py +154 -0
  135. paasta_tools/firewall_update.py +172 -0
  136. paasta_tools/flink_tools.py +345 -0
  137. paasta_tools/flinkeks_tools.py +90 -0
  138. paasta_tools/frameworks/__init__.py +0 -0
  139. paasta_tools/frameworks/adhoc_scheduler.py +71 -0
  140. paasta_tools/frameworks/constraints.py +87 -0
  141. paasta_tools/frameworks/native_scheduler.py +652 -0
  142. paasta_tools/frameworks/native_service_config.py +301 -0
  143. paasta_tools/frameworks/task_store.py +245 -0
  144. paasta_tools/generate_all_deployments +9 -0
  145. paasta_tools/generate_authenticating_services.py +94 -0
  146. paasta_tools/generate_deployments_for_service.py +255 -0
  147. paasta_tools/generate_services_file.py +114 -0
  148. paasta_tools/generate_services_yaml.py +30 -0
  149. paasta_tools/hacheck.py +76 -0
  150. paasta_tools/instance/__init__.py +0 -0
  151. paasta_tools/instance/hpa_metrics_parser.py +122 -0
  152. paasta_tools/instance/kubernetes.py +1362 -0
  153. paasta_tools/iptables.py +240 -0
  154. paasta_tools/kafkacluster_tools.py +143 -0
  155. paasta_tools/kubernetes/__init__.py +0 -0
  156. paasta_tools/kubernetes/application/__init__.py +0 -0
  157. paasta_tools/kubernetes/application/controller_wrappers.py +476 -0
  158. paasta_tools/kubernetes/application/tools.py +90 -0
  159. paasta_tools/kubernetes/bin/__init__.py +0 -0
  160. paasta_tools/kubernetes/bin/kubernetes_remove_evicted_pods.py +164 -0
  161. paasta_tools/kubernetes/bin/paasta_cleanup_remote_run_resources.py +135 -0
  162. paasta_tools/kubernetes/bin/paasta_cleanup_stale_nodes.py +181 -0
  163. paasta_tools/kubernetes/bin/paasta_secrets_sync.py +758 -0
  164. paasta_tools/kubernetes/remote_run.py +558 -0
  165. paasta_tools/kubernetes_tools.py +4679 -0
  166. paasta_tools/list_kubernetes_service_instances.py +128 -0
  167. paasta_tools/list_tron_namespaces.py +60 -0
  168. paasta_tools/long_running_service_tools.py +678 -0
  169. paasta_tools/mac_address.py +44 -0
  170. paasta_tools/marathon_dashboard.py +0 -0
  171. paasta_tools/mesos/__init__.py +0 -0
  172. paasta_tools/mesos/cfg.py +46 -0
  173. paasta_tools/mesos/cluster.py +60 -0
  174. paasta_tools/mesos/exceptions.py +59 -0
  175. paasta_tools/mesos/framework.py +77 -0
  176. paasta_tools/mesos/log.py +48 -0
  177. paasta_tools/mesos/master.py +306 -0
  178. paasta_tools/mesos/mesos_file.py +169 -0
  179. paasta_tools/mesos/parallel.py +52 -0
  180. paasta_tools/mesos/slave.py +115 -0
  181. paasta_tools/mesos/task.py +94 -0
  182. paasta_tools/mesos/util.py +69 -0
  183. paasta_tools/mesos/zookeeper.py +37 -0
  184. paasta_tools/mesos_maintenance.py +848 -0
  185. paasta_tools/mesos_tools.py +1051 -0
  186. paasta_tools/metrics/__init__.py +0 -0
  187. paasta_tools/metrics/metastatus_lib.py +1110 -0
  188. paasta_tools/metrics/metrics_lib.py +217 -0
  189. paasta_tools/monitoring/__init__.py +13 -0
  190. paasta_tools/monitoring/check_k8s_api_performance.py +110 -0
  191. paasta_tools/monitoring_tools.py +652 -0
  192. paasta_tools/monkrelaycluster_tools.py +146 -0
  193. paasta_tools/nrtsearchservice_tools.py +143 -0
  194. paasta_tools/nrtsearchserviceeks_tools.py +68 -0
  195. paasta_tools/oom_logger.py +321 -0
  196. paasta_tools/paasta_deploy_tron_jobs +3 -0
  197. paasta_tools/paasta_execute_docker_command.py +123 -0
  198. paasta_tools/paasta_native_serviceinit.py +21 -0
  199. paasta_tools/paasta_service_config_loader.py +201 -0
  200. paasta_tools/paastaapi/__init__.py +29 -0
  201. paasta_tools/paastaapi/api/__init__.py +3 -0
  202. paasta_tools/paastaapi/api/autoscaler_api.py +302 -0
  203. paasta_tools/paastaapi/api/default_api.py +569 -0
  204. paasta_tools/paastaapi/api/remote_run_api.py +604 -0
  205. paasta_tools/paastaapi/api/resources_api.py +157 -0
  206. paasta_tools/paastaapi/api/service_api.py +1736 -0
  207. paasta_tools/paastaapi/api_client.py +818 -0
  208. paasta_tools/paastaapi/apis/__init__.py +22 -0
  209. paasta_tools/paastaapi/configuration.py +455 -0
  210. paasta_tools/paastaapi/exceptions.py +137 -0
  211. paasta_tools/paastaapi/model/__init__.py +5 -0
  212. paasta_tools/paastaapi/model/adhoc_launch_history.py +176 -0
  213. paasta_tools/paastaapi/model/autoscaler_count_msg.py +176 -0
  214. paasta_tools/paastaapi/model/deploy_queue.py +178 -0
  215. paasta_tools/paastaapi/model/deploy_queue_service_instance.py +194 -0
  216. paasta_tools/paastaapi/model/envoy_backend.py +185 -0
  217. paasta_tools/paastaapi/model/envoy_location.py +184 -0
  218. paasta_tools/paastaapi/model/envoy_status.py +181 -0
  219. paasta_tools/paastaapi/model/flink_cluster_overview.py +188 -0
  220. paasta_tools/paastaapi/model/flink_config.py +173 -0
  221. paasta_tools/paastaapi/model/flink_job.py +186 -0
  222. paasta_tools/paastaapi/model/flink_job_details.py +192 -0
  223. paasta_tools/paastaapi/model/flink_jobs.py +175 -0
  224. paasta_tools/paastaapi/model/float_and_error.py +173 -0
  225. paasta_tools/paastaapi/model/hpa_metric.py +176 -0
  226. paasta_tools/paastaapi/model/inline_object.py +170 -0
  227. paasta_tools/paastaapi/model/inline_response200.py +170 -0
  228. paasta_tools/paastaapi/model/inline_response2001.py +170 -0
  229. paasta_tools/paastaapi/model/instance_bounce_status.py +200 -0
  230. paasta_tools/paastaapi/model/instance_mesh_status.py +186 -0
  231. paasta_tools/paastaapi/model/instance_status.py +220 -0
  232. paasta_tools/paastaapi/model/instance_status_adhoc.py +187 -0
  233. paasta_tools/paastaapi/model/instance_status_cassandracluster.py +173 -0
  234. paasta_tools/paastaapi/model/instance_status_flink.py +173 -0
  235. paasta_tools/paastaapi/model/instance_status_kafkacluster.py +173 -0
  236. paasta_tools/paastaapi/model/instance_status_kubernetes.py +263 -0
  237. paasta_tools/paastaapi/model/instance_status_kubernetes_autoscaling_status.py +187 -0
  238. paasta_tools/paastaapi/model/instance_status_kubernetes_v2.py +197 -0
  239. paasta_tools/paastaapi/model/instance_status_tron.py +204 -0
  240. paasta_tools/paastaapi/model/instance_tasks.py +182 -0
  241. paasta_tools/paastaapi/model/integer_and_error.py +173 -0
  242. paasta_tools/paastaapi/model/kubernetes_container.py +178 -0
  243. paasta_tools/paastaapi/model/kubernetes_container_v2.py +219 -0
  244. paasta_tools/paastaapi/model/kubernetes_healthcheck.py +176 -0
  245. paasta_tools/paastaapi/model/kubernetes_pod.py +201 -0
  246. paasta_tools/paastaapi/model/kubernetes_pod_event.py +176 -0
  247. paasta_tools/paastaapi/model/kubernetes_pod_v2.py +213 -0
  248. paasta_tools/paastaapi/model/kubernetes_replica_set.py +185 -0
  249. paasta_tools/paastaapi/model/kubernetes_version.py +202 -0
  250. paasta_tools/paastaapi/model/remote_run_outcome.py +189 -0
  251. paasta_tools/paastaapi/model/remote_run_start.py +185 -0
  252. paasta_tools/paastaapi/model/remote_run_stop.py +176 -0
  253. paasta_tools/paastaapi/model/remote_run_token.py +173 -0
  254. paasta_tools/paastaapi/model/resource.py +187 -0
  255. paasta_tools/paastaapi/model/resource_item.py +187 -0
  256. paasta_tools/paastaapi/model/resource_value.py +176 -0
  257. paasta_tools/paastaapi/model/smartstack_backend.py +191 -0
  258. paasta_tools/paastaapi/model/smartstack_location.py +181 -0
  259. paasta_tools/paastaapi/model/smartstack_status.py +181 -0
  260. paasta_tools/paastaapi/model/task_tail_lines.py +176 -0
  261. paasta_tools/paastaapi/model_utils.py +1879 -0
  262. paasta_tools/paastaapi/models/__init__.py +62 -0
  263. paasta_tools/paastaapi/rest.py +287 -0
  264. paasta_tools/prune_completed_pods.py +220 -0
  265. paasta_tools/puppet_service_tools.py +59 -0
  266. paasta_tools/py.typed +1 -0
  267. paasta_tools/remote_git.py +127 -0
  268. paasta_tools/run-paasta-api-in-dev-mode.py +57 -0
  269. paasta_tools/run-paasta-api-playground.py +51 -0
  270. paasta_tools/secret_providers/__init__.py +66 -0
  271. paasta_tools/secret_providers/vault.py +214 -0
  272. paasta_tools/secret_tools.py +277 -0
  273. paasta_tools/setup_istio_mesh.py +353 -0
  274. paasta_tools/setup_kubernetes_cr.py +412 -0
  275. paasta_tools/setup_kubernetes_crd.py +138 -0
  276. paasta_tools/setup_kubernetes_internal_crd.py +154 -0
  277. paasta_tools/setup_kubernetes_job.py +353 -0
  278. paasta_tools/setup_prometheus_adapter_config.py +1028 -0
  279. paasta_tools/setup_tron_namespace.py +248 -0
  280. paasta_tools/slack.py +75 -0
  281. paasta_tools/smartstack_tools.py +676 -0
  282. paasta_tools/spark_tools.py +283 -0
  283. paasta_tools/synapse_srv_namespaces_fact.py +42 -0
  284. paasta_tools/tron/__init__.py +0 -0
  285. paasta_tools/tron/client.py +158 -0
  286. paasta_tools/tron/tron_command_context.py +194 -0
  287. paasta_tools/tron/tron_timeutils.py +101 -0
  288. paasta_tools/tron_tools.py +1448 -0
  289. paasta_tools/utils.py +4307 -0
  290. paasta_tools/yaml_tools.py +44 -0
  291. paasta_tools-1.21.3.data/scripts/apply_external_resources.py +79 -0
  292. paasta_tools-1.21.3.data/scripts/bounce_log_latency_parser.py +68 -0
  293. paasta_tools-1.21.3.data/scripts/check_autoscaler_max_instances.py +212 -0
  294. paasta_tools-1.21.3.data/scripts/check_cassandracluster_services_replication.py +35 -0
  295. paasta_tools-1.21.3.data/scripts/check_flink_services_health.py +203 -0
  296. paasta_tools-1.21.3.data/scripts/check_kubernetes_api.py +57 -0
  297. paasta_tools-1.21.3.data/scripts/check_kubernetes_services_replication.py +141 -0
  298. paasta_tools-1.21.3.data/scripts/check_manual_oapi_changes.sh +24 -0
  299. paasta_tools-1.21.3.data/scripts/check_oom_events.py +244 -0
  300. paasta_tools-1.21.3.data/scripts/check_orphans.py +306 -0
  301. paasta_tools-1.21.3.data/scripts/check_spark_jobs.py +234 -0
  302. paasta_tools-1.21.3.data/scripts/cleanup_kubernetes_cr.py +138 -0
  303. paasta_tools-1.21.3.data/scripts/cleanup_kubernetes_crd.py +145 -0
  304. paasta_tools-1.21.3.data/scripts/cleanup_kubernetes_jobs.py +344 -0
  305. paasta_tools-1.21.3.data/scripts/create_dynamodb_table.py +35 -0
  306. paasta_tools-1.21.3.data/scripts/create_paasta_playground.py +105 -0
  307. paasta_tools-1.21.3.data/scripts/delete_kubernetes_deployments.py +89 -0
  308. paasta_tools-1.21.3.data/scripts/emit_allocated_cpu_metrics.py +50 -0
  309. paasta_tools-1.21.3.data/scripts/generate_all_deployments +9 -0
  310. paasta_tools-1.21.3.data/scripts/generate_authenticating_services.py +94 -0
  311. paasta_tools-1.21.3.data/scripts/generate_deployments_for_service.py +255 -0
  312. paasta_tools-1.21.3.data/scripts/generate_services_file.py +114 -0
  313. paasta_tools-1.21.3.data/scripts/generate_services_yaml.py +30 -0
  314. paasta_tools-1.21.3.data/scripts/get_running_task_allocation.py +346 -0
  315. paasta_tools-1.21.3.data/scripts/habitat_fixer.py +86 -0
  316. paasta_tools-1.21.3.data/scripts/ide_helper.py +316 -0
  317. paasta_tools-1.21.3.data/scripts/is_pod_healthy_in_proxy.py +139 -0
  318. paasta_tools-1.21.3.data/scripts/is_pod_healthy_in_smartstack.py +50 -0
  319. paasta_tools-1.21.3.data/scripts/kill_bad_containers.py +109 -0
  320. paasta_tools-1.21.3.data/scripts/kubernetes_remove_evicted_pods.py +164 -0
  321. paasta_tools-1.21.3.data/scripts/mass-deploy-tag.sh +44 -0
  322. paasta_tools-1.21.3.data/scripts/mock_patch_checker.py +86 -0
  323. paasta_tools-1.21.3.data/scripts/paasta_cleanup_remote_run_resources.py +135 -0
  324. paasta_tools-1.21.3.data/scripts/paasta_cleanup_stale_nodes.py +181 -0
  325. paasta_tools-1.21.3.data/scripts/paasta_deploy_tron_jobs +3 -0
  326. paasta_tools-1.21.3.data/scripts/paasta_execute_docker_command.py +123 -0
  327. paasta_tools-1.21.3.data/scripts/paasta_secrets_sync.py +758 -0
  328. paasta_tools-1.21.3.data/scripts/paasta_tabcomplete.sh +23 -0
  329. paasta_tools-1.21.3.data/scripts/paasta_update_soa_memcpu.py +520 -0
  330. paasta_tools-1.21.3.data/scripts/render_template.py +129 -0
  331. paasta_tools-1.21.3.data/scripts/rightsizer_soaconfigs_update.py +348 -0
  332. paasta_tools-1.21.3.data/scripts/service_shard_remove.py +157 -0
  333. paasta_tools-1.21.3.data/scripts/service_shard_update.py +373 -0
  334. paasta_tools-1.21.3.data/scripts/setup_istio_mesh.py +353 -0
  335. paasta_tools-1.21.3.data/scripts/setup_kubernetes_cr.py +412 -0
  336. paasta_tools-1.21.3.data/scripts/setup_kubernetes_crd.py +138 -0
  337. paasta_tools-1.21.3.data/scripts/setup_kubernetes_internal_crd.py +154 -0
  338. paasta_tools-1.21.3.data/scripts/setup_kubernetes_job.py +353 -0
  339. paasta_tools-1.21.3.data/scripts/setup_prometheus_adapter_config.py +1028 -0
  340. paasta_tools-1.21.3.data/scripts/shared_ip_check.py +77 -0
  341. paasta_tools-1.21.3.data/scripts/synapse_srv_namespaces_fact.py +42 -0
  342. paasta_tools-1.21.3.data/scripts/timeouts_metrics_prom.py +64 -0
  343. paasta_tools-1.21.3.dist-info/LICENSE +201 -0
  344. paasta_tools-1.21.3.dist-info/METADATA +74 -0
  345. paasta_tools-1.21.3.dist-info/RECORD +348 -0
  346. paasta_tools-1.21.3.dist-info/WHEEL +5 -0
  347. paasta_tools-1.21.3.dist-info/entry_points.txt +20 -0
  348. paasta_tools-1.21.3.dist-info/top_level.txt +2 -0
@@ -0,0 +1,818 @@
1
+ # coding: utf-8
2
+ """
3
+ Paasta API
4
+
5
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
6
+
7
+ The version of the OpenAPI document: 1.2.0
8
+ Generated by: https://openapi-generator.tech
9
+ """
10
+
11
+
12
+ import json
13
+ import atexit
14
+ import mimetypes
15
+ from multiprocessing.pool import ThreadPool
16
+ import io
17
+ import os
18
+ import re
19
+ import typing
20
+ from urllib.parse import quote
21
+
22
+
23
+ from paasta_tools.paastaapi import rest
24
+ from paasta_tools.paastaapi.configuration import Configuration
25
+ from paasta_tools.paastaapi.exceptions import ApiTypeError, ApiValueError, ApiException
26
+ from paasta_tools.paastaapi.model_utils import (
27
+ ModelNormal,
28
+ ModelSimple,
29
+ ModelComposed,
30
+ check_allowed_values,
31
+ check_validations,
32
+ date,
33
+ datetime,
34
+ deserialize_file,
35
+ file_type,
36
+ model_to_dict,
37
+ none_type,
38
+ validate_and_convert_types
39
+ )
40
+
41
+
42
+ class ApiClient(object):
43
+ """Generic API client for OpenAPI client library builds.
44
+
45
+ OpenAPI generic API client. This client handles the client-
46
+ server communication, and is invariant across implementations. Specifics of
47
+ the methods and models for each application are generated from the OpenAPI
48
+ templates.
49
+
50
+ NOTE: This class is auto generated by OpenAPI Generator.
51
+ Ref: https://openapi-generator.tech
52
+ Do not edit the class manually.
53
+
54
+ :param configuration: .Configuration object for this client
55
+ :param header_name: a header to pass when making calls to the API.
56
+ :param header_value: a header value to pass when making calls to
57
+ the API.
58
+ :param cookie: a cookie to include in the header when making calls
59
+ to the API
60
+ :param pool_threads: The number of threads to use for async requests
61
+ to the API. More threads means more concurrent API requests.
62
+ """
63
+
64
+ _pool = None
65
+
66
+ def __init__(self, configuration=None, header_name=None, header_value=None,
67
+ cookie=None, pool_threads=1):
68
+ if configuration is None:
69
+ configuration = Configuration()
70
+ self.configuration = configuration
71
+ self.pool_threads = pool_threads
72
+
73
+ self.rest_client = rest.RESTClientObject(configuration)
74
+ self.default_headers = {}
75
+ if header_name is not None:
76
+ self.default_headers[header_name] = header_value
77
+ self.cookie = cookie
78
+ # Set default User-Agent.
79
+ self.user_agent = 'OpenAPI-Generator/1.0.0/python'
80
+
81
+ def __enter__(self):
82
+ return self
83
+
84
+ def __exit__(self, exc_type, exc_value, traceback):
85
+ self.close()
86
+
87
+ def close(self):
88
+ if self._pool:
89
+ self._pool.close()
90
+ self._pool.join()
91
+ self._pool = None
92
+ if hasattr(atexit, 'unregister'):
93
+ atexit.unregister(self.close)
94
+
95
+ @property
96
+ def pool(self):
97
+ """Create thread pool on first request
98
+ avoids instantiating unused threadpool for blocking clients.
99
+ """
100
+ if self._pool is None:
101
+ atexit.register(self.close)
102
+ self._pool = ThreadPool(self.pool_threads)
103
+ return self._pool
104
+
105
+ @property
106
+ def user_agent(self):
107
+ """User agent for this API client"""
108
+ return self.default_headers['User-Agent']
109
+
110
+ @user_agent.setter
111
+ def user_agent(self, value):
112
+ self.default_headers['User-Agent'] = value
113
+
114
+ def set_default_header(self, header_name, header_value):
115
+ self.default_headers[header_name] = header_value
116
+
117
+ def __call_api(
118
+ self,
119
+ resource_path: str,
120
+ method: str,
121
+ path_params: typing.Optional[typing.Dict[str, typing.Any]] = None,
122
+ query_params: typing.Optional[typing.List[typing.Tuple[str, typing.Any]]] = None,
123
+ header_params: typing.Optional[typing.Dict[str, typing.Any]] = None,
124
+ body: typing.Optional[typing.Any] = None,
125
+ post_params: typing.Optional[typing.List[typing.Tuple[str, typing.Any]]] = None,
126
+ files: typing.Optional[typing.Dict[str, typing.List[io.IOBase]]] = None,
127
+ response_type: typing.Optional[typing.Tuple[typing.Any]] = None,
128
+ auth_settings: typing.Optional[typing.List[str]] = None,
129
+ _return_http_data_only: typing.Optional[bool] = None,
130
+ collection_formats: typing.Optional[typing.Dict[str, str]] = None,
131
+ _preload_content: bool = True,
132
+ _request_timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
133
+ _host: typing.Optional[str] = None,
134
+ _check_type: typing.Optional[bool] = None
135
+ ):
136
+
137
+ config = self.configuration
138
+
139
+ # header parameters
140
+ header_params = header_params or {}
141
+ header_params.update(self.default_headers)
142
+ if self.cookie:
143
+ header_params['Cookie'] = self.cookie
144
+ if header_params:
145
+ header_params = self.sanitize_for_serialization(header_params)
146
+ header_params = dict(self.parameters_to_tuples(header_params,
147
+ collection_formats))
148
+
149
+ # path parameters
150
+ if path_params:
151
+ path_params = self.sanitize_for_serialization(path_params)
152
+ path_params = self.parameters_to_tuples(path_params,
153
+ collection_formats)
154
+ for k, v in path_params:
155
+ # specified safe chars, encode everything
156
+ resource_path = resource_path.replace(
157
+ '{%s}' % k,
158
+ quote(str(v), safe=config.safe_chars_for_path_param)
159
+ )
160
+
161
+ # query parameters
162
+ if query_params:
163
+ query_params = self.sanitize_for_serialization(query_params)
164
+ query_params = self.parameters_to_tuples(query_params,
165
+ collection_formats)
166
+
167
+ # post parameters
168
+ if post_params or files:
169
+ post_params = post_params if post_params else []
170
+ post_params = self.sanitize_for_serialization(post_params)
171
+ post_params = self.parameters_to_tuples(post_params,
172
+ collection_formats)
173
+ post_params.extend(self.files_parameters(files))
174
+
175
+ # body
176
+ if body:
177
+ body = self.sanitize_for_serialization(body)
178
+
179
+ # auth setting
180
+ self.update_params_for_auth(header_params, query_params,
181
+ auth_settings, resource_path, method, body)
182
+
183
+ # request url
184
+ if _host is None:
185
+ url = self.configuration.host + resource_path
186
+ else:
187
+ # use server/host defined in path or operation instead
188
+ url = _host + resource_path
189
+
190
+ try:
191
+ # perform request and return response
192
+ response_data = self.request(
193
+ method, url, query_params=query_params, headers=header_params,
194
+ post_params=post_params, body=body,
195
+ _preload_content=_preload_content,
196
+ _request_timeout=_request_timeout)
197
+ except ApiException as e:
198
+ e.body = e.body.decode('utf-8')
199
+ raise e
200
+
201
+ content_type = response_data.getheader('content-type')
202
+
203
+ self.last_response = response_data
204
+
205
+ return_data = response_data
206
+
207
+ if not _preload_content:
208
+ return (return_data)
209
+ return return_data
210
+
211
+ if response_type not in ["file", "bytes"]:
212
+ match = None
213
+ if content_type is not None:
214
+ match = re.search(r"charset=([a-zA-Z\-\d]+)[\s\;]?", content_type)
215
+ encoding = match.group(1) if match else "utf-8"
216
+ response_data.data = response_data.data.decode(encoding)
217
+
218
+ # deserialize response data
219
+ if response_type:
220
+ return_data = self.deserialize(
221
+ response_data,
222
+ response_type,
223
+ _check_type
224
+ )
225
+ else:
226
+ return_data = None
227
+
228
+ if _return_http_data_only:
229
+ return (return_data)
230
+ else:
231
+ return (return_data, response_data.status,
232
+ response_data.getheaders())
233
+
234
+ @classmethod
235
+ def sanitize_for_serialization(cls, obj):
236
+ """Builds a JSON POST object.
237
+ If obj is None, return None.
238
+ If obj is str, int, long, float, bool, return directly.
239
+ If obj is datetime.datetime, datetime.date
240
+ convert to string in iso8601 format.
241
+ If obj is list, sanitize each element in the list.
242
+ If obj is dict, return the dict.
243
+ If obj is OpenAPI model, return the properties dict.
244
+ :param obj: The data to serialize.
245
+ :return: The serialized form of data.
246
+ """
247
+ if isinstance(obj, (ModelNormal, ModelComposed)):
248
+ return {
249
+ key: cls.sanitize_for_serialization(val) for key, val in model_to_dict(obj, serialize=True).items()
250
+ }
251
+ elif isinstance(obj, (str, int, float, none_type, bool)):
252
+ return obj
253
+ elif isinstance(obj, (datetime, date)):
254
+ return obj.isoformat()
255
+ elif isinstance(obj, ModelSimple):
256
+ return cls.sanitize_for_serialization(obj.value)
257
+ elif isinstance(obj, (list, tuple)):
258
+ return [cls.sanitize_for_serialization(item) for item in obj]
259
+ if isinstance(obj, dict):
260
+ return {key: cls.sanitize_for_serialization(val) for key, val in obj.items()}
261
+ raise ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__))
262
+
263
+ def deserialize(self, response, response_type, _check_type):
264
+ """Deserializes response into an object.
265
+
266
+ :param response: RESTResponse object to be deserialized.
267
+ :param response_type: For the response, a tuple containing:
268
+ valid classes
269
+ a list containing valid classes (for list schemas)
270
+ a dict containing a tuple of valid classes as the value
271
+ Example values:
272
+ (str,)
273
+ (Pet,)
274
+ (float, none_type)
275
+ ([int, none_type],)
276
+ ({str: (bool, str, int, float, date, datetime, str, none_type)},)
277
+ :param _check_type: boolean, whether to check the types of the data
278
+ received from the server
279
+ :type _check_type: bool
280
+
281
+ :return: deserialized object.
282
+ """
283
+ # handle file downloading
284
+ # save response body into a tmp file and return the instance
285
+ if response_type == (file_type,):
286
+ content_disposition = response.getheader("Content-Disposition")
287
+ return deserialize_file(response.data, self.configuration,
288
+ content_disposition=content_disposition)
289
+
290
+ # fetch data from response object
291
+ try:
292
+ received_data = json.loads(response.data)
293
+ except ValueError:
294
+ received_data = response.data
295
+
296
+ # store our data under the key of 'received_data' so users have some
297
+ # context if they are deserializing a string and the data type is wrong
298
+ deserialized_data = validate_and_convert_types(
299
+ received_data,
300
+ response_type,
301
+ ['received_data'],
302
+ True,
303
+ _check_type,
304
+ configuration=self.configuration
305
+ )
306
+ return deserialized_data
307
+
308
+ def call_api(
309
+ self,
310
+ resource_path: str,
311
+ method: str,
312
+ path_params: typing.Optional[typing.Dict[str, typing.Any]] = None,
313
+ query_params: typing.Optional[typing.List[typing.Tuple[str, typing.Any]]] = None,
314
+ header_params: typing.Optional[typing.Dict[str, typing.Any]] = None,
315
+ body: typing.Optional[typing.Any] = None,
316
+ post_params: typing.Optional[typing.List[typing.Tuple[str, typing.Any]]] = None,
317
+ files: typing.Optional[typing.Dict[str, typing.List[io.IOBase]]] = None,
318
+ response_type: typing.Optional[typing.Tuple[typing.Any]] = None,
319
+ auth_settings: typing.Optional[typing.List[str]] = None,
320
+ async_req: typing.Optional[bool] = None,
321
+ _return_http_data_only: typing.Optional[bool] = None,
322
+ collection_formats: typing.Optional[typing.Dict[str, str]] = None,
323
+ _preload_content: bool = True,
324
+ _request_timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
325
+ _host: typing.Optional[str] = None,
326
+ _check_type: typing.Optional[bool] = None
327
+ ):
328
+ """Makes the HTTP request (synchronous) and returns deserialized data.
329
+
330
+ To make an async_req request, set the async_req parameter.
331
+
332
+ :param resource_path: Path to method endpoint.
333
+ :param method: Method to call.
334
+ :param path_params: Path parameters in the url.
335
+ :param query_params: Query parameters in the url.
336
+ :param header_params: Header parameters to be
337
+ placed in the request header.
338
+ :param body: Request body.
339
+ :param post_params dict: Request post form parameters,
340
+ for `application/x-www-form-urlencoded`, `multipart/form-data`.
341
+ :param auth_settings list: Auth Settings names for the request.
342
+ :param response_type: For the response, a tuple containing:
343
+ valid classes
344
+ a list containing valid classes (for list schemas)
345
+ a dict containing a tuple of valid classes as the value
346
+ Example values:
347
+ (str,)
348
+ (Pet,)
349
+ (float, none_type)
350
+ ([int, none_type],)
351
+ ({str: (bool, str, int, float, date, datetime, str, none_type)},)
352
+ :param files: key -> field name, value -> a list of open file
353
+ objects for `multipart/form-data`.
354
+ :type files: dict
355
+ :param async_req bool: execute request asynchronously
356
+ :type async_req: bool, optional
357
+ :param _return_http_data_only: response data without head status code
358
+ and headers
359
+ :type _return_http_data_only: bool, optional
360
+ :param collection_formats: dict of collection formats for path, query,
361
+ header, and post parameters.
362
+ :type collection_formats: dict, optional
363
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
364
+ be returned without reading/decoding response
365
+ data. Default is True.
366
+ :type _preload_content: bool, optional
367
+ :param _request_timeout: timeout setting for this request. If one
368
+ number provided, it will be total request
369
+ timeout. It can also be a pair (tuple) of
370
+ (connection, read) timeouts.
371
+ :param _check_type: boolean describing if the data back from the server
372
+ should have its type checked.
373
+ :type _check_type: bool, optional
374
+ :return:
375
+ If async_req parameter is True,
376
+ the request will be called asynchronously.
377
+ The method will return the request thread.
378
+ If parameter async_req is False or missing,
379
+ then the method will return the response directly.
380
+ """
381
+ if not async_req:
382
+ return self.__call_api(resource_path, method,
383
+ path_params, query_params, header_params,
384
+ body, post_params, files,
385
+ response_type, auth_settings,
386
+ _return_http_data_only, collection_formats,
387
+ _preload_content, _request_timeout, _host,
388
+ _check_type)
389
+
390
+ return self.pool.apply_async(self.__call_api, (resource_path,
391
+ method, path_params,
392
+ query_params,
393
+ header_params, body,
394
+ post_params, files,
395
+ response_type,
396
+ auth_settings,
397
+ _return_http_data_only,
398
+ collection_formats,
399
+ _preload_content,
400
+ _request_timeout,
401
+ _host, _check_type))
402
+
403
+ def request(self, method, url, query_params=None, headers=None,
404
+ post_params=None, body=None, _preload_content=True,
405
+ _request_timeout=None):
406
+ """Makes the HTTP request using RESTClient."""
407
+ if method == "GET":
408
+ return self.rest_client.GET(url,
409
+ query_params=query_params,
410
+ _preload_content=_preload_content,
411
+ _request_timeout=_request_timeout,
412
+ headers=headers)
413
+ elif method == "HEAD":
414
+ return self.rest_client.HEAD(url,
415
+ query_params=query_params,
416
+ _preload_content=_preload_content,
417
+ _request_timeout=_request_timeout,
418
+ headers=headers)
419
+ elif method == "OPTIONS":
420
+ return self.rest_client.OPTIONS(url,
421
+ query_params=query_params,
422
+ headers=headers,
423
+ post_params=post_params,
424
+ _preload_content=_preload_content,
425
+ _request_timeout=_request_timeout,
426
+ body=body)
427
+ elif method == "POST":
428
+ return self.rest_client.POST(url,
429
+ query_params=query_params,
430
+ headers=headers,
431
+ post_params=post_params,
432
+ _preload_content=_preload_content,
433
+ _request_timeout=_request_timeout,
434
+ body=body)
435
+ elif method == "PUT":
436
+ return self.rest_client.PUT(url,
437
+ query_params=query_params,
438
+ headers=headers,
439
+ post_params=post_params,
440
+ _preload_content=_preload_content,
441
+ _request_timeout=_request_timeout,
442
+ body=body)
443
+ elif method == "PATCH":
444
+ return self.rest_client.PATCH(url,
445
+ query_params=query_params,
446
+ headers=headers,
447
+ post_params=post_params,
448
+ _preload_content=_preload_content,
449
+ _request_timeout=_request_timeout,
450
+ body=body)
451
+ elif method == "DELETE":
452
+ return self.rest_client.DELETE(url,
453
+ query_params=query_params,
454
+ headers=headers,
455
+ _preload_content=_preload_content,
456
+ _request_timeout=_request_timeout,
457
+ body=body)
458
+ else:
459
+ raise ApiValueError(
460
+ "http method must be `GET`, `HEAD`, `OPTIONS`,"
461
+ " `POST`, `PATCH`, `PUT` or `DELETE`."
462
+ )
463
+
464
+ def parameters_to_tuples(self, params, collection_formats):
465
+ """Get parameters as list of tuples, formatting collections.
466
+
467
+ :param params: Parameters as dict or list of two-tuples
468
+ :param dict collection_formats: Parameter collection formats
469
+ :return: Parameters as list of tuples, collections formatted
470
+ """
471
+ new_params = []
472
+ if collection_formats is None:
473
+ collection_formats = {}
474
+ for k, v in params.items() if isinstance(params, dict) else params: # noqa: E501
475
+ if k in collection_formats:
476
+ collection_format = collection_formats[k]
477
+ if collection_format == 'multi':
478
+ new_params.extend((k, value) for value in v)
479
+ else:
480
+ if collection_format == 'ssv':
481
+ delimiter = ' '
482
+ elif collection_format == 'tsv':
483
+ delimiter = '\t'
484
+ elif collection_format == 'pipes':
485
+ delimiter = '|'
486
+ else: # csv is the default
487
+ delimiter = ','
488
+ new_params.append(
489
+ (k, delimiter.join(str(value) for value in v)))
490
+ else:
491
+ new_params.append((k, v))
492
+ return new_params
493
+
494
+ def files_parameters(self, files: typing.Optional[typing.Dict[str, typing.List[io.IOBase]]] = None):
495
+ """Builds form parameters.
496
+
497
+ :param files: None or a dict with key=param_name and
498
+ value is a list of open file objects
499
+ :return: List of tuples of form parameters with file data
500
+ """
501
+ if files is None:
502
+ return []
503
+
504
+ params = []
505
+ for param_name, file_instances in files.items():
506
+ if file_instances is None:
507
+ # if the file field is nullable, skip None values
508
+ continue
509
+ for file_instance in file_instances:
510
+ if file_instance is None:
511
+ # if the file field is nullable, skip None values
512
+ continue
513
+ if file_instance.closed is True:
514
+ raise ApiValueError(
515
+ "Cannot read a closed file. The passed in file_type "
516
+ "for %s must be open." % param_name
517
+ )
518
+ filename = os.path.basename(file_instance.name)
519
+ filedata = file_instance.read()
520
+ mimetype = (mimetypes.guess_type(filename)[0] or
521
+ 'application/octet-stream')
522
+ params.append(
523
+ tuple([param_name, tuple([filename, filedata, mimetype])]))
524
+ file_instance.close()
525
+
526
+ return params
527
+
528
+ def select_header_accept(self, accepts):
529
+ """Returns `Accept` based on an array of accepts provided.
530
+
531
+ :param accepts: List of headers.
532
+ :return: Accept (e.g. application/json).
533
+ """
534
+ if not accepts:
535
+ return
536
+
537
+ accepts = [x.lower() for x in accepts]
538
+
539
+ if 'application/json' in accepts:
540
+ return 'application/json'
541
+ else:
542
+ return ', '.join(accepts)
543
+
544
+ def select_header_content_type(self, content_types):
545
+ """Returns `Content-Type` based on an array of content_types provided.
546
+
547
+ :param content_types: List of content-types.
548
+ :return: Content-Type (e.g. application/json).
549
+ """
550
+ if not content_types:
551
+ return 'application/json'
552
+
553
+ content_types = [x.lower() for x in content_types]
554
+
555
+ if 'application/json' in content_types or '*/*' in content_types:
556
+ return 'application/json'
557
+ else:
558
+ return content_types[0]
559
+
560
+ def update_params_for_auth(self, headers, querys, auth_settings,
561
+ resource_path, method, body):
562
+ """Updates header and query params based on authentication setting.
563
+
564
+ :param headers: Header parameters dict to be updated.
565
+ :param querys: Query parameters tuple list to be updated.
566
+ :param auth_settings: Authentication setting identifiers list.
567
+ :param resource_path: A string representation of the HTTP request resource path.
568
+ :param method: A string representation of the HTTP request method.
569
+ :param body: A object representing the body of the HTTP request.
570
+ The object type is the return value of _encoder.default().
571
+ """
572
+ if not auth_settings:
573
+ return
574
+
575
+ for auth in auth_settings:
576
+ auth_setting = self.configuration.auth_settings().get(auth)
577
+ if auth_setting:
578
+ if auth_setting['in'] == 'cookie':
579
+ headers['Cookie'] = auth_setting['value']
580
+ elif auth_setting['in'] == 'header':
581
+ if auth_setting['type'] != 'http-signature':
582
+ headers[auth_setting['key']] = auth_setting['value']
583
+ elif auth_setting['in'] == 'query':
584
+ querys.append((auth_setting['key'], auth_setting['value']))
585
+ else:
586
+ raise ApiValueError(
587
+ 'Authentication token must be in `query` or `header`'
588
+ )
589
+
590
+
591
+ class Endpoint(object):
592
+ def __init__(self, settings=None, params_map=None, root_map=None,
593
+ headers_map=None, api_client=None, callable=None):
594
+ """Creates an endpoint
595
+
596
+ Args:
597
+ settings (dict): see below key value pairs
598
+ 'response_type' (tuple/None): response type
599
+ 'auth' (list): a list of auth type keys
600
+ 'endpoint_path' (str): the endpoint path
601
+ 'operation_id' (str): endpoint string identifier
602
+ 'http_method' (str): POST/PUT/PATCH/GET etc
603
+ 'servers' (list): list of str servers that this endpoint is at
604
+ params_map (dict): see below key value pairs
605
+ 'all' (list): list of str endpoint parameter names
606
+ 'required' (list): list of required parameter names
607
+ 'nullable' (list): list of nullable parameter names
608
+ 'enum' (list): list of parameters with enum values
609
+ 'validation' (list): list of parameters with validations
610
+ root_map
611
+ 'validations' (dict): the dict mapping endpoint parameter tuple
612
+ paths to their validation dictionaries
613
+ 'allowed_values' (dict): the dict mapping endpoint parameter
614
+ tuple paths to their allowed_values (enum) dictionaries
615
+ 'openapi_types' (dict): param_name to openapi type
616
+ 'attribute_map' (dict): param_name to camelCase name
617
+ 'location_map' (dict): param_name to 'body', 'file', 'form',
618
+ 'header', 'path', 'query'
619
+ collection_format_map (dict): param_name to `csv` etc.
620
+ headers_map (dict): see below key value pairs
621
+ 'accept' (list): list of Accept header strings
622
+ 'content_type' (list): list of Content-Type header strings
623
+ api_client (ApiClient) api client instance
624
+ callable (function): the function which is invoked when the
625
+ Endpoint is called
626
+ """
627
+ self.settings = settings
628
+ self.params_map = params_map
629
+ self.params_map['all'].extend([
630
+ 'async_req',
631
+ '_host_index',
632
+ '_preload_content',
633
+ '_request_timeout',
634
+ '_return_http_data_only',
635
+ '_check_input_type',
636
+ '_check_return_type'
637
+ ])
638
+ self.params_map['nullable'].extend(['_request_timeout'])
639
+ self.validations = root_map['validations']
640
+ self.allowed_values = root_map['allowed_values']
641
+ self.openapi_types = root_map['openapi_types']
642
+ extra_types = {
643
+ 'async_req': (bool,),
644
+ '_host_index': (none_type, int),
645
+ '_preload_content': (bool,),
646
+ '_request_timeout': (none_type, int, (int,), [int]),
647
+ '_return_http_data_only': (bool,),
648
+ '_check_input_type': (bool,),
649
+ '_check_return_type': (bool,)
650
+ }
651
+ self.openapi_types.update(extra_types)
652
+ self.attribute_map = root_map['attribute_map']
653
+ self.location_map = root_map['location_map']
654
+ self.collection_format_map = root_map['collection_format_map']
655
+ self.headers_map = headers_map
656
+ self.api_client = api_client
657
+ self.callable = callable
658
+
659
+ def __validate_inputs(self, kwargs):
660
+ for param in self.params_map['enum']:
661
+ if param in kwargs:
662
+ check_allowed_values(
663
+ self.allowed_values,
664
+ (param,),
665
+ kwargs[param]
666
+ )
667
+
668
+ for param in self.params_map['validation']:
669
+ if param in kwargs:
670
+ check_validations(
671
+ self.validations,
672
+ (param,),
673
+ kwargs[param],
674
+ configuration=self.api_client.configuration
675
+ )
676
+
677
+ if kwargs['_check_input_type'] is False:
678
+ return
679
+
680
+ for key, value in kwargs.items():
681
+ fixed_val = validate_and_convert_types(
682
+ value,
683
+ self.openapi_types[key],
684
+ [key],
685
+ False,
686
+ kwargs['_check_input_type'],
687
+ configuration=self.api_client.configuration
688
+ )
689
+ kwargs[key] = fixed_val
690
+
691
+ def __gather_params(self, kwargs):
692
+ params = {
693
+ 'body': None,
694
+ 'collection_format': {},
695
+ 'file': {},
696
+ 'form': [],
697
+ 'header': {},
698
+ 'path': {},
699
+ 'query': []
700
+ }
701
+
702
+ for param_name, param_value in kwargs.items():
703
+ param_location = self.location_map.get(param_name)
704
+ if param_location is None:
705
+ continue
706
+ if param_location:
707
+ if param_location == 'body':
708
+ params['body'] = param_value
709
+ continue
710
+ base_name = self.attribute_map[param_name]
711
+ if (param_location == 'form' and
712
+ self.openapi_types[param_name] == (file_type,)):
713
+ params['file'][param_name] = [param_value]
714
+ elif (param_location == 'form' and
715
+ self.openapi_types[param_name] == ([file_type],)):
716
+ # param_value is already a list
717
+ params['file'][param_name] = param_value
718
+ elif param_location in {'form', 'query'}:
719
+ param_value_full = (base_name, param_value)
720
+ params[param_location].append(param_value_full)
721
+ if param_location not in {'form', 'query'}:
722
+ params[param_location][base_name] = param_value
723
+ collection_format = self.collection_format_map.get(param_name)
724
+ if collection_format:
725
+ params['collection_format'][base_name] = collection_format
726
+
727
+ return params
728
+
729
+ def __call__(self, *args, **kwargs):
730
+ """ This method is invoked when endpoints are called
731
+ Example:
732
+
733
+ api_instance = AutoscalerApi()
734
+ api_instance.get_autoscaler_count # this is an instance of the class Endpoint
735
+ api_instance.get_autoscaler_count() # this invokes api_instance.get_autoscaler_count.__call__()
736
+ which then invokes the callable functions stored in that endpoint at
737
+ api_instance.get_autoscaler_count.callable or self.callable in this class
738
+
739
+ """
740
+ return self.callable(self, *args, **kwargs)
741
+
742
+ def call_with_http_info(self, **kwargs):
743
+
744
+ try:
745
+ index = self.api_client.configuration.server_operation_index.get(
746
+ self.settings['operation_id'], self.api_client.configuration.server_index
747
+ ) if kwargs['_host_index'] is None else kwargs['_host_index']
748
+ server_variables = self.api_client.configuration.server_operation_variables.get(
749
+ self.settings['operation_id'], self.api_client.configuration.server_variables
750
+ )
751
+ _host = self.api_client.configuration.get_host_from_settings(
752
+ index, variables=server_variables, servers=self.settings['servers']
753
+ )
754
+ except IndexError:
755
+ if self.settings['servers']:
756
+ raise ApiValueError(
757
+ "Invalid host index. Must be 0 <= index < %s" %
758
+ len(self.settings['servers'])
759
+ )
760
+ _host = None
761
+
762
+ for key, value in kwargs.items():
763
+ if key not in self.params_map['all']:
764
+ raise ApiTypeError(
765
+ "Got an unexpected parameter '%s'"
766
+ " to method `%s`" %
767
+ (key, self.settings['operation_id'])
768
+ )
769
+ # only throw this nullable ApiValueError if _check_input_type
770
+ # is False, if _check_input_type==True we catch this case
771
+ # in self.__validate_inputs
772
+ if (key not in self.params_map['nullable'] and value is None
773
+ and kwargs['_check_input_type'] is False):
774
+ raise ApiValueError(
775
+ "Value may not be None for non-nullable parameter `%s`"
776
+ " when calling `%s`" %
777
+ (key, self.settings['operation_id'])
778
+ )
779
+
780
+ for key in self.params_map['required']:
781
+ if key not in kwargs.keys():
782
+ raise ApiValueError(
783
+ "Missing the required parameter `%s` when calling "
784
+ "`%s`" % (key, self.settings['operation_id'])
785
+ )
786
+
787
+ self.__validate_inputs(kwargs)
788
+
789
+ params = self.__gather_params(kwargs)
790
+
791
+ accept_headers_list = self.headers_map['accept']
792
+ if accept_headers_list:
793
+ params['header']['Accept'] = self.api_client.select_header_accept(
794
+ accept_headers_list)
795
+
796
+ content_type_headers_list = self.headers_map['content_type']
797
+ if content_type_headers_list:
798
+ header_list = self.api_client.select_header_content_type(
799
+ content_type_headers_list)
800
+ params['header']['Content-Type'] = header_list
801
+
802
+ return self.api_client.call_api(
803
+ self.settings['endpoint_path'], self.settings['http_method'],
804
+ params['path'],
805
+ params['query'],
806
+ params['header'],
807
+ body=params['body'],
808
+ post_params=params['form'],
809
+ files=params['file'],
810
+ response_type=self.settings['response_type'],
811
+ auth_settings=self.settings['auth'],
812
+ async_req=kwargs['async_req'],
813
+ _check_type=kwargs['_check_return_type'],
814
+ _return_http_data_only=kwargs['_return_http_data_only'],
815
+ _preload_content=kwargs['_preload_content'],
816
+ _request_timeout=kwargs['_request_timeout'],
817
+ _host=_host,
818
+ collection_formats=params['collection_format'])