diff --git a/CHANGES.md b/CHANGES.md index b868e57d..981d0c8d 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +## 1.3.1 +- Actions support multiaccount integration. + ## 1.3.0 - `sqs_sensor` supports multiaccount integration. diff --git a/actions/acm_add_tags_to_certificate.yaml b/actions/acm_add_tags_to_certificate.yaml index fb7bdcf6..041230e8 100644 --- a/actions/acm_add_tags_to_certificate.yaml +++ b/actions/acm_add_tags_to_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_add_tags_to_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_certificate immutable: true diff --git a/actions/acm_delete_certificate.yaml b/actions/acm_delete_certificate.yaml index 5c4492c2..bd17f9c6 100644 --- a/actions/acm_delete_certificate.yaml +++ b/actions/acm_delete_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_delete_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_certificate immutable: true diff --git a/actions/acm_describe_certificate.yaml b/actions/acm_describe_certificate.yaml index 3fcd887e..40175c68 100644 --- a/actions/acm_describe_certificate.yaml +++ b/actions/acm_describe_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_describe_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_certificate immutable: true diff --git a/actions/acm_get_certificate.yaml b/actions/acm_get_certificate.yaml index 7621091b..e703571d 100644 --- a/actions/acm_get_certificate.yaml +++ b/actions/acm_get_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_get_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_certificate immutable: true diff --git a/actions/acm_import_certificate.yaml b/actions/acm_import_certificate.yaml index 8a4605f7..3bbfc1eb 100644 --- a/actions/acm_import_certificate.yaml +++ b/actions/acm_import_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_import_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_certificate immutable: true diff --git a/actions/acm_list_certificates.yaml b/actions/acm_list_certificates.yaml index e97884b3..6fb95733 100644 --- a/actions/acm_list_certificates.yaml +++ b/actions/acm_list_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_list_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_certificates immutable: true diff --git a/actions/acm_list_tags_for_certificate.yaml b/actions/acm_list_tags_for_certificate.yaml index b4a860de..d0fdb98e 100644 --- a/actions/acm_list_tags_for_certificate.yaml +++ b/actions/acm_list_tags_for_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_list_tags_for_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_certificate immutable: true diff --git a/actions/acm_remove_tags_from_certificate.yaml b/actions/acm_remove_tags_from_certificate.yaml index 959296b0..8f38cfa6 100644 --- a/actions/acm_remove_tags_from_certificate.yaml +++ b/actions/acm_remove_tags_from_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_remove_tags_from_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_certificate immutable: true diff --git a/actions/acm_request_certificate.yaml b/actions/acm_request_certificate.yaml index cdf5626e..40c13f15 100644 --- a/actions/acm_request_certificate.yaml +++ b/actions/acm_request_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_request_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: request_certificate immutable: true diff --git a/actions/acm_resend_validation_email.yaml b/actions/acm_resend_validation_email.yaml index 24ab3965..9245015f 100644 --- a/actions/acm_resend_validation_email.yaml +++ b/actions/acm_resend_validation_email.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: acm_resend_validation_email runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resend_validation_email immutable: true diff --git a/actions/apigateway_create_api_key.yaml b/actions/apigateway_create_api_key.yaml index 79f1a7b0..ed715212 100644 --- a/actions/apigateway_create_api_key.yaml +++ b/actions/apigateway_create_api_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_api_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_api_key immutable: true diff --git a/actions/apigateway_create_authorizer.yaml b/actions/apigateway_create_authorizer.yaml index 47161d8c..0e674d02 100644 --- a/actions/apigateway_create_authorizer.yaml +++ b/actions/apigateway_create_authorizer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_authorizer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_authorizer immutable: true diff --git a/actions/apigateway_create_base_path_mapping.yaml b/actions/apigateway_create_base_path_mapping.yaml index 50718c59..5c78a2cf 100644 --- a/actions/apigateway_create_base_path_mapping.yaml +++ b/actions/apigateway_create_base_path_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_base_path_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_base_path_mapping immutable: true diff --git a/actions/apigateway_create_deployment.yaml b/actions/apigateway_create_deployment.yaml index 6e2794b6..f89e0b87 100644 --- a/actions/apigateway_create_deployment.yaml +++ b/actions/apigateway_create_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_deployment immutable: true diff --git a/actions/apigateway_create_documentation_part.yaml b/actions/apigateway_create_documentation_part.yaml index 0e3a67d6..1fc31f18 100644 --- a/actions/apigateway_create_documentation_part.yaml +++ b/actions/apigateway_create_documentation_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_documentation_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_documentation_part immutable: true diff --git a/actions/apigateway_create_documentation_version.yaml b/actions/apigateway_create_documentation_version.yaml index 60c3d1af..89b08634 100644 --- a/actions/apigateway_create_documentation_version.yaml +++ b/actions/apigateway_create_documentation_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_documentation_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_documentation_version immutable: true diff --git a/actions/apigateway_create_domain_name.yaml b/actions/apigateway_create_domain_name.yaml index 452a9aa7..1f6a6183 100644 --- a/actions/apigateway_create_domain_name.yaml +++ b/actions/apigateway_create_domain_name.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_domain_name runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_domain_name immutable: true diff --git a/actions/apigateway_create_model.yaml b/actions/apigateway_create_model.yaml index 41e78fc4..b56302a4 100644 --- a/actions/apigateway_create_model.yaml +++ b/actions/apigateway_create_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_model immutable: true diff --git a/actions/apigateway_create_request_validator.yaml b/actions/apigateway_create_request_validator.yaml index 720af074..d06c5a79 100644 --- a/actions/apigateway_create_request_validator.yaml +++ b/actions/apigateway_create_request_validator.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_request_validator runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_request_validator immutable: true diff --git a/actions/apigateway_create_resource.yaml b/actions/apigateway_create_resource.yaml index f31b3f72..69c9282a 100644 --- a/actions/apigateway_create_resource.yaml +++ b/actions/apigateway_create_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_resource immutable: true diff --git a/actions/apigateway_create_rest_api.yaml b/actions/apigateway_create_rest_api.yaml index e4ae8960..0e8019a2 100644 --- a/actions/apigateway_create_rest_api.yaml +++ b/actions/apigateway_create_rest_api.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_rest_api runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_rest_api immutable: true diff --git a/actions/apigateway_create_stage.yaml b/actions/apigateway_create_stage.yaml index 4ae81d44..d4d81b6c 100644 --- a/actions/apigateway_create_stage.yaml +++ b/actions/apigateway_create_stage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_stage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_stage immutable: true diff --git a/actions/apigateway_create_usage_plan.yaml b/actions/apigateway_create_usage_plan.yaml index 9119aa49..960fa510 100644 --- a/actions/apigateway_create_usage_plan.yaml +++ b/actions/apigateway_create_usage_plan.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_usage_plan runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_usage_plan immutable: true diff --git a/actions/apigateway_create_usage_plan_key.yaml b/actions/apigateway_create_usage_plan_key.yaml index 5c1f0478..d4973588 100644 --- a/actions/apigateway_create_usage_plan_key.yaml +++ b/actions/apigateway_create_usage_plan_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_create_usage_plan_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_usage_plan_key immutable: true diff --git a/actions/apigateway_delete_api_key.yaml b/actions/apigateway_delete_api_key.yaml index e7b94b52..5252befd 100644 --- a/actions/apigateway_delete_api_key.yaml +++ b/actions/apigateway_delete_api_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_api_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_api_key immutable: true diff --git a/actions/apigateway_delete_authorizer.yaml b/actions/apigateway_delete_authorizer.yaml index e3c01f7d..51093aa0 100644 --- a/actions/apigateway_delete_authorizer.yaml +++ b/actions/apigateway_delete_authorizer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_authorizer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_authorizer immutable: true diff --git a/actions/apigateway_delete_base_path_mapping.yaml b/actions/apigateway_delete_base_path_mapping.yaml index b480ffd4..d26c0ba2 100644 --- a/actions/apigateway_delete_base_path_mapping.yaml +++ b/actions/apigateway_delete_base_path_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_base_path_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_base_path_mapping immutable: true diff --git a/actions/apigateway_delete_client_certificate.yaml b/actions/apigateway_delete_client_certificate.yaml index e4b6de03..749f2d24 100644 --- a/actions/apigateway_delete_client_certificate.yaml +++ b/actions/apigateway_delete_client_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_client_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_client_certificate immutable: true diff --git a/actions/apigateway_delete_deployment.yaml b/actions/apigateway_delete_deployment.yaml index edf44395..1fd7a253 100644 --- a/actions/apigateway_delete_deployment.yaml +++ b/actions/apigateway_delete_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_deployment immutable: true diff --git a/actions/apigateway_delete_documentation_part.yaml b/actions/apigateway_delete_documentation_part.yaml index 37e6df6b..f95b8ac4 100644 --- a/actions/apigateway_delete_documentation_part.yaml +++ b/actions/apigateway_delete_documentation_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_documentation_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_documentation_part immutable: true diff --git a/actions/apigateway_delete_documentation_version.yaml b/actions/apigateway_delete_documentation_version.yaml index 019e2bea..77b435b0 100644 --- a/actions/apigateway_delete_documentation_version.yaml +++ b/actions/apigateway_delete_documentation_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_documentation_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_documentation_version immutable: true diff --git a/actions/apigateway_delete_domain_name.yaml b/actions/apigateway_delete_domain_name.yaml index 1e7619bc..eb9b1469 100644 --- a/actions/apigateway_delete_domain_name.yaml +++ b/actions/apigateway_delete_domain_name.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_domain_name runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_domain_name immutable: true diff --git a/actions/apigateway_delete_integration.yaml b/actions/apigateway_delete_integration.yaml index b30b7424..3e871ed6 100644 --- a/actions/apigateway_delete_integration.yaml +++ b/actions/apigateway_delete_integration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_integration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_integration immutable: true diff --git a/actions/apigateway_delete_integration_response.yaml b/actions/apigateway_delete_integration_response.yaml index 7a23b1c2..f158edf8 100644 --- a/actions/apigateway_delete_integration_response.yaml +++ b/actions/apigateway_delete_integration_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_integration_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_integration_response immutable: true diff --git a/actions/apigateway_delete_method.yaml b/actions/apigateway_delete_method.yaml index 69875cb9..a2946d9c 100644 --- a/actions/apigateway_delete_method.yaml +++ b/actions/apigateway_delete_method.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_method runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_method immutable: true diff --git a/actions/apigateway_delete_method_response.yaml b/actions/apigateway_delete_method_response.yaml index 32ed5cc8..6f6aca93 100644 --- a/actions/apigateway_delete_method_response.yaml +++ b/actions/apigateway_delete_method_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_method_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_method_response immutable: true diff --git a/actions/apigateway_delete_model.yaml b/actions/apigateway_delete_model.yaml index bb102052..5ed24fe9 100644 --- a/actions/apigateway_delete_model.yaml +++ b/actions/apigateway_delete_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_model immutable: true diff --git a/actions/apigateway_delete_request_validator.yaml b/actions/apigateway_delete_request_validator.yaml index 89109f5a..ab057a63 100644 --- a/actions/apigateway_delete_request_validator.yaml +++ b/actions/apigateway_delete_request_validator.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_request_validator runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_request_validator immutable: true diff --git a/actions/apigateway_delete_resource.yaml b/actions/apigateway_delete_resource.yaml index e7daf66e..ce7da667 100644 --- a/actions/apigateway_delete_resource.yaml +++ b/actions/apigateway_delete_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_resource immutable: true diff --git a/actions/apigateway_delete_rest_api.yaml b/actions/apigateway_delete_rest_api.yaml index 7db6e07a..5be39a43 100644 --- a/actions/apigateway_delete_rest_api.yaml +++ b/actions/apigateway_delete_rest_api.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_rest_api runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rest_api immutable: true diff --git a/actions/apigateway_delete_stage.yaml b/actions/apigateway_delete_stage.yaml index 8bce7d43..89fe09aa 100644 --- a/actions/apigateway_delete_stage.yaml +++ b/actions/apigateway_delete_stage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_stage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_stage immutable: true diff --git a/actions/apigateway_delete_usage_plan.yaml b/actions/apigateway_delete_usage_plan.yaml index db953eb9..c1371be7 100644 --- a/actions/apigateway_delete_usage_plan.yaml +++ b/actions/apigateway_delete_usage_plan.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_usage_plan runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_usage_plan immutable: true diff --git a/actions/apigateway_delete_usage_plan_key.yaml b/actions/apigateway_delete_usage_plan_key.yaml index 08feec71..92d1b604 100644 --- a/actions/apigateway_delete_usage_plan_key.yaml +++ b/actions/apigateway_delete_usage_plan_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_delete_usage_plan_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_usage_plan_key immutable: true diff --git a/actions/apigateway_flush_stage_authorizers_cache.yaml b/actions/apigateway_flush_stage_authorizers_cache.yaml index 1a741458..b43c7e71 100644 --- a/actions/apigateway_flush_stage_authorizers_cache.yaml +++ b/actions/apigateway_flush_stage_authorizers_cache.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_flush_stage_authorizers_cache runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: flush_stage_authorizers_cache immutable: true diff --git a/actions/apigateway_flush_stage_cache.yaml b/actions/apigateway_flush_stage_cache.yaml index 01f1576a..d29ca286 100644 --- a/actions/apigateway_flush_stage_cache.yaml +++ b/actions/apigateway_flush_stage_cache.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_flush_stage_cache runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: flush_stage_cache immutable: true diff --git a/actions/apigateway_generate_client_certificate.yaml b/actions/apigateway_generate_client_certificate.yaml index c4eba77e..9238157b 100644 --- a/actions/apigateway_generate_client_certificate.yaml +++ b/actions/apigateway_generate_client_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_generate_client_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: generate_client_certificate immutable: true diff --git a/actions/apigateway_get_account.yaml b/actions/apigateway_get_account.yaml index 4d3366b6..c653cdfd 100644 --- a/actions/apigateway_get_account.yaml +++ b/actions/apigateway_get_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_account immutable: true diff --git a/actions/apigateway_get_api_key.yaml b/actions/apigateway_get_api_key.yaml index 89a048de..6a956c33 100644 --- a/actions/apigateway_get_api_key.yaml +++ b/actions/apigateway_get_api_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_api_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_api_key immutable: true diff --git a/actions/apigateway_get_api_keys.yaml b/actions/apigateway_get_api_keys.yaml index 37010901..694398b2 100644 --- a/actions/apigateway_get_api_keys.yaml +++ b/actions/apigateway_get_api_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_api_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_api_keys immutable: true diff --git a/actions/apigateway_get_authorizer.yaml b/actions/apigateway_get_authorizer.yaml index 2a7d124a..6933304d 100644 --- a/actions/apigateway_get_authorizer.yaml +++ b/actions/apigateway_get_authorizer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_authorizer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_authorizer immutable: true diff --git a/actions/apigateway_get_authorizers.yaml b/actions/apigateway_get_authorizers.yaml index e420becb..54b52bc9 100644 --- a/actions/apigateway_get_authorizers.yaml +++ b/actions/apigateway_get_authorizers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_authorizers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_authorizers immutable: true diff --git a/actions/apigateway_get_base_path_mapping.yaml b/actions/apigateway_get_base_path_mapping.yaml index 491a7ac2..722d89b8 100644 --- a/actions/apigateway_get_base_path_mapping.yaml +++ b/actions/apigateway_get_base_path_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_base_path_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_base_path_mapping immutable: true diff --git a/actions/apigateway_get_base_path_mappings.yaml b/actions/apigateway_get_base_path_mappings.yaml index b51cd884..30a29e14 100644 --- a/actions/apigateway_get_base_path_mappings.yaml +++ b/actions/apigateway_get_base_path_mappings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_base_path_mappings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_base_path_mappings immutable: true diff --git a/actions/apigateway_get_client_certificate.yaml b/actions/apigateway_get_client_certificate.yaml index a7a8c44a..bb64851f 100644 --- a/actions/apigateway_get_client_certificate.yaml +++ b/actions/apigateway_get_client_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_client_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_client_certificate immutable: true diff --git a/actions/apigateway_get_client_certificates.yaml b/actions/apigateway_get_client_certificates.yaml index 6ae023df..b97a1b7e 100644 --- a/actions/apigateway_get_client_certificates.yaml +++ b/actions/apigateway_get_client_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_client_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_client_certificates immutable: true diff --git a/actions/apigateway_get_deployment.yaml b/actions/apigateway_get_deployment.yaml index 5b1fd5af..3c0e4451 100644 --- a/actions/apigateway_get_deployment.yaml +++ b/actions/apigateway_get_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployment immutable: true diff --git a/actions/apigateway_get_deployments.yaml b/actions/apigateway_get_deployments.yaml index c897a190..79449490 100644 --- a/actions/apigateway_get_deployments.yaml +++ b/actions/apigateway_get_deployments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_deployments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployments immutable: true diff --git a/actions/apigateway_get_documentation_part.yaml b/actions/apigateway_get_documentation_part.yaml index d55a1c3b..04ebd0c6 100644 --- a/actions/apigateway_get_documentation_part.yaml +++ b/actions/apigateway_get_documentation_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_documentation_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_documentation_part immutable: true diff --git a/actions/apigateway_get_documentation_parts.yaml b/actions/apigateway_get_documentation_parts.yaml index ee545163..0f85b1f6 100644 --- a/actions/apigateway_get_documentation_parts.yaml +++ b/actions/apigateway_get_documentation_parts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_documentation_parts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_documentation_parts immutable: true diff --git a/actions/apigateway_get_documentation_version.yaml b/actions/apigateway_get_documentation_version.yaml index 288bb194..528bf4c8 100644 --- a/actions/apigateway_get_documentation_version.yaml +++ b/actions/apigateway_get_documentation_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_documentation_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_documentation_version immutable: true diff --git a/actions/apigateway_get_documentation_versions.yaml b/actions/apigateway_get_documentation_versions.yaml index d82026c9..e4a3348c 100644 --- a/actions/apigateway_get_documentation_versions.yaml +++ b/actions/apigateway_get_documentation_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_documentation_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_documentation_versions immutable: true diff --git a/actions/apigateway_get_domain_name.yaml b/actions/apigateway_get_domain_name.yaml index 7cd3841b..0499e1ff 100644 --- a/actions/apigateway_get_domain_name.yaml +++ b/actions/apigateway_get_domain_name.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_domain_name runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_domain_name immutable: true diff --git a/actions/apigateway_get_domain_names.yaml b/actions/apigateway_get_domain_names.yaml index 7552a350..55f29ebe 100644 --- a/actions/apigateway_get_domain_names.yaml +++ b/actions/apigateway_get_domain_names.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_domain_names runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_domain_names immutable: true diff --git a/actions/apigateway_get_export.yaml b/actions/apigateway_get_export.yaml index 4f461bdd..afd6e8ca 100644 --- a/actions/apigateway_get_export.yaml +++ b/actions/apigateway_get_export.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_export runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_export immutable: true diff --git a/actions/apigateway_get_integration.yaml b/actions/apigateway_get_integration.yaml index b89812dd..5b6d9bfa 100644 --- a/actions/apigateway_get_integration.yaml +++ b/actions/apigateway_get_integration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_integration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_integration immutable: true diff --git a/actions/apigateway_get_integration_response.yaml b/actions/apigateway_get_integration_response.yaml index 3001e2df..f8e34e82 100644 --- a/actions/apigateway_get_integration_response.yaml +++ b/actions/apigateway_get_integration_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_integration_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_integration_response immutable: true diff --git a/actions/apigateway_get_method.yaml b/actions/apigateway_get_method.yaml index 2ff1ebcb..e453a2a8 100644 --- a/actions/apigateway_get_method.yaml +++ b/actions/apigateway_get_method.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_method runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_method immutable: true diff --git a/actions/apigateway_get_method_response.yaml b/actions/apigateway_get_method_response.yaml index 42909935..f7be9db2 100644 --- a/actions/apigateway_get_method_response.yaml +++ b/actions/apigateway_get_method_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_method_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_method_response immutable: true diff --git a/actions/apigateway_get_model.yaml b/actions/apigateway_get_model.yaml index 310eed84..d7150903 100644 --- a/actions/apigateway_get_model.yaml +++ b/actions/apigateway_get_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_model immutable: true diff --git a/actions/apigateway_get_model_template.yaml b/actions/apigateway_get_model_template.yaml index 00283233..9ec38839 100644 --- a/actions/apigateway_get_model_template.yaml +++ b/actions/apigateway_get_model_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_model_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_model_template immutable: true diff --git a/actions/apigateway_get_models.yaml b/actions/apigateway_get_models.yaml index efc9cdf0..90ae746f 100644 --- a/actions/apigateway_get_models.yaml +++ b/actions/apigateway_get_models.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_models runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_models immutable: true diff --git a/actions/apigateway_get_request_validator.yaml b/actions/apigateway_get_request_validator.yaml index 3182adfc..f0ae9396 100644 --- a/actions/apigateway_get_request_validator.yaml +++ b/actions/apigateway_get_request_validator.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_request_validator runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_request_validator immutable: true diff --git a/actions/apigateway_get_request_validators.yaml b/actions/apigateway_get_request_validators.yaml index b704a1a1..9f30aa2b 100644 --- a/actions/apigateway_get_request_validators.yaml +++ b/actions/apigateway_get_request_validators.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_request_validators runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_request_validators immutable: true diff --git a/actions/apigateway_get_resource.yaml b/actions/apigateway_get_resource.yaml index 061a324e..538a4e11 100644 --- a/actions/apigateway_get_resource.yaml +++ b/actions/apigateway_get_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_resource immutable: true diff --git a/actions/apigateway_get_resources.yaml b/actions/apigateway_get_resources.yaml index 7d7c3965..ffeb3eba 100644 --- a/actions/apigateway_get_resources.yaml +++ b/actions/apigateway_get_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_resources immutable: true diff --git a/actions/apigateway_get_rest_api.yaml b/actions/apigateway_get_rest_api.yaml index 682564ee..3519467b 100644 --- a/actions/apigateway_get_rest_api.yaml +++ b/actions/apigateway_get_rest_api.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_rest_api runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rest_api immutable: true diff --git a/actions/apigateway_get_rest_apis.yaml b/actions/apigateway_get_rest_apis.yaml index 1536733c..fa543abe 100644 --- a/actions/apigateway_get_rest_apis.yaml +++ b/actions/apigateway_get_rest_apis.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_rest_apis runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rest_apis immutable: true diff --git a/actions/apigateway_get_sdk.yaml b/actions/apigateway_get_sdk.yaml index b8d68666..a570fc09 100644 --- a/actions/apigateway_get_sdk.yaml +++ b/actions/apigateway_get_sdk.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_sdk runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sdk immutable: true diff --git a/actions/apigateway_get_sdk_type.yaml b/actions/apigateway_get_sdk_type.yaml index 1622eb47..404fa0fe 100644 --- a/actions/apigateway_get_sdk_type.yaml +++ b/actions/apigateway_get_sdk_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_sdk_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sdk_type immutable: true diff --git a/actions/apigateway_get_sdk_types.yaml b/actions/apigateway_get_sdk_types.yaml index 6cfd90ca..c04542c7 100644 --- a/actions/apigateway_get_sdk_types.yaml +++ b/actions/apigateway_get_sdk_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_sdk_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sdk_types immutable: true diff --git a/actions/apigateway_get_stage.yaml b/actions/apigateway_get_stage.yaml index f906ddfa..1d1f3a0b 100644 --- a/actions/apigateway_get_stage.yaml +++ b/actions/apigateway_get_stage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_stage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_stage immutable: true diff --git a/actions/apigateway_get_stages.yaml b/actions/apigateway_get_stages.yaml index 39f94275..4a56f32d 100644 --- a/actions/apigateway_get_stages.yaml +++ b/actions/apigateway_get_stages.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_stages runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_stages immutable: true diff --git a/actions/apigateway_get_usage.yaml b/actions/apigateway_get_usage.yaml index 0e747eda..c77e2338 100644 --- a/actions/apigateway_get_usage.yaml +++ b/actions/apigateway_get_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_usage immutable: true diff --git a/actions/apigateway_get_usage_plan.yaml b/actions/apigateway_get_usage_plan.yaml index 315fc56c..82478505 100644 --- a/actions/apigateway_get_usage_plan.yaml +++ b/actions/apigateway_get_usage_plan.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_usage_plan runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_usage_plan immutable: true diff --git a/actions/apigateway_get_usage_plan_key.yaml b/actions/apigateway_get_usage_plan_key.yaml index 7a6ed58d..652dae1d 100644 --- a/actions/apigateway_get_usage_plan_key.yaml +++ b/actions/apigateway_get_usage_plan_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_usage_plan_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_usage_plan_key immutable: true diff --git a/actions/apigateway_get_usage_plan_keys.yaml b/actions/apigateway_get_usage_plan_keys.yaml index f627b8a4..f1672574 100644 --- a/actions/apigateway_get_usage_plan_keys.yaml +++ b/actions/apigateway_get_usage_plan_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_usage_plan_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_usage_plan_keys immutable: true diff --git a/actions/apigateway_get_usage_plans.yaml b/actions/apigateway_get_usage_plans.yaml index 81099605..42e9712c 100644 --- a/actions/apigateway_get_usage_plans.yaml +++ b/actions/apigateway_get_usage_plans.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_get_usage_plans runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_usage_plans immutable: true diff --git a/actions/apigateway_import_api_keys.yaml b/actions/apigateway_import_api_keys.yaml index cb479020..039fa46e 100644 --- a/actions/apigateway_import_api_keys.yaml +++ b/actions/apigateway_import_api_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_import_api_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_api_keys immutable: true diff --git a/actions/apigateway_import_documentation_parts.yaml b/actions/apigateway_import_documentation_parts.yaml index b4e15b6a..bf9ba843 100644 --- a/actions/apigateway_import_documentation_parts.yaml +++ b/actions/apigateway_import_documentation_parts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_import_documentation_parts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_documentation_parts immutable: true diff --git a/actions/apigateway_import_rest_api.yaml b/actions/apigateway_import_rest_api.yaml index 6ecd52af..2122d884 100644 --- a/actions/apigateway_import_rest_api.yaml +++ b/actions/apigateway_import_rest_api.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_import_rest_api runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_rest_api immutable: true diff --git a/actions/apigateway_put_integration.yaml b/actions/apigateway_put_integration.yaml index 3404540f..da526948 100644 --- a/actions/apigateway_put_integration.yaml +++ b/actions/apigateway_put_integration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_put_integration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_integration immutable: true diff --git a/actions/apigateway_put_integration_response.yaml b/actions/apigateway_put_integration_response.yaml index b702894f..10020a3c 100644 --- a/actions/apigateway_put_integration_response.yaml +++ b/actions/apigateway_put_integration_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_put_integration_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_integration_response immutable: true diff --git a/actions/apigateway_put_method.yaml b/actions/apigateway_put_method.yaml index e061b86f..84ee5126 100644 --- a/actions/apigateway_put_method.yaml +++ b/actions/apigateway_put_method.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_put_method runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_method immutable: true diff --git a/actions/apigateway_put_method_response.yaml b/actions/apigateway_put_method_response.yaml index f34ebe30..91eee361 100644 --- a/actions/apigateway_put_method_response.yaml +++ b/actions/apigateway_put_method_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_put_method_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_method_response immutable: true diff --git a/actions/apigateway_put_rest_api.yaml b/actions/apigateway_put_rest_api.yaml index 55d603b3..f8a625b9 100644 --- a/actions/apigateway_put_rest_api.yaml +++ b/actions/apigateway_put_rest_api.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_put_rest_api runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_rest_api immutable: true diff --git a/actions/apigateway_test_invoke_authorizer.yaml b/actions/apigateway_test_invoke_authorizer.yaml index 349ddd1d..a211ed37 100644 --- a/actions/apigateway_test_invoke_authorizer.yaml +++ b/actions/apigateway_test_invoke_authorizer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_test_invoke_authorizer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_invoke_authorizer immutable: true diff --git a/actions/apigateway_test_invoke_method.yaml b/actions/apigateway_test_invoke_method.yaml index 14d23b92..f9fa90fc 100644 --- a/actions/apigateway_test_invoke_method.yaml +++ b/actions/apigateway_test_invoke_method.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_test_invoke_method runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_invoke_method immutable: true diff --git a/actions/apigateway_update_account.yaml b/actions/apigateway_update_account.yaml index 5b535c6d..ae001f0c 100644 --- a/actions/apigateway_update_account.yaml +++ b/actions/apigateway_update_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_account immutable: true diff --git a/actions/apigateway_update_api_key.yaml b/actions/apigateway_update_api_key.yaml index e0dcd86b..30c40aba 100644 --- a/actions/apigateway_update_api_key.yaml +++ b/actions/apigateway_update_api_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_api_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_api_key immutable: true diff --git a/actions/apigateway_update_authorizer.yaml b/actions/apigateway_update_authorizer.yaml index cad472f2..bdaedbfc 100644 --- a/actions/apigateway_update_authorizer.yaml +++ b/actions/apigateway_update_authorizer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_authorizer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_authorizer immutable: true diff --git a/actions/apigateway_update_base_path_mapping.yaml b/actions/apigateway_update_base_path_mapping.yaml index 074b4b3a..223bd95f 100644 --- a/actions/apigateway_update_base_path_mapping.yaml +++ b/actions/apigateway_update_base_path_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_base_path_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_base_path_mapping immutable: true diff --git a/actions/apigateway_update_client_certificate.yaml b/actions/apigateway_update_client_certificate.yaml index bd04d474..14d08ecf 100644 --- a/actions/apigateway_update_client_certificate.yaml +++ b/actions/apigateway_update_client_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_client_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_client_certificate immutable: true diff --git a/actions/apigateway_update_deployment.yaml b/actions/apigateway_update_deployment.yaml index ffb69b09..4cd322bd 100644 --- a/actions/apigateway_update_deployment.yaml +++ b/actions/apigateway_update_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_deployment immutable: true diff --git a/actions/apigateway_update_documentation_part.yaml b/actions/apigateway_update_documentation_part.yaml index f7976cc1..68b2db2f 100644 --- a/actions/apigateway_update_documentation_part.yaml +++ b/actions/apigateway_update_documentation_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_documentation_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_documentation_part immutable: true diff --git a/actions/apigateway_update_documentation_version.yaml b/actions/apigateway_update_documentation_version.yaml index 6c6107ad..ad5ebc50 100644 --- a/actions/apigateway_update_documentation_version.yaml +++ b/actions/apigateway_update_documentation_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_documentation_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_documentation_version immutable: true diff --git a/actions/apigateway_update_domain_name.yaml b/actions/apigateway_update_domain_name.yaml index 6571385c..b0198a8b 100644 --- a/actions/apigateway_update_domain_name.yaml +++ b/actions/apigateway_update_domain_name.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_domain_name runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_domain_name immutable: true diff --git a/actions/apigateway_update_integration.yaml b/actions/apigateway_update_integration.yaml index 5b07da4c..b1eacc1d 100644 --- a/actions/apigateway_update_integration.yaml +++ b/actions/apigateway_update_integration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_integration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_integration immutable: true diff --git a/actions/apigateway_update_integration_response.yaml b/actions/apigateway_update_integration_response.yaml index fc152be0..10d71d1e 100644 --- a/actions/apigateway_update_integration_response.yaml +++ b/actions/apigateway_update_integration_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_integration_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_integration_response immutable: true diff --git a/actions/apigateway_update_method.yaml b/actions/apigateway_update_method.yaml index 034b619b..bba69a33 100644 --- a/actions/apigateway_update_method.yaml +++ b/actions/apigateway_update_method.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_method runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_method immutable: true diff --git a/actions/apigateway_update_method_response.yaml b/actions/apigateway_update_method_response.yaml index 2163c0fd..85ff4821 100644 --- a/actions/apigateway_update_method_response.yaml +++ b/actions/apigateway_update_method_response.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_method_response runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_method_response immutable: true diff --git a/actions/apigateway_update_model.yaml b/actions/apigateway_update_model.yaml index 59bae096..aca39356 100644 --- a/actions/apigateway_update_model.yaml +++ b/actions/apigateway_update_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_model immutable: true diff --git a/actions/apigateway_update_request_validator.yaml b/actions/apigateway_update_request_validator.yaml index 63e74e59..9a6162ed 100644 --- a/actions/apigateway_update_request_validator.yaml +++ b/actions/apigateway_update_request_validator.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_request_validator runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_request_validator immutable: true diff --git a/actions/apigateway_update_resource.yaml b/actions/apigateway_update_resource.yaml index 09dac1c6..83f200a7 100644 --- a/actions/apigateway_update_resource.yaml +++ b/actions/apigateway_update_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_resource immutable: true diff --git a/actions/apigateway_update_rest_api.yaml b/actions/apigateway_update_rest_api.yaml index a34d5574..63fea656 100644 --- a/actions/apigateway_update_rest_api.yaml +++ b/actions/apigateway_update_rest_api.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_rest_api runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_rest_api immutable: true diff --git a/actions/apigateway_update_stage.yaml b/actions/apigateway_update_stage.yaml index d048529a..a42b3d51 100644 --- a/actions/apigateway_update_stage.yaml +++ b/actions/apigateway_update_stage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_stage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_stage immutable: true diff --git a/actions/apigateway_update_usage.yaml b/actions/apigateway_update_usage.yaml index 271a19fb..c373bff4 100644 --- a/actions/apigateway_update_usage.yaml +++ b/actions/apigateway_update_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_usage immutable: true diff --git a/actions/apigateway_update_usage_plan.yaml b/actions/apigateway_update_usage_plan.yaml index 5abf4ce6..0bc21d8f 100644 --- a/actions/apigateway_update_usage_plan.yaml +++ b/actions/apigateway_update_usage_plan.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: apigateway_update_usage_plan runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_usage_plan immutable: true diff --git a/actions/application-autoscaling_delete_scaling_policy.yaml b/actions/application-autoscaling_delete_scaling_policy.yaml index 0eef5a1c..13cb37bc 100644 --- a/actions/application-autoscaling_delete_scaling_policy.yaml +++ b/actions/application-autoscaling_delete_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_delete_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_scaling_policy immutable: true diff --git a/actions/application-autoscaling_deregister_scalable_target.yaml b/actions/application-autoscaling_deregister_scalable_target.yaml index 254a0727..4411879f 100644 --- a/actions/application-autoscaling_deregister_scalable_target.yaml +++ b/actions/application-autoscaling_deregister_scalable_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_deregister_scalable_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_scalable_target immutable: true diff --git a/actions/application-autoscaling_describe_scalable_targets.yaml b/actions/application-autoscaling_describe_scalable_targets.yaml index f79bcaee..b2a99d3e 100644 --- a/actions/application-autoscaling_describe_scalable_targets.yaml +++ b/actions/application-autoscaling_describe_scalable_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_describe_scalable_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scalable_targets immutable: true diff --git a/actions/application-autoscaling_describe_scaling_activities.yaml b/actions/application-autoscaling_describe_scaling_activities.yaml index a3665829..24baee1d 100644 --- a/actions/application-autoscaling_describe_scaling_activities.yaml +++ b/actions/application-autoscaling_describe_scaling_activities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_describe_scaling_activities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scaling_activities immutable: true diff --git a/actions/application-autoscaling_describe_scaling_policies.yaml b/actions/application-autoscaling_describe_scaling_policies.yaml index 0718ad80..db2a2c65 100644 --- a/actions/application-autoscaling_describe_scaling_policies.yaml +++ b/actions/application-autoscaling_describe_scaling_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_describe_scaling_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scaling_policies immutable: true diff --git a/actions/application-autoscaling_put_scaling_policy.yaml b/actions/application-autoscaling_put_scaling_policy.yaml index 73c21761..ddeafcfe 100644 --- a/actions/application-autoscaling_put_scaling_policy.yaml +++ b/actions/application-autoscaling_put_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_put_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_scaling_policy immutable: true diff --git a/actions/application-autoscaling_register_scalable_target.yaml b/actions/application-autoscaling_register_scalable_target.yaml index cf7ff3b4..e193cf83 100644 --- a/actions/application-autoscaling_register_scalable_target.yaml +++ b/actions/application-autoscaling_register_scalable_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: application-autoscaling_register_scalable_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_scalable_target immutable: true diff --git a/actions/appstream_associate_fleet.yaml b/actions/appstream_associate_fleet.yaml index 5611326f..50799ace 100644 --- a/actions/appstream_associate_fleet.yaml +++ b/actions/appstream_associate_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_associate_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_fleet immutable: true diff --git a/actions/appstream_create_fleet.yaml b/actions/appstream_create_fleet.yaml index 04af50bd..aa6300a6 100644 --- a/actions/appstream_create_fleet.yaml +++ b/actions/appstream_create_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_create_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_fleet immutable: true diff --git a/actions/appstream_create_stack.yaml b/actions/appstream_create_stack.yaml index 9bf347ac..743b0f28 100644 --- a/actions/appstream_create_stack.yaml +++ b/actions/appstream_create_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_create_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_stack immutable: true diff --git a/actions/appstream_create_streaming_url.yaml b/actions/appstream_create_streaming_url.yaml index ca3018b2..922e30a9 100644 --- a/actions/appstream_create_streaming_url.yaml +++ b/actions/appstream_create_streaming_url.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_create_streaming_url runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_streaming_url immutable: true diff --git a/actions/appstream_delete_fleet.yaml b/actions/appstream_delete_fleet.yaml index fe4a8ccb..19524c49 100644 --- a/actions/appstream_delete_fleet.yaml +++ b/actions/appstream_delete_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_delete_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_fleet immutable: true diff --git a/actions/appstream_delete_stack.yaml b/actions/appstream_delete_stack.yaml index e4639b75..eb8b4f4a 100644 --- a/actions/appstream_delete_stack.yaml +++ b/actions/appstream_delete_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_delete_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_stack immutable: true diff --git a/actions/appstream_describe_fleets.yaml b/actions/appstream_describe_fleets.yaml index 553f6cd7..9cbab519 100644 --- a/actions/appstream_describe_fleets.yaml +++ b/actions/appstream_describe_fleets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_describe_fleets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fleets immutable: true diff --git a/actions/appstream_describe_images.yaml b/actions/appstream_describe_images.yaml index b6832775..ac7f84b5 100644 --- a/actions/appstream_describe_images.yaml +++ b/actions/appstream_describe_images.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_describe_images runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_images immutable: true diff --git a/actions/appstream_describe_sessions.yaml b/actions/appstream_describe_sessions.yaml index d28df26c..59911753 100644 --- a/actions/appstream_describe_sessions.yaml +++ b/actions/appstream_describe_sessions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_describe_sessions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_sessions immutable: true diff --git a/actions/appstream_describe_stacks.yaml b/actions/appstream_describe_stacks.yaml index a29cded0..dd604903 100644 --- a/actions/appstream_describe_stacks.yaml +++ b/actions/appstream_describe_stacks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_describe_stacks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stacks immutable: true diff --git a/actions/appstream_disassociate_fleet.yaml b/actions/appstream_disassociate_fleet.yaml index 05096865..04881515 100644 --- a/actions/appstream_disassociate_fleet.yaml +++ b/actions/appstream_disassociate_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_disassociate_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_fleet immutable: true diff --git a/actions/appstream_expire_session.yaml b/actions/appstream_expire_session.yaml index bad33094..4cd6e6bd 100644 --- a/actions/appstream_expire_session.yaml +++ b/actions/appstream_expire_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_expire_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: expire_session immutable: true diff --git a/actions/appstream_list_associated_fleets.yaml b/actions/appstream_list_associated_fleets.yaml index 648016ac..7628169d 100644 --- a/actions/appstream_list_associated_fleets.yaml +++ b/actions/appstream_list_associated_fleets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_list_associated_fleets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_associated_fleets immutable: true diff --git a/actions/appstream_list_associated_stacks.yaml b/actions/appstream_list_associated_stacks.yaml index 770dfd71..846a1d0c 100644 --- a/actions/appstream_list_associated_stacks.yaml +++ b/actions/appstream_list_associated_stacks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_list_associated_stacks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_associated_stacks immutable: true diff --git a/actions/appstream_start_fleet.yaml b/actions/appstream_start_fleet.yaml index 63d18a15..bdbe8d7e 100644 --- a/actions/appstream_start_fleet.yaml +++ b/actions/appstream_start_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_start_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_fleet immutable: true diff --git a/actions/appstream_stop_fleet.yaml b/actions/appstream_stop_fleet.yaml index 2ea46756..73eb0e04 100644 --- a/actions/appstream_stop_fleet.yaml +++ b/actions/appstream_stop_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_stop_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_fleet immutable: true diff --git a/actions/appstream_update_fleet.yaml b/actions/appstream_update_fleet.yaml index 81eb52ad..109a98a2 100644 --- a/actions/appstream_update_fleet.yaml +++ b/actions/appstream_update_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_update_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_fleet immutable: true diff --git a/actions/appstream_update_stack.yaml b/actions/appstream_update_stack.yaml index 6173996f..935736d0 100644 --- a/actions/appstream_update_stack.yaml +++ b/actions/appstream_update_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: appstream_update_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_stack immutable: true diff --git a/actions/athena_batch_get_named_query.yaml b/actions/athena_batch_get_named_query.yaml index eeec02cb..ba5a0eec 100644 --- a/actions/athena_batch_get_named_query.yaml +++ b/actions/athena_batch_get_named_query.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_batch_get_named_query runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_named_query immutable: true diff --git a/actions/athena_batch_get_query_execution.yaml b/actions/athena_batch_get_query_execution.yaml index dcbfe40e..f7efcdf5 100644 --- a/actions/athena_batch_get_query_execution.yaml +++ b/actions/athena_batch_get_query_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_batch_get_query_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_query_execution immutable: true diff --git a/actions/athena_create_named_query.yaml b/actions/athena_create_named_query.yaml index f50ee40f..7dad5adb 100644 --- a/actions/athena_create_named_query.yaml +++ b/actions/athena_create_named_query.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_create_named_query runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_named_query immutable: true diff --git a/actions/athena_delete_named_query.yaml b/actions/athena_delete_named_query.yaml index 7e01e832..bcb98dae 100644 --- a/actions/athena_delete_named_query.yaml +++ b/actions/athena_delete_named_query.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_delete_named_query runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_named_query immutable: true diff --git a/actions/athena_get_named_query.yaml b/actions/athena_get_named_query.yaml index 53730c86..16f29da5 100644 --- a/actions/athena_get_named_query.yaml +++ b/actions/athena_get_named_query.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_get_named_query runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_named_query immutable: true diff --git a/actions/athena_get_query_execution.yaml b/actions/athena_get_query_execution.yaml index 3509d5a9..9b35dc91 100644 --- a/actions/athena_get_query_execution.yaml +++ b/actions/athena_get_query_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_get_query_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_query_execution immutable: true diff --git a/actions/athena_get_query_results.yaml b/actions/athena_get_query_results.yaml index 3d346908..8050d16a 100644 --- a/actions/athena_get_query_results.yaml +++ b/actions/athena_get_query_results.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_get_query_results runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_query_results immutable: true diff --git a/actions/athena_list_named_queries.yaml b/actions/athena_list_named_queries.yaml index 35c665af..ac04a51d 100644 --- a/actions/athena_list_named_queries.yaml +++ b/actions/athena_list_named_queries.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_list_named_queries runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_named_queries immutable: true diff --git a/actions/athena_list_query_executions.yaml b/actions/athena_list_query_executions.yaml index 0706b62d..591b54fe 100644 --- a/actions/athena_list_query_executions.yaml +++ b/actions/athena_list_query_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_list_query_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_query_executions immutable: true diff --git a/actions/athena_start_query_execution.yaml b/actions/athena_start_query_execution.yaml index 62cb40f5..fd58d72e 100644 --- a/actions/athena_start_query_execution.yaml +++ b/actions/athena_start_query_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_start_query_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_query_execution immutable: true diff --git a/actions/athena_stop_query_execution.yaml b/actions/athena_stop_query_execution.yaml index a70f5a92..08c19c25 100644 --- a/actions/athena_stop_query_execution.yaml +++ b/actions/athena_stop_query_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: athena_stop_query_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_query_execution immutable: true diff --git a/actions/autoscaling_attach_instances.yaml b/actions/autoscaling_attach_instances.yaml index 0dcae3f6..aa6750d4 100644 --- a/actions/autoscaling_attach_instances.yaml +++ b/actions/autoscaling_attach_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_attach_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_instances immutable: true diff --git a/actions/autoscaling_attach_load_balancer_target_groups.yaml b/actions/autoscaling_attach_load_balancer_target_groups.yaml index d4b398e1..efbebec3 100644 --- a/actions/autoscaling_attach_load_balancer_target_groups.yaml +++ b/actions/autoscaling_attach_load_balancer_target_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_attach_load_balancer_target_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_load_balancer_target_groups immutable: true diff --git a/actions/autoscaling_attach_load_balancers.yaml b/actions/autoscaling_attach_load_balancers.yaml index da761a91..8901e77b 100644 --- a/actions/autoscaling_attach_load_balancers.yaml +++ b/actions/autoscaling_attach_load_balancers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_attach_load_balancers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_load_balancers immutable: true diff --git a/actions/autoscaling_complete_lifecycle_action.yaml b/actions/autoscaling_complete_lifecycle_action.yaml index 2978a7bf..110b746e 100644 --- a/actions/autoscaling_complete_lifecycle_action.yaml +++ b/actions/autoscaling_complete_lifecycle_action.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_complete_lifecycle_action runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: complete_lifecycle_action immutable: true diff --git a/actions/autoscaling_create_auto_scaling_group.yaml b/actions/autoscaling_create_auto_scaling_group.yaml index 030d9343..a5a0c45f 100644 --- a/actions/autoscaling_create_auto_scaling_group.yaml +++ b/actions/autoscaling_create_auto_scaling_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_create_auto_scaling_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_auto_scaling_group immutable: true diff --git a/actions/autoscaling_create_launch_configuration.yaml b/actions/autoscaling_create_launch_configuration.yaml index fb9bf869..cf9b3b60 100644 --- a/actions/autoscaling_create_launch_configuration.yaml +++ b/actions/autoscaling_create_launch_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_create_launch_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_launch_configuration immutable: true diff --git a/actions/autoscaling_create_or_update_tags.yaml b/actions/autoscaling_create_or_update_tags.yaml index 45ca69c4..0f53deb7 100644 --- a/actions/autoscaling_create_or_update_tags.yaml +++ b/actions/autoscaling_create_or_update_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_create_or_update_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_or_update_tags immutable: true diff --git a/actions/autoscaling_delete_auto_scaling_group.yaml b/actions/autoscaling_delete_auto_scaling_group.yaml index 15c15de6..9964c9cb 100644 --- a/actions/autoscaling_delete_auto_scaling_group.yaml +++ b/actions/autoscaling_delete_auto_scaling_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_auto_scaling_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_auto_scaling_group immutable: true diff --git a/actions/autoscaling_delete_launch_configuration.yaml b/actions/autoscaling_delete_launch_configuration.yaml index 0bf1d3ca..ef1574f7 100644 --- a/actions/autoscaling_delete_launch_configuration.yaml +++ b/actions/autoscaling_delete_launch_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_launch_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_launch_configuration immutable: true diff --git a/actions/autoscaling_delete_lifecycle_hook.yaml b/actions/autoscaling_delete_lifecycle_hook.yaml index 2c8d11db..e0a1615c 100644 --- a/actions/autoscaling_delete_lifecycle_hook.yaml +++ b/actions/autoscaling_delete_lifecycle_hook.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_lifecycle_hook runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_lifecycle_hook immutable: true diff --git a/actions/autoscaling_delete_notification_configuration.yaml b/actions/autoscaling_delete_notification_configuration.yaml index 6cf567bf..ebeb0a45 100644 --- a/actions/autoscaling_delete_notification_configuration.yaml +++ b/actions/autoscaling_delete_notification_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_notification_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_notification_configuration immutable: true diff --git a/actions/autoscaling_delete_policy.yaml b/actions/autoscaling_delete_policy.yaml index 9be31aac..a4a306cc 100644 --- a/actions/autoscaling_delete_policy.yaml +++ b/actions/autoscaling_delete_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_policy immutable: true diff --git a/actions/autoscaling_delete_scheduled_action.yaml b/actions/autoscaling_delete_scheduled_action.yaml index b7a3fe78..8d595c5b 100644 --- a/actions/autoscaling_delete_scheduled_action.yaml +++ b/actions/autoscaling_delete_scheduled_action.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_scheduled_action runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_scheduled_action immutable: true diff --git a/actions/autoscaling_delete_tags.yaml b/actions/autoscaling_delete_tags.yaml index b025c4a7..4c625b4e 100644 --- a/actions/autoscaling_delete_tags.yaml +++ b/actions/autoscaling_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/autoscaling_describe_auto_scaling_groups.yaml b/actions/autoscaling_describe_auto_scaling_groups.yaml index e0f42903..f374b425 100644 --- a/actions/autoscaling_describe_auto_scaling_groups.yaml +++ b/actions/autoscaling_describe_auto_scaling_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_auto_scaling_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_auto_scaling_groups immutable: true diff --git a/actions/autoscaling_describe_auto_scaling_instances.yaml b/actions/autoscaling_describe_auto_scaling_instances.yaml index b16da7c7..8237d35e 100644 --- a/actions/autoscaling_describe_auto_scaling_instances.yaml +++ b/actions/autoscaling_describe_auto_scaling_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_auto_scaling_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_auto_scaling_instances immutable: true diff --git a/actions/autoscaling_describe_launch_configurations.yaml b/actions/autoscaling_describe_launch_configurations.yaml index 18171dcb..323318cd 100644 --- a/actions/autoscaling_describe_launch_configurations.yaml +++ b/actions/autoscaling_describe_launch_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_launch_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_launch_configurations immutable: true diff --git a/actions/autoscaling_describe_lifecycle_hooks.yaml b/actions/autoscaling_describe_lifecycle_hooks.yaml index f15b241a..a1d146ad 100644 --- a/actions/autoscaling_describe_lifecycle_hooks.yaml +++ b/actions/autoscaling_describe_lifecycle_hooks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_lifecycle_hooks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_lifecycle_hooks immutable: true diff --git a/actions/autoscaling_describe_load_balancer_target_groups.yaml b/actions/autoscaling_describe_load_balancer_target_groups.yaml index 288013bb..501534b1 100644 --- a/actions/autoscaling_describe_load_balancer_target_groups.yaml +++ b/actions/autoscaling_describe_load_balancer_target_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_load_balancer_target_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancer_target_groups immutable: true diff --git a/actions/autoscaling_describe_load_balancers.yaml b/actions/autoscaling_describe_load_balancers.yaml index 2e1d62b2..78feddc5 100644 --- a/actions/autoscaling_describe_load_balancers.yaml +++ b/actions/autoscaling_describe_load_balancers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_load_balancers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancers immutable: true diff --git a/actions/autoscaling_describe_notification_configurations.yaml b/actions/autoscaling_describe_notification_configurations.yaml index 5099d6de..4972e59a 100644 --- a/actions/autoscaling_describe_notification_configurations.yaml +++ b/actions/autoscaling_describe_notification_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_notification_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_notification_configurations immutable: true diff --git a/actions/autoscaling_describe_policies.yaml b/actions/autoscaling_describe_policies.yaml index e0e6c425..ea95a971 100644 --- a/actions/autoscaling_describe_policies.yaml +++ b/actions/autoscaling_describe_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_policies immutable: true diff --git a/actions/autoscaling_describe_scaling_activities.yaml b/actions/autoscaling_describe_scaling_activities.yaml index a30f9c78..59aa7b5e 100644 --- a/actions/autoscaling_describe_scaling_activities.yaml +++ b/actions/autoscaling_describe_scaling_activities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_scaling_activities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scaling_activities immutable: true diff --git a/actions/autoscaling_describe_scheduled_actions.yaml b/actions/autoscaling_describe_scheduled_actions.yaml index eab8a9b5..fe27a7dc 100644 --- a/actions/autoscaling_describe_scheduled_actions.yaml +++ b/actions/autoscaling_describe_scheduled_actions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_scheduled_actions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scheduled_actions immutable: true diff --git a/actions/autoscaling_describe_tags.yaml b/actions/autoscaling_describe_tags.yaml index 4f12d412..512c74bd 100644 --- a/actions/autoscaling_describe_tags.yaml +++ b/actions/autoscaling_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/autoscaling_detach_instances.yaml b/actions/autoscaling_detach_instances.yaml index ab2f0daf..2ba25f7a 100644 --- a/actions/autoscaling_detach_instances.yaml +++ b/actions/autoscaling_detach_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_detach_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_instances immutable: true diff --git a/actions/autoscaling_detach_load_balancer_target_groups.yaml b/actions/autoscaling_detach_load_balancer_target_groups.yaml index a9c1e4f6..da871a31 100644 --- a/actions/autoscaling_detach_load_balancer_target_groups.yaml +++ b/actions/autoscaling_detach_load_balancer_target_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_detach_load_balancer_target_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_load_balancer_target_groups immutable: true diff --git a/actions/autoscaling_detach_load_balancers.yaml b/actions/autoscaling_detach_load_balancers.yaml index 4f5cdbe6..7a2863b9 100644 --- a/actions/autoscaling_detach_load_balancers.yaml +++ b/actions/autoscaling_detach_load_balancers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_detach_load_balancers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_load_balancers immutable: true diff --git a/actions/autoscaling_disable_metrics_collection.yaml b/actions/autoscaling_disable_metrics_collection.yaml index be114838..4ef155ef 100644 --- a/actions/autoscaling_disable_metrics_collection.yaml +++ b/actions/autoscaling_disable_metrics_collection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_disable_metrics_collection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_metrics_collection immutable: true diff --git a/actions/autoscaling_enable_metrics_collection.yaml b/actions/autoscaling_enable_metrics_collection.yaml index b4e4b6e7..b6298e36 100644 --- a/actions/autoscaling_enable_metrics_collection.yaml +++ b/actions/autoscaling_enable_metrics_collection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_enable_metrics_collection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_metrics_collection immutable: true diff --git a/actions/autoscaling_enter_standby.yaml b/actions/autoscaling_enter_standby.yaml index 14486af8..4baed662 100644 --- a/actions/autoscaling_enter_standby.yaml +++ b/actions/autoscaling_enter_standby.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_enter_standby runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enter_standby immutable: true diff --git a/actions/autoscaling_execute_policy.yaml b/actions/autoscaling_execute_policy.yaml index 541a7035..919fcb0b 100644 --- a/actions/autoscaling_execute_policy.yaml +++ b/actions/autoscaling_execute_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_execute_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: execute_policy immutable: true diff --git a/actions/autoscaling_exit_standby.yaml b/actions/autoscaling_exit_standby.yaml index dbf7277b..7e7ec1f0 100644 --- a/actions/autoscaling_exit_standby.yaml +++ b/actions/autoscaling_exit_standby.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_exit_standby runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: exit_standby immutable: true diff --git a/actions/autoscaling_put_lifecycle_hook.yaml b/actions/autoscaling_put_lifecycle_hook.yaml index 60fd10df..d1457075 100644 --- a/actions/autoscaling_put_lifecycle_hook.yaml +++ b/actions/autoscaling_put_lifecycle_hook.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_put_lifecycle_hook runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_lifecycle_hook immutable: true diff --git a/actions/autoscaling_put_notification_configuration.yaml b/actions/autoscaling_put_notification_configuration.yaml index 44ee3763..87a91f41 100644 --- a/actions/autoscaling_put_notification_configuration.yaml +++ b/actions/autoscaling_put_notification_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_put_notification_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_notification_configuration immutable: true diff --git a/actions/autoscaling_put_scaling_policy.yaml b/actions/autoscaling_put_scaling_policy.yaml index 84596ca5..abce722a 100644 --- a/actions/autoscaling_put_scaling_policy.yaml +++ b/actions/autoscaling_put_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_put_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_scaling_policy immutable: true diff --git a/actions/autoscaling_put_scheduled_update_group_action.yaml b/actions/autoscaling_put_scheduled_update_group_action.yaml index de1ebed6..8e814ae4 100644 --- a/actions/autoscaling_put_scheduled_update_group_action.yaml +++ b/actions/autoscaling_put_scheduled_update_group_action.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_put_scheduled_update_group_action runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_scheduled_update_group_action immutable: true diff --git a/actions/autoscaling_record_lifecycle_action_heartbeat.yaml b/actions/autoscaling_record_lifecycle_action_heartbeat.yaml index 02fc0a9c..1a5626a9 100644 --- a/actions/autoscaling_record_lifecycle_action_heartbeat.yaml +++ b/actions/autoscaling_record_lifecycle_action_heartbeat.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_record_lifecycle_action_heartbeat runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: record_lifecycle_action_heartbeat immutable: true diff --git a/actions/autoscaling_resume_processes.yaml b/actions/autoscaling_resume_processes.yaml index 8d10389a..df850358 100644 --- a/actions/autoscaling_resume_processes.yaml +++ b/actions/autoscaling_resume_processes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_resume_processes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resume_processes immutable: true diff --git a/actions/autoscaling_set_desired_capacity.yaml b/actions/autoscaling_set_desired_capacity.yaml index 7053e1ed..b6884ef3 100644 --- a/actions/autoscaling_set_desired_capacity.yaml +++ b/actions/autoscaling_set_desired_capacity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_set_desired_capacity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_desired_capacity immutable: true diff --git a/actions/autoscaling_set_instance_health.yaml b/actions/autoscaling_set_instance_health.yaml index 00a23ea2..70a4671a 100644 --- a/actions/autoscaling_set_instance_health.yaml +++ b/actions/autoscaling_set_instance_health.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_set_instance_health runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_instance_health immutable: true diff --git a/actions/autoscaling_set_instance_protection.yaml b/actions/autoscaling_set_instance_protection.yaml index ac874555..a1422bc6 100644 --- a/actions/autoscaling_set_instance_protection.yaml +++ b/actions/autoscaling_set_instance_protection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_set_instance_protection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_instance_protection immutable: true diff --git a/actions/autoscaling_suspend_processes.yaml b/actions/autoscaling_suspend_processes.yaml index b391d1ef..883b2255 100644 --- a/actions/autoscaling_suspend_processes.yaml +++ b/actions/autoscaling_suspend_processes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_suspend_processes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: suspend_processes immutable: true diff --git a/actions/autoscaling_terminate_instance_in_auto_scaling_group.yaml b/actions/autoscaling_terminate_instance_in_auto_scaling_group.yaml index 69d305ed..4e43cf11 100644 --- a/actions/autoscaling_terminate_instance_in_auto_scaling_group.yaml +++ b/actions/autoscaling_terminate_instance_in_auto_scaling_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_terminate_instance_in_auto_scaling_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_instance_in_auto_scaling_group immutable: true diff --git a/actions/autoscaling_update_auto_scaling_group.yaml b/actions/autoscaling_update_auto_scaling_group.yaml index 5a31e311..a6bf6aac 100644 --- a/actions/autoscaling_update_auto_scaling_group.yaml +++ b/actions/autoscaling_update_auto_scaling_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: autoscaling_update_auto_scaling_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_auto_scaling_group immutable: true diff --git a/actions/batch_cancel_job.yaml b/actions/batch_cancel_job.yaml index ebf4fdec..6e0fb320 100644 --- a/actions/batch_cancel_job.yaml +++ b/actions/batch_cancel_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_cancel_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_job immutable: true diff --git a/actions/batch_create_compute_environment.yaml b/actions/batch_create_compute_environment.yaml index 02940533..9d3dd46b 100644 --- a/actions/batch_create_compute_environment.yaml +++ b/actions/batch_create_compute_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_create_compute_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_compute_environment immutable: true diff --git a/actions/batch_create_job_queue.yaml b/actions/batch_create_job_queue.yaml index 3b68ebf8..0ab82485 100644 --- a/actions/batch_create_job_queue.yaml +++ b/actions/batch_create_job_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_create_job_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_job_queue immutable: true diff --git a/actions/batch_delete_compute_environment.yaml b/actions/batch_delete_compute_environment.yaml index b6dd4908..9eeb194e 100644 --- a/actions/batch_delete_compute_environment.yaml +++ b/actions/batch_delete_compute_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_delete_compute_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_compute_environment immutable: true diff --git a/actions/batch_delete_job_queue.yaml b/actions/batch_delete_job_queue.yaml index 7e19c0fe..3fb0c1eb 100644 --- a/actions/batch_delete_job_queue.yaml +++ b/actions/batch_delete_job_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_delete_job_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_job_queue immutable: true diff --git a/actions/batch_deregister_job_definition.yaml b/actions/batch_deregister_job_definition.yaml index 1a34b8e1..a2905a4c 100644 --- a/actions/batch_deregister_job_definition.yaml +++ b/actions/batch_deregister_job_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_deregister_job_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_job_definition immutable: true diff --git a/actions/batch_describe_compute_environments.yaml b/actions/batch_describe_compute_environments.yaml index 0104e97b..42fb7cef 100644 --- a/actions/batch_describe_compute_environments.yaml +++ b/actions/batch_describe_compute_environments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_describe_compute_environments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_compute_environments immutable: true diff --git a/actions/batch_describe_job_definitions.yaml b/actions/batch_describe_job_definitions.yaml index d8e6b179..04018260 100644 --- a/actions/batch_describe_job_definitions.yaml +++ b/actions/batch_describe_job_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_describe_job_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_job_definitions immutable: true diff --git a/actions/batch_describe_job_queues.yaml b/actions/batch_describe_job_queues.yaml index 98d69075..f5e081d2 100644 --- a/actions/batch_describe_job_queues.yaml +++ b/actions/batch_describe_job_queues.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_describe_job_queues runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_job_queues immutable: true diff --git a/actions/batch_describe_jobs.yaml b/actions/batch_describe_jobs.yaml index 77a35681..ce58d909 100644 --- a/actions/batch_describe_jobs.yaml +++ b/actions/batch_describe_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_describe_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_jobs immutable: true diff --git a/actions/batch_list_jobs.yaml b/actions/batch_list_jobs.yaml index 30a134fc..7986cd23 100644 --- a/actions/batch_list_jobs.yaml +++ b/actions/batch_list_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_list_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs immutable: true diff --git a/actions/batch_register_job_definition.yaml b/actions/batch_register_job_definition.yaml index f0171c1e..3350f50e 100644 --- a/actions/batch_register_job_definition.yaml +++ b/actions/batch_register_job_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_register_job_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_job_definition immutable: true diff --git a/actions/batch_submit_job.yaml b/actions/batch_submit_job.yaml index 204eb050..ab94d99a 100644 --- a/actions/batch_submit_job.yaml +++ b/actions/batch_submit_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_submit_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: submit_job immutable: true diff --git a/actions/batch_terminate_job.yaml b/actions/batch_terminate_job.yaml index 6cdb5baa..938128ae 100644 --- a/actions/batch_terminate_job.yaml +++ b/actions/batch_terminate_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_terminate_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_job immutable: true diff --git a/actions/batch_update_compute_environment.yaml b/actions/batch_update_compute_environment.yaml index 4075174e..6e714361 100644 --- a/actions/batch_update_compute_environment.yaml +++ b/actions/batch_update_compute_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_update_compute_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_compute_environment immutable: true diff --git a/actions/batch_update_job_queue.yaml b/actions/batch_update_job_queue.yaml index bef9851f..808acb11 100644 --- a/actions/batch_update_job_queue.yaml +++ b/actions/batch_update_job_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: batch_update_job_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_job_queue immutable: true diff --git a/actions/budgets_create_budget.yaml b/actions/budgets_create_budget.yaml index fe53b1a3..41ed2ffe 100644 --- a/actions/budgets_create_budget.yaml +++ b/actions/budgets_create_budget.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_create_budget runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_budget immutable: true diff --git a/actions/budgets_create_notification.yaml b/actions/budgets_create_notification.yaml index 98185903..1eaa8adf 100644 --- a/actions/budgets_create_notification.yaml +++ b/actions/budgets_create_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_create_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_notification immutable: true diff --git a/actions/budgets_create_subscriber.yaml b/actions/budgets_create_subscriber.yaml index b85de9a7..e4814600 100644 --- a/actions/budgets_create_subscriber.yaml +++ b/actions/budgets_create_subscriber.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_create_subscriber runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_subscriber immutable: true diff --git a/actions/budgets_delete_budget.yaml b/actions/budgets_delete_budget.yaml index f7656e3d..c9a4dc0e 100644 --- a/actions/budgets_delete_budget.yaml +++ b/actions/budgets_delete_budget.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_delete_budget runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_budget immutable: true diff --git a/actions/budgets_delete_notification.yaml b/actions/budgets_delete_notification.yaml index 1b561b50..842fe68b 100644 --- a/actions/budgets_delete_notification.yaml +++ b/actions/budgets_delete_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_delete_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_notification immutable: true diff --git a/actions/budgets_delete_subscriber.yaml b/actions/budgets_delete_subscriber.yaml index 0294fd0f..1209bcc2 100644 --- a/actions/budgets_delete_subscriber.yaml +++ b/actions/budgets_delete_subscriber.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_delete_subscriber runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_subscriber immutable: true diff --git a/actions/budgets_describe_budget.yaml b/actions/budgets_describe_budget.yaml index 2a67a3ec..c60fb222 100644 --- a/actions/budgets_describe_budget.yaml +++ b/actions/budgets_describe_budget.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_describe_budget runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_budget immutable: true diff --git a/actions/budgets_describe_budgets.yaml b/actions/budgets_describe_budgets.yaml index f23fed39..2b198b00 100644 --- a/actions/budgets_describe_budgets.yaml +++ b/actions/budgets_describe_budgets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_describe_budgets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_budgets immutable: true diff --git a/actions/budgets_describe_notifications_for_budget.yaml b/actions/budgets_describe_notifications_for_budget.yaml index b8859611..ca92a3b8 100644 --- a/actions/budgets_describe_notifications_for_budget.yaml +++ b/actions/budgets_describe_notifications_for_budget.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_describe_notifications_for_budget runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_notifications_for_budget immutable: true diff --git a/actions/budgets_describe_subscribers_for_notification.yaml b/actions/budgets_describe_subscribers_for_notification.yaml index 63cf2c91..e7828291 100644 --- a/actions/budgets_describe_subscribers_for_notification.yaml +++ b/actions/budgets_describe_subscribers_for_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_describe_subscribers_for_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_subscribers_for_notification immutable: true diff --git a/actions/budgets_update_budget.yaml b/actions/budgets_update_budget.yaml index ceca6545..23bca513 100644 --- a/actions/budgets_update_budget.yaml +++ b/actions/budgets_update_budget.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_update_budget runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_budget immutable: true diff --git a/actions/budgets_update_notification.yaml b/actions/budgets_update_notification.yaml index 902dc977..f5ee4f5b 100644 --- a/actions/budgets_update_notification.yaml +++ b/actions/budgets_update_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_update_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_notification immutable: true diff --git a/actions/budgets_update_subscriber.yaml b/actions/budgets_update_subscriber.yaml index 1a0829e9..e63fd0d9 100644 --- a/actions/budgets_update_subscriber.yaml +++ b/actions/budgets_update_subscriber.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: budgets_update_subscriber runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_subscriber immutable: true diff --git a/actions/cf_build_base_http_request.yaml b/actions/cf_build_base_http_request.yaml index 258cb78c..43f97a0b 100644 --- a/actions/cf_build_base_http_request.yaml +++ b/actions/cf_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/cf_build_complex_list_params.yaml b/actions/cf_build_complex_list_params.yaml index 29033b2d..64f08a50 100644 --- a/actions/cf_build_complex_list_params.yaml +++ b/actions/cf_build_complex_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_build_complex_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_complex_list_params immutable: true diff --git a/actions/cf_build_list_params.yaml b/actions/cf_build_list_params.yaml index cfae9941..81575a17 100644 --- a/actions/cf_build_list_params.yaml +++ b/actions/cf_build_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_build_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_list_params immutable: true diff --git a/actions/cf_cancel_update_stack.yaml b/actions/cf_cancel_update_stack.yaml index a0a0e34f..e6ed2d4d 100644 --- a/actions/cf_cancel_update_stack.yaml +++ b/actions/cf_cancel_update_stack.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_cancel_update_stack parameters: + account_id: + type: string + region: + type: string action: default: cancel_update_stack immutable: true diff --git a/actions/cf_close.yaml b/actions/cf_close.yaml index d035a916..e6a22fb0 100644 --- a/actions/cf_close.yaml +++ b/actions/cf_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/cf_create_stack.yaml b/actions/cf_create_stack.yaml index fa6bea0b..7b159e7d 100644 --- a/actions/cf_create_stack.yaml +++ b/actions/cf_create_stack.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_create_stack parameters: + account_id: + type: string + region: + type: string action: default: create_stack immutable: true diff --git a/actions/cf_delete_stack.yaml b/actions/cf_delete_stack.yaml index 8542e604..52d0b99f 100644 --- a/actions/cf_delete_stack.yaml +++ b/actions/cf_delete_stack.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_delete_stack parameters: + account_id: + type: string + region: + type: string action: default: delete_stack immutable: true diff --git a/actions/cf_describe_stack_events.yaml b/actions/cf_describe_stack_events.yaml index 477adc69..29815edc 100644 --- a/actions/cf_describe_stack_events.yaml +++ b/actions/cf_describe_stack_events.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_describe_stack_events parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_events immutable: true diff --git a/actions/cf_describe_stack_resource.yaml b/actions/cf_describe_stack_resource.yaml index 8faaeeff..c7047e4f 100644 --- a/actions/cf_describe_stack_resource.yaml +++ b/actions/cf_describe_stack_resource.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_describe_stack_resource parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_resource immutable: true diff --git a/actions/cf_describe_stack_resources.yaml b/actions/cf_describe_stack_resources.yaml index ad30d660..5d391844 100644 --- a/actions/cf_describe_stack_resources.yaml +++ b/actions/cf_describe_stack_resources.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_describe_stack_resources parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_resources immutable: true diff --git a/actions/cf_describe_stacks.yaml b/actions/cf_describe_stacks.yaml index fefc7524..0ae12b2c 100644 --- a/actions/cf_describe_stacks.yaml +++ b/actions/cf_describe_stacks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_describe_stacks parameters: + account_id: + type: string + region: + type: string action: default: describe_stacks immutable: true diff --git a/actions/cf_encode_bool.yaml b/actions/cf_encode_bool.yaml index 05fc2bba..783fb6f8 100644 --- a/actions/cf_encode_bool.yaml +++ b/actions/cf_encode_bool.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_encode_bool parameters: + account_id: + type: string + region: + type: string action: default: encode_bool immutable: true diff --git a/actions/cf_estimate_template_cost.yaml b/actions/cf_estimate_template_cost.yaml index d146a71b..35c5e9eb 100644 --- a/actions/cf_estimate_template_cost.yaml +++ b/actions/cf_estimate_template_cost.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_estimate_template_cost parameters: + account_id: + type: string + region: + type: string action: default: estimate_template_cost immutable: true diff --git a/actions/cf_get_http_connection.yaml b/actions/cf_get_http_connection.yaml index e96f8677..b3437c42 100644 --- a/actions/cf_get_http_connection.yaml +++ b/actions/cf_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/cf_get_list.yaml b/actions/cf_get_list.yaml index 20041202..bbf289e7 100644 --- a/actions/cf_get_list.yaml +++ b/actions/cf_get_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_list parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/cf_get_object.yaml b/actions/cf_get_object.yaml index 769b2d6f..162f09b2 100644 --- a/actions/cf_get_object.yaml +++ b/actions/cf_get_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_object parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/cf_get_path.yaml b/actions/cf_get_path.yaml index 046483cd..cbe79557 100644 --- a/actions/cf_get_path.yaml +++ b/actions/cf_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/cf_get_proxy_auth_header.yaml b/actions/cf_get_proxy_auth_header.yaml index faedbb22..b6b82004 100644 --- a/actions/cf_get_proxy_auth_header.yaml +++ b/actions/cf_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/cf_get_proxy_url_with_auth.yaml b/actions/cf_get_proxy_url_with_auth.yaml index f36ce10e..bc16c0c2 100644 --- a/actions/cf_get_proxy_url_with_auth.yaml +++ b/actions/cf_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/cf_get_stack_policy.yaml b/actions/cf_get_stack_policy.yaml index db1f4cab..f872e28e 100644 --- a/actions/cf_get_stack_policy.yaml +++ b/actions/cf_get_stack_policy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_stack_policy parameters: + account_id: + type: string + region: + type: string action: default: get_stack_policy immutable: true diff --git a/actions/cf_get_status.yaml b/actions/cf_get_status.yaml index a36adc3f..665b2b2f 100644 --- a/actions/cf_get_status.yaml +++ b/actions/cf_get_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_status parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/cf_get_template.yaml b/actions/cf_get_template.yaml index 7a09f813..20ad3a3a 100644 --- a/actions/cf_get_template.yaml +++ b/actions/cf_get_template.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_template parameters: + account_id: + type: string + region: + type: string action: default: get_template immutable: true diff --git a/actions/cf_get_utf8_value.yaml b/actions/cf_get_utf8_value.yaml index 2c6db807..5178b9dd 100644 --- a/actions/cf_get_utf8_value.yaml +++ b/actions/cf_get_utf8_value.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_get_utf8_value parameters: + account_id: + type: string + region: + type: string action: default: get_utf8_value immutable: true diff --git a/actions/cf_handle_proxy.yaml b/actions/cf_handle_proxy.yaml index 4267078a..935efa71 100644 --- a/actions/cf_handle_proxy.yaml +++ b/actions/cf_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/cf_list_stack_resources.yaml b/actions/cf_list_stack_resources.yaml index 119ef6de..37e85fb4 100644 --- a/actions/cf_list_stack_resources.yaml +++ b/actions/cf_list_stack_resources.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_list_stack_resources parameters: + account_id: + type: string + region: + type: string action: default: list_stack_resources immutable: true diff --git a/actions/cf_list_stacks.yaml b/actions/cf_list_stacks.yaml index 4edbfe7f..10eac9a5 100644 --- a/actions/cf_list_stacks.yaml +++ b/actions/cf_list_stacks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_list_stacks parameters: + account_id: + type: string + region: + type: string action: default: list_stacks immutable: true diff --git a/actions/cf_make_request.yaml b/actions/cf_make_request.yaml index d9b93b79..565dc93e 100644 --- a/actions/cf_make_request.yaml +++ b/actions/cf_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/cf_new_http_connection.yaml b/actions/cf_new_http_connection.yaml index b25ca2d9..cc801e0c 100644 --- a/actions/cf_new_http_connection.yaml +++ b/actions/cf_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/cf_prefix_proxy_to_path.yaml b/actions/cf_prefix_proxy_to_path.yaml index 1288d0aa..d968f480 100644 --- a/actions/cf_prefix_proxy_to_path.yaml +++ b/actions/cf_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/cf_proxy_ssl.yaml b/actions/cf_proxy_ssl.yaml index 98bfc2d4..4c346ee4 100644 --- a/actions/cf_proxy_ssl.yaml +++ b/actions/cf_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/cf_put_http_connection.yaml b/actions/cf_put_http_connection.yaml index cf67447f..fd1d2251 100644 --- a/actions/cf_put_http_connection.yaml +++ b/actions/cf_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/cf_server_name.yaml b/actions/cf_server_name.yaml index 820a32ed..f0006eca 100644 --- a/actions/cf_server_name.yaml +++ b/actions/cf_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/cf_set_host_header.yaml b/actions/cf_set_host_header.yaml index c9b1d6d6..9bae8fc3 100644 --- a/actions/cf_set_host_header.yaml +++ b/actions/cf_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/cf_set_request_hook.yaml b/actions/cf_set_request_hook.yaml index 755478e2..29e21204 100644 --- a/actions/cf_set_request_hook.yaml +++ b/actions/cf_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/cf_set_stack_policy.yaml b/actions/cf_set_stack_policy.yaml index 10a22dc0..c4f36690 100644 --- a/actions/cf_set_stack_policy.yaml +++ b/actions/cf_set_stack_policy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_set_stack_policy parameters: + account_id: + type: string + region: + type: string action: default: set_stack_policy immutable: true diff --git a/actions/cf_skip_proxy.yaml b/actions/cf_skip_proxy.yaml index e0396071..f97497d5 100644 --- a/actions/cf_skip_proxy.yaml +++ b/actions/cf_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/cf_update_stack.yaml b/actions/cf_update_stack.yaml index 6ce45f58..6f15ca18 100644 --- a/actions/cf_update_stack.yaml +++ b/actions/cf_update_stack.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_update_stack parameters: + account_id: + type: string + region: + type: string action: default: update_stack immutable: true diff --git a/actions/cf_validate_template.yaml b/actions/cf_validate_template.yaml index 5dd6cf3b..49a7d0e4 100644 --- a/actions/cf_validate_template.yaml +++ b/actions/cf_validate_template.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: cf_validate_template parameters: + account_id: + type: string + region: + type: string action: default: validate_template immutable: true diff --git a/actions/clouddirectory_add_facet_to_object.yaml b/actions/clouddirectory_add_facet_to_object.yaml index 4181c0ea..7c320a9f 100644 --- a/actions/clouddirectory_add_facet_to_object.yaml +++ b/actions/clouddirectory_add_facet_to_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_add_facet_to_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_facet_to_object immutable: true diff --git a/actions/clouddirectory_apply_schema.yaml b/actions/clouddirectory_apply_schema.yaml index f6f5e337..78db2be0 100644 --- a/actions/clouddirectory_apply_schema.yaml +++ b/actions/clouddirectory_apply_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_apply_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: apply_schema immutable: true diff --git a/actions/clouddirectory_attach_object.yaml b/actions/clouddirectory_attach_object.yaml index 8db0a7cb..9a61ccba 100644 --- a/actions/clouddirectory_attach_object.yaml +++ b/actions/clouddirectory_attach_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_attach_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_object immutable: true diff --git a/actions/clouddirectory_attach_policy.yaml b/actions/clouddirectory_attach_policy.yaml index 741dc5a2..28376afe 100644 --- a/actions/clouddirectory_attach_policy.yaml +++ b/actions/clouddirectory_attach_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_attach_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_policy immutable: true diff --git a/actions/clouddirectory_attach_to_index.yaml b/actions/clouddirectory_attach_to_index.yaml index 376261c2..68732583 100644 --- a/actions/clouddirectory_attach_to_index.yaml +++ b/actions/clouddirectory_attach_to_index.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_attach_to_index runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_to_index immutable: true diff --git a/actions/clouddirectory_attach_typed_link.yaml b/actions/clouddirectory_attach_typed_link.yaml index 0cbe6c51..7fcbebc9 100644 --- a/actions/clouddirectory_attach_typed_link.yaml +++ b/actions/clouddirectory_attach_typed_link.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_attach_typed_link runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_typed_link immutable: true diff --git a/actions/clouddirectory_batch_read.yaml b/actions/clouddirectory_batch_read.yaml index b923148a..4a8f52b4 100644 --- a/actions/clouddirectory_batch_read.yaml +++ b/actions/clouddirectory_batch_read.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_batch_read runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_read immutable: true diff --git a/actions/clouddirectory_batch_write.yaml b/actions/clouddirectory_batch_write.yaml index 51e1e098..ca51e1b3 100644 --- a/actions/clouddirectory_batch_write.yaml +++ b/actions/clouddirectory_batch_write.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_batch_write runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_write immutable: true diff --git a/actions/clouddirectory_create_directory.yaml b/actions/clouddirectory_create_directory.yaml index 588fff4c..0e944a04 100644 --- a/actions/clouddirectory_create_directory.yaml +++ b/actions/clouddirectory_create_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_create_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_directory immutable: true diff --git a/actions/clouddirectory_create_facet.yaml b/actions/clouddirectory_create_facet.yaml index 1296134b..af085e98 100644 --- a/actions/clouddirectory_create_facet.yaml +++ b/actions/clouddirectory_create_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_create_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_facet immutable: true diff --git a/actions/clouddirectory_create_index.yaml b/actions/clouddirectory_create_index.yaml index a420cea4..98098450 100644 --- a/actions/clouddirectory_create_index.yaml +++ b/actions/clouddirectory_create_index.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_create_index runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_index immutable: true diff --git a/actions/clouddirectory_create_object.yaml b/actions/clouddirectory_create_object.yaml index 031d233c..428083af 100644 --- a/actions/clouddirectory_create_object.yaml +++ b/actions/clouddirectory_create_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_create_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_object immutable: true diff --git a/actions/clouddirectory_create_schema.yaml b/actions/clouddirectory_create_schema.yaml index 7b971569..ad47482a 100644 --- a/actions/clouddirectory_create_schema.yaml +++ b/actions/clouddirectory_create_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_create_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_schema immutable: true diff --git a/actions/clouddirectory_create_typed_link_facet.yaml b/actions/clouddirectory_create_typed_link_facet.yaml index 01ba2572..3e4202c6 100644 --- a/actions/clouddirectory_create_typed_link_facet.yaml +++ b/actions/clouddirectory_create_typed_link_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_create_typed_link_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_typed_link_facet immutable: true diff --git a/actions/clouddirectory_delete_directory.yaml b/actions/clouddirectory_delete_directory.yaml index a5d6e08b..e1e8d742 100644 --- a/actions/clouddirectory_delete_directory.yaml +++ b/actions/clouddirectory_delete_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_delete_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_directory immutable: true diff --git a/actions/clouddirectory_delete_facet.yaml b/actions/clouddirectory_delete_facet.yaml index 2cb223a2..d2478a47 100644 --- a/actions/clouddirectory_delete_facet.yaml +++ b/actions/clouddirectory_delete_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_delete_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_facet immutable: true diff --git a/actions/clouddirectory_delete_object.yaml b/actions/clouddirectory_delete_object.yaml index fa5b9e9a..62926aa0 100644 --- a/actions/clouddirectory_delete_object.yaml +++ b/actions/clouddirectory_delete_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_delete_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_object immutable: true diff --git a/actions/clouddirectory_delete_schema.yaml b/actions/clouddirectory_delete_schema.yaml index efb039e9..754fd300 100644 --- a/actions/clouddirectory_delete_schema.yaml +++ b/actions/clouddirectory_delete_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_delete_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_schema immutable: true diff --git a/actions/clouddirectory_delete_typed_link_facet.yaml b/actions/clouddirectory_delete_typed_link_facet.yaml index 70e98aa0..875656f5 100644 --- a/actions/clouddirectory_delete_typed_link_facet.yaml +++ b/actions/clouddirectory_delete_typed_link_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_delete_typed_link_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_typed_link_facet immutable: true diff --git a/actions/clouddirectory_detach_from_index.yaml b/actions/clouddirectory_detach_from_index.yaml index 7768deba..cb92e874 100644 --- a/actions/clouddirectory_detach_from_index.yaml +++ b/actions/clouddirectory_detach_from_index.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_detach_from_index runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_from_index immutable: true diff --git a/actions/clouddirectory_detach_object.yaml b/actions/clouddirectory_detach_object.yaml index 9dcda559..84a883bd 100644 --- a/actions/clouddirectory_detach_object.yaml +++ b/actions/clouddirectory_detach_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_detach_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_object immutable: true diff --git a/actions/clouddirectory_detach_policy.yaml b/actions/clouddirectory_detach_policy.yaml index fba30f89..d3360c26 100644 --- a/actions/clouddirectory_detach_policy.yaml +++ b/actions/clouddirectory_detach_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_detach_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_policy immutable: true diff --git a/actions/clouddirectory_detach_typed_link.yaml b/actions/clouddirectory_detach_typed_link.yaml index a92971df..cb266fb3 100644 --- a/actions/clouddirectory_detach_typed_link.yaml +++ b/actions/clouddirectory_detach_typed_link.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_detach_typed_link runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_typed_link immutable: true diff --git a/actions/clouddirectory_disable_directory.yaml b/actions/clouddirectory_disable_directory.yaml index 3029aac9..9736d675 100644 --- a/actions/clouddirectory_disable_directory.yaml +++ b/actions/clouddirectory_disable_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_disable_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_directory immutable: true diff --git a/actions/clouddirectory_enable_directory.yaml b/actions/clouddirectory_enable_directory.yaml index 2c0da593..1096f42e 100644 --- a/actions/clouddirectory_enable_directory.yaml +++ b/actions/clouddirectory_enable_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_enable_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_directory immutable: true diff --git a/actions/clouddirectory_get_directory.yaml b/actions/clouddirectory_get_directory.yaml index 2ffb0d7b..8d79625a 100644 --- a/actions/clouddirectory_get_directory.yaml +++ b/actions/clouddirectory_get_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_get_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_directory immutable: true diff --git a/actions/clouddirectory_get_facet.yaml b/actions/clouddirectory_get_facet.yaml index 788ecd8a..0feec927 100644 --- a/actions/clouddirectory_get_facet.yaml +++ b/actions/clouddirectory_get_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_get_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_facet immutable: true diff --git a/actions/clouddirectory_get_object_information.yaml b/actions/clouddirectory_get_object_information.yaml index c790212c..51d7dc30 100644 --- a/actions/clouddirectory_get_object_information.yaml +++ b/actions/clouddirectory_get_object_information.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_get_object_information runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_object_information immutable: true diff --git a/actions/clouddirectory_get_schema_as_json.yaml b/actions/clouddirectory_get_schema_as_json.yaml index ef85d9ed..46eecbc8 100644 --- a/actions/clouddirectory_get_schema_as_json.yaml +++ b/actions/clouddirectory_get_schema_as_json.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_get_schema_as_json runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_schema_as_json immutable: true diff --git a/actions/clouddirectory_get_typed_link_facet_information.yaml b/actions/clouddirectory_get_typed_link_facet_information.yaml index e2170b7a..6ef874cd 100644 --- a/actions/clouddirectory_get_typed_link_facet_information.yaml +++ b/actions/clouddirectory_get_typed_link_facet_information.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_get_typed_link_facet_information runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_typed_link_facet_information immutable: true diff --git a/actions/clouddirectory_list_applied_schema_arns.yaml b/actions/clouddirectory_list_applied_schema_arns.yaml index b2f59502..37e093c6 100644 --- a/actions/clouddirectory_list_applied_schema_arns.yaml +++ b/actions/clouddirectory_list_applied_schema_arns.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_applied_schema_arns runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_applied_schema_arns immutable: true diff --git a/actions/clouddirectory_list_attached_indices.yaml b/actions/clouddirectory_list_attached_indices.yaml index 1ba1ae6c..9ded382e 100644 --- a/actions/clouddirectory_list_attached_indices.yaml +++ b/actions/clouddirectory_list_attached_indices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_attached_indices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_attached_indices immutable: true diff --git a/actions/clouddirectory_list_development_schema_arns.yaml b/actions/clouddirectory_list_development_schema_arns.yaml index 05954dcc..3a6c43a1 100644 --- a/actions/clouddirectory_list_development_schema_arns.yaml +++ b/actions/clouddirectory_list_development_schema_arns.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_development_schema_arns runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_development_schema_arns immutable: true diff --git a/actions/clouddirectory_list_directories.yaml b/actions/clouddirectory_list_directories.yaml index 1c2e13e3..5e81e084 100644 --- a/actions/clouddirectory_list_directories.yaml +++ b/actions/clouddirectory_list_directories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_directories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_directories immutable: true diff --git a/actions/clouddirectory_list_facet_attributes.yaml b/actions/clouddirectory_list_facet_attributes.yaml index ad493376..d7b549f2 100644 --- a/actions/clouddirectory_list_facet_attributes.yaml +++ b/actions/clouddirectory_list_facet_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_facet_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_facet_attributes immutable: true diff --git a/actions/clouddirectory_list_facet_names.yaml b/actions/clouddirectory_list_facet_names.yaml index 6b9f344c..da986a10 100644 --- a/actions/clouddirectory_list_facet_names.yaml +++ b/actions/clouddirectory_list_facet_names.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_facet_names runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_facet_names immutable: true diff --git a/actions/clouddirectory_list_incoming_typed_links.yaml b/actions/clouddirectory_list_incoming_typed_links.yaml index 21507ff3..8b771c44 100644 --- a/actions/clouddirectory_list_incoming_typed_links.yaml +++ b/actions/clouddirectory_list_incoming_typed_links.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_incoming_typed_links runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_incoming_typed_links immutable: true diff --git a/actions/clouddirectory_list_index.yaml b/actions/clouddirectory_list_index.yaml index cec41354..d6df5201 100644 --- a/actions/clouddirectory_list_index.yaml +++ b/actions/clouddirectory_list_index.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_index runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_index immutable: true diff --git a/actions/clouddirectory_list_object_attributes.yaml b/actions/clouddirectory_list_object_attributes.yaml index c85a6bd7..3082ad69 100644 --- a/actions/clouddirectory_list_object_attributes.yaml +++ b/actions/clouddirectory_list_object_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_object_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_object_attributes immutable: true diff --git a/actions/clouddirectory_list_object_children.yaml b/actions/clouddirectory_list_object_children.yaml index e1ec7e81..cdd9c387 100644 --- a/actions/clouddirectory_list_object_children.yaml +++ b/actions/clouddirectory_list_object_children.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_object_children runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_object_children immutable: true diff --git a/actions/clouddirectory_list_object_parent_paths.yaml b/actions/clouddirectory_list_object_parent_paths.yaml index c6bd05d4..497d1994 100644 --- a/actions/clouddirectory_list_object_parent_paths.yaml +++ b/actions/clouddirectory_list_object_parent_paths.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_object_parent_paths runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_object_parent_paths immutable: true diff --git a/actions/clouddirectory_list_object_parents.yaml b/actions/clouddirectory_list_object_parents.yaml index ca88af20..e3375ee2 100644 --- a/actions/clouddirectory_list_object_parents.yaml +++ b/actions/clouddirectory_list_object_parents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_object_parents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_object_parents immutable: true diff --git a/actions/clouddirectory_list_object_policies.yaml b/actions/clouddirectory_list_object_policies.yaml index a0ea9abc..506585b9 100644 --- a/actions/clouddirectory_list_object_policies.yaml +++ b/actions/clouddirectory_list_object_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_object_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_object_policies immutable: true diff --git a/actions/clouddirectory_list_outgoing_typed_links.yaml b/actions/clouddirectory_list_outgoing_typed_links.yaml index ba989e27..632b4b2e 100644 --- a/actions/clouddirectory_list_outgoing_typed_links.yaml +++ b/actions/clouddirectory_list_outgoing_typed_links.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_outgoing_typed_links runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_outgoing_typed_links immutable: true diff --git a/actions/clouddirectory_list_policy_attachments.yaml b/actions/clouddirectory_list_policy_attachments.yaml index 478c2ca7..0c834172 100644 --- a/actions/clouddirectory_list_policy_attachments.yaml +++ b/actions/clouddirectory_list_policy_attachments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_policy_attachments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policy_attachments immutable: true diff --git a/actions/clouddirectory_list_published_schema_arns.yaml b/actions/clouddirectory_list_published_schema_arns.yaml index 0922c026..22fc05ba 100644 --- a/actions/clouddirectory_list_published_schema_arns.yaml +++ b/actions/clouddirectory_list_published_schema_arns.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_published_schema_arns runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_published_schema_arns immutable: true diff --git a/actions/clouddirectory_list_tags_for_resource.yaml b/actions/clouddirectory_list_tags_for_resource.yaml index 5570090f..ab711c20 100644 --- a/actions/clouddirectory_list_tags_for_resource.yaml +++ b/actions/clouddirectory_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/clouddirectory_list_typed_link_facet_attributes.yaml b/actions/clouddirectory_list_typed_link_facet_attributes.yaml index 20ad3082..2772e70d 100644 --- a/actions/clouddirectory_list_typed_link_facet_attributes.yaml +++ b/actions/clouddirectory_list_typed_link_facet_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_typed_link_facet_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_typed_link_facet_attributes immutable: true diff --git a/actions/clouddirectory_list_typed_link_facet_names.yaml b/actions/clouddirectory_list_typed_link_facet_names.yaml index 481767de..6b41e3ac 100644 --- a/actions/clouddirectory_list_typed_link_facet_names.yaml +++ b/actions/clouddirectory_list_typed_link_facet_names.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_list_typed_link_facet_names runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_typed_link_facet_names immutable: true diff --git a/actions/clouddirectory_lookup_policy.yaml b/actions/clouddirectory_lookup_policy.yaml index 4793bcf0..77ed56d5 100644 --- a/actions/clouddirectory_lookup_policy.yaml +++ b/actions/clouddirectory_lookup_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_lookup_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: lookup_policy immutable: true diff --git a/actions/clouddirectory_publish_schema.yaml b/actions/clouddirectory_publish_schema.yaml index 84c0a0af..1ff73dd6 100644 --- a/actions/clouddirectory_publish_schema.yaml +++ b/actions/clouddirectory_publish_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_publish_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: publish_schema immutable: true diff --git a/actions/clouddirectory_put_schema_from_json.yaml b/actions/clouddirectory_put_schema_from_json.yaml index 5f2355b4..58c3fce0 100644 --- a/actions/clouddirectory_put_schema_from_json.yaml +++ b/actions/clouddirectory_put_schema_from_json.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_put_schema_from_json runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_schema_from_json immutable: true diff --git a/actions/clouddirectory_remove_facet_from_object.yaml b/actions/clouddirectory_remove_facet_from_object.yaml index 5d14625e..2b688b68 100644 --- a/actions/clouddirectory_remove_facet_from_object.yaml +++ b/actions/clouddirectory_remove_facet_from_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_remove_facet_from_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_facet_from_object immutable: true diff --git a/actions/clouddirectory_tag_resource.yaml b/actions/clouddirectory_tag_resource.yaml index 408a3118..32f463a1 100644 --- a/actions/clouddirectory_tag_resource.yaml +++ b/actions/clouddirectory_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/clouddirectory_untag_resource.yaml b/actions/clouddirectory_untag_resource.yaml index c489e272..3e650c41 100644 --- a/actions/clouddirectory_untag_resource.yaml +++ b/actions/clouddirectory_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/clouddirectory_update_facet.yaml b/actions/clouddirectory_update_facet.yaml index 94e30bc9..820656d0 100644 --- a/actions/clouddirectory_update_facet.yaml +++ b/actions/clouddirectory_update_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_update_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_facet immutable: true diff --git a/actions/clouddirectory_update_object_attributes.yaml b/actions/clouddirectory_update_object_attributes.yaml index 643bcf5b..bfc40ae6 100644 --- a/actions/clouddirectory_update_object_attributes.yaml +++ b/actions/clouddirectory_update_object_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_update_object_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_object_attributes immutable: true diff --git a/actions/clouddirectory_update_schema.yaml b/actions/clouddirectory_update_schema.yaml index 971a01ef..0ed1de8d 100644 --- a/actions/clouddirectory_update_schema.yaml +++ b/actions/clouddirectory_update_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_update_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_schema immutable: true diff --git a/actions/clouddirectory_update_typed_link_facet.yaml b/actions/clouddirectory_update_typed_link_facet.yaml index 81dafb2f..bd4b8c93 100644 --- a/actions/clouddirectory_update_typed_link_facet.yaml +++ b/actions/clouddirectory_update_typed_link_facet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: clouddirectory_update_typed_link_facet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_typed_link_facet immutable: true diff --git a/actions/cloudformation_cancel_update_stack.yaml b/actions/cloudformation_cancel_update_stack.yaml index 35c0cf04..bef243fd 100644 --- a/actions/cloudformation_cancel_update_stack.yaml +++ b/actions/cloudformation_cancel_update_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_cancel_update_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_update_stack immutable: true diff --git a/actions/cloudformation_continue_update_rollback.yaml b/actions/cloudformation_continue_update_rollback.yaml index 20f57964..5bae6c4e 100644 --- a/actions/cloudformation_continue_update_rollback.yaml +++ b/actions/cloudformation_continue_update_rollback.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_continue_update_rollback runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: continue_update_rollback immutable: true diff --git a/actions/cloudformation_create_change_set.yaml b/actions/cloudformation_create_change_set.yaml index 0008de99..7ce53a2b 100644 --- a/actions/cloudformation_create_change_set.yaml +++ b/actions/cloudformation_create_change_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_create_change_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_change_set immutable: true diff --git a/actions/cloudformation_create_stack.yaml b/actions/cloudformation_create_stack.yaml index b07912ff..55022f5e 100644 --- a/actions/cloudformation_create_stack.yaml +++ b/actions/cloudformation_create_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_create_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_stack immutable: true diff --git a/actions/cloudformation_delete_change_set.yaml b/actions/cloudformation_delete_change_set.yaml index 2b00d0f3..7e7dd852 100644 --- a/actions/cloudformation_delete_change_set.yaml +++ b/actions/cloudformation_delete_change_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_delete_change_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_change_set immutable: true diff --git a/actions/cloudformation_delete_stack.yaml b/actions/cloudformation_delete_stack.yaml index 37194381..22abe32d 100644 --- a/actions/cloudformation_delete_stack.yaml +++ b/actions/cloudformation_delete_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_delete_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_stack immutable: true diff --git a/actions/cloudformation_describe_account_limits.yaml b/actions/cloudformation_describe_account_limits.yaml index 1adf716e..560d5ea3 100644 --- a/actions/cloudformation_describe_account_limits.yaml +++ b/actions/cloudformation_describe_account_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_describe_account_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_limits immutable: true diff --git a/actions/cloudformation_describe_change_set.yaml b/actions/cloudformation_describe_change_set.yaml index 4d532917..496529f7 100644 --- a/actions/cloudformation_describe_change_set.yaml +++ b/actions/cloudformation_describe_change_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_describe_change_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_change_set immutable: true diff --git a/actions/cloudformation_describe_stack_events.yaml b/actions/cloudformation_describe_stack_events.yaml index 2c8a5816..25216127 100644 --- a/actions/cloudformation_describe_stack_events.yaml +++ b/actions/cloudformation_describe_stack_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_describe_stack_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_events immutable: true diff --git a/actions/cloudformation_describe_stack_resource.yaml b/actions/cloudformation_describe_stack_resource.yaml index c4ed5103..ae1fbe19 100644 --- a/actions/cloudformation_describe_stack_resource.yaml +++ b/actions/cloudformation_describe_stack_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_describe_stack_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_resource immutable: true diff --git a/actions/cloudformation_describe_stack_resources.yaml b/actions/cloudformation_describe_stack_resources.yaml index 2db979d8..59061e3c 100644 --- a/actions/cloudformation_describe_stack_resources.yaml +++ b/actions/cloudformation_describe_stack_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_describe_stack_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_resources immutable: true diff --git a/actions/cloudformation_describe_stacks.yaml b/actions/cloudformation_describe_stacks.yaml index c42f4a61..8ca61f91 100644 --- a/actions/cloudformation_describe_stacks.yaml +++ b/actions/cloudformation_describe_stacks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_describe_stacks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stacks immutable: true diff --git a/actions/cloudformation_estimate_template_cost.yaml b/actions/cloudformation_estimate_template_cost.yaml index dbce6e42..1f9b57a4 100644 --- a/actions/cloudformation_estimate_template_cost.yaml +++ b/actions/cloudformation_estimate_template_cost.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_estimate_template_cost runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: estimate_template_cost immutable: true diff --git a/actions/cloudformation_execute_change_set.yaml b/actions/cloudformation_execute_change_set.yaml index 65501723..41b30f0e 100644 --- a/actions/cloudformation_execute_change_set.yaml +++ b/actions/cloudformation_execute_change_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_execute_change_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: execute_change_set immutable: true diff --git a/actions/cloudformation_get_stack_policy.yaml b/actions/cloudformation_get_stack_policy.yaml index 6119d8f5..06c8eee9 100644 --- a/actions/cloudformation_get_stack_policy.yaml +++ b/actions/cloudformation_get_stack_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_get_stack_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_stack_policy immutable: true diff --git a/actions/cloudformation_get_template.yaml b/actions/cloudformation_get_template.yaml index 7eb26ce9..d4491ddd 100644 --- a/actions/cloudformation_get_template.yaml +++ b/actions/cloudformation_get_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_get_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_template immutable: true diff --git a/actions/cloudformation_get_template_summary.yaml b/actions/cloudformation_get_template_summary.yaml index 748b845e..cb6dc6d5 100644 --- a/actions/cloudformation_get_template_summary.yaml +++ b/actions/cloudformation_get_template_summary.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_get_template_summary runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_template_summary immutable: true diff --git a/actions/cloudformation_list_change_sets.yaml b/actions/cloudformation_list_change_sets.yaml index 3e924a58..f5092541 100644 --- a/actions/cloudformation_list_change_sets.yaml +++ b/actions/cloudformation_list_change_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_list_change_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_change_sets immutable: true diff --git a/actions/cloudformation_list_exports.yaml b/actions/cloudformation_list_exports.yaml index 2f89d074..2d7225f0 100644 --- a/actions/cloudformation_list_exports.yaml +++ b/actions/cloudformation_list_exports.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_list_exports runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_exports immutable: true diff --git a/actions/cloudformation_list_imports.yaml b/actions/cloudformation_list_imports.yaml index 09d1e5b3..2882baf9 100644 --- a/actions/cloudformation_list_imports.yaml +++ b/actions/cloudformation_list_imports.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_list_imports runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_imports immutable: true diff --git a/actions/cloudformation_list_stack_resources.yaml b/actions/cloudformation_list_stack_resources.yaml index 1794811d..96d08732 100644 --- a/actions/cloudformation_list_stack_resources.yaml +++ b/actions/cloudformation_list_stack_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_list_stack_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_stack_resources immutable: true diff --git a/actions/cloudformation_list_stacks.yaml b/actions/cloudformation_list_stacks.yaml index 199c4a71..42a45870 100644 --- a/actions/cloudformation_list_stacks.yaml +++ b/actions/cloudformation_list_stacks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_list_stacks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_stacks immutable: true diff --git a/actions/cloudformation_set_stack_policy.yaml b/actions/cloudformation_set_stack_policy.yaml index 5dc95c0b..8bb82efa 100644 --- a/actions/cloudformation_set_stack_policy.yaml +++ b/actions/cloudformation_set_stack_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_set_stack_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_stack_policy immutable: true diff --git a/actions/cloudformation_signal_resource.yaml b/actions/cloudformation_signal_resource.yaml index f1e6733d..309b4055 100644 --- a/actions/cloudformation_signal_resource.yaml +++ b/actions/cloudformation_signal_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_signal_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: signal_resource immutable: true diff --git a/actions/cloudformation_update_stack.yaml b/actions/cloudformation_update_stack.yaml index 906e7b35..d4e74c16 100644 --- a/actions/cloudformation_update_stack.yaml +++ b/actions/cloudformation_update_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_update_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_stack immutable: true diff --git a/actions/cloudformation_validate_template.yaml b/actions/cloudformation_validate_template.yaml index 78e31714..cd6737b0 100644 --- a/actions/cloudformation_validate_template.yaml +++ b/actions/cloudformation_validate_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudformation_validate_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: validate_template immutable: true diff --git a/actions/cloudfront_create_cloud_front_origin_access_identity.yaml b/actions/cloudfront_create_cloud_front_origin_access_identity.yaml index b57d964a..30c62812 100644 --- a/actions/cloudfront_create_cloud_front_origin_access_identity.yaml +++ b/actions/cloudfront_create_cloud_front_origin_access_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_create_cloud_front_origin_access_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cloud_front_origin_access_identity immutable: true diff --git a/actions/cloudfront_create_distribution.yaml b/actions/cloudfront_create_distribution.yaml index 12babdb7..7dc56b32 100644 --- a/actions/cloudfront_create_distribution.yaml +++ b/actions/cloudfront_create_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_create_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_distribution immutable: true diff --git a/actions/cloudfront_create_distribution_with_tags.yaml b/actions/cloudfront_create_distribution_with_tags.yaml index 3cddc8b5..b1b8204c 100644 --- a/actions/cloudfront_create_distribution_with_tags.yaml +++ b/actions/cloudfront_create_distribution_with_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_create_distribution_with_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_distribution_with_tags immutable: true diff --git a/actions/cloudfront_create_invalidation.yaml b/actions/cloudfront_create_invalidation.yaml index 3c698a91..bc1076ba 100644 --- a/actions/cloudfront_create_invalidation.yaml +++ b/actions/cloudfront_create_invalidation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_create_invalidation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_invalidation immutable: true diff --git a/actions/cloudfront_create_streaming_distribution.yaml b/actions/cloudfront_create_streaming_distribution.yaml index 4dbb566b..0c223b87 100644 --- a/actions/cloudfront_create_streaming_distribution.yaml +++ b/actions/cloudfront_create_streaming_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_create_streaming_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_streaming_distribution immutable: true diff --git a/actions/cloudfront_create_streaming_distribution_with_tags.yaml b/actions/cloudfront_create_streaming_distribution_with_tags.yaml index 53078b65..06f22307 100644 --- a/actions/cloudfront_create_streaming_distribution_with_tags.yaml +++ b/actions/cloudfront_create_streaming_distribution_with_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_create_streaming_distribution_with_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_streaming_distribution_with_tags immutable: true diff --git a/actions/cloudfront_delete_cloud_front_origin_access_identity.yaml b/actions/cloudfront_delete_cloud_front_origin_access_identity.yaml index 6c6031a9..94ee9aa2 100644 --- a/actions/cloudfront_delete_cloud_front_origin_access_identity.yaml +++ b/actions/cloudfront_delete_cloud_front_origin_access_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_delete_cloud_front_origin_access_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cloud_front_origin_access_identity immutable: true diff --git a/actions/cloudfront_delete_distribution.yaml b/actions/cloudfront_delete_distribution.yaml index f8cfef42..63926842 100644 --- a/actions/cloudfront_delete_distribution.yaml +++ b/actions/cloudfront_delete_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_delete_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_distribution immutable: true diff --git a/actions/cloudfront_delete_streaming_distribution.yaml b/actions/cloudfront_delete_streaming_distribution.yaml index 3698b48e..ad0fbf33 100644 --- a/actions/cloudfront_delete_streaming_distribution.yaml +++ b/actions/cloudfront_delete_streaming_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_delete_streaming_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_streaming_distribution immutable: true diff --git a/actions/cloudfront_get_cloud_front_origin_access_identity.yaml b/actions/cloudfront_get_cloud_front_origin_access_identity.yaml index 1c68f192..e1593db8 100644 --- a/actions/cloudfront_get_cloud_front_origin_access_identity.yaml +++ b/actions/cloudfront_get_cloud_front_origin_access_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_cloud_front_origin_access_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_cloud_front_origin_access_identity immutable: true diff --git a/actions/cloudfront_get_cloud_front_origin_access_identity_config.yaml b/actions/cloudfront_get_cloud_front_origin_access_identity_config.yaml index 79f71958..e06e43d5 100644 --- a/actions/cloudfront_get_cloud_front_origin_access_identity_config.yaml +++ b/actions/cloudfront_get_cloud_front_origin_access_identity_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_cloud_front_origin_access_identity_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_cloud_front_origin_access_identity_config immutable: true diff --git a/actions/cloudfront_get_distribution.yaml b/actions/cloudfront_get_distribution.yaml index 6f1deb75..1ba938f2 100644 --- a/actions/cloudfront_get_distribution.yaml +++ b/actions/cloudfront_get_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_distribution immutable: true diff --git a/actions/cloudfront_get_distribution_config.yaml b/actions/cloudfront_get_distribution_config.yaml index 38f18e4b..a4768dca 100644 --- a/actions/cloudfront_get_distribution_config.yaml +++ b/actions/cloudfront_get_distribution_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_distribution_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_distribution_config immutable: true diff --git a/actions/cloudfront_get_invalidation.yaml b/actions/cloudfront_get_invalidation.yaml index 540fbdef..f158e6af 100644 --- a/actions/cloudfront_get_invalidation.yaml +++ b/actions/cloudfront_get_invalidation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_invalidation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_invalidation immutable: true diff --git a/actions/cloudfront_get_streaming_distribution.yaml b/actions/cloudfront_get_streaming_distribution.yaml index d079e553..ac3c3343 100644 --- a/actions/cloudfront_get_streaming_distribution.yaml +++ b/actions/cloudfront_get_streaming_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_streaming_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_streaming_distribution immutable: true diff --git a/actions/cloudfront_get_streaming_distribution_config.yaml b/actions/cloudfront_get_streaming_distribution_config.yaml index aa6e3b52..049dfd46 100644 --- a/actions/cloudfront_get_streaming_distribution_config.yaml +++ b/actions/cloudfront_get_streaming_distribution_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_get_streaming_distribution_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_streaming_distribution_config immutable: true diff --git a/actions/cloudfront_list_cloud_front_origin_access_identities.yaml b/actions/cloudfront_list_cloud_front_origin_access_identities.yaml index 6cc6609e..bad2c4fe 100644 --- a/actions/cloudfront_list_cloud_front_origin_access_identities.yaml +++ b/actions/cloudfront_list_cloud_front_origin_access_identities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_list_cloud_front_origin_access_identities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_cloud_front_origin_access_identities immutable: true diff --git a/actions/cloudfront_list_distributions.yaml b/actions/cloudfront_list_distributions.yaml index 1fc7d268..8a1a582d 100644 --- a/actions/cloudfront_list_distributions.yaml +++ b/actions/cloudfront_list_distributions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_list_distributions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_distributions immutable: true diff --git a/actions/cloudfront_list_distributions_by_web_acl_id.yaml b/actions/cloudfront_list_distributions_by_web_acl_id.yaml index 9b411f19..97c77c2d 100644 --- a/actions/cloudfront_list_distributions_by_web_acl_id.yaml +++ b/actions/cloudfront_list_distributions_by_web_acl_id.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_list_distributions_by_web_acl_id runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_distributions_by_web_acl_id immutable: true diff --git a/actions/cloudfront_list_invalidations.yaml b/actions/cloudfront_list_invalidations.yaml index d894818c..6f440dd4 100644 --- a/actions/cloudfront_list_invalidations.yaml +++ b/actions/cloudfront_list_invalidations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_list_invalidations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_invalidations immutable: true diff --git a/actions/cloudfront_list_streaming_distributions.yaml b/actions/cloudfront_list_streaming_distributions.yaml index 51aeeb0d..1794f568 100644 --- a/actions/cloudfront_list_streaming_distributions.yaml +++ b/actions/cloudfront_list_streaming_distributions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_list_streaming_distributions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_streaming_distributions immutable: true diff --git a/actions/cloudfront_list_tags_for_resource.yaml b/actions/cloudfront_list_tags_for_resource.yaml index 955fed85..0916d0e6 100644 --- a/actions/cloudfront_list_tags_for_resource.yaml +++ b/actions/cloudfront_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/cloudfront_tag_resource.yaml b/actions/cloudfront_tag_resource.yaml index 123fba80..02996736 100644 --- a/actions/cloudfront_tag_resource.yaml +++ b/actions/cloudfront_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/cloudfront_untag_resource.yaml b/actions/cloudfront_untag_resource.yaml index 9a30b3e1..a97ac5cc 100644 --- a/actions/cloudfront_untag_resource.yaml +++ b/actions/cloudfront_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/cloudfront_update_cloud_front_origin_access_identity.yaml b/actions/cloudfront_update_cloud_front_origin_access_identity.yaml index b961128f..b8c7a51e 100644 --- a/actions/cloudfront_update_cloud_front_origin_access_identity.yaml +++ b/actions/cloudfront_update_cloud_front_origin_access_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_update_cloud_front_origin_access_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_cloud_front_origin_access_identity immutable: true diff --git a/actions/cloudfront_update_distribution.yaml b/actions/cloudfront_update_distribution.yaml index 91b26fc2..9b698d34 100644 --- a/actions/cloudfront_update_distribution.yaml +++ b/actions/cloudfront_update_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_update_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_distribution immutable: true diff --git a/actions/cloudfront_update_streaming_distribution.yaml b/actions/cloudfront_update_streaming_distribution.yaml index a7c06dbd..3e4eb14f 100644 --- a/actions/cloudfront_update_streaming_distribution.yaml +++ b/actions/cloudfront_update_streaming_distribution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudfront_update_streaming_distribution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_streaming_distribution immutable: true diff --git a/actions/cloudhsm_add_tags_to_resource.yaml b/actions/cloudhsm_add_tags_to_resource.yaml index ec90ed0f..fb0d3c43 100644 --- a/actions/cloudhsm_add_tags_to_resource.yaml +++ b/actions/cloudhsm_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/cloudhsm_create_hapg.yaml b/actions/cloudhsm_create_hapg.yaml index 5c4c2ad2..abd8def6 100644 --- a/actions/cloudhsm_create_hapg.yaml +++ b/actions/cloudhsm_create_hapg.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_create_hapg runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hapg immutable: true diff --git a/actions/cloudhsm_create_hsm.yaml b/actions/cloudhsm_create_hsm.yaml index aa9869a6..64b08a9f 100644 --- a/actions/cloudhsm_create_hsm.yaml +++ b/actions/cloudhsm_create_hsm.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_create_hsm runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hsm immutable: true diff --git a/actions/cloudhsm_create_luna_client.yaml b/actions/cloudhsm_create_luna_client.yaml index 23033609..726000c8 100644 --- a/actions/cloudhsm_create_luna_client.yaml +++ b/actions/cloudhsm_create_luna_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_create_luna_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_luna_client immutable: true diff --git a/actions/cloudhsm_delete_hapg.yaml b/actions/cloudhsm_delete_hapg.yaml index 22aede3b..365f7358 100644 --- a/actions/cloudhsm_delete_hapg.yaml +++ b/actions/cloudhsm_delete_hapg.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_delete_hapg runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_hapg immutable: true diff --git a/actions/cloudhsm_delete_hsm.yaml b/actions/cloudhsm_delete_hsm.yaml index 64750bdb..e1061324 100644 --- a/actions/cloudhsm_delete_hsm.yaml +++ b/actions/cloudhsm_delete_hsm.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_delete_hsm runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_hsm immutable: true diff --git a/actions/cloudhsm_delete_luna_client.yaml b/actions/cloudhsm_delete_luna_client.yaml index 27be3d82..4ffecb32 100644 --- a/actions/cloudhsm_delete_luna_client.yaml +++ b/actions/cloudhsm_delete_luna_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_delete_luna_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_luna_client immutable: true diff --git a/actions/cloudhsm_describe_hapg.yaml b/actions/cloudhsm_describe_hapg.yaml index b79176ae..6b3110d1 100644 --- a/actions/cloudhsm_describe_hapg.yaml +++ b/actions/cloudhsm_describe_hapg.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_describe_hapg runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_hapg immutable: true diff --git a/actions/cloudhsm_describe_hsm.yaml b/actions/cloudhsm_describe_hsm.yaml index 6187cad7..7b71fd98 100644 --- a/actions/cloudhsm_describe_hsm.yaml +++ b/actions/cloudhsm_describe_hsm.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_describe_hsm runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_hsm immutable: true diff --git a/actions/cloudhsm_describe_luna_client.yaml b/actions/cloudhsm_describe_luna_client.yaml index 2c09d3df..050ed359 100644 --- a/actions/cloudhsm_describe_luna_client.yaml +++ b/actions/cloudhsm_describe_luna_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_describe_luna_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_luna_client immutable: true diff --git a/actions/cloudhsm_get_config.yaml b/actions/cloudhsm_get_config.yaml index 6eec2a5f..f9a8d961 100644 --- a/actions/cloudhsm_get_config.yaml +++ b/actions/cloudhsm_get_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_get_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_config immutable: true diff --git a/actions/cloudhsm_list_available_zones.yaml b/actions/cloudhsm_list_available_zones.yaml index 83447e9c..02894279 100644 --- a/actions/cloudhsm_list_available_zones.yaml +++ b/actions/cloudhsm_list_available_zones.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_list_available_zones runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_available_zones immutable: true diff --git a/actions/cloudhsm_list_hapgs.yaml b/actions/cloudhsm_list_hapgs.yaml index 9e5c5f03..9df02f42 100644 --- a/actions/cloudhsm_list_hapgs.yaml +++ b/actions/cloudhsm_list_hapgs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_list_hapgs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_hapgs immutable: true diff --git a/actions/cloudhsm_list_hsms.yaml b/actions/cloudhsm_list_hsms.yaml index 65251235..c5afa217 100644 --- a/actions/cloudhsm_list_hsms.yaml +++ b/actions/cloudhsm_list_hsms.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_list_hsms runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_hsms immutable: true diff --git a/actions/cloudhsm_list_luna_clients.yaml b/actions/cloudhsm_list_luna_clients.yaml index 442bb263..9e972198 100644 --- a/actions/cloudhsm_list_luna_clients.yaml +++ b/actions/cloudhsm_list_luna_clients.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_list_luna_clients runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_luna_clients immutable: true diff --git a/actions/cloudhsm_list_tags_for_resource.yaml b/actions/cloudhsm_list_tags_for_resource.yaml index 513479eb..6740eca9 100644 --- a/actions/cloudhsm_list_tags_for_resource.yaml +++ b/actions/cloudhsm_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/cloudhsm_modify_hapg.yaml b/actions/cloudhsm_modify_hapg.yaml index f3a6ec8a..f5fb9c2b 100644 --- a/actions/cloudhsm_modify_hapg.yaml +++ b/actions/cloudhsm_modify_hapg.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_modify_hapg runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_hapg immutable: true diff --git a/actions/cloudhsm_modify_hsm.yaml b/actions/cloudhsm_modify_hsm.yaml index 090456fa..5305a3dc 100644 --- a/actions/cloudhsm_modify_hsm.yaml +++ b/actions/cloudhsm_modify_hsm.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_modify_hsm runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_hsm immutable: true diff --git a/actions/cloudhsm_modify_luna_client.yaml b/actions/cloudhsm_modify_luna_client.yaml index 3b6e87f3..6dc88bb4 100644 --- a/actions/cloudhsm_modify_luna_client.yaml +++ b/actions/cloudhsm_modify_luna_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_modify_luna_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_luna_client immutable: true diff --git a/actions/cloudhsm_remove_tags_from_resource.yaml b/actions/cloudhsm_remove_tags_from_resource.yaml index 0b1261bd..f636a5c1 100644 --- a/actions/cloudhsm_remove_tags_from_resource.yaml +++ b/actions/cloudhsm_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudhsm_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/cloudsearch_build_suggesters.yaml b/actions/cloudsearch_build_suggesters.yaml index c059dcd5..05c75fcc 100644 --- a/actions/cloudsearch_build_suggesters.yaml +++ b/actions/cloudsearch_build_suggesters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_build_suggesters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: build_suggesters immutable: true diff --git a/actions/cloudsearch_create_domain.yaml b/actions/cloudsearch_create_domain.yaml index 50502fca..23d1a016 100644 --- a/actions/cloudsearch_create_domain.yaml +++ b/actions/cloudsearch_create_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_create_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_domain immutable: true diff --git a/actions/cloudsearch_define_analysis_scheme.yaml b/actions/cloudsearch_define_analysis_scheme.yaml index ddc68d1a..593f9c80 100644 --- a/actions/cloudsearch_define_analysis_scheme.yaml +++ b/actions/cloudsearch_define_analysis_scheme.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_define_analysis_scheme runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: define_analysis_scheme immutable: true diff --git a/actions/cloudsearch_define_expression.yaml b/actions/cloudsearch_define_expression.yaml index 768bbd1b..57cf91ef 100644 --- a/actions/cloudsearch_define_expression.yaml +++ b/actions/cloudsearch_define_expression.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_define_expression runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: define_expression immutable: true diff --git a/actions/cloudsearch_define_index_field.yaml b/actions/cloudsearch_define_index_field.yaml index 26c94815..0ea32afd 100644 --- a/actions/cloudsearch_define_index_field.yaml +++ b/actions/cloudsearch_define_index_field.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_define_index_field runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: define_index_field immutable: true diff --git a/actions/cloudsearch_define_suggester.yaml b/actions/cloudsearch_define_suggester.yaml index 57b1c958..fe46c876 100644 --- a/actions/cloudsearch_define_suggester.yaml +++ b/actions/cloudsearch_define_suggester.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_define_suggester runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: define_suggester immutable: true diff --git a/actions/cloudsearch_delete_analysis_scheme.yaml b/actions/cloudsearch_delete_analysis_scheme.yaml index 8ae30396..94ca03fd 100644 --- a/actions/cloudsearch_delete_analysis_scheme.yaml +++ b/actions/cloudsearch_delete_analysis_scheme.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_delete_analysis_scheme runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_analysis_scheme immutable: true diff --git a/actions/cloudsearch_delete_domain.yaml b/actions/cloudsearch_delete_domain.yaml index 94a19077..6f1776b9 100644 --- a/actions/cloudsearch_delete_domain.yaml +++ b/actions/cloudsearch_delete_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_delete_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_domain immutable: true diff --git a/actions/cloudsearch_delete_expression.yaml b/actions/cloudsearch_delete_expression.yaml index cc3b0c3f..7091222d 100644 --- a/actions/cloudsearch_delete_expression.yaml +++ b/actions/cloudsearch_delete_expression.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_delete_expression runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_expression immutable: true diff --git a/actions/cloudsearch_delete_index_field.yaml b/actions/cloudsearch_delete_index_field.yaml index 5b1bb555..31e9c15e 100644 --- a/actions/cloudsearch_delete_index_field.yaml +++ b/actions/cloudsearch_delete_index_field.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_delete_index_field runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_index_field immutable: true diff --git a/actions/cloudsearch_delete_suggester.yaml b/actions/cloudsearch_delete_suggester.yaml index dec5be5b..17bf7272 100644 --- a/actions/cloudsearch_delete_suggester.yaml +++ b/actions/cloudsearch_delete_suggester.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_delete_suggester runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_suggester immutable: true diff --git a/actions/cloudsearch_describe_analysis_schemes.yaml b/actions/cloudsearch_describe_analysis_schemes.yaml index 388f0cb4..9182d370 100644 --- a/actions/cloudsearch_describe_analysis_schemes.yaml +++ b/actions/cloudsearch_describe_analysis_schemes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_analysis_schemes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_analysis_schemes immutable: true diff --git a/actions/cloudsearch_describe_availability_options.yaml b/actions/cloudsearch_describe_availability_options.yaml index a1292f36..0095edc4 100644 --- a/actions/cloudsearch_describe_availability_options.yaml +++ b/actions/cloudsearch_describe_availability_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_availability_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_availability_options immutable: true diff --git a/actions/cloudsearch_describe_domains.yaml b/actions/cloudsearch_describe_domains.yaml index 2636358d..4e09cf5e 100644 --- a/actions/cloudsearch_describe_domains.yaml +++ b/actions/cloudsearch_describe_domains.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_domains runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_domains immutable: true diff --git a/actions/cloudsearch_describe_expressions.yaml b/actions/cloudsearch_describe_expressions.yaml index 445e37e8..b311a693 100644 --- a/actions/cloudsearch_describe_expressions.yaml +++ b/actions/cloudsearch_describe_expressions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_expressions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_expressions immutable: true diff --git a/actions/cloudsearch_describe_index_fields.yaml b/actions/cloudsearch_describe_index_fields.yaml index c1c36f12..1337c6ab 100644 --- a/actions/cloudsearch_describe_index_fields.yaml +++ b/actions/cloudsearch_describe_index_fields.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_index_fields runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_index_fields immutable: true diff --git a/actions/cloudsearch_describe_scaling_parameters.yaml b/actions/cloudsearch_describe_scaling_parameters.yaml index 3f9454fb..a217892e 100644 --- a/actions/cloudsearch_describe_scaling_parameters.yaml +++ b/actions/cloudsearch_describe_scaling_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_scaling_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scaling_parameters immutable: true diff --git a/actions/cloudsearch_describe_service_access_policies.yaml b/actions/cloudsearch_describe_service_access_policies.yaml index 4b851f05..c74915f7 100644 --- a/actions/cloudsearch_describe_service_access_policies.yaml +++ b/actions/cloudsearch_describe_service_access_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_service_access_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_service_access_policies immutable: true diff --git a/actions/cloudsearch_describe_suggesters.yaml b/actions/cloudsearch_describe_suggesters.yaml index 75977507..7f66ad61 100644 --- a/actions/cloudsearch_describe_suggesters.yaml +++ b/actions/cloudsearch_describe_suggesters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_describe_suggesters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_suggesters immutable: true diff --git a/actions/cloudsearch_index_documents.yaml b/actions/cloudsearch_index_documents.yaml index b09b19bb..bd0e8647 100644 --- a/actions/cloudsearch_index_documents.yaml +++ b/actions/cloudsearch_index_documents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_index_documents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: index_documents immutable: true diff --git a/actions/cloudsearch_update_availability_options.yaml b/actions/cloudsearch_update_availability_options.yaml index 12602e07..b0261b40 100644 --- a/actions/cloudsearch_update_availability_options.yaml +++ b/actions/cloudsearch_update_availability_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_update_availability_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_availability_options immutable: true diff --git a/actions/cloudsearch_update_scaling_parameters.yaml b/actions/cloudsearch_update_scaling_parameters.yaml index 5363ea65..98f71022 100644 --- a/actions/cloudsearch_update_scaling_parameters.yaml +++ b/actions/cloudsearch_update_scaling_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_update_scaling_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_scaling_parameters immutable: true diff --git a/actions/cloudsearch_update_service_access_policies.yaml b/actions/cloudsearch_update_service_access_policies.yaml index 339637c2..1fb4e0ee 100644 --- a/actions/cloudsearch_update_service_access_policies.yaml +++ b/actions/cloudsearch_update_service_access_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearch_update_service_access_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_service_access_policies immutable: true diff --git a/actions/cloudsearchdomain_search.yaml b/actions/cloudsearchdomain_search.yaml index d0622f8e..c976d29b 100644 --- a/actions/cloudsearchdomain_search.yaml +++ b/actions/cloudsearchdomain_search.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearchdomain_search runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: search immutable: true diff --git a/actions/cloudsearchdomain_suggest.yaml b/actions/cloudsearchdomain_suggest.yaml index c0ed7628..7a395b8d 100644 --- a/actions/cloudsearchdomain_suggest.yaml +++ b/actions/cloudsearchdomain_suggest.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearchdomain_suggest runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: suggest immutable: true diff --git a/actions/cloudsearchdomain_upload_documents.yaml b/actions/cloudsearchdomain_upload_documents.yaml index 2b1624f9..2e091ae4 100644 --- a/actions/cloudsearchdomain_upload_documents.yaml +++ b/actions/cloudsearchdomain_upload_documents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudsearchdomain_upload_documents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_documents immutable: true diff --git a/actions/cloudtrail_add_tags.yaml b/actions/cloudtrail_add_tags.yaml index b4c38fee..60984681 100644 --- a/actions/cloudtrail_add_tags.yaml +++ b/actions/cloudtrail_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/cloudtrail_create_trail.yaml b/actions/cloudtrail_create_trail.yaml index 5da011e3..9a9e206c 100644 --- a/actions/cloudtrail_create_trail.yaml +++ b/actions/cloudtrail_create_trail.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_create_trail runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_trail immutable: true diff --git a/actions/cloudtrail_delete_trail.yaml b/actions/cloudtrail_delete_trail.yaml index 8dabdac8..037fb5c8 100644 --- a/actions/cloudtrail_delete_trail.yaml +++ b/actions/cloudtrail_delete_trail.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_delete_trail runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_trail immutable: true diff --git a/actions/cloudtrail_describe_trails.yaml b/actions/cloudtrail_describe_trails.yaml index b48f6f95..7d78d3f3 100644 --- a/actions/cloudtrail_describe_trails.yaml +++ b/actions/cloudtrail_describe_trails.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_describe_trails runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_trails immutable: true diff --git a/actions/cloudtrail_get_event_selectors.yaml b/actions/cloudtrail_get_event_selectors.yaml index ede3bd0e..384d03e4 100644 --- a/actions/cloudtrail_get_event_selectors.yaml +++ b/actions/cloudtrail_get_event_selectors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_get_event_selectors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_event_selectors immutable: true diff --git a/actions/cloudtrail_get_trail_status.yaml b/actions/cloudtrail_get_trail_status.yaml index fe0c7cff..47649387 100644 --- a/actions/cloudtrail_get_trail_status.yaml +++ b/actions/cloudtrail_get_trail_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_get_trail_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_trail_status immutable: true diff --git a/actions/cloudtrail_list_public_keys.yaml b/actions/cloudtrail_list_public_keys.yaml index d0f15e32..0a066d3d 100644 --- a/actions/cloudtrail_list_public_keys.yaml +++ b/actions/cloudtrail_list_public_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_list_public_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_public_keys immutable: true diff --git a/actions/cloudtrail_list_tags.yaml b/actions/cloudtrail_list_tags.yaml index a185e9d5..4e99da0c 100644 --- a/actions/cloudtrail_list_tags.yaml +++ b/actions/cloudtrail_list_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_list_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags immutable: true diff --git a/actions/cloudtrail_lookup_events.yaml b/actions/cloudtrail_lookup_events.yaml index d842f6e2..64f59e6f 100644 --- a/actions/cloudtrail_lookup_events.yaml +++ b/actions/cloudtrail_lookup_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_lookup_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: lookup_events immutable: true diff --git a/actions/cloudtrail_put_event_selectors.yaml b/actions/cloudtrail_put_event_selectors.yaml index a1b84cf4..09738cb3 100644 --- a/actions/cloudtrail_put_event_selectors.yaml +++ b/actions/cloudtrail_put_event_selectors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_put_event_selectors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_event_selectors immutable: true diff --git a/actions/cloudtrail_remove_tags.yaml b/actions/cloudtrail_remove_tags.yaml index f2cd6252..6610cb86 100644 --- a/actions/cloudtrail_remove_tags.yaml +++ b/actions/cloudtrail_remove_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_remove_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags immutable: true diff --git a/actions/cloudtrail_start_logging.yaml b/actions/cloudtrail_start_logging.yaml index d043c285..4b572d22 100644 --- a/actions/cloudtrail_start_logging.yaml +++ b/actions/cloudtrail_start_logging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_start_logging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_logging immutable: true diff --git a/actions/cloudtrail_stop_logging.yaml b/actions/cloudtrail_stop_logging.yaml index 19df7a1a..fa3db854 100644 --- a/actions/cloudtrail_stop_logging.yaml +++ b/actions/cloudtrail_stop_logging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_stop_logging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_logging immutable: true diff --git a/actions/cloudtrail_update_trail.yaml b/actions/cloudtrail_update_trail.yaml index b0a029a9..59648e3e 100644 --- a/actions/cloudtrail_update_trail.yaml +++ b/actions/cloudtrail_update_trail.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudtrail_update_trail runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_trail immutable: true diff --git a/actions/cloudwatch_delete_alarms.yaml b/actions/cloudwatch_delete_alarms.yaml index a7108183..e4e71169 100644 --- a/actions/cloudwatch_delete_alarms.yaml +++ b/actions/cloudwatch_delete_alarms.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_delete_alarms runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_alarms immutable: true diff --git a/actions/cloudwatch_describe_alarm_history.yaml b/actions/cloudwatch_describe_alarm_history.yaml index b51ab0eb..0205dac7 100644 --- a/actions/cloudwatch_describe_alarm_history.yaml +++ b/actions/cloudwatch_describe_alarm_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_describe_alarm_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_alarm_history immutable: true diff --git a/actions/cloudwatch_describe_alarms.yaml b/actions/cloudwatch_describe_alarms.yaml index d541470d..40306c4c 100644 --- a/actions/cloudwatch_describe_alarms.yaml +++ b/actions/cloudwatch_describe_alarms.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_describe_alarms runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_alarms immutable: true diff --git a/actions/cloudwatch_describe_alarms_for_metric.yaml b/actions/cloudwatch_describe_alarms_for_metric.yaml index 9a135fa6..9805540c 100644 --- a/actions/cloudwatch_describe_alarms_for_metric.yaml +++ b/actions/cloudwatch_describe_alarms_for_metric.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_describe_alarms_for_metric runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_alarms_for_metric immutable: true diff --git a/actions/cloudwatch_disable_alarm_actions.yaml b/actions/cloudwatch_disable_alarm_actions.yaml index 29234e27..5ff588c9 100644 --- a/actions/cloudwatch_disable_alarm_actions.yaml +++ b/actions/cloudwatch_disable_alarm_actions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_disable_alarm_actions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_alarm_actions immutable: true diff --git a/actions/cloudwatch_enable_alarm_actions.yaml b/actions/cloudwatch_enable_alarm_actions.yaml index 52213950..4956b275 100644 --- a/actions/cloudwatch_enable_alarm_actions.yaml +++ b/actions/cloudwatch_enable_alarm_actions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_enable_alarm_actions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_alarm_actions immutable: true diff --git a/actions/cloudwatch_get_metric_statistics.yaml b/actions/cloudwatch_get_metric_statistics.yaml index 6874b0e0..9bc71266 100644 --- a/actions/cloudwatch_get_metric_statistics.yaml +++ b/actions/cloudwatch_get_metric_statistics.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_get_metric_statistics runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_metric_statistics immutable: true diff --git a/actions/cloudwatch_list_metrics.yaml b/actions/cloudwatch_list_metrics.yaml index ec39b57a..7443ae37 100644 --- a/actions/cloudwatch_list_metrics.yaml +++ b/actions/cloudwatch_list_metrics.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_list_metrics runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_metrics immutable: true diff --git a/actions/cloudwatch_put_metric_alarm.yaml b/actions/cloudwatch_put_metric_alarm.yaml index 905f31ed..e7032aee 100644 --- a/actions/cloudwatch_put_metric_alarm.yaml +++ b/actions/cloudwatch_put_metric_alarm.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_put_metric_alarm runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_metric_alarm immutable: true diff --git a/actions/cloudwatch_put_metric_data.yaml b/actions/cloudwatch_put_metric_data.yaml index 1075d1ac..deba1876 100644 --- a/actions/cloudwatch_put_metric_data.yaml +++ b/actions/cloudwatch_put_metric_data.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_put_metric_data runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_metric_data immutable: true diff --git a/actions/cloudwatch_set_alarm_state.yaml b/actions/cloudwatch_set_alarm_state.yaml index 21587f36..de8f3b36 100644 --- a/actions/cloudwatch_set_alarm_state.yaml +++ b/actions/cloudwatch_set_alarm_state.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cloudwatch_set_alarm_state runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_alarm_state immutable: true diff --git a/actions/codebuild_batch_get_builds.yaml b/actions/codebuild_batch_get_builds.yaml index 19a7b22d..02500030 100644 --- a/actions/codebuild_batch_get_builds.yaml +++ b/actions/codebuild_batch_get_builds.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_batch_get_builds runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_builds immutable: true diff --git a/actions/codebuild_batch_get_projects.yaml b/actions/codebuild_batch_get_projects.yaml index ddc471a9..674a9c97 100644 --- a/actions/codebuild_batch_get_projects.yaml +++ b/actions/codebuild_batch_get_projects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_batch_get_projects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_projects immutable: true diff --git a/actions/codebuild_create_project.yaml b/actions/codebuild_create_project.yaml index b789a8bd..0298f8c9 100644 --- a/actions/codebuild_create_project.yaml +++ b/actions/codebuild_create_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_create_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_project immutable: true diff --git a/actions/codebuild_delete_project.yaml b/actions/codebuild_delete_project.yaml index bfdf6b1e..2e13cfa5 100644 --- a/actions/codebuild_delete_project.yaml +++ b/actions/codebuild_delete_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_delete_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_project immutable: true diff --git a/actions/codebuild_list_builds.yaml b/actions/codebuild_list_builds.yaml index 6410a452..7def27f7 100644 --- a/actions/codebuild_list_builds.yaml +++ b/actions/codebuild_list_builds.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_list_builds runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_builds immutable: true diff --git a/actions/codebuild_list_builds_for_project.yaml b/actions/codebuild_list_builds_for_project.yaml index 7a3157a1..726b7586 100644 --- a/actions/codebuild_list_builds_for_project.yaml +++ b/actions/codebuild_list_builds_for_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_list_builds_for_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_builds_for_project immutable: true diff --git a/actions/codebuild_list_curated_environment_images.yaml b/actions/codebuild_list_curated_environment_images.yaml index 7da45a7c..5d0adc1b 100644 --- a/actions/codebuild_list_curated_environment_images.yaml +++ b/actions/codebuild_list_curated_environment_images.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_list_curated_environment_images runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_curated_environment_images immutable: true diff --git a/actions/codebuild_list_projects.yaml b/actions/codebuild_list_projects.yaml index 432c5a3e..7d0eaf03 100644 --- a/actions/codebuild_list_projects.yaml +++ b/actions/codebuild_list_projects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_list_projects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_projects immutable: true diff --git a/actions/codebuild_start_build.yaml b/actions/codebuild_start_build.yaml index 8d8b4c6f..d92f8c2a 100644 --- a/actions/codebuild_start_build.yaml +++ b/actions/codebuild_start_build.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_start_build runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_build immutable: true diff --git a/actions/codebuild_stop_build.yaml b/actions/codebuild_stop_build.yaml index f8ebd55d..ebc66106 100644 --- a/actions/codebuild_stop_build.yaml +++ b/actions/codebuild_stop_build.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_stop_build runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_build immutable: true diff --git a/actions/codebuild_update_project.yaml b/actions/codebuild_update_project.yaml index f23094f2..ec6090f0 100644 --- a/actions/codebuild_update_project.yaml +++ b/actions/codebuild_update_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codebuild_update_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_project immutable: true diff --git a/actions/codecommit_batch_get_repositories.yaml b/actions/codecommit_batch_get_repositories.yaml index 1d31ff58..2fb27481 100644 --- a/actions/codecommit_batch_get_repositories.yaml +++ b/actions/codecommit_batch_get_repositories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_batch_get_repositories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_repositories immutable: true diff --git a/actions/codecommit_create_branch.yaml b/actions/codecommit_create_branch.yaml index df812fd5..30c40e0c 100644 --- a/actions/codecommit_create_branch.yaml +++ b/actions/codecommit_create_branch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_create_branch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_branch immutable: true diff --git a/actions/codecommit_create_repository.yaml b/actions/codecommit_create_repository.yaml index a9cf0801..e2625dde 100644 --- a/actions/codecommit_create_repository.yaml +++ b/actions/codecommit_create_repository.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_create_repository runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_repository immutable: true diff --git a/actions/codecommit_delete_repository.yaml b/actions/codecommit_delete_repository.yaml index 440aa64e..848248ad 100644 --- a/actions/codecommit_delete_repository.yaml +++ b/actions/codecommit_delete_repository.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_delete_repository runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_repository immutable: true diff --git a/actions/codecommit_get_blob.yaml b/actions/codecommit_get_blob.yaml index 13758d08..9330ec51 100644 --- a/actions/codecommit_get_blob.yaml +++ b/actions/codecommit_get_blob.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_get_blob runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_blob immutable: true diff --git a/actions/codecommit_get_branch.yaml b/actions/codecommit_get_branch.yaml index 84872eb0..f9011caa 100644 --- a/actions/codecommit_get_branch.yaml +++ b/actions/codecommit_get_branch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_get_branch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_branch immutable: true diff --git a/actions/codecommit_get_commit.yaml b/actions/codecommit_get_commit.yaml index f2709ff0..b9402a72 100644 --- a/actions/codecommit_get_commit.yaml +++ b/actions/codecommit_get_commit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_get_commit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_commit immutable: true diff --git a/actions/codecommit_get_differences.yaml b/actions/codecommit_get_differences.yaml index 36743b90..36d1ac9d 100644 --- a/actions/codecommit_get_differences.yaml +++ b/actions/codecommit_get_differences.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_get_differences runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_differences immutable: true diff --git a/actions/codecommit_get_repository.yaml b/actions/codecommit_get_repository.yaml index b19edc47..073e35a1 100644 --- a/actions/codecommit_get_repository.yaml +++ b/actions/codecommit_get_repository.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_get_repository runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_repository immutable: true diff --git a/actions/codecommit_get_repository_triggers.yaml b/actions/codecommit_get_repository_triggers.yaml index 3a6b0b4d..c76cef99 100644 --- a/actions/codecommit_get_repository_triggers.yaml +++ b/actions/codecommit_get_repository_triggers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_get_repository_triggers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_repository_triggers immutable: true diff --git a/actions/codecommit_list_branches.yaml b/actions/codecommit_list_branches.yaml index 8f7c613e..ed7bc799 100644 --- a/actions/codecommit_list_branches.yaml +++ b/actions/codecommit_list_branches.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_list_branches runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_branches immutable: true diff --git a/actions/codecommit_list_repositories.yaml b/actions/codecommit_list_repositories.yaml index 5e316672..3a56da91 100644 --- a/actions/codecommit_list_repositories.yaml +++ b/actions/codecommit_list_repositories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_list_repositories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_repositories immutable: true diff --git a/actions/codecommit_put_repository_triggers.yaml b/actions/codecommit_put_repository_triggers.yaml index aa4bb59f..cd6e965c 100644 --- a/actions/codecommit_put_repository_triggers.yaml +++ b/actions/codecommit_put_repository_triggers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_put_repository_triggers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_repository_triggers immutable: true diff --git a/actions/codecommit_test_repository_triggers.yaml b/actions/codecommit_test_repository_triggers.yaml index 18a87f03..57aea725 100644 --- a/actions/codecommit_test_repository_triggers.yaml +++ b/actions/codecommit_test_repository_triggers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_test_repository_triggers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_repository_triggers immutable: true diff --git a/actions/codecommit_update_default_branch.yaml b/actions/codecommit_update_default_branch.yaml index f16b4298..b6419c46 100644 --- a/actions/codecommit_update_default_branch.yaml +++ b/actions/codecommit_update_default_branch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_update_default_branch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_default_branch immutable: true diff --git a/actions/codecommit_update_repository_description.yaml b/actions/codecommit_update_repository_description.yaml index 58dacce9..b46c2ba1 100644 --- a/actions/codecommit_update_repository_description.yaml +++ b/actions/codecommit_update_repository_description.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_update_repository_description runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_repository_description immutable: true diff --git a/actions/codecommit_update_repository_name.yaml b/actions/codecommit_update_repository_name.yaml index b2a2be41..a4f77a74 100644 --- a/actions/codecommit_update_repository_name.yaml +++ b/actions/codecommit_update_repository_name.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codecommit_update_repository_name runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_repository_name immutable: true diff --git a/actions/codedeploy_add_tags_to_on_premises_instances.yaml b/actions/codedeploy_add_tags_to_on_premises_instances.yaml index 5d6578a1..6774b6ee 100644 --- a/actions/codedeploy_add_tags_to_on_premises_instances.yaml +++ b/actions/codedeploy_add_tags_to_on_premises_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_add_tags_to_on_premises_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_on_premises_instances immutable: true diff --git a/actions/codedeploy_batch_get_application_revisions.yaml b/actions/codedeploy_batch_get_application_revisions.yaml index cc582e4b..c3dd1b1e 100644 --- a/actions/codedeploy_batch_get_application_revisions.yaml +++ b/actions/codedeploy_batch_get_application_revisions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_batch_get_application_revisions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_application_revisions immutable: true diff --git a/actions/codedeploy_batch_get_applications.yaml b/actions/codedeploy_batch_get_applications.yaml index c8a8748c..298fee76 100644 --- a/actions/codedeploy_batch_get_applications.yaml +++ b/actions/codedeploy_batch_get_applications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_batch_get_applications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_applications immutable: true diff --git a/actions/codedeploy_batch_get_deployment_groups.yaml b/actions/codedeploy_batch_get_deployment_groups.yaml index c610cfea..cfcd0873 100644 --- a/actions/codedeploy_batch_get_deployment_groups.yaml +++ b/actions/codedeploy_batch_get_deployment_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_batch_get_deployment_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_deployment_groups immutable: true diff --git a/actions/codedeploy_batch_get_deployment_instances.yaml b/actions/codedeploy_batch_get_deployment_instances.yaml index acea3364..c1cdb9bf 100644 --- a/actions/codedeploy_batch_get_deployment_instances.yaml +++ b/actions/codedeploy_batch_get_deployment_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_batch_get_deployment_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_deployment_instances immutable: true diff --git a/actions/codedeploy_batch_get_deployments.yaml b/actions/codedeploy_batch_get_deployments.yaml index 66c7d21f..1dd079de 100644 --- a/actions/codedeploy_batch_get_deployments.yaml +++ b/actions/codedeploy_batch_get_deployments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_batch_get_deployments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_deployments immutable: true diff --git a/actions/codedeploy_batch_get_on_premises_instances.yaml b/actions/codedeploy_batch_get_on_premises_instances.yaml index 870b4cad..9bd9656a 100644 --- a/actions/codedeploy_batch_get_on_premises_instances.yaml +++ b/actions/codedeploy_batch_get_on_premises_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_batch_get_on_premises_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_on_premises_instances immutable: true diff --git a/actions/codedeploy_continue_deployment.yaml b/actions/codedeploy_continue_deployment.yaml index 87ae4065..a13cd6af 100644 --- a/actions/codedeploy_continue_deployment.yaml +++ b/actions/codedeploy_continue_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_continue_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: continue_deployment immutable: true diff --git a/actions/codedeploy_create_application.yaml b/actions/codedeploy_create_application.yaml index af011b59..8371c631 100644 --- a/actions/codedeploy_create_application.yaml +++ b/actions/codedeploy_create_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_create_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_application immutable: true diff --git a/actions/codedeploy_create_deployment.yaml b/actions/codedeploy_create_deployment.yaml index e53812b0..5921a5a9 100644 --- a/actions/codedeploy_create_deployment.yaml +++ b/actions/codedeploy_create_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_create_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_deployment immutable: true diff --git a/actions/codedeploy_create_deployment_config.yaml b/actions/codedeploy_create_deployment_config.yaml index 6321c20d..2729b298 100644 --- a/actions/codedeploy_create_deployment_config.yaml +++ b/actions/codedeploy_create_deployment_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_create_deployment_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_deployment_config immutable: true diff --git a/actions/codedeploy_create_deployment_group.yaml b/actions/codedeploy_create_deployment_group.yaml index e36c616d..bf3dbd87 100644 --- a/actions/codedeploy_create_deployment_group.yaml +++ b/actions/codedeploy_create_deployment_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_create_deployment_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_deployment_group immutable: true diff --git a/actions/codedeploy_delete_application.yaml b/actions/codedeploy_delete_application.yaml index 7f7e8ca3..eba3de11 100644 --- a/actions/codedeploy_delete_application.yaml +++ b/actions/codedeploy_delete_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_delete_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application immutable: true diff --git a/actions/codedeploy_delete_deployment_config.yaml b/actions/codedeploy_delete_deployment_config.yaml index 04296d6c..e90959c4 100644 --- a/actions/codedeploy_delete_deployment_config.yaml +++ b/actions/codedeploy_delete_deployment_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_delete_deployment_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_deployment_config immutable: true diff --git a/actions/codedeploy_delete_deployment_group.yaml b/actions/codedeploy_delete_deployment_group.yaml index cb46cad9..f39d50c6 100644 --- a/actions/codedeploy_delete_deployment_group.yaml +++ b/actions/codedeploy_delete_deployment_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_delete_deployment_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_deployment_group immutable: true diff --git a/actions/codedeploy_deregister_on_premises_instance.yaml b/actions/codedeploy_deregister_on_premises_instance.yaml index 9735939b..ef44ffa5 100644 --- a/actions/codedeploy_deregister_on_premises_instance.yaml +++ b/actions/codedeploy_deregister_on_premises_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_deregister_on_premises_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_on_premises_instance immutable: true diff --git a/actions/codedeploy_get_application.yaml b/actions/codedeploy_get_application.yaml index 34309014..54b47c98 100644 --- a/actions/codedeploy_get_application.yaml +++ b/actions/codedeploy_get_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_application immutable: true diff --git a/actions/codedeploy_get_application_revision.yaml b/actions/codedeploy_get_application_revision.yaml index af86c3a8..5fd60f8b 100644 --- a/actions/codedeploy_get_application_revision.yaml +++ b/actions/codedeploy_get_application_revision.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_application_revision runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_application_revision immutable: true diff --git a/actions/codedeploy_get_deployment.yaml b/actions/codedeploy_get_deployment.yaml index b3f162ed..9d888760 100644 --- a/actions/codedeploy_get_deployment.yaml +++ b/actions/codedeploy_get_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployment immutable: true diff --git a/actions/codedeploy_get_deployment_config.yaml b/actions/codedeploy_get_deployment_config.yaml index e4c043a3..1c22c97c 100644 --- a/actions/codedeploy_get_deployment_config.yaml +++ b/actions/codedeploy_get_deployment_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_deployment_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployment_config immutable: true diff --git a/actions/codedeploy_get_deployment_group.yaml b/actions/codedeploy_get_deployment_group.yaml index af914e74..4fe53b19 100644 --- a/actions/codedeploy_get_deployment_group.yaml +++ b/actions/codedeploy_get_deployment_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_deployment_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployment_group immutable: true diff --git a/actions/codedeploy_get_deployment_instance.yaml b/actions/codedeploy_get_deployment_instance.yaml index b47b016b..33f5c2d6 100644 --- a/actions/codedeploy_get_deployment_instance.yaml +++ b/actions/codedeploy_get_deployment_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_deployment_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployment_instance immutable: true diff --git a/actions/codedeploy_get_on_premises_instance.yaml b/actions/codedeploy_get_on_premises_instance.yaml index 5968224f..f8a21a83 100644 --- a/actions/codedeploy_get_on_premises_instance.yaml +++ b/actions/codedeploy_get_on_premises_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_get_on_premises_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_on_premises_instance immutable: true diff --git a/actions/codedeploy_list_application_revisions.yaml b/actions/codedeploy_list_application_revisions.yaml index f8da3063..f0dc26df 100644 --- a/actions/codedeploy_list_application_revisions.yaml +++ b/actions/codedeploy_list_application_revisions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_application_revisions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_application_revisions immutable: true diff --git a/actions/codedeploy_list_applications.yaml b/actions/codedeploy_list_applications.yaml index d92d7935..56f98a0b 100644 --- a/actions/codedeploy_list_applications.yaml +++ b/actions/codedeploy_list_applications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_applications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_applications immutable: true diff --git a/actions/codedeploy_list_deployment_configs.yaml b/actions/codedeploy_list_deployment_configs.yaml index a70a92aa..750be9ba 100644 --- a/actions/codedeploy_list_deployment_configs.yaml +++ b/actions/codedeploy_list_deployment_configs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_deployment_configs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_deployment_configs immutable: true diff --git a/actions/codedeploy_list_deployment_groups.yaml b/actions/codedeploy_list_deployment_groups.yaml index bc0a0ffd..300c4536 100644 --- a/actions/codedeploy_list_deployment_groups.yaml +++ b/actions/codedeploy_list_deployment_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_deployment_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_deployment_groups immutable: true diff --git a/actions/codedeploy_list_deployment_instances.yaml b/actions/codedeploy_list_deployment_instances.yaml index 5bea988e..0d7b962f 100644 --- a/actions/codedeploy_list_deployment_instances.yaml +++ b/actions/codedeploy_list_deployment_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_deployment_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_deployment_instances immutable: true diff --git a/actions/codedeploy_list_deployments.yaml b/actions/codedeploy_list_deployments.yaml index b06f1fdf..b21f4686 100644 --- a/actions/codedeploy_list_deployments.yaml +++ b/actions/codedeploy_list_deployments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_deployments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_deployments immutable: true diff --git a/actions/codedeploy_list_git_hub_account_token_names.yaml b/actions/codedeploy_list_git_hub_account_token_names.yaml index 09a19845..32f81315 100644 --- a/actions/codedeploy_list_git_hub_account_token_names.yaml +++ b/actions/codedeploy_list_git_hub_account_token_names.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_git_hub_account_token_names runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_git_hub_account_token_names immutable: true diff --git a/actions/codedeploy_list_on_premises_instances.yaml b/actions/codedeploy_list_on_premises_instances.yaml index b27b32a3..e24c830b 100644 --- a/actions/codedeploy_list_on_premises_instances.yaml +++ b/actions/codedeploy_list_on_premises_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_list_on_premises_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_on_premises_instances immutable: true diff --git a/actions/codedeploy_register_application_revision.yaml b/actions/codedeploy_register_application_revision.yaml index b2f5d931..33dc9c2c 100644 --- a/actions/codedeploy_register_application_revision.yaml +++ b/actions/codedeploy_register_application_revision.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_register_application_revision runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_application_revision immutable: true diff --git a/actions/codedeploy_register_on_premises_instance.yaml b/actions/codedeploy_register_on_premises_instance.yaml index b697b8f5..07e671a3 100644 --- a/actions/codedeploy_register_on_premises_instance.yaml +++ b/actions/codedeploy_register_on_premises_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_register_on_premises_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_on_premises_instance immutable: true diff --git a/actions/codedeploy_remove_tags_from_on_premises_instances.yaml b/actions/codedeploy_remove_tags_from_on_premises_instances.yaml index d7008290..ff20a732 100644 --- a/actions/codedeploy_remove_tags_from_on_premises_instances.yaml +++ b/actions/codedeploy_remove_tags_from_on_premises_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_remove_tags_from_on_premises_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_on_premises_instances immutable: true diff --git a/actions/codedeploy_skip_wait_time_for_instance_termination.yaml b/actions/codedeploy_skip_wait_time_for_instance_termination.yaml index 2c90102a..f977c168 100644 --- a/actions/codedeploy_skip_wait_time_for_instance_termination.yaml +++ b/actions/codedeploy_skip_wait_time_for_instance_termination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_skip_wait_time_for_instance_termination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: skip_wait_time_for_instance_termination immutable: true diff --git a/actions/codedeploy_stop_deployment.yaml b/actions/codedeploy_stop_deployment.yaml index 7c991bcd..bffb5434 100644 --- a/actions/codedeploy_stop_deployment.yaml +++ b/actions/codedeploy_stop_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_stop_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_deployment immutable: true diff --git a/actions/codedeploy_update_application.yaml b/actions/codedeploy_update_application.yaml index 3edf121e..60446995 100644 --- a/actions/codedeploy_update_application.yaml +++ b/actions/codedeploy_update_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_update_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application immutable: true diff --git a/actions/codedeploy_update_deployment_group.yaml b/actions/codedeploy_update_deployment_group.yaml index e52a59bc..8989e25b 100644 --- a/actions/codedeploy_update_deployment_group.yaml +++ b/actions/codedeploy_update_deployment_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codedeploy_update_deployment_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_deployment_group immutable: true diff --git a/actions/codepipeline_acknowledge_job.yaml b/actions/codepipeline_acknowledge_job.yaml index 2149708b..39b4474c 100644 --- a/actions/codepipeline_acknowledge_job.yaml +++ b/actions/codepipeline_acknowledge_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_acknowledge_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: acknowledge_job immutable: true diff --git a/actions/codepipeline_acknowledge_third_party_job.yaml b/actions/codepipeline_acknowledge_third_party_job.yaml index 0ec8fc18..9baa4cae 100644 --- a/actions/codepipeline_acknowledge_third_party_job.yaml +++ b/actions/codepipeline_acknowledge_third_party_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_acknowledge_third_party_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: acknowledge_third_party_job immutable: true diff --git a/actions/codepipeline_create_custom_action_type.yaml b/actions/codepipeline_create_custom_action_type.yaml index c0efda4e..f99a277e 100644 --- a/actions/codepipeline_create_custom_action_type.yaml +++ b/actions/codepipeline_create_custom_action_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_create_custom_action_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_custom_action_type immutable: true diff --git a/actions/codepipeline_create_pipeline.yaml b/actions/codepipeline_create_pipeline.yaml index f3ae5fb2..5dea5770 100644 --- a/actions/codepipeline_create_pipeline.yaml +++ b/actions/codepipeline_create_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_create_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_pipeline immutable: true diff --git a/actions/codepipeline_delete_custom_action_type.yaml b/actions/codepipeline_delete_custom_action_type.yaml index 32417da2..d952dc57 100644 --- a/actions/codepipeline_delete_custom_action_type.yaml +++ b/actions/codepipeline_delete_custom_action_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_delete_custom_action_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_custom_action_type immutable: true diff --git a/actions/codepipeline_delete_pipeline.yaml b/actions/codepipeline_delete_pipeline.yaml index 3e136245..711e94c2 100644 --- a/actions/codepipeline_delete_pipeline.yaml +++ b/actions/codepipeline_delete_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_delete_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_pipeline immutable: true diff --git a/actions/codepipeline_disable_stage_transition.yaml b/actions/codepipeline_disable_stage_transition.yaml index 9f4e9e0b..462a5d85 100644 --- a/actions/codepipeline_disable_stage_transition.yaml +++ b/actions/codepipeline_disable_stage_transition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_disable_stage_transition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_stage_transition immutable: true diff --git a/actions/codepipeline_enable_stage_transition.yaml b/actions/codepipeline_enable_stage_transition.yaml index 1f55ba52..afb506e1 100644 --- a/actions/codepipeline_enable_stage_transition.yaml +++ b/actions/codepipeline_enable_stage_transition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_enable_stage_transition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_stage_transition immutable: true diff --git a/actions/codepipeline_get_job_details.yaml b/actions/codepipeline_get_job_details.yaml index 796c9356..9bf2ae04 100644 --- a/actions/codepipeline_get_job_details.yaml +++ b/actions/codepipeline_get_job_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_get_job_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_job_details immutable: true diff --git a/actions/codepipeline_get_pipeline.yaml b/actions/codepipeline_get_pipeline.yaml index ef1b07b8..dd3145d3 100644 --- a/actions/codepipeline_get_pipeline.yaml +++ b/actions/codepipeline_get_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_get_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_pipeline immutable: true diff --git a/actions/codepipeline_get_pipeline_execution.yaml b/actions/codepipeline_get_pipeline_execution.yaml index f422d50d..d225045f 100644 --- a/actions/codepipeline_get_pipeline_execution.yaml +++ b/actions/codepipeline_get_pipeline_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_get_pipeline_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_pipeline_execution immutable: true diff --git a/actions/codepipeline_get_pipeline_state.yaml b/actions/codepipeline_get_pipeline_state.yaml index 79349fc7..3574af5b 100644 --- a/actions/codepipeline_get_pipeline_state.yaml +++ b/actions/codepipeline_get_pipeline_state.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_get_pipeline_state runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_pipeline_state immutable: true diff --git a/actions/codepipeline_get_third_party_job_details.yaml b/actions/codepipeline_get_third_party_job_details.yaml index 6c7fd31e..f7a56c68 100644 --- a/actions/codepipeline_get_third_party_job_details.yaml +++ b/actions/codepipeline_get_third_party_job_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_get_third_party_job_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_third_party_job_details immutable: true diff --git a/actions/codepipeline_list_action_types.yaml b/actions/codepipeline_list_action_types.yaml index 053f2ffc..9a24d5d8 100644 --- a/actions/codepipeline_list_action_types.yaml +++ b/actions/codepipeline_list_action_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_list_action_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_action_types immutable: true diff --git a/actions/codepipeline_list_pipeline_executions.yaml b/actions/codepipeline_list_pipeline_executions.yaml index df29680a..b909284c 100644 --- a/actions/codepipeline_list_pipeline_executions.yaml +++ b/actions/codepipeline_list_pipeline_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_list_pipeline_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_pipeline_executions immutable: true diff --git a/actions/codepipeline_list_pipelines.yaml b/actions/codepipeline_list_pipelines.yaml index 9fe6b0e8..5926f632 100644 --- a/actions/codepipeline_list_pipelines.yaml +++ b/actions/codepipeline_list_pipelines.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_list_pipelines runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_pipelines immutable: true diff --git a/actions/codepipeline_poll_for_jobs.yaml b/actions/codepipeline_poll_for_jobs.yaml index 8a049a37..48112abc 100644 --- a/actions/codepipeline_poll_for_jobs.yaml +++ b/actions/codepipeline_poll_for_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_poll_for_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: poll_for_jobs immutable: true diff --git a/actions/codepipeline_poll_for_third_party_jobs.yaml b/actions/codepipeline_poll_for_third_party_jobs.yaml index 8c7edf01..0ecf7f84 100644 --- a/actions/codepipeline_poll_for_third_party_jobs.yaml +++ b/actions/codepipeline_poll_for_third_party_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_poll_for_third_party_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: poll_for_third_party_jobs immutable: true diff --git a/actions/codepipeline_put_action_revision.yaml b/actions/codepipeline_put_action_revision.yaml index 4b2016e7..313f4abc 100644 --- a/actions/codepipeline_put_action_revision.yaml +++ b/actions/codepipeline_put_action_revision.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_put_action_revision runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_action_revision immutable: true diff --git a/actions/codepipeline_put_approval_result.yaml b/actions/codepipeline_put_approval_result.yaml index 84bf5eeb..74ab412a 100644 --- a/actions/codepipeline_put_approval_result.yaml +++ b/actions/codepipeline_put_approval_result.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_put_approval_result runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_approval_result immutable: true diff --git a/actions/codepipeline_put_job_failure_result.yaml b/actions/codepipeline_put_job_failure_result.yaml index ac67632c..54393a41 100644 --- a/actions/codepipeline_put_job_failure_result.yaml +++ b/actions/codepipeline_put_job_failure_result.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_put_job_failure_result runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_job_failure_result immutable: true diff --git a/actions/codepipeline_put_job_success_result.yaml b/actions/codepipeline_put_job_success_result.yaml index 074169e8..c0b55b81 100644 --- a/actions/codepipeline_put_job_success_result.yaml +++ b/actions/codepipeline_put_job_success_result.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_put_job_success_result runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_job_success_result immutable: true diff --git a/actions/codepipeline_put_third_party_job_failure_result.yaml b/actions/codepipeline_put_third_party_job_failure_result.yaml index d44a8774..3d22fb0a 100644 --- a/actions/codepipeline_put_third_party_job_failure_result.yaml +++ b/actions/codepipeline_put_third_party_job_failure_result.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_put_third_party_job_failure_result runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_third_party_job_failure_result immutable: true diff --git a/actions/codepipeline_put_third_party_job_success_result.yaml b/actions/codepipeline_put_third_party_job_success_result.yaml index 235f8998..56746c1e 100644 --- a/actions/codepipeline_put_third_party_job_success_result.yaml +++ b/actions/codepipeline_put_third_party_job_success_result.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_put_third_party_job_success_result runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_third_party_job_success_result immutable: true diff --git a/actions/codepipeline_retry_stage_execution.yaml b/actions/codepipeline_retry_stage_execution.yaml index 3dd8dc2d..79c3ba48 100644 --- a/actions/codepipeline_retry_stage_execution.yaml +++ b/actions/codepipeline_retry_stage_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_retry_stage_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: retry_stage_execution immutable: true diff --git a/actions/codepipeline_start_pipeline_execution.yaml b/actions/codepipeline_start_pipeline_execution.yaml index a184f6d2..cc65e8a8 100644 --- a/actions/codepipeline_start_pipeline_execution.yaml +++ b/actions/codepipeline_start_pipeline_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_start_pipeline_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_pipeline_execution immutable: true diff --git a/actions/codepipeline_update_pipeline.yaml b/actions/codepipeline_update_pipeline.yaml index 3fbb4258..1a902362 100644 --- a/actions/codepipeline_update_pipeline.yaml +++ b/actions/codepipeline_update_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codepipeline_update_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_pipeline immutable: true diff --git a/actions/codestar_associate_team_member.yaml b/actions/codestar_associate_team_member.yaml index f9599d3b..3b456271 100644 --- a/actions/codestar_associate_team_member.yaml +++ b/actions/codestar_associate_team_member.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_associate_team_member runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_team_member immutable: true diff --git a/actions/codestar_create_project.yaml b/actions/codestar_create_project.yaml index 9cd361ac..b92c35aa 100644 --- a/actions/codestar_create_project.yaml +++ b/actions/codestar_create_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_create_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_project immutable: true diff --git a/actions/codestar_create_user_profile.yaml b/actions/codestar_create_user_profile.yaml index dd1d168b..14cc65e3 100644 --- a/actions/codestar_create_user_profile.yaml +++ b/actions/codestar_create_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_create_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user_profile immutable: true diff --git a/actions/codestar_delete_project.yaml b/actions/codestar_delete_project.yaml index 8af15be5..f35590f2 100644 --- a/actions/codestar_delete_project.yaml +++ b/actions/codestar_delete_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_delete_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_project immutable: true diff --git a/actions/codestar_delete_user_profile.yaml b/actions/codestar_delete_user_profile.yaml index a9bc8a19..40717e49 100644 --- a/actions/codestar_delete_user_profile.yaml +++ b/actions/codestar_delete_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_delete_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_profile immutable: true diff --git a/actions/codestar_describe_project.yaml b/actions/codestar_describe_project.yaml index 4c3e70cf..6e0352bb 100644 --- a/actions/codestar_describe_project.yaml +++ b/actions/codestar_describe_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_describe_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_project immutable: true diff --git a/actions/codestar_describe_user_profile.yaml b/actions/codestar_describe_user_profile.yaml index d8810384..8408257c 100644 --- a/actions/codestar_describe_user_profile.yaml +++ b/actions/codestar_describe_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_describe_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_user_profile immutable: true diff --git a/actions/codestar_disassociate_team_member.yaml b/actions/codestar_disassociate_team_member.yaml index 5581216f..ecf208ef 100644 --- a/actions/codestar_disassociate_team_member.yaml +++ b/actions/codestar_disassociate_team_member.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_disassociate_team_member runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_team_member immutable: true diff --git a/actions/codestar_list_projects.yaml b/actions/codestar_list_projects.yaml index da67df37..10846338 100644 --- a/actions/codestar_list_projects.yaml +++ b/actions/codestar_list_projects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_list_projects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_projects immutable: true diff --git a/actions/codestar_list_resources.yaml b/actions/codestar_list_resources.yaml index 15325ab6..ea315f2a 100644 --- a/actions/codestar_list_resources.yaml +++ b/actions/codestar_list_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_list_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_resources immutable: true diff --git a/actions/codestar_list_team_members.yaml b/actions/codestar_list_team_members.yaml index 587cc333..885463b9 100644 --- a/actions/codestar_list_team_members.yaml +++ b/actions/codestar_list_team_members.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_list_team_members runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_team_members immutable: true diff --git a/actions/codestar_list_user_profiles.yaml b/actions/codestar_list_user_profiles.yaml index bafc2c1e..38e54bbe 100644 --- a/actions/codestar_list_user_profiles.yaml +++ b/actions/codestar_list_user_profiles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_list_user_profiles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_user_profiles immutable: true diff --git a/actions/codestar_update_project.yaml b/actions/codestar_update_project.yaml index 837d71d2..b68f7ca0 100644 --- a/actions/codestar_update_project.yaml +++ b/actions/codestar_update_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_update_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_project immutable: true diff --git a/actions/codestar_update_team_member.yaml b/actions/codestar_update_team_member.yaml index 35a344cd..b6f6ec89 100644 --- a/actions/codestar_update_team_member.yaml +++ b/actions/codestar_update_team_member.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_update_team_member runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_team_member immutable: true diff --git a/actions/codestar_update_user_profile.yaml b/actions/codestar_update_user_profile.yaml index e7c81319..b3ae3368 100644 --- a/actions/codestar_update_user_profile.yaml +++ b/actions/codestar_update_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: codestar_update_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user_profile immutable: true diff --git a/actions/cognito-identity_create_identity_pool.yaml b/actions/cognito-identity_create_identity_pool.yaml index b3d41b21..1dd3b882 100644 --- a/actions/cognito-identity_create_identity_pool.yaml +++ b/actions/cognito-identity_create_identity_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_create_identity_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_identity_pool immutable: true diff --git a/actions/cognito-identity_delete_identities.yaml b/actions/cognito-identity_delete_identities.yaml index 8d60aa87..12b31abb 100644 --- a/actions/cognito-identity_delete_identities.yaml +++ b/actions/cognito-identity_delete_identities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_delete_identities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_identities immutable: true diff --git a/actions/cognito-identity_delete_identity_pool.yaml b/actions/cognito-identity_delete_identity_pool.yaml index cd73da1e..34bb8ecf 100644 --- a/actions/cognito-identity_delete_identity_pool.yaml +++ b/actions/cognito-identity_delete_identity_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_delete_identity_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_identity_pool immutable: true diff --git a/actions/cognito-identity_describe_identity.yaml b/actions/cognito-identity_describe_identity.yaml index 66ed6eb2..6548d16e 100644 --- a/actions/cognito-identity_describe_identity.yaml +++ b/actions/cognito-identity_describe_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_describe_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_identity immutable: true diff --git a/actions/cognito-identity_describe_identity_pool.yaml b/actions/cognito-identity_describe_identity_pool.yaml index 6c201ce1..9448b92f 100644 --- a/actions/cognito-identity_describe_identity_pool.yaml +++ b/actions/cognito-identity_describe_identity_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_describe_identity_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_identity_pool immutable: true diff --git a/actions/cognito-identity_get_credentials_for_identity.yaml b/actions/cognito-identity_get_credentials_for_identity.yaml index 4f8fb660..08285b76 100644 --- a/actions/cognito-identity_get_credentials_for_identity.yaml +++ b/actions/cognito-identity_get_credentials_for_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_get_credentials_for_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_credentials_for_identity immutable: true diff --git a/actions/cognito-identity_get_id.yaml b/actions/cognito-identity_get_id.yaml index 128b8aac..d4c9d7a1 100644 --- a/actions/cognito-identity_get_id.yaml +++ b/actions/cognito-identity_get_id.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_get_id runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_id immutable: true diff --git a/actions/cognito-identity_get_identity_pool_roles.yaml b/actions/cognito-identity_get_identity_pool_roles.yaml index 5ae75528..84b5fed3 100644 --- a/actions/cognito-identity_get_identity_pool_roles.yaml +++ b/actions/cognito-identity_get_identity_pool_roles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_get_identity_pool_roles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_pool_roles immutable: true diff --git a/actions/cognito-identity_get_open_id_token.yaml b/actions/cognito-identity_get_open_id_token.yaml index b7c9e581..d6c44fa3 100644 --- a/actions/cognito-identity_get_open_id_token.yaml +++ b/actions/cognito-identity_get_open_id_token.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_get_open_id_token runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_open_id_token immutable: true diff --git a/actions/cognito-identity_get_open_id_token_for_developer_identity.yaml b/actions/cognito-identity_get_open_id_token_for_developer_identity.yaml index 95c20a9c..0c7a27ab 100644 --- a/actions/cognito-identity_get_open_id_token_for_developer_identity.yaml +++ b/actions/cognito-identity_get_open_id_token_for_developer_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_get_open_id_token_for_developer_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_open_id_token_for_developer_identity immutable: true diff --git a/actions/cognito-identity_list_identities.yaml b/actions/cognito-identity_list_identities.yaml index 68e3b105..325a758b 100644 --- a/actions/cognito-identity_list_identities.yaml +++ b/actions/cognito-identity_list_identities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_list_identities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_identities immutable: true diff --git a/actions/cognito-identity_list_identity_pools.yaml b/actions/cognito-identity_list_identity_pools.yaml index 0df5dd8d..aa9d6f43 100644 --- a/actions/cognito-identity_list_identity_pools.yaml +++ b/actions/cognito-identity_list_identity_pools.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_list_identity_pools runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_identity_pools immutable: true diff --git a/actions/cognito-identity_lookup_developer_identity.yaml b/actions/cognito-identity_lookup_developer_identity.yaml index 78295e96..4751ed87 100644 --- a/actions/cognito-identity_lookup_developer_identity.yaml +++ b/actions/cognito-identity_lookup_developer_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_lookup_developer_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: lookup_developer_identity immutable: true diff --git a/actions/cognito-identity_merge_developer_identities.yaml b/actions/cognito-identity_merge_developer_identities.yaml index b61c049a..e8c3deb1 100644 --- a/actions/cognito-identity_merge_developer_identities.yaml +++ b/actions/cognito-identity_merge_developer_identities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_merge_developer_identities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: merge_developer_identities immutable: true diff --git a/actions/cognito-identity_set_identity_pool_roles.yaml b/actions/cognito-identity_set_identity_pool_roles.yaml index 38e2d8b6..650cccfa 100644 --- a/actions/cognito-identity_set_identity_pool_roles.yaml +++ b/actions/cognito-identity_set_identity_pool_roles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_set_identity_pool_roles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_pool_roles immutable: true diff --git a/actions/cognito-identity_unlink_developer_identity.yaml b/actions/cognito-identity_unlink_developer_identity.yaml index 1ba86348..a0ebc7fd 100644 --- a/actions/cognito-identity_unlink_developer_identity.yaml +++ b/actions/cognito-identity_unlink_developer_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_unlink_developer_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unlink_developer_identity immutable: true diff --git a/actions/cognito-identity_unlink_identity.yaml b/actions/cognito-identity_unlink_identity.yaml index a61bd1ac..230db3a4 100644 --- a/actions/cognito-identity_unlink_identity.yaml +++ b/actions/cognito-identity_unlink_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_unlink_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unlink_identity immutable: true diff --git a/actions/cognito-identity_update_identity_pool.yaml b/actions/cognito-identity_update_identity_pool.yaml index d54802b4..de20e509 100644 --- a/actions/cognito-identity_update_identity_pool.yaml +++ b/actions/cognito-identity_update_identity_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-identity_update_identity_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_identity_pool immutable: true diff --git a/actions/cognito-idp_add_custom_attributes.yaml b/actions/cognito-idp_add_custom_attributes.yaml index 6733505d..0e63f5e8 100644 --- a/actions/cognito-idp_add_custom_attributes.yaml +++ b/actions/cognito-idp_add_custom_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_add_custom_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_custom_attributes immutable: true diff --git a/actions/cognito-idp_admin_add_user_to_group.yaml b/actions/cognito-idp_admin_add_user_to_group.yaml index 129f2491..d4f93d35 100644 --- a/actions/cognito-idp_admin_add_user_to_group.yaml +++ b/actions/cognito-idp_admin_add_user_to_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_add_user_to_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_add_user_to_group immutable: true diff --git a/actions/cognito-idp_admin_confirm_sign_up.yaml b/actions/cognito-idp_admin_confirm_sign_up.yaml index 412d6973..ab592f2e 100644 --- a/actions/cognito-idp_admin_confirm_sign_up.yaml +++ b/actions/cognito-idp_admin_confirm_sign_up.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_confirm_sign_up runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_confirm_sign_up immutable: true diff --git a/actions/cognito-idp_admin_create_user.yaml b/actions/cognito-idp_admin_create_user.yaml index 0959215f..89d8eefb 100644 --- a/actions/cognito-idp_admin_create_user.yaml +++ b/actions/cognito-idp_admin_create_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_create_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_create_user immutable: true diff --git a/actions/cognito-idp_admin_delete_user.yaml b/actions/cognito-idp_admin_delete_user.yaml index e006cf67..e07dcc02 100644 --- a/actions/cognito-idp_admin_delete_user.yaml +++ b/actions/cognito-idp_admin_delete_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_delete_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_delete_user immutable: true diff --git a/actions/cognito-idp_admin_delete_user_attributes.yaml b/actions/cognito-idp_admin_delete_user_attributes.yaml index 80e9a363..8ac0c384 100644 --- a/actions/cognito-idp_admin_delete_user_attributes.yaml +++ b/actions/cognito-idp_admin_delete_user_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_delete_user_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_delete_user_attributes immutable: true diff --git a/actions/cognito-idp_admin_disable_user.yaml b/actions/cognito-idp_admin_disable_user.yaml index 7aa0c65d..d343db0a 100644 --- a/actions/cognito-idp_admin_disable_user.yaml +++ b/actions/cognito-idp_admin_disable_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_disable_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_disable_user immutable: true diff --git a/actions/cognito-idp_admin_enable_user.yaml b/actions/cognito-idp_admin_enable_user.yaml index b6d18a4f..9076b6e6 100644 --- a/actions/cognito-idp_admin_enable_user.yaml +++ b/actions/cognito-idp_admin_enable_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_enable_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_enable_user immutable: true diff --git a/actions/cognito-idp_admin_forget_device.yaml b/actions/cognito-idp_admin_forget_device.yaml index 1a2dc683..fcf57d7b 100644 --- a/actions/cognito-idp_admin_forget_device.yaml +++ b/actions/cognito-idp_admin_forget_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_forget_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_forget_device immutable: true diff --git a/actions/cognito-idp_admin_get_device.yaml b/actions/cognito-idp_admin_get_device.yaml index 41af20b8..d36da5e5 100644 --- a/actions/cognito-idp_admin_get_device.yaml +++ b/actions/cognito-idp_admin_get_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_get_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_get_device immutable: true diff --git a/actions/cognito-idp_admin_get_user.yaml b/actions/cognito-idp_admin_get_user.yaml index 5ef9a865..d9bfe79d 100644 --- a/actions/cognito-idp_admin_get_user.yaml +++ b/actions/cognito-idp_admin_get_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_get_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_get_user immutable: true diff --git a/actions/cognito-idp_admin_initiate_auth.yaml b/actions/cognito-idp_admin_initiate_auth.yaml index bbe71086..2580e829 100644 --- a/actions/cognito-idp_admin_initiate_auth.yaml +++ b/actions/cognito-idp_admin_initiate_auth.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_initiate_auth runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_initiate_auth immutable: true diff --git a/actions/cognito-idp_admin_list_devices.yaml b/actions/cognito-idp_admin_list_devices.yaml index 6c93bb7e..abab151a 100644 --- a/actions/cognito-idp_admin_list_devices.yaml +++ b/actions/cognito-idp_admin_list_devices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_list_devices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_list_devices immutable: true diff --git a/actions/cognito-idp_admin_list_groups_for_user.yaml b/actions/cognito-idp_admin_list_groups_for_user.yaml index 799cefdb..5d978010 100644 --- a/actions/cognito-idp_admin_list_groups_for_user.yaml +++ b/actions/cognito-idp_admin_list_groups_for_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_list_groups_for_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_list_groups_for_user immutable: true diff --git a/actions/cognito-idp_admin_remove_user_from_group.yaml b/actions/cognito-idp_admin_remove_user_from_group.yaml index 4ea38408..01512c80 100644 --- a/actions/cognito-idp_admin_remove_user_from_group.yaml +++ b/actions/cognito-idp_admin_remove_user_from_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_remove_user_from_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_remove_user_from_group immutable: true diff --git a/actions/cognito-idp_admin_reset_user_password.yaml b/actions/cognito-idp_admin_reset_user_password.yaml index 268e24dd..03405dc2 100644 --- a/actions/cognito-idp_admin_reset_user_password.yaml +++ b/actions/cognito-idp_admin_reset_user_password.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_reset_user_password runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_reset_user_password immutable: true diff --git a/actions/cognito-idp_admin_respond_to_auth_challenge.yaml b/actions/cognito-idp_admin_respond_to_auth_challenge.yaml index d9c5dd09..404463a3 100644 --- a/actions/cognito-idp_admin_respond_to_auth_challenge.yaml +++ b/actions/cognito-idp_admin_respond_to_auth_challenge.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_respond_to_auth_challenge runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_respond_to_auth_challenge immutable: true diff --git a/actions/cognito-idp_admin_set_user_settings.yaml b/actions/cognito-idp_admin_set_user_settings.yaml index 142002ba..ceb3e750 100644 --- a/actions/cognito-idp_admin_set_user_settings.yaml +++ b/actions/cognito-idp_admin_set_user_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_set_user_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_set_user_settings immutable: true diff --git a/actions/cognito-idp_admin_update_device_status.yaml b/actions/cognito-idp_admin_update_device_status.yaml index ab40dbeb..ec1fd20f 100644 --- a/actions/cognito-idp_admin_update_device_status.yaml +++ b/actions/cognito-idp_admin_update_device_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_update_device_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_update_device_status immutable: true diff --git a/actions/cognito-idp_admin_update_user_attributes.yaml b/actions/cognito-idp_admin_update_user_attributes.yaml index c5244556..edba3866 100644 --- a/actions/cognito-idp_admin_update_user_attributes.yaml +++ b/actions/cognito-idp_admin_update_user_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_update_user_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_update_user_attributes immutable: true diff --git a/actions/cognito-idp_admin_user_global_sign_out.yaml b/actions/cognito-idp_admin_user_global_sign_out.yaml index 463ad574..dd8afb9a 100644 --- a/actions/cognito-idp_admin_user_global_sign_out.yaml +++ b/actions/cognito-idp_admin_user_global_sign_out.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_admin_user_global_sign_out runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: admin_user_global_sign_out immutable: true diff --git a/actions/cognito-idp_change_password.yaml b/actions/cognito-idp_change_password.yaml index f48a55c0..b4b86691 100644 --- a/actions/cognito-idp_change_password.yaml +++ b/actions/cognito-idp_change_password.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_change_password runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: change_password immutable: true diff --git a/actions/cognito-idp_confirm_device.yaml b/actions/cognito-idp_confirm_device.yaml index 16bb59a1..816a9087 100644 --- a/actions/cognito-idp_confirm_device.yaml +++ b/actions/cognito-idp_confirm_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_confirm_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_device immutable: true diff --git a/actions/cognito-idp_confirm_forgot_password.yaml b/actions/cognito-idp_confirm_forgot_password.yaml index b432652b..ad30eb7d 100644 --- a/actions/cognito-idp_confirm_forgot_password.yaml +++ b/actions/cognito-idp_confirm_forgot_password.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_confirm_forgot_password runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_forgot_password immutable: true diff --git a/actions/cognito-idp_confirm_sign_up.yaml b/actions/cognito-idp_confirm_sign_up.yaml index 157dd1f4..dec38eb0 100644 --- a/actions/cognito-idp_confirm_sign_up.yaml +++ b/actions/cognito-idp_confirm_sign_up.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_confirm_sign_up runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_sign_up immutable: true diff --git a/actions/cognito-idp_create_group.yaml b/actions/cognito-idp_create_group.yaml index f02d99e7..8f9fa373 100644 --- a/actions/cognito-idp_create_group.yaml +++ b/actions/cognito-idp_create_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_create_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_group immutable: true diff --git a/actions/cognito-idp_create_identity_provider.yaml b/actions/cognito-idp_create_identity_provider.yaml index df783d62..0979b29b 100644 --- a/actions/cognito-idp_create_identity_provider.yaml +++ b/actions/cognito-idp_create_identity_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_create_identity_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_identity_provider immutable: true diff --git a/actions/cognito-idp_create_user_import_job.yaml b/actions/cognito-idp_create_user_import_job.yaml index 94544fe9..d0f565ee 100644 --- a/actions/cognito-idp_create_user_import_job.yaml +++ b/actions/cognito-idp_create_user_import_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_create_user_import_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user_import_job immutable: true diff --git a/actions/cognito-idp_create_user_pool.yaml b/actions/cognito-idp_create_user_pool.yaml index 24f66a9b..19dd871b 100644 --- a/actions/cognito-idp_create_user_pool.yaml +++ b/actions/cognito-idp_create_user_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_create_user_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user_pool immutable: true diff --git a/actions/cognito-idp_create_user_pool_client.yaml b/actions/cognito-idp_create_user_pool_client.yaml index 5890d93c..96949892 100644 --- a/actions/cognito-idp_create_user_pool_client.yaml +++ b/actions/cognito-idp_create_user_pool_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_create_user_pool_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user_pool_client immutable: true diff --git a/actions/cognito-idp_create_user_pool_domain.yaml b/actions/cognito-idp_create_user_pool_domain.yaml index 3c479b1f..d2346d30 100644 --- a/actions/cognito-idp_create_user_pool_domain.yaml +++ b/actions/cognito-idp_create_user_pool_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_create_user_pool_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user_pool_domain immutable: true diff --git a/actions/cognito-idp_delete_group.yaml b/actions/cognito-idp_delete_group.yaml index 85c74d67..a4f3e6cd 100644 --- a/actions/cognito-idp_delete_group.yaml +++ b/actions/cognito-idp_delete_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_group immutable: true diff --git a/actions/cognito-idp_delete_identity_provider.yaml b/actions/cognito-idp_delete_identity_provider.yaml index da176e66..5f3244fd 100644 --- a/actions/cognito-idp_delete_identity_provider.yaml +++ b/actions/cognito-idp_delete_identity_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_identity_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_identity_provider immutable: true diff --git a/actions/cognito-idp_delete_user.yaml b/actions/cognito-idp_delete_user.yaml index 60b19ed9..2218c814 100644 --- a/actions/cognito-idp_delete_user.yaml +++ b/actions/cognito-idp_delete_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user immutable: true diff --git a/actions/cognito-idp_delete_user_attributes.yaml b/actions/cognito-idp_delete_user_attributes.yaml index b62a7ee7..37db1995 100644 --- a/actions/cognito-idp_delete_user_attributes.yaml +++ b/actions/cognito-idp_delete_user_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_user_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_attributes immutable: true diff --git a/actions/cognito-idp_delete_user_pool.yaml b/actions/cognito-idp_delete_user_pool.yaml index 059c3fa8..36652154 100644 --- a/actions/cognito-idp_delete_user_pool.yaml +++ b/actions/cognito-idp_delete_user_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_user_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_pool immutable: true diff --git a/actions/cognito-idp_delete_user_pool_client.yaml b/actions/cognito-idp_delete_user_pool_client.yaml index c3b4bc56..da47cc9f 100644 --- a/actions/cognito-idp_delete_user_pool_client.yaml +++ b/actions/cognito-idp_delete_user_pool_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_user_pool_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_pool_client immutable: true diff --git a/actions/cognito-idp_delete_user_pool_domain.yaml b/actions/cognito-idp_delete_user_pool_domain.yaml index a94b8c24..a1e03715 100644 --- a/actions/cognito-idp_delete_user_pool_domain.yaml +++ b/actions/cognito-idp_delete_user_pool_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_delete_user_pool_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_pool_domain immutable: true diff --git a/actions/cognito-idp_describe_identity_provider.yaml b/actions/cognito-idp_describe_identity_provider.yaml index a64e1319..14f2bd81 100644 --- a/actions/cognito-idp_describe_identity_provider.yaml +++ b/actions/cognito-idp_describe_identity_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_describe_identity_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_identity_provider immutable: true diff --git a/actions/cognito-idp_describe_user_import_job.yaml b/actions/cognito-idp_describe_user_import_job.yaml index f253aad2..24eba0d9 100644 --- a/actions/cognito-idp_describe_user_import_job.yaml +++ b/actions/cognito-idp_describe_user_import_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_describe_user_import_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_user_import_job immutable: true diff --git a/actions/cognito-idp_describe_user_pool.yaml b/actions/cognito-idp_describe_user_pool.yaml index 1686c61b..18d866c6 100644 --- a/actions/cognito-idp_describe_user_pool.yaml +++ b/actions/cognito-idp_describe_user_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_describe_user_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_user_pool immutable: true diff --git a/actions/cognito-idp_describe_user_pool_client.yaml b/actions/cognito-idp_describe_user_pool_client.yaml index 4ee4408d..df5fe4cf 100644 --- a/actions/cognito-idp_describe_user_pool_client.yaml +++ b/actions/cognito-idp_describe_user_pool_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_describe_user_pool_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_user_pool_client immutable: true diff --git a/actions/cognito-idp_describe_user_pool_domain.yaml b/actions/cognito-idp_describe_user_pool_domain.yaml index b7d1208f..7e37fb92 100644 --- a/actions/cognito-idp_describe_user_pool_domain.yaml +++ b/actions/cognito-idp_describe_user_pool_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_describe_user_pool_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_user_pool_domain immutable: true diff --git a/actions/cognito-idp_forget_device.yaml b/actions/cognito-idp_forget_device.yaml index b17c590b..d5275a9a 100644 --- a/actions/cognito-idp_forget_device.yaml +++ b/actions/cognito-idp_forget_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_forget_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: forget_device immutable: true diff --git a/actions/cognito-idp_forgot_password.yaml b/actions/cognito-idp_forgot_password.yaml index a9fbe07a..e699d248 100644 --- a/actions/cognito-idp_forgot_password.yaml +++ b/actions/cognito-idp_forgot_password.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_forgot_password runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: forgot_password immutable: true diff --git a/actions/cognito-idp_get_csv_header.yaml b/actions/cognito-idp_get_csv_header.yaml index ee1d24ec..85dad53a 100644 --- a/actions/cognito-idp_get_csv_header.yaml +++ b/actions/cognito-idp_get_csv_header.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_get_csv_header runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_csv_header immutable: true diff --git a/actions/cognito-idp_get_device.yaml b/actions/cognito-idp_get_device.yaml index eb67d4e0..e92772fa 100644 --- a/actions/cognito-idp_get_device.yaml +++ b/actions/cognito-idp_get_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_get_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_device immutable: true diff --git a/actions/cognito-idp_get_group.yaml b/actions/cognito-idp_get_group.yaml index b676c7d9..802ddfc6 100644 --- a/actions/cognito-idp_get_group.yaml +++ b/actions/cognito-idp_get_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_get_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group immutable: true diff --git a/actions/cognito-idp_get_identity_provider_by_identifier.yaml b/actions/cognito-idp_get_identity_provider_by_identifier.yaml index eb319bcc..be0a8d17 100644 --- a/actions/cognito-idp_get_identity_provider_by_identifier.yaml +++ b/actions/cognito-idp_get_identity_provider_by_identifier.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_get_identity_provider_by_identifier runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_provider_by_identifier immutable: true diff --git a/actions/cognito-idp_get_user.yaml b/actions/cognito-idp_get_user.yaml index 86c892ac..79171941 100644 --- a/actions/cognito-idp_get_user.yaml +++ b/actions/cognito-idp_get_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_get_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_user immutable: true diff --git a/actions/cognito-idp_get_user_attribute_verification_code.yaml b/actions/cognito-idp_get_user_attribute_verification_code.yaml index d9e0cd60..b96e2288 100644 --- a/actions/cognito-idp_get_user_attribute_verification_code.yaml +++ b/actions/cognito-idp_get_user_attribute_verification_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_get_user_attribute_verification_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_user_attribute_verification_code immutable: true diff --git a/actions/cognito-idp_global_sign_out.yaml b/actions/cognito-idp_global_sign_out.yaml index 3a7ba812..b139749e 100644 --- a/actions/cognito-idp_global_sign_out.yaml +++ b/actions/cognito-idp_global_sign_out.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_global_sign_out runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: global_sign_out immutable: true diff --git a/actions/cognito-idp_initiate_auth.yaml b/actions/cognito-idp_initiate_auth.yaml index f62c142a..d489835a 100644 --- a/actions/cognito-idp_initiate_auth.yaml +++ b/actions/cognito-idp_initiate_auth.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_initiate_auth runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: initiate_auth immutable: true diff --git a/actions/cognito-idp_list_devices.yaml b/actions/cognito-idp_list_devices.yaml index 943e6884..8bd64a54 100644 --- a/actions/cognito-idp_list_devices.yaml +++ b/actions/cognito-idp_list_devices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_devices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_devices immutable: true diff --git a/actions/cognito-idp_list_groups.yaml b/actions/cognito-idp_list_groups.yaml index 8c175d4c..e0a23934 100644 --- a/actions/cognito-idp_list_groups.yaml +++ b/actions/cognito-idp_list_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_groups immutable: true diff --git a/actions/cognito-idp_list_identity_providers.yaml b/actions/cognito-idp_list_identity_providers.yaml index a9315c22..d42234bd 100644 --- a/actions/cognito-idp_list_identity_providers.yaml +++ b/actions/cognito-idp_list_identity_providers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_identity_providers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_identity_providers immutable: true diff --git a/actions/cognito-idp_list_user_import_jobs.yaml b/actions/cognito-idp_list_user_import_jobs.yaml index a0a697da..93d7a578 100644 --- a/actions/cognito-idp_list_user_import_jobs.yaml +++ b/actions/cognito-idp_list_user_import_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_user_import_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_user_import_jobs immutable: true diff --git a/actions/cognito-idp_list_user_pool_clients.yaml b/actions/cognito-idp_list_user_pool_clients.yaml index 9c4b6c60..872b29ae 100644 --- a/actions/cognito-idp_list_user_pool_clients.yaml +++ b/actions/cognito-idp_list_user_pool_clients.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_user_pool_clients runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_user_pool_clients immutable: true diff --git a/actions/cognito-idp_list_user_pools.yaml b/actions/cognito-idp_list_user_pools.yaml index 1c399728..51dd84a3 100644 --- a/actions/cognito-idp_list_user_pools.yaml +++ b/actions/cognito-idp_list_user_pools.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_user_pools runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_user_pools immutable: true diff --git a/actions/cognito-idp_list_users.yaml b/actions/cognito-idp_list_users.yaml index cd1070b3..c4113914 100644 --- a/actions/cognito-idp_list_users.yaml +++ b/actions/cognito-idp_list_users.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_users runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_users immutable: true diff --git a/actions/cognito-idp_list_users_in_group.yaml b/actions/cognito-idp_list_users_in_group.yaml index 7ccce417..34763ce8 100644 --- a/actions/cognito-idp_list_users_in_group.yaml +++ b/actions/cognito-idp_list_users_in_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_list_users_in_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_users_in_group immutable: true diff --git a/actions/cognito-idp_resend_confirmation_code.yaml b/actions/cognito-idp_resend_confirmation_code.yaml index b5d77260..0def22c9 100644 --- a/actions/cognito-idp_resend_confirmation_code.yaml +++ b/actions/cognito-idp_resend_confirmation_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_resend_confirmation_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resend_confirmation_code immutable: true diff --git a/actions/cognito-idp_respond_to_auth_challenge.yaml b/actions/cognito-idp_respond_to_auth_challenge.yaml index 9f4277d2..330c492c 100644 --- a/actions/cognito-idp_respond_to_auth_challenge.yaml +++ b/actions/cognito-idp_respond_to_auth_challenge.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_respond_to_auth_challenge runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: respond_to_auth_challenge immutable: true diff --git a/actions/cognito-idp_set_user_settings.yaml b/actions/cognito-idp_set_user_settings.yaml index 766f0bc8..26e30877 100644 --- a/actions/cognito-idp_set_user_settings.yaml +++ b/actions/cognito-idp_set_user_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_set_user_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_user_settings immutable: true diff --git a/actions/cognito-idp_sign_up.yaml b/actions/cognito-idp_sign_up.yaml index 0916b2e8..d35b08c3 100644 --- a/actions/cognito-idp_sign_up.yaml +++ b/actions/cognito-idp_sign_up.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_sign_up runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: sign_up immutable: true diff --git a/actions/cognito-idp_start_user_import_job.yaml b/actions/cognito-idp_start_user_import_job.yaml index a7cdac06..b0a0b026 100644 --- a/actions/cognito-idp_start_user_import_job.yaml +++ b/actions/cognito-idp_start_user_import_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_start_user_import_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_user_import_job immutable: true diff --git a/actions/cognito-idp_stop_user_import_job.yaml b/actions/cognito-idp_stop_user_import_job.yaml index 24d7eb5e..a56b3a3e 100644 --- a/actions/cognito-idp_stop_user_import_job.yaml +++ b/actions/cognito-idp_stop_user_import_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_stop_user_import_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_user_import_job immutable: true diff --git a/actions/cognito-idp_update_device_status.yaml b/actions/cognito-idp_update_device_status.yaml index 5fa592e9..ef983f13 100644 --- a/actions/cognito-idp_update_device_status.yaml +++ b/actions/cognito-idp_update_device_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_update_device_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_device_status immutable: true diff --git a/actions/cognito-idp_update_group.yaml b/actions/cognito-idp_update_group.yaml index 086ff30a..69f15f72 100644 --- a/actions/cognito-idp_update_group.yaml +++ b/actions/cognito-idp_update_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_update_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_group immutable: true diff --git a/actions/cognito-idp_update_identity_provider.yaml b/actions/cognito-idp_update_identity_provider.yaml index cef5cdd3..cc15b68b 100644 --- a/actions/cognito-idp_update_identity_provider.yaml +++ b/actions/cognito-idp_update_identity_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_update_identity_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_identity_provider immutable: true diff --git a/actions/cognito-idp_update_user_attributes.yaml b/actions/cognito-idp_update_user_attributes.yaml index d2fbf65c..7a6ce89b 100644 --- a/actions/cognito-idp_update_user_attributes.yaml +++ b/actions/cognito-idp_update_user_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_update_user_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user_attributes immutable: true diff --git a/actions/cognito-idp_update_user_pool.yaml b/actions/cognito-idp_update_user_pool.yaml index 9d947b1b..c1836d13 100644 --- a/actions/cognito-idp_update_user_pool.yaml +++ b/actions/cognito-idp_update_user_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_update_user_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user_pool immutable: true diff --git a/actions/cognito-idp_update_user_pool_client.yaml b/actions/cognito-idp_update_user_pool_client.yaml index c685c02b..d6f12935 100644 --- a/actions/cognito-idp_update_user_pool_client.yaml +++ b/actions/cognito-idp_update_user_pool_client.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_update_user_pool_client runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user_pool_client immutable: true diff --git a/actions/cognito-idp_verify_user_attribute.yaml b/actions/cognito-idp_verify_user_attribute.yaml index 36ca0678..b8131195 100644 --- a/actions/cognito-idp_verify_user_attribute.yaml +++ b/actions/cognito-idp_verify_user_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-idp_verify_user_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: verify_user_attribute immutable: true diff --git a/actions/cognito-sync_bulk_publish.yaml b/actions/cognito-sync_bulk_publish.yaml index 77258ffa..6df836b0 100644 --- a/actions/cognito-sync_bulk_publish.yaml +++ b/actions/cognito-sync_bulk_publish.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_bulk_publish runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: bulk_publish immutable: true diff --git a/actions/cognito-sync_delete_dataset.yaml b/actions/cognito-sync_delete_dataset.yaml index e9e7c5c7..062c49d8 100644 --- a/actions/cognito-sync_delete_dataset.yaml +++ b/actions/cognito-sync_delete_dataset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_delete_dataset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_dataset immutable: true diff --git a/actions/cognito-sync_describe_dataset.yaml b/actions/cognito-sync_describe_dataset.yaml index c4b59fb4..0becccb5 100644 --- a/actions/cognito-sync_describe_dataset.yaml +++ b/actions/cognito-sync_describe_dataset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_describe_dataset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_dataset immutable: true diff --git a/actions/cognito-sync_describe_identity_pool_usage.yaml b/actions/cognito-sync_describe_identity_pool_usage.yaml index 45f0b1f0..22d3dff8 100644 --- a/actions/cognito-sync_describe_identity_pool_usage.yaml +++ b/actions/cognito-sync_describe_identity_pool_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_describe_identity_pool_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_identity_pool_usage immutable: true diff --git a/actions/cognito-sync_describe_identity_usage.yaml b/actions/cognito-sync_describe_identity_usage.yaml index 617b3f25..c4f85b8d 100644 --- a/actions/cognito-sync_describe_identity_usage.yaml +++ b/actions/cognito-sync_describe_identity_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_describe_identity_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_identity_usage immutable: true diff --git a/actions/cognito-sync_get_bulk_publish_details.yaml b/actions/cognito-sync_get_bulk_publish_details.yaml index 4ab0af5f..39ae6da6 100644 --- a/actions/cognito-sync_get_bulk_publish_details.yaml +++ b/actions/cognito-sync_get_bulk_publish_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_get_bulk_publish_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bulk_publish_details immutable: true diff --git a/actions/cognito-sync_get_cognito_events.yaml b/actions/cognito-sync_get_cognito_events.yaml index 640c0153..e3ef8fcd 100644 --- a/actions/cognito-sync_get_cognito_events.yaml +++ b/actions/cognito-sync_get_cognito_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_get_cognito_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_cognito_events immutable: true diff --git a/actions/cognito-sync_get_identity_pool_configuration.yaml b/actions/cognito-sync_get_identity_pool_configuration.yaml index eff57be8..96015e46 100644 --- a/actions/cognito-sync_get_identity_pool_configuration.yaml +++ b/actions/cognito-sync_get_identity_pool_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_get_identity_pool_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_pool_configuration immutable: true diff --git a/actions/cognito-sync_list_datasets.yaml b/actions/cognito-sync_list_datasets.yaml index d30090bb..697c78d9 100644 --- a/actions/cognito-sync_list_datasets.yaml +++ b/actions/cognito-sync_list_datasets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_list_datasets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_datasets immutable: true diff --git a/actions/cognito-sync_list_identity_pool_usage.yaml b/actions/cognito-sync_list_identity_pool_usage.yaml index 814770ab..6c5bc3f6 100644 --- a/actions/cognito-sync_list_identity_pool_usage.yaml +++ b/actions/cognito-sync_list_identity_pool_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_list_identity_pool_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_identity_pool_usage immutable: true diff --git a/actions/cognito-sync_list_records.yaml b/actions/cognito-sync_list_records.yaml index 4402e109..fa4aa441 100644 --- a/actions/cognito-sync_list_records.yaml +++ b/actions/cognito-sync_list_records.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_list_records runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_records immutable: true diff --git a/actions/cognito-sync_register_device.yaml b/actions/cognito-sync_register_device.yaml index 925b9823..438b2f96 100644 --- a/actions/cognito-sync_register_device.yaml +++ b/actions/cognito-sync_register_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_register_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_device immutable: true diff --git a/actions/cognito-sync_set_cognito_events.yaml b/actions/cognito-sync_set_cognito_events.yaml index a18be69f..17ec7885 100644 --- a/actions/cognito-sync_set_cognito_events.yaml +++ b/actions/cognito-sync_set_cognito_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_set_cognito_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_cognito_events immutable: true diff --git a/actions/cognito-sync_set_identity_pool_configuration.yaml b/actions/cognito-sync_set_identity_pool_configuration.yaml index b0b87a40..2777d1bc 100644 --- a/actions/cognito-sync_set_identity_pool_configuration.yaml +++ b/actions/cognito-sync_set_identity_pool_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_set_identity_pool_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_pool_configuration immutable: true diff --git a/actions/cognito-sync_subscribe_to_dataset.yaml b/actions/cognito-sync_subscribe_to_dataset.yaml index c5e65fff..1588c22d 100644 --- a/actions/cognito-sync_subscribe_to_dataset.yaml +++ b/actions/cognito-sync_subscribe_to_dataset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_subscribe_to_dataset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: subscribe_to_dataset immutable: true diff --git a/actions/cognito-sync_unsubscribe_from_dataset.yaml b/actions/cognito-sync_unsubscribe_from_dataset.yaml index 60e26f7a..609c6741 100644 --- a/actions/cognito-sync_unsubscribe_from_dataset.yaml +++ b/actions/cognito-sync_unsubscribe_from_dataset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_unsubscribe_from_dataset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unsubscribe_from_dataset immutable: true diff --git a/actions/cognito-sync_update_records.yaml b/actions/cognito-sync_update_records.yaml index 326d58f3..7be1634b 100644 --- a/actions/cognito-sync_update_records.yaml +++ b/actions/cognito-sync_update_records.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cognito-sync_update_records runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_records immutable: true diff --git a/actions/config_delete_config_rule.yaml b/actions/config_delete_config_rule.yaml index e7affac0..5741c3d1 100644 --- a/actions/config_delete_config_rule.yaml +++ b/actions/config_delete_config_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_delete_config_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_config_rule immutable: true diff --git a/actions/config_delete_configuration_recorder.yaml b/actions/config_delete_configuration_recorder.yaml index 243c36e5..b1ce79e5 100644 --- a/actions/config_delete_configuration_recorder.yaml +++ b/actions/config_delete_configuration_recorder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_delete_configuration_recorder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_configuration_recorder immutable: true diff --git a/actions/config_delete_delivery_channel.yaml b/actions/config_delete_delivery_channel.yaml index fc8ef8f8..46ea54b7 100644 --- a/actions/config_delete_delivery_channel.yaml +++ b/actions/config_delete_delivery_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_delete_delivery_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_delivery_channel immutable: true diff --git a/actions/config_delete_evaluation_results.yaml b/actions/config_delete_evaluation_results.yaml index dd83a3e6..b30edb3e 100644 --- a/actions/config_delete_evaluation_results.yaml +++ b/actions/config_delete_evaluation_results.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_delete_evaluation_results runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_evaluation_results immutable: true diff --git a/actions/config_deliver_config_snapshot.yaml b/actions/config_deliver_config_snapshot.yaml index bcc36d91..8a0bcd02 100644 --- a/actions/config_deliver_config_snapshot.yaml +++ b/actions/config_deliver_config_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_deliver_config_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deliver_config_snapshot immutable: true diff --git a/actions/config_describe_compliance_by_config_rule.yaml b/actions/config_describe_compliance_by_config_rule.yaml index 8cc7c570..17bc6d81 100644 --- a/actions/config_describe_compliance_by_config_rule.yaml +++ b/actions/config_describe_compliance_by_config_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_compliance_by_config_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_compliance_by_config_rule immutable: true diff --git a/actions/config_describe_compliance_by_resource.yaml b/actions/config_describe_compliance_by_resource.yaml index 981e7e0b..da8b4ce9 100644 --- a/actions/config_describe_compliance_by_resource.yaml +++ b/actions/config_describe_compliance_by_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_compliance_by_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_compliance_by_resource immutable: true diff --git a/actions/config_describe_config_rule_evaluation_status.yaml b/actions/config_describe_config_rule_evaluation_status.yaml index 221ccba1..e67e5676 100644 --- a/actions/config_describe_config_rule_evaluation_status.yaml +++ b/actions/config_describe_config_rule_evaluation_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_config_rule_evaluation_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_config_rule_evaluation_status immutable: true diff --git a/actions/config_describe_config_rules.yaml b/actions/config_describe_config_rules.yaml index 0b97e64d..f5448cb9 100644 --- a/actions/config_describe_config_rules.yaml +++ b/actions/config_describe_config_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_config_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_config_rules immutable: true diff --git a/actions/config_describe_configuration_recorder_status.yaml b/actions/config_describe_configuration_recorder_status.yaml index 84332f78..71b5ea67 100644 --- a/actions/config_describe_configuration_recorder_status.yaml +++ b/actions/config_describe_configuration_recorder_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_configuration_recorder_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_configuration_recorder_status immutable: true diff --git a/actions/config_describe_configuration_recorders.yaml b/actions/config_describe_configuration_recorders.yaml index 810a5d2a..42444789 100644 --- a/actions/config_describe_configuration_recorders.yaml +++ b/actions/config_describe_configuration_recorders.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_configuration_recorders runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_configuration_recorders immutable: true diff --git a/actions/config_describe_delivery_channel_status.yaml b/actions/config_describe_delivery_channel_status.yaml index 4d9a4547..5444cbde 100644 --- a/actions/config_describe_delivery_channel_status.yaml +++ b/actions/config_describe_delivery_channel_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_delivery_channel_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_delivery_channel_status immutable: true diff --git a/actions/config_describe_delivery_channels.yaml b/actions/config_describe_delivery_channels.yaml index 22ee3d9c..44949201 100644 --- a/actions/config_describe_delivery_channels.yaml +++ b/actions/config_describe_delivery_channels.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_describe_delivery_channels runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_delivery_channels immutable: true diff --git a/actions/config_get_compliance_details_by_config_rule.yaml b/actions/config_get_compliance_details_by_config_rule.yaml index 83490ede..fb3dbcbf 100644 --- a/actions/config_get_compliance_details_by_config_rule.yaml +++ b/actions/config_get_compliance_details_by_config_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_get_compliance_details_by_config_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_compliance_details_by_config_rule immutable: true diff --git a/actions/config_get_compliance_details_by_resource.yaml b/actions/config_get_compliance_details_by_resource.yaml index 7b62832e..fb76e31c 100644 --- a/actions/config_get_compliance_details_by_resource.yaml +++ b/actions/config_get_compliance_details_by_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_get_compliance_details_by_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_compliance_details_by_resource immutable: true diff --git a/actions/config_get_compliance_summary_by_resource_type.yaml b/actions/config_get_compliance_summary_by_resource_type.yaml index f8adb2d9..60ffef03 100644 --- a/actions/config_get_compliance_summary_by_resource_type.yaml +++ b/actions/config_get_compliance_summary_by_resource_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_get_compliance_summary_by_resource_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_compliance_summary_by_resource_type immutable: true diff --git a/actions/config_get_resource_config_history.yaml b/actions/config_get_resource_config_history.yaml index 7b72d45d..8ec27341 100644 --- a/actions/config_get_resource_config_history.yaml +++ b/actions/config_get_resource_config_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_get_resource_config_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_resource_config_history immutable: true diff --git a/actions/config_list_discovered_resources.yaml b/actions/config_list_discovered_resources.yaml index e1de85ca..c266375e 100644 --- a/actions/config_list_discovered_resources.yaml +++ b/actions/config_list_discovered_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_list_discovered_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_discovered_resources immutable: true diff --git a/actions/config_put_config_rule.yaml b/actions/config_put_config_rule.yaml index 9ed699dd..f9f4acd0 100644 --- a/actions/config_put_config_rule.yaml +++ b/actions/config_put_config_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_put_config_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_config_rule immutable: true diff --git a/actions/config_put_configuration_recorder.yaml b/actions/config_put_configuration_recorder.yaml index 18a85688..aed53810 100644 --- a/actions/config_put_configuration_recorder.yaml +++ b/actions/config_put_configuration_recorder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_put_configuration_recorder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_configuration_recorder immutable: true diff --git a/actions/config_put_delivery_channel.yaml b/actions/config_put_delivery_channel.yaml index d9f77a13..d18dbd82 100644 --- a/actions/config_put_delivery_channel.yaml +++ b/actions/config_put_delivery_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_put_delivery_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_delivery_channel immutable: true diff --git a/actions/config_put_evaluations.yaml b/actions/config_put_evaluations.yaml index c09076ff..a80a5116 100644 --- a/actions/config_put_evaluations.yaml +++ b/actions/config_put_evaluations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_put_evaluations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_evaluations immutable: true diff --git a/actions/config_start_config_rules_evaluation.yaml b/actions/config_start_config_rules_evaluation.yaml index c8062511..908977ca 100644 --- a/actions/config_start_config_rules_evaluation.yaml +++ b/actions/config_start_config_rules_evaluation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_start_config_rules_evaluation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_config_rules_evaluation immutable: true diff --git a/actions/config_start_configuration_recorder.yaml b/actions/config_start_configuration_recorder.yaml index 27ba5c32..45241be9 100644 --- a/actions/config_start_configuration_recorder.yaml +++ b/actions/config_start_configuration_recorder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_start_configuration_recorder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_configuration_recorder immutable: true diff --git a/actions/config_stop_configuration_recorder.yaml b/actions/config_stop_configuration_recorder.yaml index dab577dd..fc4b2287 100644 --- a/actions/config_stop_configuration_recorder.yaml +++ b/actions/config_stop_configuration_recorder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: config_stop_configuration_recorder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_configuration_recorder immutable: true diff --git a/actions/create_vm.meta.yaml b/actions/create_vm.meta.yaml index 317aea50..68853931 100644 --- a/actions/create_vm.meta.yaml +++ b/actions/create_vm.meta.yaml @@ -5,6 +5,10 @@ enabled: true entry_point: "workflows/create_vm.yaml" parameters: + account_id: + type: string + region: + type: string ImageId: type: "string" description: "AWS image id to create instance from" diff --git a/actions/cur_delete_report_definition.yaml b/actions/cur_delete_report_definition.yaml index 9a925615..bf7513ff 100644 --- a/actions/cur_delete_report_definition.yaml +++ b/actions/cur_delete_report_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cur_delete_report_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_report_definition immutable: true diff --git a/actions/cur_describe_report_definitions.yaml b/actions/cur_describe_report_definitions.yaml index 4f33c42a..1bfc57dc 100644 --- a/actions/cur_describe_report_definitions.yaml +++ b/actions/cur_describe_report_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cur_describe_report_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_report_definitions immutable: true diff --git a/actions/cur_put_report_definition.yaml b/actions/cur_put_report_definition.yaml index 955ada8e..4b92cbfa 100644 --- a/actions/cur_put_report_definition.yaml +++ b/actions/cur_put_report_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: cur_put_report_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_report_definition immutable: true diff --git a/actions/datapipeline_activate_pipeline.yaml b/actions/datapipeline_activate_pipeline.yaml index 5560e9aa..4c14c64c 100644 --- a/actions/datapipeline_activate_pipeline.yaml +++ b/actions/datapipeline_activate_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_activate_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: activate_pipeline immutable: true diff --git a/actions/datapipeline_add_tags.yaml b/actions/datapipeline_add_tags.yaml index 1e9802a4..1b6c8120 100644 --- a/actions/datapipeline_add_tags.yaml +++ b/actions/datapipeline_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/datapipeline_create_pipeline.yaml b/actions/datapipeline_create_pipeline.yaml index 536fe6e0..4f29d99d 100644 --- a/actions/datapipeline_create_pipeline.yaml +++ b/actions/datapipeline_create_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_create_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_pipeline immutable: true diff --git a/actions/datapipeline_deactivate_pipeline.yaml b/actions/datapipeline_deactivate_pipeline.yaml index 8b919ab4..b2e0a197 100644 --- a/actions/datapipeline_deactivate_pipeline.yaml +++ b/actions/datapipeline_deactivate_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_deactivate_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deactivate_pipeline immutable: true diff --git a/actions/datapipeline_delete_pipeline.yaml b/actions/datapipeline_delete_pipeline.yaml index ec1df495..89e4915a 100644 --- a/actions/datapipeline_delete_pipeline.yaml +++ b/actions/datapipeline_delete_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_delete_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_pipeline immutable: true diff --git a/actions/datapipeline_describe_objects.yaml b/actions/datapipeline_describe_objects.yaml index e8f7c43e..0d79ae7f 100644 --- a/actions/datapipeline_describe_objects.yaml +++ b/actions/datapipeline_describe_objects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_describe_objects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_objects immutable: true diff --git a/actions/datapipeline_describe_pipelines.yaml b/actions/datapipeline_describe_pipelines.yaml index 2f972daf..dbbc9b68 100644 --- a/actions/datapipeline_describe_pipelines.yaml +++ b/actions/datapipeline_describe_pipelines.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_describe_pipelines runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_pipelines immutable: true diff --git a/actions/datapipeline_evaluate_expression.yaml b/actions/datapipeline_evaluate_expression.yaml index 90eb789f..73c9b3b8 100644 --- a/actions/datapipeline_evaluate_expression.yaml +++ b/actions/datapipeline_evaluate_expression.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_evaluate_expression runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: evaluate_expression immutable: true diff --git a/actions/datapipeline_get_pipeline_definition.yaml b/actions/datapipeline_get_pipeline_definition.yaml index ea42490a..88ed7242 100644 --- a/actions/datapipeline_get_pipeline_definition.yaml +++ b/actions/datapipeline_get_pipeline_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_get_pipeline_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_pipeline_definition immutable: true diff --git a/actions/datapipeline_list_pipelines.yaml b/actions/datapipeline_list_pipelines.yaml index 1b89e02a..8cbba801 100644 --- a/actions/datapipeline_list_pipelines.yaml +++ b/actions/datapipeline_list_pipelines.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_list_pipelines runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_pipelines immutable: true diff --git a/actions/datapipeline_poll_for_task.yaml b/actions/datapipeline_poll_for_task.yaml index e2142cc4..ceded46e 100644 --- a/actions/datapipeline_poll_for_task.yaml +++ b/actions/datapipeline_poll_for_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_poll_for_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: poll_for_task immutable: true diff --git a/actions/datapipeline_put_pipeline_definition.yaml b/actions/datapipeline_put_pipeline_definition.yaml index 6766f834..504d7592 100644 --- a/actions/datapipeline_put_pipeline_definition.yaml +++ b/actions/datapipeline_put_pipeline_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_put_pipeline_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_pipeline_definition immutable: true diff --git a/actions/datapipeline_query_objects.yaml b/actions/datapipeline_query_objects.yaml index 7ba45b49..745b9c63 100644 --- a/actions/datapipeline_query_objects.yaml +++ b/actions/datapipeline_query_objects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_query_objects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: query_objects immutable: true diff --git a/actions/datapipeline_remove_tags.yaml b/actions/datapipeline_remove_tags.yaml index 450a4453..f02d20e2 100644 --- a/actions/datapipeline_remove_tags.yaml +++ b/actions/datapipeline_remove_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_remove_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags immutable: true diff --git a/actions/datapipeline_report_task_progress.yaml b/actions/datapipeline_report_task_progress.yaml index dadd91a7..4ce198d9 100644 --- a/actions/datapipeline_report_task_progress.yaml +++ b/actions/datapipeline_report_task_progress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_report_task_progress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: report_task_progress immutable: true diff --git a/actions/datapipeline_report_task_runner_heartbeat.yaml b/actions/datapipeline_report_task_runner_heartbeat.yaml index a310e863..b4aea4e8 100644 --- a/actions/datapipeline_report_task_runner_heartbeat.yaml +++ b/actions/datapipeline_report_task_runner_heartbeat.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_report_task_runner_heartbeat runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: report_task_runner_heartbeat immutable: true diff --git a/actions/datapipeline_set_status.yaml b/actions/datapipeline_set_status.yaml index d8ec3295..6a10365f 100644 --- a/actions/datapipeline_set_status.yaml +++ b/actions/datapipeline_set_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_set_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_status immutable: true diff --git a/actions/datapipeline_set_task_status.yaml b/actions/datapipeline_set_task_status.yaml index 7237622e..3fb5b46c 100644 --- a/actions/datapipeline_set_task_status.yaml +++ b/actions/datapipeline_set_task_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_set_task_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_task_status immutable: true diff --git a/actions/datapipeline_validate_pipeline_definition.yaml b/actions/datapipeline_validate_pipeline_definition.yaml index 42a8b2f8..4cb98c80 100644 --- a/actions/datapipeline_validate_pipeline_definition.yaml +++ b/actions/datapipeline_validate_pipeline_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: datapipeline_validate_pipeline_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: validate_pipeline_definition immutable: true diff --git a/actions/dax_create_cluster.yaml b/actions/dax_create_cluster.yaml index b69bfc9d..7a394fcd 100644 --- a/actions/dax_create_cluster.yaml +++ b/actions/dax_create_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_create_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster immutable: true diff --git a/actions/dax_create_parameter_group.yaml b/actions/dax_create_parameter_group.yaml index 67634562..1cf0b4f4 100644 --- a/actions/dax_create_parameter_group.yaml +++ b/actions/dax_create_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_create_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_parameter_group immutable: true diff --git a/actions/dax_create_subnet_group.yaml b/actions/dax_create_subnet_group.yaml index 6b156926..fc16d353 100644 --- a/actions/dax_create_subnet_group.yaml +++ b/actions/dax_create_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_create_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_subnet_group immutable: true diff --git a/actions/dax_decrease_replication_factor.yaml b/actions/dax_decrease_replication_factor.yaml index ef0d1bf1..a0eb2019 100644 --- a/actions/dax_decrease_replication_factor.yaml +++ b/actions/dax_decrease_replication_factor.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_decrease_replication_factor runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: decrease_replication_factor immutable: true diff --git a/actions/dax_delete_cluster.yaml b/actions/dax_delete_cluster.yaml index 61ccc2bd..935e0f9c 100644 --- a/actions/dax_delete_cluster.yaml +++ b/actions/dax_delete_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_delete_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster immutable: true diff --git a/actions/dax_delete_parameter_group.yaml b/actions/dax_delete_parameter_group.yaml index 07b71fb8..1065f7f5 100644 --- a/actions/dax_delete_parameter_group.yaml +++ b/actions/dax_delete_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_delete_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_parameter_group immutable: true diff --git a/actions/dax_delete_subnet_group.yaml b/actions/dax_delete_subnet_group.yaml index c6d5616c..53d86624 100644 --- a/actions/dax_delete_subnet_group.yaml +++ b/actions/dax_delete_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_delete_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_subnet_group immutable: true diff --git a/actions/dax_describe_clusters.yaml b/actions/dax_describe_clusters.yaml index a0fffe44..8d081b6e 100644 --- a/actions/dax_describe_clusters.yaml +++ b/actions/dax_describe_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_describe_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_clusters immutable: true diff --git a/actions/dax_describe_default_parameters.yaml b/actions/dax_describe_default_parameters.yaml index 227778df..2ad44cf7 100644 --- a/actions/dax_describe_default_parameters.yaml +++ b/actions/dax_describe_default_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_describe_default_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_default_parameters immutable: true diff --git a/actions/dax_describe_events.yaml b/actions/dax_describe_events.yaml index a78f2bd8..d682aad6 100644 --- a/actions/dax_describe_events.yaml +++ b/actions/dax_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/dax_describe_parameter_groups.yaml b/actions/dax_describe_parameter_groups.yaml index 06846a0f..c0e30aee 100644 --- a/actions/dax_describe_parameter_groups.yaml +++ b/actions/dax_describe_parameter_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_describe_parameter_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_parameter_groups immutable: true diff --git a/actions/dax_describe_parameters.yaml b/actions/dax_describe_parameters.yaml index 3ce2ab2b..98afb45f 100644 --- a/actions/dax_describe_parameters.yaml +++ b/actions/dax_describe_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_describe_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_parameters immutable: true diff --git a/actions/dax_describe_subnet_groups.yaml b/actions/dax_describe_subnet_groups.yaml index 71db29db..7f00224e 100644 --- a/actions/dax_describe_subnet_groups.yaml +++ b/actions/dax_describe_subnet_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_describe_subnet_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_subnet_groups immutable: true diff --git a/actions/dax_increase_replication_factor.yaml b/actions/dax_increase_replication_factor.yaml index f189d3b8..4c5606fd 100644 --- a/actions/dax_increase_replication_factor.yaml +++ b/actions/dax_increase_replication_factor.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_increase_replication_factor runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: increase_replication_factor immutable: true diff --git a/actions/dax_list_tags.yaml b/actions/dax_list_tags.yaml index 76d3d276..ed361826 100644 --- a/actions/dax_list_tags.yaml +++ b/actions/dax_list_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_list_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags immutable: true diff --git a/actions/dax_reboot_node.yaml b/actions/dax_reboot_node.yaml index 84bebe47..3467baa1 100644 --- a/actions/dax_reboot_node.yaml +++ b/actions/dax_reboot_node.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_reboot_node runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_node immutable: true diff --git a/actions/dax_tag_resource.yaml b/actions/dax_tag_resource.yaml index 63ae976d..cba2a784 100644 --- a/actions/dax_tag_resource.yaml +++ b/actions/dax_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/dax_untag_resource.yaml b/actions/dax_untag_resource.yaml index 9e4c6b01..a5907eed 100644 --- a/actions/dax_untag_resource.yaml +++ b/actions/dax_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/dax_update_cluster.yaml b/actions/dax_update_cluster.yaml index 5ee791b3..4ddeae84 100644 --- a/actions/dax_update_cluster.yaml +++ b/actions/dax_update_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_update_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_cluster immutable: true diff --git a/actions/dax_update_parameter_group.yaml b/actions/dax_update_parameter_group.yaml index afe6f098..847a31fd 100644 --- a/actions/dax_update_parameter_group.yaml +++ b/actions/dax_update_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_update_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_parameter_group immutable: true diff --git a/actions/dax_update_subnet_group.yaml b/actions/dax_update_subnet_group.yaml index 1bd30d1a..31279ebd 100644 --- a/actions/dax_update_subnet_group.yaml +++ b/actions/dax_update_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dax_update_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_subnet_group immutable: true diff --git a/actions/destroy_vm.meta.yaml b/actions/destroy_vm.meta.yaml index d3ecf0d1..a73104dc 100644 --- a/actions/destroy_vm.meta.yaml +++ b/actions/destroy_vm.meta.yaml @@ -5,6 +5,10 @@ enabled: true entry_point: "workflows/destroy_vm.yaml" parameters: + account_id: + type: string + region: + type: string dns_zone: type: "string" description: "Route53 DNS Zone to add host to" diff --git a/actions/devicefarm_create_device_pool.yaml b/actions/devicefarm_create_device_pool.yaml index 00931136..ac667e05 100644 --- a/actions/devicefarm_create_device_pool.yaml +++ b/actions/devicefarm_create_device_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_create_device_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_device_pool immutable: true diff --git a/actions/devicefarm_create_network_profile.yaml b/actions/devicefarm_create_network_profile.yaml index 31be29c3..d0d63864 100644 --- a/actions/devicefarm_create_network_profile.yaml +++ b/actions/devicefarm_create_network_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_create_network_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_network_profile immutable: true diff --git a/actions/devicefarm_create_project.yaml b/actions/devicefarm_create_project.yaml index c47f3de0..716b2599 100644 --- a/actions/devicefarm_create_project.yaml +++ b/actions/devicefarm_create_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_create_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_project immutable: true diff --git a/actions/devicefarm_create_remote_access_session.yaml b/actions/devicefarm_create_remote_access_session.yaml index e086c0d4..6a76fcec 100644 --- a/actions/devicefarm_create_remote_access_session.yaml +++ b/actions/devicefarm_create_remote_access_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_create_remote_access_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_remote_access_session immutable: true diff --git a/actions/devicefarm_create_upload.yaml b/actions/devicefarm_create_upload.yaml index 8807fe2d..6e7ebad1 100644 --- a/actions/devicefarm_create_upload.yaml +++ b/actions/devicefarm_create_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_create_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_upload immutable: true diff --git a/actions/devicefarm_delete_device_pool.yaml b/actions/devicefarm_delete_device_pool.yaml index 5181c8ef..8f9606bf 100644 --- a/actions/devicefarm_delete_device_pool.yaml +++ b/actions/devicefarm_delete_device_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_delete_device_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_device_pool immutable: true diff --git a/actions/devicefarm_delete_network_profile.yaml b/actions/devicefarm_delete_network_profile.yaml index ca89ea18..51de8b94 100644 --- a/actions/devicefarm_delete_network_profile.yaml +++ b/actions/devicefarm_delete_network_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_delete_network_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_network_profile immutable: true diff --git a/actions/devicefarm_delete_project.yaml b/actions/devicefarm_delete_project.yaml index 3307ac75..92143274 100644 --- a/actions/devicefarm_delete_project.yaml +++ b/actions/devicefarm_delete_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_delete_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_project immutable: true diff --git a/actions/devicefarm_delete_remote_access_session.yaml b/actions/devicefarm_delete_remote_access_session.yaml index de318d6c..3fdcb13b 100644 --- a/actions/devicefarm_delete_remote_access_session.yaml +++ b/actions/devicefarm_delete_remote_access_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_delete_remote_access_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_remote_access_session immutable: true diff --git a/actions/devicefarm_delete_run.yaml b/actions/devicefarm_delete_run.yaml index f4fd1bc7..a993dc70 100644 --- a/actions/devicefarm_delete_run.yaml +++ b/actions/devicefarm_delete_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_delete_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_run immutable: true diff --git a/actions/devicefarm_delete_upload.yaml b/actions/devicefarm_delete_upload.yaml index fe41e264..1ccf7b27 100644 --- a/actions/devicefarm_delete_upload.yaml +++ b/actions/devicefarm_delete_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_delete_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_upload immutable: true diff --git a/actions/devicefarm_get_account_settings.yaml b/actions/devicefarm_get_account_settings.yaml index 2ed7d525..38fb52f0 100644 --- a/actions/devicefarm_get_account_settings.yaml +++ b/actions/devicefarm_get_account_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_account_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_account_settings immutable: true diff --git a/actions/devicefarm_get_device.yaml b/actions/devicefarm_get_device.yaml index 00b4ca54..1aa74940 100644 --- a/actions/devicefarm_get_device.yaml +++ b/actions/devicefarm_get_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_device immutable: true diff --git a/actions/devicefarm_get_device_pool.yaml b/actions/devicefarm_get_device_pool.yaml index 6ab88237..cf2290b8 100644 --- a/actions/devicefarm_get_device_pool.yaml +++ b/actions/devicefarm_get_device_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_device_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_device_pool immutable: true diff --git a/actions/devicefarm_get_device_pool_compatibility.yaml b/actions/devicefarm_get_device_pool_compatibility.yaml index 9af8a9af..b286bdbd 100644 --- a/actions/devicefarm_get_device_pool_compatibility.yaml +++ b/actions/devicefarm_get_device_pool_compatibility.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_device_pool_compatibility runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_device_pool_compatibility immutable: true diff --git a/actions/devicefarm_get_job.yaml b/actions/devicefarm_get_job.yaml index f575b0e1..c57ee7cf 100644 --- a/actions/devicefarm_get_job.yaml +++ b/actions/devicefarm_get_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_job immutable: true diff --git a/actions/devicefarm_get_network_profile.yaml b/actions/devicefarm_get_network_profile.yaml index 23673170..2015aba9 100644 --- a/actions/devicefarm_get_network_profile.yaml +++ b/actions/devicefarm_get_network_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_network_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_network_profile immutable: true diff --git a/actions/devicefarm_get_offering_status.yaml b/actions/devicefarm_get_offering_status.yaml index 1586b8cf..7c8d0300 100644 --- a/actions/devicefarm_get_offering_status.yaml +++ b/actions/devicefarm_get_offering_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_offering_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_offering_status immutable: true diff --git a/actions/devicefarm_get_project.yaml b/actions/devicefarm_get_project.yaml index e1e82425..d6f0a487 100644 --- a/actions/devicefarm_get_project.yaml +++ b/actions/devicefarm_get_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_project immutable: true diff --git a/actions/devicefarm_get_remote_access_session.yaml b/actions/devicefarm_get_remote_access_session.yaml index d493610d..a993996c 100644 --- a/actions/devicefarm_get_remote_access_session.yaml +++ b/actions/devicefarm_get_remote_access_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_remote_access_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_remote_access_session immutable: true diff --git a/actions/devicefarm_get_run.yaml b/actions/devicefarm_get_run.yaml index e15e3e4f..452893a4 100644 --- a/actions/devicefarm_get_run.yaml +++ b/actions/devicefarm_get_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_run immutable: true diff --git a/actions/devicefarm_get_suite.yaml b/actions/devicefarm_get_suite.yaml index 37a9b9b3..f48fa56e 100644 --- a/actions/devicefarm_get_suite.yaml +++ b/actions/devicefarm_get_suite.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_suite runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_suite immutable: true diff --git a/actions/devicefarm_get_test.yaml b/actions/devicefarm_get_test.yaml index 2968efb9..0e921633 100644 --- a/actions/devicefarm_get_test.yaml +++ b/actions/devicefarm_get_test.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_test runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_test immutable: true diff --git a/actions/devicefarm_get_upload.yaml b/actions/devicefarm_get_upload.yaml index fb39d4a2..770deead 100644 --- a/actions/devicefarm_get_upload.yaml +++ b/actions/devicefarm_get_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_get_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_upload immutable: true diff --git a/actions/devicefarm_install_to_remote_access_session.yaml b/actions/devicefarm_install_to_remote_access_session.yaml index 4673d562..ce419d86 100644 --- a/actions/devicefarm_install_to_remote_access_session.yaml +++ b/actions/devicefarm_install_to_remote_access_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_install_to_remote_access_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: install_to_remote_access_session immutable: true diff --git a/actions/devicefarm_list_artifacts.yaml b/actions/devicefarm_list_artifacts.yaml index bb971f02..d6db1f68 100644 --- a/actions/devicefarm_list_artifacts.yaml +++ b/actions/devicefarm_list_artifacts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_artifacts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_artifacts immutable: true diff --git a/actions/devicefarm_list_device_pools.yaml b/actions/devicefarm_list_device_pools.yaml index 76f94e89..a325a6e9 100644 --- a/actions/devicefarm_list_device_pools.yaml +++ b/actions/devicefarm_list_device_pools.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_device_pools runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_device_pools immutable: true diff --git a/actions/devicefarm_list_devices.yaml b/actions/devicefarm_list_devices.yaml index ce251072..b2f8ed2d 100644 --- a/actions/devicefarm_list_devices.yaml +++ b/actions/devicefarm_list_devices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_devices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_devices immutable: true diff --git a/actions/devicefarm_list_jobs.yaml b/actions/devicefarm_list_jobs.yaml index f030770a..be75db0c 100644 --- a/actions/devicefarm_list_jobs.yaml +++ b/actions/devicefarm_list_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs immutable: true diff --git a/actions/devicefarm_list_network_profiles.yaml b/actions/devicefarm_list_network_profiles.yaml index fc5053e4..07023097 100644 --- a/actions/devicefarm_list_network_profiles.yaml +++ b/actions/devicefarm_list_network_profiles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_network_profiles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_network_profiles immutable: true diff --git a/actions/devicefarm_list_offering_promotions.yaml b/actions/devicefarm_list_offering_promotions.yaml index 43b8e102..7eb47f63 100644 --- a/actions/devicefarm_list_offering_promotions.yaml +++ b/actions/devicefarm_list_offering_promotions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_offering_promotions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_offering_promotions immutable: true diff --git a/actions/devicefarm_list_offering_transactions.yaml b/actions/devicefarm_list_offering_transactions.yaml index 42093072..e2dd6b49 100644 --- a/actions/devicefarm_list_offering_transactions.yaml +++ b/actions/devicefarm_list_offering_transactions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_offering_transactions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_offering_transactions immutable: true diff --git a/actions/devicefarm_list_offerings.yaml b/actions/devicefarm_list_offerings.yaml index a984f3cd..e1328b53 100644 --- a/actions/devicefarm_list_offerings.yaml +++ b/actions/devicefarm_list_offerings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_offerings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_offerings immutable: true diff --git a/actions/devicefarm_list_projects.yaml b/actions/devicefarm_list_projects.yaml index 2f3a3a45..8a3a37b9 100644 --- a/actions/devicefarm_list_projects.yaml +++ b/actions/devicefarm_list_projects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_projects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_projects immutable: true diff --git a/actions/devicefarm_list_remote_access_sessions.yaml b/actions/devicefarm_list_remote_access_sessions.yaml index 76a857a3..4adb81b9 100644 --- a/actions/devicefarm_list_remote_access_sessions.yaml +++ b/actions/devicefarm_list_remote_access_sessions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_remote_access_sessions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_remote_access_sessions immutable: true diff --git a/actions/devicefarm_list_runs.yaml b/actions/devicefarm_list_runs.yaml index 104589c2..a70588d5 100644 --- a/actions/devicefarm_list_runs.yaml +++ b/actions/devicefarm_list_runs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_runs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_runs immutable: true diff --git a/actions/devicefarm_list_samples.yaml b/actions/devicefarm_list_samples.yaml index e30c442c..7dead0d2 100644 --- a/actions/devicefarm_list_samples.yaml +++ b/actions/devicefarm_list_samples.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_samples runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_samples immutable: true diff --git a/actions/devicefarm_list_suites.yaml b/actions/devicefarm_list_suites.yaml index fdb237e4..0b9e463a 100644 --- a/actions/devicefarm_list_suites.yaml +++ b/actions/devicefarm_list_suites.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_suites runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_suites immutable: true diff --git a/actions/devicefarm_list_tests.yaml b/actions/devicefarm_list_tests.yaml index 3b0d25ef..60e4f017 100644 --- a/actions/devicefarm_list_tests.yaml +++ b/actions/devicefarm_list_tests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_tests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tests immutable: true diff --git a/actions/devicefarm_list_unique_problems.yaml b/actions/devicefarm_list_unique_problems.yaml index fadb3fd9..32700b18 100644 --- a/actions/devicefarm_list_unique_problems.yaml +++ b/actions/devicefarm_list_unique_problems.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_unique_problems runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_unique_problems immutable: true diff --git a/actions/devicefarm_list_uploads.yaml b/actions/devicefarm_list_uploads.yaml index fd0b9e9a..8743bc0a 100644 --- a/actions/devicefarm_list_uploads.yaml +++ b/actions/devicefarm_list_uploads.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_list_uploads runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_uploads immutable: true diff --git a/actions/devicefarm_purchase_offering.yaml b/actions/devicefarm_purchase_offering.yaml index 9f9c33c6..cf17d579 100644 --- a/actions/devicefarm_purchase_offering.yaml +++ b/actions/devicefarm_purchase_offering.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_purchase_offering runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_offering immutable: true diff --git a/actions/devicefarm_renew_offering.yaml b/actions/devicefarm_renew_offering.yaml index 5619a0e1..ca0e8d37 100644 --- a/actions/devicefarm_renew_offering.yaml +++ b/actions/devicefarm_renew_offering.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_renew_offering runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: renew_offering immutable: true diff --git a/actions/devicefarm_schedule_run.yaml b/actions/devicefarm_schedule_run.yaml index 8e35899c..ec662467 100644 --- a/actions/devicefarm_schedule_run.yaml +++ b/actions/devicefarm_schedule_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_schedule_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: schedule_run immutable: true diff --git a/actions/devicefarm_stop_remote_access_session.yaml b/actions/devicefarm_stop_remote_access_session.yaml index 08b17079..5da896df 100644 --- a/actions/devicefarm_stop_remote_access_session.yaml +++ b/actions/devicefarm_stop_remote_access_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_stop_remote_access_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_remote_access_session immutable: true diff --git a/actions/devicefarm_stop_run.yaml b/actions/devicefarm_stop_run.yaml index bff1ca57..815ed48c 100644 --- a/actions/devicefarm_stop_run.yaml +++ b/actions/devicefarm_stop_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_stop_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_run immutable: true diff --git a/actions/devicefarm_update_device_pool.yaml b/actions/devicefarm_update_device_pool.yaml index bc877e08..ed2e58d9 100644 --- a/actions/devicefarm_update_device_pool.yaml +++ b/actions/devicefarm_update_device_pool.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_update_device_pool runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_device_pool immutable: true diff --git a/actions/devicefarm_update_network_profile.yaml b/actions/devicefarm_update_network_profile.yaml index cf3405ad..d9e131f1 100644 --- a/actions/devicefarm_update_network_profile.yaml +++ b/actions/devicefarm_update_network_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_update_network_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_network_profile immutable: true diff --git a/actions/devicefarm_update_project.yaml b/actions/devicefarm_update_project.yaml index 389d1e86..a040edf5 100644 --- a/actions/devicefarm_update_project.yaml +++ b/actions/devicefarm_update_project.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: devicefarm_update_project runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_project immutable: true diff --git a/actions/directconnect_allocate_connection_on_interconnect.yaml b/actions/directconnect_allocate_connection_on_interconnect.yaml index 18a6b8af..fdb27534 100644 --- a/actions/directconnect_allocate_connection_on_interconnect.yaml +++ b/actions/directconnect_allocate_connection_on_interconnect.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_allocate_connection_on_interconnect runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_connection_on_interconnect immutable: true diff --git a/actions/directconnect_allocate_hosted_connection.yaml b/actions/directconnect_allocate_hosted_connection.yaml index 0a2044ed..5e3c37da 100644 --- a/actions/directconnect_allocate_hosted_connection.yaml +++ b/actions/directconnect_allocate_hosted_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_allocate_hosted_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_hosted_connection immutable: true diff --git a/actions/directconnect_allocate_private_virtual_interface.yaml b/actions/directconnect_allocate_private_virtual_interface.yaml index 9d223bd7..838daab3 100644 --- a/actions/directconnect_allocate_private_virtual_interface.yaml +++ b/actions/directconnect_allocate_private_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_allocate_private_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_private_virtual_interface immutable: true diff --git a/actions/directconnect_allocate_public_virtual_interface.yaml b/actions/directconnect_allocate_public_virtual_interface.yaml index 0e1ec954..7dc194eb 100644 --- a/actions/directconnect_allocate_public_virtual_interface.yaml +++ b/actions/directconnect_allocate_public_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_allocate_public_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_public_virtual_interface immutable: true diff --git a/actions/directconnect_associate_connection_with_lag.yaml b/actions/directconnect_associate_connection_with_lag.yaml index e8211b5f..60a538ff 100644 --- a/actions/directconnect_associate_connection_with_lag.yaml +++ b/actions/directconnect_associate_connection_with_lag.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_associate_connection_with_lag runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_connection_with_lag immutable: true diff --git a/actions/directconnect_associate_hosted_connection.yaml b/actions/directconnect_associate_hosted_connection.yaml index 26bb88fa..92845c7f 100644 --- a/actions/directconnect_associate_hosted_connection.yaml +++ b/actions/directconnect_associate_hosted_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_associate_hosted_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_hosted_connection immutable: true diff --git a/actions/directconnect_associate_virtual_interface.yaml b/actions/directconnect_associate_virtual_interface.yaml index 99bb8f6e..6c13ff44 100644 --- a/actions/directconnect_associate_virtual_interface.yaml +++ b/actions/directconnect_associate_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_associate_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_virtual_interface immutable: true diff --git a/actions/directconnect_confirm_connection.yaml b/actions/directconnect_confirm_connection.yaml index 8dd13477..878e75ba 100644 --- a/actions/directconnect_confirm_connection.yaml +++ b/actions/directconnect_confirm_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_confirm_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_connection immutable: true diff --git a/actions/directconnect_confirm_private_virtual_interface.yaml b/actions/directconnect_confirm_private_virtual_interface.yaml index 903e130b..bec04435 100644 --- a/actions/directconnect_confirm_private_virtual_interface.yaml +++ b/actions/directconnect_confirm_private_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_confirm_private_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_private_virtual_interface immutable: true diff --git a/actions/directconnect_confirm_public_virtual_interface.yaml b/actions/directconnect_confirm_public_virtual_interface.yaml index 7ae38880..156f8653 100644 --- a/actions/directconnect_confirm_public_virtual_interface.yaml +++ b/actions/directconnect_confirm_public_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_confirm_public_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_public_virtual_interface immutable: true diff --git a/actions/directconnect_create_bgp_peer.yaml b/actions/directconnect_create_bgp_peer.yaml index 16986d17..818c46dd 100644 --- a/actions/directconnect_create_bgp_peer.yaml +++ b/actions/directconnect_create_bgp_peer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_create_bgp_peer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_bgp_peer immutable: true diff --git a/actions/directconnect_create_connection.yaml b/actions/directconnect_create_connection.yaml index e7f6fdbb..c29d94ca 100644 --- a/actions/directconnect_create_connection.yaml +++ b/actions/directconnect_create_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_create_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_connection immutable: true diff --git a/actions/directconnect_create_interconnect.yaml b/actions/directconnect_create_interconnect.yaml index 944000c0..987f498e 100644 --- a/actions/directconnect_create_interconnect.yaml +++ b/actions/directconnect_create_interconnect.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_create_interconnect runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_interconnect immutable: true diff --git a/actions/directconnect_create_lag.yaml b/actions/directconnect_create_lag.yaml index 986c34f3..c48eafc4 100644 --- a/actions/directconnect_create_lag.yaml +++ b/actions/directconnect_create_lag.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_create_lag runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_lag immutable: true diff --git a/actions/directconnect_create_private_virtual_interface.yaml b/actions/directconnect_create_private_virtual_interface.yaml index 8c6c74f3..b45e2c72 100644 --- a/actions/directconnect_create_private_virtual_interface.yaml +++ b/actions/directconnect_create_private_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_create_private_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_private_virtual_interface immutable: true diff --git a/actions/directconnect_create_public_virtual_interface.yaml b/actions/directconnect_create_public_virtual_interface.yaml index a77089de..b1e1cf41 100644 --- a/actions/directconnect_create_public_virtual_interface.yaml +++ b/actions/directconnect_create_public_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_create_public_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_public_virtual_interface immutable: true diff --git a/actions/directconnect_delete_bgp_peer.yaml b/actions/directconnect_delete_bgp_peer.yaml index fb05581d..8e1df10a 100644 --- a/actions/directconnect_delete_bgp_peer.yaml +++ b/actions/directconnect_delete_bgp_peer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_delete_bgp_peer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bgp_peer immutable: true diff --git a/actions/directconnect_delete_connection.yaml b/actions/directconnect_delete_connection.yaml index 221686f0..68c453a4 100644 --- a/actions/directconnect_delete_connection.yaml +++ b/actions/directconnect_delete_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_delete_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_connection immutable: true diff --git a/actions/directconnect_delete_interconnect.yaml b/actions/directconnect_delete_interconnect.yaml index 8f7f977c..7be7cb33 100644 --- a/actions/directconnect_delete_interconnect.yaml +++ b/actions/directconnect_delete_interconnect.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_delete_interconnect runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_interconnect immutable: true diff --git a/actions/directconnect_delete_lag.yaml b/actions/directconnect_delete_lag.yaml index 112dee20..9871b0d3 100644 --- a/actions/directconnect_delete_lag.yaml +++ b/actions/directconnect_delete_lag.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_delete_lag runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_lag immutable: true diff --git a/actions/directconnect_delete_virtual_interface.yaml b/actions/directconnect_delete_virtual_interface.yaml index 593ec18f..af71543d 100644 --- a/actions/directconnect_delete_virtual_interface.yaml +++ b/actions/directconnect_delete_virtual_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_delete_virtual_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_virtual_interface immutable: true diff --git a/actions/directconnect_describe_connection_loa.yaml b/actions/directconnect_describe_connection_loa.yaml index c386622a..d5e30da6 100644 --- a/actions/directconnect_describe_connection_loa.yaml +++ b/actions/directconnect_describe_connection_loa.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_connection_loa runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_connection_loa immutable: true diff --git a/actions/directconnect_describe_connections.yaml b/actions/directconnect_describe_connections.yaml index f43fa5ac..6bf0fd9f 100644 --- a/actions/directconnect_describe_connections.yaml +++ b/actions/directconnect_describe_connections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_connections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_connections immutable: true diff --git a/actions/directconnect_describe_connections_on_interconnect.yaml b/actions/directconnect_describe_connections_on_interconnect.yaml index e64e1207..0f36960f 100644 --- a/actions/directconnect_describe_connections_on_interconnect.yaml +++ b/actions/directconnect_describe_connections_on_interconnect.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_connections_on_interconnect runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_connections_on_interconnect immutable: true diff --git a/actions/directconnect_describe_hosted_connections.yaml b/actions/directconnect_describe_hosted_connections.yaml index e3b50be3..54449791 100644 --- a/actions/directconnect_describe_hosted_connections.yaml +++ b/actions/directconnect_describe_hosted_connections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_hosted_connections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_hosted_connections immutable: true diff --git a/actions/directconnect_describe_interconnect_loa.yaml b/actions/directconnect_describe_interconnect_loa.yaml index 03e617ee..33f9aae6 100644 --- a/actions/directconnect_describe_interconnect_loa.yaml +++ b/actions/directconnect_describe_interconnect_loa.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_interconnect_loa runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_interconnect_loa immutable: true diff --git a/actions/directconnect_describe_interconnects.yaml b/actions/directconnect_describe_interconnects.yaml index f7590bd0..5e7aab69 100644 --- a/actions/directconnect_describe_interconnects.yaml +++ b/actions/directconnect_describe_interconnects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_interconnects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_interconnects immutable: true diff --git a/actions/directconnect_describe_lags.yaml b/actions/directconnect_describe_lags.yaml index f7440e0e..a4dc450f 100644 --- a/actions/directconnect_describe_lags.yaml +++ b/actions/directconnect_describe_lags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_lags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_lags immutable: true diff --git a/actions/directconnect_describe_loa.yaml b/actions/directconnect_describe_loa.yaml index 71b0d0f8..a421f1db 100644 --- a/actions/directconnect_describe_loa.yaml +++ b/actions/directconnect_describe_loa.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_loa runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_loa immutable: true diff --git a/actions/directconnect_describe_tags.yaml b/actions/directconnect_describe_tags.yaml index 9572467b..4ac3a30d 100644 --- a/actions/directconnect_describe_tags.yaml +++ b/actions/directconnect_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/directconnect_describe_virtual_interfaces.yaml b/actions/directconnect_describe_virtual_interfaces.yaml index 66becf82..9ca65735 100644 --- a/actions/directconnect_describe_virtual_interfaces.yaml +++ b/actions/directconnect_describe_virtual_interfaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_describe_virtual_interfaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_virtual_interfaces immutable: true diff --git a/actions/directconnect_disassociate_connection_from_lag.yaml b/actions/directconnect_disassociate_connection_from_lag.yaml index af924c8e..5899ae29 100644 --- a/actions/directconnect_disassociate_connection_from_lag.yaml +++ b/actions/directconnect_disassociate_connection_from_lag.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_disassociate_connection_from_lag runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_connection_from_lag immutable: true diff --git a/actions/directconnect_tag_resource.yaml b/actions/directconnect_tag_resource.yaml index 47346530..9ddfb17c 100644 --- a/actions/directconnect_tag_resource.yaml +++ b/actions/directconnect_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/directconnect_untag_resource.yaml b/actions/directconnect_untag_resource.yaml index fe1ec64f..cc0271f8 100644 --- a/actions/directconnect_untag_resource.yaml +++ b/actions/directconnect_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/directconnect_update_lag.yaml b/actions/directconnect_update_lag.yaml index 4f167de4..5ff4beae 100644 --- a/actions/directconnect_update_lag.yaml +++ b/actions/directconnect_update_lag.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: directconnect_update_lag runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_lag immutable: true diff --git a/actions/discovery_associate_configuration_items_to_application.yaml b/actions/discovery_associate_configuration_items_to_application.yaml index 7bbd3465..76a24f0c 100644 --- a/actions/discovery_associate_configuration_items_to_application.yaml +++ b/actions/discovery_associate_configuration_items_to_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_associate_configuration_items_to_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_configuration_items_to_application immutable: true diff --git a/actions/discovery_create_application.yaml b/actions/discovery_create_application.yaml index 67adf677..94ada789 100644 --- a/actions/discovery_create_application.yaml +++ b/actions/discovery_create_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_create_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_application immutable: true diff --git a/actions/discovery_create_tags.yaml b/actions/discovery_create_tags.yaml index ecc40f82..5e23a6ef 100644 --- a/actions/discovery_create_tags.yaml +++ b/actions/discovery_create_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_create_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tags immutable: true diff --git a/actions/discovery_delete_applications.yaml b/actions/discovery_delete_applications.yaml index 69137862..fd4e39d9 100644 --- a/actions/discovery_delete_applications.yaml +++ b/actions/discovery_delete_applications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_delete_applications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_applications immutable: true diff --git a/actions/discovery_delete_tags.yaml b/actions/discovery_delete_tags.yaml index 68525e31..b46feb27 100644 --- a/actions/discovery_delete_tags.yaml +++ b/actions/discovery_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/discovery_describe_agents.yaml b/actions/discovery_describe_agents.yaml index 5d8799e7..7d35dade 100644 --- a/actions/discovery_describe_agents.yaml +++ b/actions/discovery_describe_agents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_describe_agents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_agents immutable: true diff --git a/actions/discovery_describe_configurations.yaml b/actions/discovery_describe_configurations.yaml index 65ed97ee..e1626cbc 100644 --- a/actions/discovery_describe_configurations.yaml +++ b/actions/discovery_describe_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_describe_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_configurations immutable: true diff --git a/actions/discovery_describe_export_configurations.yaml b/actions/discovery_describe_export_configurations.yaml index 408b64e4..d190d381 100644 --- a/actions/discovery_describe_export_configurations.yaml +++ b/actions/discovery_describe_export_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_describe_export_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_export_configurations immutable: true diff --git a/actions/discovery_describe_export_tasks.yaml b/actions/discovery_describe_export_tasks.yaml index c9edad70..da5f693b 100644 --- a/actions/discovery_describe_export_tasks.yaml +++ b/actions/discovery_describe_export_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_describe_export_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_export_tasks immutable: true diff --git a/actions/discovery_describe_tags.yaml b/actions/discovery_describe_tags.yaml index 73e82507..8a662eb9 100644 --- a/actions/discovery_describe_tags.yaml +++ b/actions/discovery_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/discovery_disassociate_configuration_items_from_application.yaml b/actions/discovery_disassociate_configuration_items_from_application.yaml index 684a4a5b..f50a14f5 100644 --- a/actions/discovery_disassociate_configuration_items_from_application.yaml +++ b/actions/discovery_disassociate_configuration_items_from_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_disassociate_configuration_items_from_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_configuration_items_from_application immutable: true diff --git a/actions/discovery_get_discovery_summary.yaml b/actions/discovery_get_discovery_summary.yaml index 358d8a71..69f32b3c 100644 --- a/actions/discovery_get_discovery_summary.yaml +++ b/actions/discovery_get_discovery_summary.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_get_discovery_summary runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_discovery_summary immutable: true diff --git a/actions/discovery_list_configurations.yaml b/actions/discovery_list_configurations.yaml index 89edc94b..f8c90273 100644 --- a/actions/discovery_list_configurations.yaml +++ b/actions/discovery_list_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_list_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_configurations immutable: true diff --git a/actions/discovery_list_server_neighbors.yaml b/actions/discovery_list_server_neighbors.yaml index b81b3851..18f30518 100644 --- a/actions/discovery_list_server_neighbors.yaml +++ b/actions/discovery_list_server_neighbors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_list_server_neighbors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_server_neighbors immutable: true diff --git a/actions/discovery_start_data_collection_by_agent_ids.yaml b/actions/discovery_start_data_collection_by_agent_ids.yaml index e290558d..cba07ff0 100644 --- a/actions/discovery_start_data_collection_by_agent_ids.yaml +++ b/actions/discovery_start_data_collection_by_agent_ids.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_start_data_collection_by_agent_ids runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_data_collection_by_agent_ids immutable: true diff --git a/actions/discovery_start_export_task.yaml b/actions/discovery_start_export_task.yaml index 958876d0..3d8ce4da 100644 --- a/actions/discovery_start_export_task.yaml +++ b/actions/discovery_start_export_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_start_export_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_export_task immutable: true diff --git a/actions/discovery_stop_data_collection_by_agent_ids.yaml b/actions/discovery_stop_data_collection_by_agent_ids.yaml index 632393e6..35cbb991 100644 --- a/actions/discovery_stop_data_collection_by_agent_ids.yaml +++ b/actions/discovery_stop_data_collection_by_agent_ids.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_stop_data_collection_by_agent_ids runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_data_collection_by_agent_ids immutable: true diff --git a/actions/discovery_update_application.yaml b/actions/discovery_update_application.yaml index ed4f331a..49807961 100644 --- a/actions/discovery_update_application.yaml +++ b/actions/discovery_update_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: discovery_update_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application immutable: true diff --git a/actions/dms_add_tags_to_resource.yaml b/actions/dms_add_tags_to_resource.yaml index c42693fd..e34c4cc2 100644 --- a/actions/dms_add_tags_to_resource.yaml +++ b/actions/dms_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/dms_create_endpoint.yaml b/actions/dms_create_endpoint.yaml index e50408b7..0e3fdca2 100644 --- a/actions/dms_create_endpoint.yaml +++ b/actions/dms_create_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_create_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_endpoint immutable: true diff --git a/actions/dms_create_event_subscription.yaml b/actions/dms_create_event_subscription.yaml index c1c28820..5320435a 100644 --- a/actions/dms_create_event_subscription.yaml +++ b/actions/dms_create_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_create_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_event_subscription immutable: true diff --git a/actions/dms_create_replication_instance.yaml b/actions/dms_create_replication_instance.yaml index a394aa95..ad3edb5c 100644 --- a/actions/dms_create_replication_instance.yaml +++ b/actions/dms_create_replication_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_create_replication_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_replication_instance immutable: true diff --git a/actions/dms_create_replication_subnet_group.yaml b/actions/dms_create_replication_subnet_group.yaml index 9f728999..038ba29d 100644 --- a/actions/dms_create_replication_subnet_group.yaml +++ b/actions/dms_create_replication_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_create_replication_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_replication_subnet_group immutable: true diff --git a/actions/dms_create_replication_task.yaml b/actions/dms_create_replication_task.yaml index 6eee14a9..3fd24aed 100644 --- a/actions/dms_create_replication_task.yaml +++ b/actions/dms_create_replication_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_create_replication_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_replication_task immutable: true diff --git a/actions/dms_delete_certificate.yaml b/actions/dms_delete_certificate.yaml index 223dfc75..da7bc610 100644 --- a/actions/dms_delete_certificate.yaml +++ b/actions/dms_delete_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_delete_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_certificate immutable: true diff --git a/actions/dms_delete_endpoint.yaml b/actions/dms_delete_endpoint.yaml index 7685e48a..df979a87 100644 --- a/actions/dms_delete_endpoint.yaml +++ b/actions/dms_delete_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_delete_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_endpoint immutable: true diff --git a/actions/dms_delete_event_subscription.yaml b/actions/dms_delete_event_subscription.yaml index 99d6e573..7d7b4164 100644 --- a/actions/dms_delete_event_subscription.yaml +++ b/actions/dms_delete_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_delete_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_event_subscription immutable: true diff --git a/actions/dms_delete_replication_instance.yaml b/actions/dms_delete_replication_instance.yaml index d1c889bb..f78bdc5d 100644 --- a/actions/dms_delete_replication_instance.yaml +++ b/actions/dms_delete_replication_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_delete_replication_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_replication_instance immutable: true diff --git a/actions/dms_delete_replication_subnet_group.yaml b/actions/dms_delete_replication_subnet_group.yaml index e7e3a019..3e3587b0 100644 --- a/actions/dms_delete_replication_subnet_group.yaml +++ b/actions/dms_delete_replication_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_delete_replication_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_replication_subnet_group immutable: true diff --git a/actions/dms_delete_replication_task.yaml b/actions/dms_delete_replication_task.yaml index 62d3a8d1..c48539c0 100644 --- a/actions/dms_delete_replication_task.yaml +++ b/actions/dms_delete_replication_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_delete_replication_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_replication_task immutable: true diff --git a/actions/dms_describe_account_attributes.yaml b/actions/dms_describe_account_attributes.yaml index 8cefe4ef..82fe2ac2 100644 --- a/actions/dms_describe_account_attributes.yaml +++ b/actions/dms_describe_account_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_account_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_attributes immutable: true diff --git a/actions/dms_describe_certificates.yaml b/actions/dms_describe_certificates.yaml index d72efc84..183d1f7d 100644 --- a/actions/dms_describe_certificates.yaml +++ b/actions/dms_describe_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_certificates immutable: true diff --git a/actions/dms_describe_connections.yaml b/actions/dms_describe_connections.yaml index cf216d5a..96f88451 100644 --- a/actions/dms_describe_connections.yaml +++ b/actions/dms_describe_connections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_connections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_connections immutable: true diff --git a/actions/dms_describe_endpoint_types.yaml b/actions/dms_describe_endpoint_types.yaml index b79790fc..1004a1b8 100644 --- a/actions/dms_describe_endpoint_types.yaml +++ b/actions/dms_describe_endpoint_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_endpoint_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_endpoint_types immutable: true diff --git a/actions/dms_describe_endpoints.yaml b/actions/dms_describe_endpoints.yaml index 24974aa9..f16ba386 100644 --- a/actions/dms_describe_endpoints.yaml +++ b/actions/dms_describe_endpoints.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_endpoints runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_endpoints immutable: true diff --git a/actions/dms_describe_event_categories.yaml b/actions/dms_describe_event_categories.yaml index f771ea9f..ad452fc1 100644 --- a/actions/dms_describe_event_categories.yaml +++ b/actions/dms_describe_event_categories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_event_categories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_categories immutable: true diff --git a/actions/dms_describe_event_subscriptions.yaml b/actions/dms_describe_event_subscriptions.yaml index ebf1cc76..3dd7a1c1 100644 --- a/actions/dms_describe_event_subscriptions.yaml +++ b/actions/dms_describe_event_subscriptions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_event_subscriptions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_subscriptions immutable: true diff --git a/actions/dms_describe_events.yaml b/actions/dms_describe_events.yaml index 96ed2eeb..fdf51db3 100644 --- a/actions/dms_describe_events.yaml +++ b/actions/dms_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/dms_describe_orderable_replication_instances.yaml b/actions/dms_describe_orderable_replication_instances.yaml index 3543b8c4..53f7556f 100644 --- a/actions/dms_describe_orderable_replication_instances.yaml +++ b/actions/dms_describe_orderable_replication_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_orderable_replication_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_orderable_replication_instances immutable: true diff --git a/actions/dms_describe_refresh_schemas_status.yaml b/actions/dms_describe_refresh_schemas_status.yaml index f58e19c0..c26ae905 100644 --- a/actions/dms_describe_refresh_schemas_status.yaml +++ b/actions/dms_describe_refresh_schemas_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_refresh_schemas_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_refresh_schemas_status immutable: true diff --git a/actions/dms_describe_replication_instances.yaml b/actions/dms_describe_replication_instances.yaml index a0ef2422..956605cd 100644 --- a/actions/dms_describe_replication_instances.yaml +++ b/actions/dms_describe_replication_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_replication_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_replication_instances immutable: true diff --git a/actions/dms_describe_replication_subnet_groups.yaml b/actions/dms_describe_replication_subnet_groups.yaml index 9f57dbed..a9defc07 100644 --- a/actions/dms_describe_replication_subnet_groups.yaml +++ b/actions/dms_describe_replication_subnet_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_replication_subnet_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_replication_subnet_groups immutable: true diff --git a/actions/dms_describe_replication_tasks.yaml b/actions/dms_describe_replication_tasks.yaml index f13111a9..441ac172 100644 --- a/actions/dms_describe_replication_tasks.yaml +++ b/actions/dms_describe_replication_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_replication_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_replication_tasks immutable: true diff --git a/actions/dms_describe_schemas.yaml b/actions/dms_describe_schemas.yaml index d14dd30b..6c65a509 100644 --- a/actions/dms_describe_schemas.yaml +++ b/actions/dms_describe_schemas.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_schemas runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_schemas immutable: true diff --git a/actions/dms_describe_table_statistics.yaml b/actions/dms_describe_table_statistics.yaml index e22d58f9..623bb134 100644 --- a/actions/dms_describe_table_statistics.yaml +++ b/actions/dms_describe_table_statistics.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_describe_table_statistics runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_table_statistics immutable: true diff --git a/actions/dms_import_certificate.yaml b/actions/dms_import_certificate.yaml index edc7ecff..a4204e5f 100644 --- a/actions/dms_import_certificate.yaml +++ b/actions/dms_import_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_import_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_certificate immutable: true diff --git a/actions/dms_list_tags_for_resource.yaml b/actions/dms_list_tags_for_resource.yaml index ab0a4f74..280e9e9b 100644 --- a/actions/dms_list_tags_for_resource.yaml +++ b/actions/dms_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/dms_modify_endpoint.yaml b/actions/dms_modify_endpoint.yaml index ea56643b..0b056bf0 100644 --- a/actions/dms_modify_endpoint.yaml +++ b/actions/dms_modify_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_modify_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_endpoint immutable: true diff --git a/actions/dms_modify_event_subscription.yaml b/actions/dms_modify_event_subscription.yaml index 2c71fd9d..b146bc38 100644 --- a/actions/dms_modify_event_subscription.yaml +++ b/actions/dms_modify_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_modify_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_event_subscription immutable: true diff --git a/actions/dms_modify_replication_instance.yaml b/actions/dms_modify_replication_instance.yaml index 08cece7a..fd786884 100644 --- a/actions/dms_modify_replication_instance.yaml +++ b/actions/dms_modify_replication_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_modify_replication_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_replication_instance immutable: true diff --git a/actions/dms_modify_replication_subnet_group.yaml b/actions/dms_modify_replication_subnet_group.yaml index 84547367..dde84b2e 100644 --- a/actions/dms_modify_replication_subnet_group.yaml +++ b/actions/dms_modify_replication_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_modify_replication_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_replication_subnet_group immutable: true diff --git a/actions/dms_modify_replication_task.yaml b/actions/dms_modify_replication_task.yaml index ac109ffc..77a95ddb 100644 --- a/actions/dms_modify_replication_task.yaml +++ b/actions/dms_modify_replication_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_modify_replication_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_replication_task immutable: true diff --git a/actions/dms_refresh_schemas.yaml b/actions/dms_refresh_schemas.yaml index 754e70f5..87a3e62e 100644 --- a/actions/dms_refresh_schemas.yaml +++ b/actions/dms_refresh_schemas.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_refresh_schemas runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: refresh_schemas immutable: true diff --git a/actions/dms_reload_tables.yaml b/actions/dms_reload_tables.yaml index 320a61f3..682c80df 100644 --- a/actions/dms_reload_tables.yaml +++ b/actions/dms_reload_tables.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_reload_tables runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reload_tables immutable: true diff --git a/actions/dms_remove_tags_from_resource.yaml b/actions/dms_remove_tags_from_resource.yaml index 9f3111ce..3f9874b9 100644 --- a/actions/dms_remove_tags_from_resource.yaml +++ b/actions/dms_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/dms_start_replication_task.yaml b/actions/dms_start_replication_task.yaml index a6381b47..e5757471 100644 --- a/actions/dms_start_replication_task.yaml +++ b/actions/dms_start_replication_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_start_replication_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_replication_task immutable: true diff --git a/actions/dms_stop_replication_task.yaml b/actions/dms_stop_replication_task.yaml index 63fa8081..604277bd 100644 --- a/actions/dms_stop_replication_task.yaml +++ b/actions/dms_stop_replication_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_stop_replication_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_replication_task immutable: true diff --git a/actions/dms_test_connection.yaml b/actions/dms_test_connection.yaml index 5d6ae3cd..e319f0c4 100644 --- a/actions/dms_test_connection.yaml +++ b/actions/dms_test_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dms_test_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_connection immutable: true diff --git a/actions/ds_add_ip_routes.yaml b/actions/ds_add_ip_routes.yaml index 3cdf5d91..834ba335 100644 --- a/actions/ds_add_ip_routes.yaml +++ b/actions/ds_add_ip_routes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_add_ip_routes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_ip_routes immutable: true diff --git a/actions/ds_add_tags_to_resource.yaml b/actions/ds_add_tags_to_resource.yaml index ffbb28f9..d863f57f 100644 --- a/actions/ds_add_tags_to_resource.yaml +++ b/actions/ds_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/ds_cancel_schema_extension.yaml b/actions/ds_cancel_schema_extension.yaml index 1c448cf4..431b13f7 100644 --- a/actions/ds_cancel_schema_extension.yaml +++ b/actions/ds_cancel_schema_extension.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_cancel_schema_extension runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_schema_extension immutable: true diff --git a/actions/ds_connect_directory.yaml b/actions/ds_connect_directory.yaml index e8ffb38f..2d2c0a9a 100644 --- a/actions/ds_connect_directory.yaml +++ b/actions/ds_connect_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_connect_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: connect_directory immutable: true diff --git a/actions/ds_create_alias.yaml b/actions/ds_create_alias.yaml index 3d6e8510..346d938f 100644 --- a/actions/ds_create_alias.yaml +++ b/actions/ds_create_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_alias immutable: true diff --git a/actions/ds_create_computer.yaml b/actions/ds_create_computer.yaml index 53a65b77..2811ff5b 100644 --- a/actions/ds_create_computer.yaml +++ b/actions/ds_create_computer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_computer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_computer immutable: true diff --git a/actions/ds_create_conditional_forwarder.yaml b/actions/ds_create_conditional_forwarder.yaml index 965d7821..6381d21a 100644 --- a/actions/ds_create_conditional_forwarder.yaml +++ b/actions/ds_create_conditional_forwarder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_conditional_forwarder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_conditional_forwarder immutable: true diff --git a/actions/ds_create_directory.yaml b/actions/ds_create_directory.yaml index 7db68412..f69f6c9a 100644 --- a/actions/ds_create_directory.yaml +++ b/actions/ds_create_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_directory immutable: true diff --git a/actions/ds_create_microsoft_ad.yaml b/actions/ds_create_microsoft_ad.yaml index 3d557669..3867c462 100644 --- a/actions/ds_create_microsoft_ad.yaml +++ b/actions/ds_create_microsoft_ad.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_microsoft_ad runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_microsoft_ad immutable: true diff --git a/actions/ds_create_snapshot.yaml b/actions/ds_create_snapshot.yaml index ed20c806..5935a740 100644 --- a/actions/ds_create_snapshot.yaml +++ b/actions/ds_create_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot immutable: true diff --git a/actions/ds_create_trust.yaml b/actions/ds_create_trust.yaml index 78ae0ce5..4e2e0d29 100644 --- a/actions/ds_create_trust.yaml +++ b/actions/ds_create_trust.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_create_trust runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_trust immutable: true diff --git a/actions/ds_delete_conditional_forwarder.yaml b/actions/ds_delete_conditional_forwarder.yaml index 5ceb1672..6a5c6c57 100644 --- a/actions/ds_delete_conditional_forwarder.yaml +++ b/actions/ds_delete_conditional_forwarder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_delete_conditional_forwarder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_conditional_forwarder immutable: true diff --git a/actions/ds_delete_directory.yaml b/actions/ds_delete_directory.yaml index b03605f6..d519b6c6 100644 --- a/actions/ds_delete_directory.yaml +++ b/actions/ds_delete_directory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_delete_directory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_directory immutable: true diff --git a/actions/ds_delete_snapshot.yaml b/actions/ds_delete_snapshot.yaml index 6b96e9e0..c47b0e7e 100644 --- a/actions/ds_delete_snapshot.yaml +++ b/actions/ds_delete_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_delete_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_snapshot immutable: true diff --git a/actions/ds_delete_trust.yaml b/actions/ds_delete_trust.yaml index b0d6d784..c96e51fc 100644 --- a/actions/ds_delete_trust.yaml +++ b/actions/ds_delete_trust.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_delete_trust runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_trust immutable: true diff --git a/actions/ds_deregister_event_topic.yaml b/actions/ds_deregister_event_topic.yaml index f7ff8857..8f27c6eb 100644 --- a/actions/ds_deregister_event_topic.yaml +++ b/actions/ds_deregister_event_topic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_deregister_event_topic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_event_topic immutable: true diff --git a/actions/ds_describe_conditional_forwarders.yaml b/actions/ds_describe_conditional_forwarders.yaml index 82c4d224..9a6009f2 100644 --- a/actions/ds_describe_conditional_forwarders.yaml +++ b/actions/ds_describe_conditional_forwarders.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_describe_conditional_forwarders runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_conditional_forwarders immutable: true diff --git a/actions/ds_describe_directories.yaml b/actions/ds_describe_directories.yaml index 2ab5fc03..e5c3dfcf 100644 --- a/actions/ds_describe_directories.yaml +++ b/actions/ds_describe_directories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_describe_directories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_directories immutable: true diff --git a/actions/ds_describe_event_topics.yaml b/actions/ds_describe_event_topics.yaml index 857c5387..5ac3ada2 100644 --- a/actions/ds_describe_event_topics.yaml +++ b/actions/ds_describe_event_topics.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_describe_event_topics runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_topics immutable: true diff --git a/actions/ds_describe_snapshots.yaml b/actions/ds_describe_snapshots.yaml index 61c38997..3247fcfe 100644 --- a/actions/ds_describe_snapshots.yaml +++ b/actions/ds_describe_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_describe_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_snapshots immutable: true diff --git a/actions/ds_describe_trusts.yaml b/actions/ds_describe_trusts.yaml index fe75dd71..9f7f38c8 100644 --- a/actions/ds_describe_trusts.yaml +++ b/actions/ds_describe_trusts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_describe_trusts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_trusts immutable: true diff --git a/actions/ds_disable_radius.yaml b/actions/ds_disable_radius.yaml index 3cd180ed..078493de 100644 --- a/actions/ds_disable_radius.yaml +++ b/actions/ds_disable_radius.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_disable_radius runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_radius immutable: true diff --git a/actions/ds_disable_sso.yaml b/actions/ds_disable_sso.yaml index 7dd024a3..5e8559f8 100644 --- a/actions/ds_disable_sso.yaml +++ b/actions/ds_disable_sso.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_disable_sso runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_sso immutable: true diff --git a/actions/ds_enable_radius.yaml b/actions/ds_enable_radius.yaml index a08793b2..46c389f3 100644 --- a/actions/ds_enable_radius.yaml +++ b/actions/ds_enable_radius.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_enable_radius runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_radius immutable: true diff --git a/actions/ds_enable_sso.yaml b/actions/ds_enable_sso.yaml index e4c2fb4d..c745d3e2 100644 --- a/actions/ds_enable_sso.yaml +++ b/actions/ds_enable_sso.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_enable_sso runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_sso immutable: true diff --git a/actions/ds_get_directory_limits.yaml b/actions/ds_get_directory_limits.yaml index 2d8c0fd4..20e4d26b 100644 --- a/actions/ds_get_directory_limits.yaml +++ b/actions/ds_get_directory_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_get_directory_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_directory_limits immutable: true diff --git a/actions/ds_get_snapshot_limits.yaml b/actions/ds_get_snapshot_limits.yaml index 237c54e4..ecdd5d15 100644 --- a/actions/ds_get_snapshot_limits.yaml +++ b/actions/ds_get_snapshot_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_get_snapshot_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_snapshot_limits immutable: true diff --git a/actions/ds_list_ip_routes.yaml b/actions/ds_list_ip_routes.yaml index c695a12e..6d1e554e 100644 --- a/actions/ds_list_ip_routes.yaml +++ b/actions/ds_list_ip_routes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_list_ip_routes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_ip_routes immutable: true diff --git a/actions/ds_list_schema_extensions.yaml b/actions/ds_list_schema_extensions.yaml index 727107b3..90ea2b8b 100644 --- a/actions/ds_list_schema_extensions.yaml +++ b/actions/ds_list_schema_extensions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_list_schema_extensions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_schema_extensions immutable: true diff --git a/actions/ds_list_tags_for_resource.yaml b/actions/ds_list_tags_for_resource.yaml index b46b2d2e..06fb8d1a 100644 --- a/actions/ds_list_tags_for_resource.yaml +++ b/actions/ds_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/ds_register_event_topic.yaml b/actions/ds_register_event_topic.yaml index 2361668e..61293a67 100644 --- a/actions/ds_register_event_topic.yaml +++ b/actions/ds_register_event_topic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_register_event_topic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_event_topic immutable: true diff --git a/actions/ds_remove_ip_routes.yaml b/actions/ds_remove_ip_routes.yaml index 97fb852e..b54cff93 100644 --- a/actions/ds_remove_ip_routes.yaml +++ b/actions/ds_remove_ip_routes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_remove_ip_routes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_ip_routes immutable: true diff --git a/actions/ds_remove_tags_from_resource.yaml b/actions/ds_remove_tags_from_resource.yaml index 7750bae2..e9260812 100644 --- a/actions/ds_remove_tags_from_resource.yaml +++ b/actions/ds_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/ds_restore_from_snapshot.yaml b/actions/ds_restore_from_snapshot.yaml index 1da8b207..0d17f0e4 100644 --- a/actions/ds_restore_from_snapshot.yaml +++ b/actions/ds_restore_from_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_restore_from_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_from_snapshot immutable: true diff --git a/actions/ds_start_schema_extension.yaml b/actions/ds_start_schema_extension.yaml index 63dbcbf7..34c3d464 100644 --- a/actions/ds_start_schema_extension.yaml +++ b/actions/ds_start_schema_extension.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_start_schema_extension runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_schema_extension immutable: true diff --git a/actions/ds_update_conditional_forwarder.yaml b/actions/ds_update_conditional_forwarder.yaml index 33cd8bf4..7ac91d0d 100644 --- a/actions/ds_update_conditional_forwarder.yaml +++ b/actions/ds_update_conditional_forwarder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_update_conditional_forwarder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_conditional_forwarder immutable: true diff --git a/actions/ds_update_radius.yaml b/actions/ds_update_radius.yaml index c1353aea..7c6b8c42 100644 --- a/actions/ds_update_radius.yaml +++ b/actions/ds_update_radius.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_update_radius runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_radius immutable: true diff --git a/actions/ds_verify_trust.yaml b/actions/ds_verify_trust.yaml index 49e01031..c2370701 100644 --- a/actions/ds_verify_trust.yaml +++ b/actions/ds_verify_trust.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ds_verify_trust runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: verify_trust immutable: true diff --git a/actions/dynamodb_batch_get_item.yaml b/actions/dynamodb_batch_get_item.yaml index d4dfb02e..7ac1c071 100644 --- a/actions/dynamodb_batch_get_item.yaml +++ b/actions/dynamodb_batch_get_item.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_batch_get_item runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_item immutable: true diff --git a/actions/dynamodb_batch_write_item.yaml b/actions/dynamodb_batch_write_item.yaml index d1da7e35..1d8bb567 100644 --- a/actions/dynamodb_batch_write_item.yaml +++ b/actions/dynamodb_batch_write_item.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_batch_write_item runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_write_item immutable: true diff --git a/actions/dynamodb_create_table.yaml b/actions/dynamodb_create_table.yaml index 4eb64641..11469659 100644 --- a/actions/dynamodb_create_table.yaml +++ b/actions/dynamodb_create_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_create_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_table immutable: true diff --git a/actions/dynamodb_delete_item.yaml b/actions/dynamodb_delete_item.yaml index 55165b24..76f36bb5 100644 --- a/actions/dynamodb_delete_item.yaml +++ b/actions/dynamodb_delete_item.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_delete_item runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_item immutable: true diff --git a/actions/dynamodb_delete_table.yaml b/actions/dynamodb_delete_table.yaml index 070295a5..009ebba3 100644 --- a/actions/dynamodb_delete_table.yaml +++ b/actions/dynamodb_delete_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_delete_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_table immutable: true diff --git a/actions/dynamodb_describe_limits.yaml b/actions/dynamodb_describe_limits.yaml index aad1aeca..19c2a47e 100644 --- a/actions/dynamodb_describe_limits.yaml +++ b/actions/dynamodb_describe_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_describe_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_limits immutable: true diff --git a/actions/dynamodb_describe_table.yaml b/actions/dynamodb_describe_table.yaml index f64a8cfd..ee696812 100644 --- a/actions/dynamodb_describe_table.yaml +++ b/actions/dynamodb_describe_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_describe_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_table immutable: true diff --git a/actions/dynamodb_describe_time_to_live.yaml b/actions/dynamodb_describe_time_to_live.yaml index 221bbac5..f4150aec 100644 --- a/actions/dynamodb_describe_time_to_live.yaml +++ b/actions/dynamodb_describe_time_to_live.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_describe_time_to_live runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_time_to_live immutable: true diff --git a/actions/dynamodb_get_item.yaml b/actions/dynamodb_get_item.yaml index e52d3390..42fb00b4 100644 --- a/actions/dynamodb_get_item.yaml +++ b/actions/dynamodb_get_item.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_get_item runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_item immutable: true diff --git a/actions/dynamodb_list_tables.yaml b/actions/dynamodb_list_tables.yaml index 4d6443d5..6799d2ef 100644 --- a/actions/dynamodb_list_tables.yaml +++ b/actions/dynamodb_list_tables.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_list_tables runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tables immutable: true diff --git a/actions/dynamodb_list_tags_of_resource.yaml b/actions/dynamodb_list_tags_of_resource.yaml index f3929318..3b40da19 100644 --- a/actions/dynamodb_list_tags_of_resource.yaml +++ b/actions/dynamodb_list_tags_of_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_list_tags_of_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_of_resource immutable: true diff --git a/actions/dynamodb_put_item.yaml b/actions/dynamodb_put_item.yaml index 8c92546b..f4372606 100644 --- a/actions/dynamodb_put_item.yaml +++ b/actions/dynamodb_put_item.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_put_item runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_item immutable: true diff --git a/actions/dynamodb_query.yaml b/actions/dynamodb_query.yaml index 5213ff72..3413366f 100644 --- a/actions/dynamodb_query.yaml +++ b/actions/dynamodb_query.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_query runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: query immutable: true diff --git a/actions/dynamodb_scan.yaml b/actions/dynamodb_scan.yaml index c27a9508..75be2847 100644 --- a/actions/dynamodb_scan.yaml +++ b/actions/dynamodb_scan.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_scan runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: scan immutable: true diff --git a/actions/dynamodb_tag_resource.yaml b/actions/dynamodb_tag_resource.yaml index d5a12c22..f95cbccc 100644 --- a/actions/dynamodb_tag_resource.yaml +++ b/actions/dynamodb_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/dynamodb_untag_resource.yaml b/actions/dynamodb_untag_resource.yaml index d66dd09c..f0a7e3c4 100644 --- a/actions/dynamodb_untag_resource.yaml +++ b/actions/dynamodb_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/dynamodb_update_item.yaml b/actions/dynamodb_update_item.yaml index d3bab39c..3fbbeee3 100644 --- a/actions/dynamodb_update_item.yaml +++ b/actions/dynamodb_update_item.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_update_item runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_item immutable: true diff --git a/actions/dynamodb_update_table.yaml b/actions/dynamodb_update_table.yaml index bc97451f..e23c97d2 100644 --- a/actions/dynamodb_update_table.yaml +++ b/actions/dynamodb_update_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_update_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_table immutable: true diff --git a/actions/dynamodb_update_time_to_live.yaml b/actions/dynamodb_update_time_to_live.yaml index b99b57e2..b4d9643d 100644 --- a/actions/dynamodb_update_time_to_live.yaml +++ b/actions/dynamodb_update_time_to_live.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodb_update_time_to_live runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_time_to_live immutable: true diff --git a/actions/dynamodbstreams_describe_stream.yaml b/actions/dynamodbstreams_describe_stream.yaml index da4f1572..098ec6ed 100644 --- a/actions/dynamodbstreams_describe_stream.yaml +++ b/actions/dynamodbstreams_describe_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodbstreams_describe_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stream immutable: true diff --git a/actions/dynamodbstreams_get_records.yaml b/actions/dynamodbstreams_get_records.yaml index 0a0b8d15..a2d26781 100644 --- a/actions/dynamodbstreams_get_records.yaml +++ b/actions/dynamodbstreams_get_records.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodbstreams_get_records runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_records immutable: true diff --git a/actions/dynamodbstreams_get_shard_iterator.yaml b/actions/dynamodbstreams_get_shard_iterator.yaml index 440b3268..f4af81ec 100644 --- a/actions/dynamodbstreams_get_shard_iterator.yaml +++ b/actions/dynamodbstreams_get_shard_iterator.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodbstreams_get_shard_iterator runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_shard_iterator immutable: true diff --git a/actions/dynamodbstreams_list_streams.yaml b/actions/dynamodbstreams_list_streams.yaml index fee7e229..d548c7f1 100644 --- a/actions/dynamodbstreams_list_streams.yaml +++ b/actions/dynamodbstreams_list_streams.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: dynamodbstreams_list_streams runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_streams immutable: true diff --git a/actions/ec2_accept_reserved_instances_exchange_quote.yaml b/actions/ec2_accept_reserved_instances_exchange_quote.yaml index 37601fa5..b43fa946 100644 --- a/actions/ec2_accept_reserved_instances_exchange_quote.yaml +++ b/actions/ec2_accept_reserved_instances_exchange_quote.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_accept_reserved_instances_exchange_quote runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: accept_reserved_instances_exchange_quote immutable: true diff --git a/actions/ec2_accept_vpc_peering_connection.yaml b/actions/ec2_accept_vpc_peering_connection.yaml index c36880a5..7a65f943 100644 --- a/actions/ec2_accept_vpc_peering_connection.yaml +++ b/actions/ec2_accept_vpc_peering_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_accept_vpc_peering_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: accept_vpc_peering_connection immutable: true diff --git a/actions/ec2_allocate_address.yaml b/actions/ec2_allocate_address.yaml index 38584da3..69856467 100644 --- a/actions/ec2_allocate_address.yaml +++ b/actions/ec2_allocate_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_allocate_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_address immutable: true diff --git a/actions/ec2_allocate_hosts.yaml b/actions/ec2_allocate_hosts.yaml index e5705c34..252d6e91 100644 --- a/actions/ec2_allocate_hosts.yaml +++ b/actions/ec2_allocate_hosts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_allocate_hosts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_hosts immutable: true diff --git a/actions/ec2_assign_ipv6_addresses.yaml b/actions/ec2_assign_ipv6_addresses.yaml index 9d3ebcf9..98716cb9 100644 --- a/actions/ec2_assign_ipv6_addresses.yaml +++ b/actions/ec2_assign_ipv6_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_assign_ipv6_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assign_ipv6_addresses immutable: true diff --git a/actions/ec2_assign_private_ip_addresses.yaml b/actions/ec2_assign_private_ip_addresses.yaml index 08dc231d..4950fe2a 100644 --- a/actions/ec2_assign_private_ip_addresses.yaml +++ b/actions/ec2_assign_private_ip_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_assign_private_ip_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assign_private_ip_addresses immutable: true diff --git a/actions/ec2_associate_address.yaml b/actions/ec2_associate_address.yaml index 406011bf..e5d74fdd 100644 --- a/actions/ec2_associate_address.yaml +++ b/actions/ec2_associate_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_associate_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_address immutable: true diff --git a/actions/ec2_associate_address_object.yaml b/actions/ec2_associate_address_object.yaml index 76959806..4158335a 100644 --- a/actions/ec2_associate_address_object.yaml +++ b/actions/ec2_associate_address_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_associate_address_object parameters: + account_id: + type: string + region: + type: string action: default: associate_address_object immutable: true diff --git a/actions/ec2_associate_dhcp_options.yaml b/actions/ec2_associate_dhcp_options.yaml index dcd7ac73..97c3e215 100644 --- a/actions/ec2_associate_dhcp_options.yaml +++ b/actions/ec2_associate_dhcp_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_associate_dhcp_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_dhcp_options immutable: true diff --git a/actions/ec2_associate_iam_instance_profile.yaml b/actions/ec2_associate_iam_instance_profile.yaml index e2840343..6c55e218 100644 --- a/actions/ec2_associate_iam_instance_profile.yaml +++ b/actions/ec2_associate_iam_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_associate_iam_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_iam_instance_profile immutable: true diff --git a/actions/ec2_associate_route_table.yaml b/actions/ec2_associate_route_table.yaml index 855e7361..bb8c22b5 100644 --- a/actions/ec2_associate_route_table.yaml +++ b/actions/ec2_associate_route_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_associate_route_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_route_table immutable: true diff --git a/actions/ec2_associate_subnet_cidr_block.yaml b/actions/ec2_associate_subnet_cidr_block.yaml index 7340ed50..d9edc120 100644 --- a/actions/ec2_associate_subnet_cidr_block.yaml +++ b/actions/ec2_associate_subnet_cidr_block.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_associate_subnet_cidr_block runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_subnet_cidr_block immutable: true diff --git a/actions/ec2_associate_vpc_cidr_block.yaml b/actions/ec2_associate_vpc_cidr_block.yaml index 6b0e18d6..126c032e 100644 --- a/actions/ec2_associate_vpc_cidr_block.yaml +++ b/actions/ec2_associate_vpc_cidr_block.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_associate_vpc_cidr_block runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_vpc_cidr_block immutable: true diff --git a/actions/ec2_attach_classic_link_vpc.yaml b/actions/ec2_attach_classic_link_vpc.yaml index 6a2b45c9..067bb651 100644 --- a/actions/ec2_attach_classic_link_vpc.yaml +++ b/actions/ec2_attach_classic_link_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_attach_classic_link_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_classic_link_vpc immutable: true diff --git a/actions/ec2_attach_internet_gateway.yaml b/actions/ec2_attach_internet_gateway.yaml index b335349a..dd89fc85 100644 --- a/actions/ec2_attach_internet_gateway.yaml +++ b/actions/ec2_attach_internet_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_attach_internet_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_internet_gateway immutable: true diff --git a/actions/ec2_attach_network_interface.yaml b/actions/ec2_attach_network_interface.yaml index 65cf6060..1a6b7171 100644 --- a/actions/ec2_attach_network_interface.yaml +++ b/actions/ec2_attach_network_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_attach_network_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_network_interface immutable: true diff --git a/actions/ec2_attach_volume.yaml b/actions/ec2_attach_volume.yaml index 419722d3..06596e52 100644 --- a/actions/ec2_attach_volume.yaml +++ b/actions/ec2_attach_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_attach_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_volume immutable: true diff --git a/actions/ec2_attach_vpn_gateway.yaml b/actions/ec2_attach_vpn_gateway.yaml index 821e1a93..c9ed905d 100644 --- a/actions/ec2_attach_vpn_gateway.yaml +++ b/actions/ec2_attach_vpn_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_attach_vpn_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_vpn_gateway immutable: true diff --git a/actions/ec2_authorize_security_group.yaml b/actions/ec2_authorize_security_group.yaml index b28991bc..c2c3b8cb 100644 --- a/actions/ec2_authorize_security_group.yaml +++ b/actions/ec2_authorize_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_authorize_security_group parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group immutable: true diff --git a/actions/ec2_authorize_security_group_deprecated.yaml b/actions/ec2_authorize_security_group_deprecated.yaml index d2d4ccd2..4d5dc789 100644 --- a/actions/ec2_authorize_security_group_deprecated.yaml +++ b/actions/ec2_authorize_security_group_deprecated.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_authorize_security_group_deprecated parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group_deprecated immutable: true diff --git a/actions/ec2_authorize_security_group_egress.yaml b/actions/ec2_authorize_security_group_egress.yaml index 0fbfbd76..0a0ab011 100644 --- a/actions/ec2_authorize_security_group_egress.yaml +++ b/actions/ec2_authorize_security_group_egress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_authorize_security_group_egress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group_egress immutable: true diff --git a/actions/ec2_authorize_security_group_ingress.yaml b/actions/ec2_authorize_security_group_ingress.yaml index 257fc104..72071dc5 100644 --- a/actions/ec2_authorize_security_group_ingress.yaml +++ b/actions/ec2_authorize_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_authorize_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group_ingress immutable: true diff --git a/actions/ec2_build_base_http_request.yaml b/actions/ec2_build_base_http_request.yaml index fb80f6a3..8e59a9c1 100644 --- a/actions/ec2_build_base_http_request.yaml +++ b/actions/ec2_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/ec2_build_complex_list_params.yaml b/actions/ec2_build_complex_list_params.yaml index aa445e6c..02292207 100644 --- a/actions/ec2_build_complex_list_params.yaml +++ b/actions/ec2_build_complex_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_build_complex_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_complex_list_params immutable: true diff --git a/actions/ec2_build_configurations_param_list.yaml b/actions/ec2_build_configurations_param_list.yaml index a8b1974d..b9e68f8c 100644 --- a/actions/ec2_build_configurations_param_list.yaml +++ b/actions/ec2_build_configurations_param_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_build_configurations_param_list parameters: + account_id: + type: string + region: + type: string action: default: build_configurations_param_list immutable: true diff --git a/actions/ec2_build_filter_params.yaml b/actions/ec2_build_filter_params.yaml index 57d05640..374d5f2b 100644 --- a/actions/ec2_build_filter_params.yaml +++ b/actions/ec2_build_filter_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_build_filter_params parameters: + account_id: + type: string + region: + type: string action: default: build_filter_params immutable: true diff --git a/actions/ec2_build_list_params.yaml b/actions/ec2_build_list_params.yaml index 6c6ff70c..93a12806 100644 --- a/actions/ec2_build_list_params.yaml +++ b/actions/ec2_build_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_build_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_list_params immutable: true diff --git a/actions/ec2_build_tag_param_list.yaml b/actions/ec2_build_tag_param_list.yaml index 9a91f87c..503dfc2e 100644 --- a/actions/ec2_build_tag_param_list.yaml +++ b/actions/ec2_build_tag_param_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_build_tag_param_list parameters: + account_id: + type: string + region: + type: string action: default: build_tag_param_list immutable: true diff --git a/actions/ec2_bundle_instance.yaml b/actions/ec2_bundle_instance.yaml index 1a187904..48caed0f 100644 --- a/actions/ec2_bundle_instance.yaml +++ b/actions/ec2_bundle_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_bundle_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: bundle_instance immutable: true diff --git a/actions/ec2_cancel_bundle_task.yaml b/actions/ec2_cancel_bundle_task.yaml index 9430b701..c36c8caf 100644 --- a/actions/ec2_cancel_bundle_task.yaml +++ b/actions/ec2_cancel_bundle_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_bundle_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_bundle_task immutable: true diff --git a/actions/ec2_cancel_conversion_task.yaml b/actions/ec2_cancel_conversion_task.yaml index 31a8cba9..260e17d6 100644 --- a/actions/ec2_cancel_conversion_task.yaml +++ b/actions/ec2_cancel_conversion_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_conversion_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_conversion_task immutable: true diff --git a/actions/ec2_cancel_export_task.yaml b/actions/ec2_cancel_export_task.yaml index 2a990d57..3dc14aa4 100644 --- a/actions/ec2_cancel_export_task.yaml +++ b/actions/ec2_cancel_export_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_export_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_export_task immutable: true diff --git a/actions/ec2_cancel_import_task.yaml b/actions/ec2_cancel_import_task.yaml index e24ee9c4..f86adba2 100644 --- a/actions/ec2_cancel_import_task.yaml +++ b/actions/ec2_cancel_import_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_import_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_import_task immutable: true diff --git a/actions/ec2_cancel_reserved_instances_listing.yaml b/actions/ec2_cancel_reserved_instances_listing.yaml index 5fc339a9..06d29b92 100644 --- a/actions/ec2_cancel_reserved_instances_listing.yaml +++ b/actions/ec2_cancel_reserved_instances_listing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_reserved_instances_listing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_reserved_instances_listing immutable: true diff --git a/actions/ec2_cancel_spot_fleet_requests.yaml b/actions/ec2_cancel_spot_fleet_requests.yaml index 9314f8d4..579ac8f9 100644 --- a/actions/ec2_cancel_spot_fleet_requests.yaml +++ b/actions/ec2_cancel_spot_fleet_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_spot_fleet_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_spot_fleet_requests immutable: true diff --git a/actions/ec2_cancel_spot_instance_requests.yaml b/actions/ec2_cancel_spot_instance_requests.yaml index 02e9fb3d..f3ab99f6 100644 --- a/actions/ec2_cancel_spot_instance_requests.yaml +++ b/actions/ec2_cancel_spot_instance_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_cancel_spot_instance_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_spot_instance_requests immutable: true diff --git a/actions/ec2_close.yaml b/actions/ec2_close.yaml index 62f998db..4c5f625f 100644 --- a/actions/ec2_close.yaml +++ b/actions/ec2_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/ec2_confirm_product_instance.yaml b/actions/ec2_confirm_product_instance.yaml index ffe27e77..b9726e9f 100644 --- a/actions/ec2_confirm_product_instance.yaml +++ b/actions/ec2_confirm_product_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_confirm_product_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_product_instance immutable: true diff --git a/actions/ec2_copy_image.yaml b/actions/ec2_copy_image.yaml index 8152ea02..4562c369 100644 --- a/actions/ec2_copy_image.yaml +++ b/actions/ec2_copy_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_copy_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_image immutable: true diff --git a/actions/ec2_copy_snapshot.yaml b/actions/ec2_copy_snapshot.yaml index 3fe58425..6983f645 100644 --- a/actions/ec2_copy_snapshot.yaml +++ b/actions/ec2_copy_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_copy_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_snapshot immutable: true diff --git a/actions/ec2_create_customer_gateway.yaml b/actions/ec2_create_customer_gateway.yaml index ad04fed4..0a8a2325 100644 --- a/actions/ec2_create_customer_gateway.yaml +++ b/actions/ec2_create_customer_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_customer_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_customer_gateway immutable: true diff --git a/actions/ec2_create_dhcp_options.yaml b/actions/ec2_create_dhcp_options.yaml index 1ec78484..2b5993f3 100644 --- a/actions/ec2_create_dhcp_options.yaml +++ b/actions/ec2_create_dhcp_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_dhcp_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_dhcp_options immutable: true diff --git a/actions/ec2_create_egress_only_internet_gateway.yaml b/actions/ec2_create_egress_only_internet_gateway.yaml index b3c03d6d..01f5b10e 100644 --- a/actions/ec2_create_egress_only_internet_gateway.yaml +++ b/actions/ec2_create_egress_only_internet_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_egress_only_internet_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_egress_only_internet_gateway immutable: true diff --git a/actions/ec2_create_flow_logs.yaml b/actions/ec2_create_flow_logs.yaml index e4507efb..97e32b3c 100644 --- a/actions/ec2_create_flow_logs.yaml +++ b/actions/ec2_create_flow_logs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_flow_logs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_flow_logs immutable: true diff --git a/actions/ec2_create_fpga_image.yaml b/actions/ec2_create_fpga_image.yaml index 6c81fddb..d722c76b 100644 --- a/actions/ec2_create_fpga_image.yaml +++ b/actions/ec2_create_fpga_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_fpga_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_fpga_image immutable: true diff --git a/actions/ec2_create_image.yaml b/actions/ec2_create_image.yaml index 6caac19a..b0407c0e 100644 --- a/actions/ec2_create_image.yaml +++ b/actions/ec2_create_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_image immutable: true diff --git a/actions/ec2_create_instance_export_task.yaml b/actions/ec2_create_instance_export_task.yaml index f7f3a7bd..e74fd1bd 100644 --- a/actions/ec2_create_instance_export_task.yaml +++ b/actions/ec2_create_instance_export_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_instance_export_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_instance_export_task immutable: true diff --git a/actions/ec2_create_internet_gateway.yaml b/actions/ec2_create_internet_gateway.yaml index bb03bdf8..0a9c1529 100644 --- a/actions/ec2_create_internet_gateway.yaml +++ b/actions/ec2_create_internet_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_internet_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_internet_gateway immutable: true diff --git a/actions/ec2_create_key_pair.yaml b/actions/ec2_create_key_pair.yaml index 26fa1502..aaaffd02 100644 --- a/actions/ec2_create_key_pair.yaml +++ b/actions/ec2_create_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_key_pair immutable: true diff --git a/actions/ec2_create_nat_gateway.yaml b/actions/ec2_create_nat_gateway.yaml index 417c6715..88137018 100644 --- a/actions/ec2_create_nat_gateway.yaml +++ b/actions/ec2_create_nat_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_nat_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_nat_gateway immutable: true diff --git a/actions/ec2_create_network_acl.yaml b/actions/ec2_create_network_acl.yaml index bec3aa52..63deb0d0 100644 --- a/actions/ec2_create_network_acl.yaml +++ b/actions/ec2_create_network_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_network_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_network_acl immutable: true diff --git a/actions/ec2_create_network_acl_entry.yaml b/actions/ec2_create_network_acl_entry.yaml index 9df88c7c..1e0aa9b4 100644 --- a/actions/ec2_create_network_acl_entry.yaml +++ b/actions/ec2_create_network_acl_entry.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_network_acl_entry runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_network_acl_entry immutable: true diff --git a/actions/ec2_create_network_interface.yaml b/actions/ec2_create_network_interface.yaml index 54082e37..b797b21f 100644 --- a/actions/ec2_create_network_interface.yaml +++ b/actions/ec2_create_network_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_network_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_network_interface immutable: true diff --git a/actions/ec2_create_placement_group.yaml b/actions/ec2_create_placement_group.yaml index 5aaee954..ded8444a 100644 --- a/actions/ec2_create_placement_group.yaml +++ b/actions/ec2_create_placement_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_placement_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_placement_group immutable: true diff --git a/actions/ec2_create_reserved_instances_listing.yaml b/actions/ec2_create_reserved_instances_listing.yaml index acb55041..64645056 100644 --- a/actions/ec2_create_reserved_instances_listing.yaml +++ b/actions/ec2_create_reserved_instances_listing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_reserved_instances_listing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_reserved_instances_listing immutable: true diff --git a/actions/ec2_create_route.yaml b/actions/ec2_create_route.yaml index c165740a..463de0b7 100644 --- a/actions/ec2_create_route.yaml +++ b/actions/ec2_create_route.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_route runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_route immutable: true diff --git a/actions/ec2_create_route_table.yaml b/actions/ec2_create_route_table.yaml index db585bf8..7e2a5889 100644 --- a/actions/ec2_create_route_table.yaml +++ b/actions/ec2_create_route_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_route_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_route_table immutable: true diff --git a/actions/ec2_create_security_group.yaml b/actions/ec2_create_security_group.yaml index 6a82b82a..d6303f92 100644 --- a/actions/ec2_create_security_group.yaml +++ b/actions/ec2_create_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_security_group immutable: true diff --git a/actions/ec2_create_snapshot.yaml b/actions/ec2_create_snapshot.yaml index 79e8531b..4e7c18b7 100644 --- a/actions/ec2_create_snapshot.yaml +++ b/actions/ec2_create_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot immutable: true diff --git a/actions/ec2_create_spot_datafeed_subscription.yaml b/actions/ec2_create_spot_datafeed_subscription.yaml index 64389ae0..53610b81 100644 --- a/actions/ec2_create_spot_datafeed_subscription.yaml +++ b/actions/ec2_create_spot_datafeed_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_spot_datafeed_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_spot_datafeed_subscription immutable: true diff --git a/actions/ec2_create_subnet.yaml b/actions/ec2_create_subnet.yaml index c23f494f..7841baed 100644 --- a/actions/ec2_create_subnet.yaml +++ b/actions/ec2_create_subnet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_subnet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_subnet immutable: true diff --git a/actions/ec2_create_tags.yaml b/actions/ec2_create_tags.yaml index 8521008b..08173f7d 100644 --- a/actions/ec2_create_tags.yaml +++ b/actions/ec2_create_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tags immutable: true diff --git a/actions/ec2_create_volume.yaml b/actions/ec2_create_volume.yaml index 4c807766..dea467c3 100644 --- a/actions/ec2_create_volume.yaml +++ b/actions/ec2_create_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_volume immutable: true diff --git a/actions/ec2_create_vpc.yaml b/actions/ec2_create_vpc.yaml index c63cd194..53e20fe7 100644 --- a/actions/ec2_create_vpc.yaml +++ b/actions/ec2_create_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpc immutable: true diff --git a/actions/ec2_create_vpc_endpoint.yaml b/actions/ec2_create_vpc_endpoint.yaml index 820e7e63..663c37fd 100644 --- a/actions/ec2_create_vpc_endpoint.yaml +++ b/actions/ec2_create_vpc_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_vpc_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpc_endpoint immutable: true diff --git a/actions/ec2_create_vpc_peering_connection.yaml b/actions/ec2_create_vpc_peering_connection.yaml index c4b3b62f..35f6450e 100644 --- a/actions/ec2_create_vpc_peering_connection.yaml +++ b/actions/ec2_create_vpc_peering_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_vpc_peering_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpc_peering_connection immutable: true diff --git a/actions/ec2_create_vpn_connection.yaml b/actions/ec2_create_vpn_connection.yaml index 147e275e..2a444ad4 100644 --- a/actions/ec2_create_vpn_connection.yaml +++ b/actions/ec2_create_vpn_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_vpn_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpn_connection immutable: true diff --git a/actions/ec2_create_vpn_connection_route.yaml b/actions/ec2_create_vpn_connection_route.yaml index 5708a601..ca395675 100644 --- a/actions/ec2_create_vpn_connection_route.yaml +++ b/actions/ec2_create_vpn_connection_route.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_vpn_connection_route runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpn_connection_route immutable: true diff --git a/actions/ec2_create_vpn_gateway.yaml b/actions/ec2_create_vpn_gateway.yaml index a888768b..1f5d265a 100644 --- a/actions/ec2_create_vpn_gateway.yaml +++ b/actions/ec2_create_vpn_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_create_vpn_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpn_gateway immutable: true diff --git a/actions/ec2_delete_customer_gateway.yaml b/actions/ec2_delete_customer_gateway.yaml index 29bdaa55..60c053b8 100644 --- a/actions/ec2_delete_customer_gateway.yaml +++ b/actions/ec2_delete_customer_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_customer_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_customer_gateway immutable: true diff --git a/actions/ec2_delete_dhcp_options.yaml b/actions/ec2_delete_dhcp_options.yaml index 5caa3254..0c27b56d 100644 --- a/actions/ec2_delete_dhcp_options.yaml +++ b/actions/ec2_delete_dhcp_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_dhcp_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_dhcp_options immutable: true diff --git a/actions/ec2_delete_egress_only_internet_gateway.yaml b/actions/ec2_delete_egress_only_internet_gateway.yaml index 126db156..790dbd00 100644 --- a/actions/ec2_delete_egress_only_internet_gateway.yaml +++ b/actions/ec2_delete_egress_only_internet_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_egress_only_internet_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_egress_only_internet_gateway immutable: true diff --git a/actions/ec2_delete_flow_logs.yaml b/actions/ec2_delete_flow_logs.yaml index cdfc3a6e..e03b55b1 100644 --- a/actions/ec2_delete_flow_logs.yaml +++ b/actions/ec2_delete_flow_logs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_flow_logs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_flow_logs immutable: true diff --git a/actions/ec2_delete_internet_gateway.yaml b/actions/ec2_delete_internet_gateway.yaml index 919de0fd..667af6cd 100644 --- a/actions/ec2_delete_internet_gateway.yaml +++ b/actions/ec2_delete_internet_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_internet_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_internet_gateway immutable: true diff --git a/actions/ec2_delete_key_pair.yaml b/actions/ec2_delete_key_pair.yaml index 6e69914b..28e22dbb 100644 --- a/actions/ec2_delete_key_pair.yaml +++ b/actions/ec2_delete_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_key_pair immutable: true diff --git a/actions/ec2_delete_nat_gateway.yaml b/actions/ec2_delete_nat_gateway.yaml index dd9a8a13..7d45e1a2 100644 --- a/actions/ec2_delete_nat_gateway.yaml +++ b/actions/ec2_delete_nat_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_nat_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_nat_gateway immutable: true diff --git a/actions/ec2_delete_network_acl.yaml b/actions/ec2_delete_network_acl.yaml index b4b683af..511f7c29 100644 --- a/actions/ec2_delete_network_acl.yaml +++ b/actions/ec2_delete_network_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_network_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_network_acl immutable: true diff --git a/actions/ec2_delete_network_acl_entry.yaml b/actions/ec2_delete_network_acl_entry.yaml index 3e663cf8..9695b6be 100644 --- a/actions/ec2_delete_network_acl_entry.yaml +++ b/actions/ec2_delete_network_acl_entry.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_network_acl_entry runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_network_acl_entry immutable: true diff --git a/actions/ec2_delete_network_interface.yaml b/actions/ec2_delete_network_interface.yaml index fc02480d..26c44d78 100644 --- a/actions/ec2_delete_network_interface.yaml +++ b/actions/ec2_delete_network_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_network_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_network_interface immutable: true diff --git a/actions/ec2_delete_placement_group.yaml b/actions/ec2_delete_placement_group.yaml index a2f97407..bc0ccac1 100644 --- a/actions/ec2_delete_placement_group.yaml +++ b/actions/ec2_delete_placement_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_placement_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_placement_group immutable: true diff --git a/actions/ec2_delete_route.yaml b/actions/ec2_delete_route.yaml index 215dbb47..66a2fcb4 100644 --- a/actions/ec2_delete_route.yaml +++ b/actions/ec2_delete_route.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_route runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_route immutable: true diff --git a/actions/ec2_delete_route_table.yaml b/actions/ec2_delete_route_table.yaml index 8312f044..32118afb 100644 --- a/actions/ec2_delete_route_table.yaml +++ b/actions/ec2_delete_route_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_route_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_route_table immutable: true diff --git a/actions/ec2_delete_security_group.yaml b/actions/ec2_delete_security_group.yaml index 4a3a5bea..77fb8b77 100644 --- a/actions/ec2_delete_security_group.yaml +++ b/actions/ec2_delete_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_security_group immutable: true diff --git a/actions/ec2_delete_snapshot.yaml b/actions/ec2_delete_snapshot.yaml index 697b68d2..142fbdfd 100644 --- a/actions/ec2_delete_snapshot.yaml +++ b/actions/ec2_delete_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_snapshot immutable: true diff --git a/actions/ec2_delete_spot_datafeed_subscription.yaml b/actions/ec2_delete_spot_datafeed_subscription.yaml index 96a9b26f..b4e5542a 100644 --- a/actions/ec2_delete_spot_datafeed_subscription.yaml +++ b/actions/ec2_delete_spot_datafeed_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_spot_datafeed_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_spot_datafeed_subscription immutable: true diff --git a/actions/ec2_delete_subnet.yaml b/actions/ec2_delete_subnet.yaml index edb65767..7676e293 100644 --- a/actions/ec2_delete_subnet.yaml +++ b/actions/ec2_delete_subnet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_subnet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_subnet immutable: true diff --git a/actions/ec2_delete_tags.yaml b/actions/ec2_delete_tags.yaml index 6c2cc4f8..d1b98591 100644 --- a/actions/ec2_delete_tags.yaml +++ b/actions/ec2_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/ec2_delete_volume.yaml b/actions/ec2_delete_volume.yaml index a2deb5f5..4c1aade8 100644 --- a/actions/ec2_delete_volume.yaml +++ b/actions/ec2_delete_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_volume immutable: true diff --git a/actions/ec2_delete_vpc.yaml b/actions/ec2_delete_vpc.yaml index 78ac8de5..bf67a03d 100644 --- a/actions/ec2_delete_vpc.yaml +++ b/actions/ec2_delete_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpc immutable: true diff --git a/actions/ec2_delete_vpc_endpoints.yaml b/actions/ec2_delete_vpc_endpoints.yaml index b6bb72cb..9c92465d 100644 --- a/actions/ec2_delete_vpc_endpoints.yaml +++ b/actions/ec2_delete_vpc_endpoints.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_vpc_endpoints runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpc_endpoints immutable: true diff --git a/actions/ec2_delete_vpc_peering_connection.yaml b/actions/ec2_delete_vpc_peering_connection.yaml index 9819ac9c..fc8e0254 100644 --- a/actions/ec2_delete_vpc_peering_connection.yaml +++ b/actions/ec2_delete_vpc_peering_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_vpc_peering_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpc_peering_connection immutable: true diff --git a/actions/ec2_delete_vpn_connection.yaml b/actions/ec2_delete_vpn_connection.yaml index 9839c48e..8918adeb 100644 --- a/actions/ec2_delete_vpn_connection.yaml +++ b/actions/ec2_delete_vpn_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_vpn_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpn_connection immutable: true diff --git a/actions/ec2_delete_vpn_connection_route.yaml b/actions/ec2_delete_vpn_connection_route.yaml index 543c7d57..afbb9944 100644 --- a/actions/ec2_delete_vpn_connection_route.yaml +++ b/actions/ec2_delete_vpn_connection_route.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_vpn_connection_route runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpn_connection_route immutable: true diff --git a/actions/ec2_delete_vpn_gateway.yaml b/actions/ec2_delete_vpn_gateway.yaml index 32b3fdda..8cd6d261 100644 --- a/actions/ec2_delete_vpn_gateway.yaml +++ b/actions/ec2_delete_vpn_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_delete_vpn_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpn_gateway immutable: true diff --git a/actions/ec2_deregister_image.yaml b/actions/ec2_deregister_image.yaml index a354618e..6a777237 100644 --- a/actions/ec2_deregister_image.yaml +++ b/actions/ec2_deregister_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_deregister_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_image immutable: true diff --git a/actions/ec2_describe_account_attributes.yaml b/actions/ec2_describe_account_attributes.yaml index bcddecb8..4279839a 100644 --- a/actions/ec2_describe_account_attributes.yaml +++ b/actions/ec2_describe_account_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_account_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_attributes immutable: true diff --git a/actions/ec2_describe_addresses.yaml b/actions/ec2_describe_addresses.yaml index 08b9fb8a..1f8d4995 100644 --- a/actions/ec2_describe_addresses.yaml +++ b/actions/ec2_describe_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_addresses immutable: true diff --git a/actions/ec2_describe_availability_zones.yaml b/actions/ec2_describe_availability_zones.yaml index 41d5405b..2bba062c 100644 --- a/actions/ec2_describe_availability_zones.yaml +++ b/actions/ec2_describe_availability_zones.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_availability_zones runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_availability_zones immutable: true diff --git a/actions/ec2_describe_bundle_tasks.yaml b/actions/ec2_describe_bundle_tasks.yaml index 1941c70e..e7e0b9b5 100644 --- a/actions/ec2_describe_bundle_tasks.yaml +++ b/actions/ec2_describe_bundle_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_bundle_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_bundle_tasks immutable: true diff --git a/actions/ec2_describe_classic_link_instances.yaml b/actions/ec2_describe_classic_link_instances.yaml index 734c78cc..5411155e 100644 --- a/actions/ec2_describe_classic_link_instances.yaml +++ b/actions/ec2_describe_classic_link_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_classic_link_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_classic_link_instances immutable: true diff --git a/actions/ec2_describe_conversion_tasks.yaml b/actions/ec2_describe_conversion_tasks.yaml index 7ed46b8b..855aac1f 100644 --- a/actions/ec2_describe_conversion_tasks.yaml +++ b/actions/ec2_describe_conversion_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_conversion_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_conversion_tasks immutable: true diff --git a/actions/ec2_describe_customer_gateways.yaml b/actions/ec2_describe_customer_gateways.yaml index 57f6450f..1ed54194 100644 --- a/actions/ec2_describe_customer_gateways.yaml +++ b/actions/ec2_describe_customer_gateways.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_customer_gateways runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_customer_gateways immutable: true diff --git a/actions/ec2_describe_dhcp_options.yaml b/actions/ec2_describe_dhcp_options.yaml index cc854292..0adeb827 100644 --- a/actions/ec2_describe_dhcp_options.yaml +++ b/actions/ec2_describe_dhcp_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_dhcp_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_dhcp_options immutable: true diff --git a/actions/ec2_describe_egress_only_internet_gateways.yaml b/actions/ec2_describe_egress_only_internet_gateways.yaml index 568d41c2..88cdb0b1 100644 --- a/actions/ec2_describe_egress_only_internet_gateways.yaml +++ b/actions/ec2_describe_egress_only_internet_gateways.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_egress_only_internet_gateways runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_egress_only_internet_gateways immutable: true diff --git a/actions/ec2_describe_export_tasks.yaml b/actions/ec2_describe_export_tasks.yaml index 09c119a2..3d37c26d 100644 --- a/actions/ec2_describe_export_tasks.yaml +++ b/actions/ec2_describe_export_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_export_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_export_tasks immutable: true diff --git a/actions/ec2_describe_flow_logs.yaml b/actions/ec2_describe_flow_logs.yaml index c524472b..f82c0ca3 100644 --- a/actions/ec2_describe_flow_logs.yaml +++ b/actions/ec2_describe_flow_logs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_flow_logs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_flow_logs immutable: true diff --git a/actions/ec2_describe_fpga_images.yaml b/actions/ec2_describe_fpga_images.yaml index 49dcb6f5..46127ee0 100644 --- a/actions/ec2_describe_fpga_images.yaml +++ b/actions/ec2_describe_fpga_images.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_fpga_images runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fpga_images immutable: true diff --git a/actions/ec2_describe_host_reservation_offerings.yaml b/actions/ec2_describe_host_reservation_offerings.yaml index 6e8e811d..71ee9d9b 100644 --- a/actions/ec2_describe_host_reservation_offerings.yaml +++ b/actions/ec2_describe_host_reservation_offerings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_host_reservation_offerings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_host_reservation_offerings immutable: true diff --git a/actions/ec2_describe_host_reservations.yaml b/actions/ec2_describe_host_reservations.yaml index 14abbfc7..fa7dbcb5 100644 --- a/actions/ec2_describe_host_reservations.yaml +++ b/actions/ec2_describe_host_reservations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_host_reservations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_host_reservations immutable: true diff --git a/actions/ec2_describe_hosts.yaml b/actions/ec2_describe_hosts.yaml index c2d55515..36ae9e71 100644 --- a/actions/ec2_describe_hosts.yaml +++ b/actions/ec2_describe_hosts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_hosts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_hosts immutable: true diff --git a/actions/ec2_describe_iam_instance_profile_associations.yaml b/actions/ec2_describe_iam_instance_profile_associations.yaml index 508f7854..afc28544 100644 --- a/actions/ec2_describe_iam_instance_profile_associations.yaml +++ b/actions/ec2_describe_iam_instance_profile_associations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_iam_instance_profile_associations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_iam_instance_profile_associations immutable: true diff --git a/actions/ec2_describe_id_format.yaml b/actions/ec2_describe_id_format.yaml index fc4d3ba4..58bee6cc 100644 --- a/actions/ec2_describe_id_format.yaml +++ b/actions/ec2_describe_id_format.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_id_format runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_id_format immutable: true diff --git a/actions/ec2_describe_identity_id_format.yaml b/actions/ec2_describe_identity_id_format.yaml index 8cf1a9a6..bf554862 100644 --- a/actions/ec2_describe_identity_id_format.yaml +++ b/actions/ec2_describe_identity_id_format.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_identity_id_format runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_identity_id_format immutable: true diff --git a/actions/ec2_describe_image_attribute.yaml b/actions/ec2_describe_image_attribute.yaml index 3e29a7c6..6f863aa6 100644 --- a/actions/ec2_describe_image_attribute.yaml +++ b/actions/ec2_describe_image_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_image_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_image_attribute immutable: true diff --git a/actions/ec2_describe_images.yaml b/actions/ec2_describe_images.yaml index c4d4c979..4412b5b6 100644 --- a/actions/ec2_describe_images.yaml +++ b/actions/ec2_describe_images.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_images runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_images immutable: true diff --git a/actions/ec2_describe_import_image_tasks.yaml b/actions/ec2_describe_import_image_tasks.yaml index f87eaef0..b5e8347e 100644 --- a/actions/ec2_describe_import_image_tasks.yaml +++ b/actions/ec2_describe_import_image_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_import_image_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_import_image_tasks immutable: true diff --git a/actions/ec2_describe_import_snapshot_tasks.yaml b/actions/ec2_describe_import_snapshot_tasks.yaml index 12e05c32..505d323d 100644 --- a/actions/ec2_describe_import_snapshot_tasks.yaml +++ b/actions/ec2_describe_import_snapshot_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_import_snapshot_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_import_snapshot_tasks immutable: true diff --git a/actions/ec2_describe_instance_attribute.yaml b/actions/ec2_describe_instance_attribute.yaml index 6ffb2d1c..a7e15532 100644 --- a/actions/ec2_describe_instance_attribute.yaml +++ b/actions/ec2_describe_instance_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_instance_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_attribute immutable: true diff --git a/actions/ec2_describe_instance_status.yaml b/actions/ec2_describe_instance_status.yaml index fe138e3d..32761a33 100644 --- a/actions/ec2_describe_instance_status.yaml +++ b/actions/ec2_describe_instance_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_instance_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_status immutable: true diff --git a/actions/ec2_describe_instances.yaml b/actions/ec2_describe_instances.yaml index 87f7af97..5c9d5607 100644 --- a/actions/ec2_describe_instances.yaml +++ b/actions/ec2_describe_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instances immutable: true diff --git a/actions/ec2_describe_internet_gateways.yaml b/actions/ec2_describe_internet_gateways.yaml index ada1c4f9..6fec7e4e 100644 --- a/actions/ec2_describe_internet_gateways.yaml +++ b/actions/ec2_describe_internet_gateways.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_internet_gateways runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_internet_gateways immutable: true diff --git a/actions/ec2_describe_key_pairs.yaml b/actions/ec2_describe_key_pairs.yaml index 57b81a3b..f39b92dd 100644 --- a/actions/ec2_describe_key_pairs.yaml +++ b/actions/ec2_describe_key_pairs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_key_pairs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_key_pairs immutable: true diff --git a/actions/ec2_describe_moving_addresses.yaml b/actions/ec2_describe_moving_addresses.yaml index fa5eae09..6a091310 100644 --- a/actions/ec2_describe_moving_addresses.yaml +++ b/actions/ec2_describe_moving_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_moving_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_moving_addresses immutable: true diff --git a/actions/ec2_describe_nat_gateways.yaml b/actions/ec2_describe_nat_gateways.yaml index b6db067f..8d7a321e 100644 --- a/actions/ec2_describe_nat_gateways.yaml +++ b/actions/ec2_describe_nat_gateways.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_nat_gateways runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_nat_gateways immutable: true diff --git a/actions/ec2_describe_network_acls.yaml b/actions/ec2_describe_network_acls.yaml index d9e046ea..fb6ae0b5 100644 --- a/actions/ec2_describe_network_acls.yaml +++ b/actions/ec2_describe_network_acls.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_network_acls runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_network_acls immutable: true diff --git a/actions/ec2_describe_network_interface_attribute.yaml b/actions/ec2_describe_network_interface_attribute.yaml index 2dad1d1e..efce100b 100644 --- a/actions/ec2_describe_network_interface_attribute.yaml +++ b/actions/ec2_describe_network_interface_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_network_interface_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_network_interface_attribute immutable: true diff --git a/actions/ec2_describe_network_interfaces.yaml b/actions/ec2_describe_network_interfaces.yaml index 71a7eafd..ad8c312d 100644 --- a/actions/ec2_describe_network_interfaces.yaml +++ b/actions/ec2_describe_network_interfaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_network_interfaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_network_interfaces immutable: true diff --git a/actions/ec2_describe_placement_groups.yaml b/actions/ec2_describe_placement_groups.yaml index 41f0bc97..e9f3c52c 100644 --- a/actions/ec2_describe_placement_groups.yaml +++ b/actions/ec2_describe_placement_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_placement_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_placement_groups immutable: true diff --git a/actions/ec2_describe_prefix_lists.yaml b/actions/ec2_describe_prefix_lists.yaml index 9abb49fb..e89276e4 100644 --- a/actions/ec2_describe_prefix_lists.yaml +++ b/actions/ec2_describe_prefix_lists.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_prefix_lists runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_prefix_lists immutable: true diff --git a/actions/ec2_describe_regions.yaml b/actions/ec2_describe_regions.yaml index a3005f05..10d90075 100644 --- a/actions/ec2_describe_regions.yaml +++ b/actions/ec2_describe_regions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_regions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_regions immutable: true diff --git a/actions/ec2_describe_reserved_instances.yaml b/actions/ec2_describe_reserved_instances.yaml index af8a967f..076cfd30 100644 --- a/actions/ec2_describe_reserved_instances.yaml +++ b/actions/ec2_describe_reserved_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_reserved_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_instances immutable: true diff --git a/actions/ec2_describe_reserved_instances_listings.yaml b/actions/ec2_describe_reserved_instances_listings.yaml index 7a1a7e00..0939c58b 100644 --- a/actions/ec2_describe_reserved_instances_listings.yaml +++ b/actions/ec2_describe_reserved_instances_listings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_reserved_instances_listings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_instances_listings immutable: true diff --git a/actions/ec2_describe_reserved_instances_modifications.yaml b/actions/ec2_describe_reserved_instances_modifications.yaml index 97f38c82..5cc6da1f 100644 --- a/actions/ec2_describe_reserved_instances_modifications.yaml +++ b/actions/ec2_describe_reserved_instances_modifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_reserved_instances_modifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_instances_modifications immutable: true diff --git a/actions/ec2_describe_reserved_instances_offerings.yaml b/actions/ec2_describe_reserved_instances_offerings.yaml index 9e790f6b..e627828c 100644 --- a/actions/ec2_describe_reserved_instances_offerings.yaml +++ b/actions/ec2_describe_reserved_instances_offerings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_reserved_instances_offerings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_instances_offerings immutable: true diff --git a/actions/ec2_describe_route_tables.yaml b/actions/ec2_describe_route_tables.yaml index 0de21f1f..1c5117f8 100644 --- a/actions/ec2_describe_route_tables.yaml +++ b/actions/ec2_describe_route_tables.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_route_tables runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_route_tables immutable: true diff --git a/actions/ec2_describe_scheduled_instance_availability.yaml b/actions/ec2_describe_scheduled_instance_availability.yaml index b10e8ff0..1f542b94 100644 --- a/actions/ec2_describe_scheduled_instance_availability.yaml +++ b/actions/ec2_describe_scheduled_instance_availability.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_scheduled_instance_availability runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scheduled_instance_availability immutable: true diff --git a/actions/ec2_describe_scheduled_instances.yaml b/actions/ec2_describe_scheduled_instances.yaml index d726609e..0792857f 100644 --- a/actions/ec2_describe_scheduled_instances.yaml +++ b/actions/ec2_describe_scheduled_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_scheduled_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scheduled_instances immutable: true diff --git a/actions/ec2_describe_security_group_references.yaml b/actions/ec2_describe_security_group_references.yaml index cb5929d9..79ce7086 100644 --- a/actions/ec2_describe_security_group_references.yaml +++ b/actions/ec2_describe_security_group_references.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_security_group_references runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_security_group_references immutable: true diff --git a/actions/ec2_describe_security_groups.yaml b/actions/ec2_describe_security_groups.yaml index 47a91a8b..f3b1ad10 100644 --- a/actions/ec2_describe_security_groups.yaml +++ b/actions/ec2_describe_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_security_groups immutable: true diff --git a/actions/ec2_describe_snapshot_attribute.yaml b/actions/ec2_describe_snapshot_attribute.yaml index 7ef360b6..51dd9bc2 100644 --- a/actions/ec2_describe_snapshot_attribute.yaml +++ b/actions/ec2_describe_snapshot_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_snapshot_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_snapshot_attribute immutable: true diff --git a/actions/ec2_describe_snapshots.yaml b/actions/ec2_describe_snapshots.yaml index 97b5648c..e478e4cb 100644 --- a/actions/ec2_describe_snapshots.yaml +++ b/actions/ec2_describe_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_snapshots immutable: true diff --git a/actions/ec2_describe_spot_datafeed_subscription.yaml b/actions/ec2_describe_spot_datafeed_subscription.yaml index 683ec2d1..68342c82 100644 --- a/actions/ec2_describe_spot_datafeed_subscription.yaml +++ b/actions/ec2_describe_spot_datafeed_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_spot_datafeed_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_spot_datafeed_subscription immutable: true diff --git a/actions/ec2_describe_spot_fleet_instances.yaml b/actions/ec2_describe_spot_fleet_instances.yaml index 2b12a8c5..f548fda4 100644 --- a/actions/ec2_describe_spot_fleet_instances.yaml +++ b/actions/ec2_describe_spot_fleet_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_spot_fleet_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_spot_fleet_instances immutable: true diff --git a/actions/ec2_describe_spot_fleet_request_history.yaml b/actions/ec2_describe_spot_fleet_request_history.yaml index 74e50594..23d22dea 100644 --- a/actions/ec2_describe_spot_fleet_request_history.yaml +++ b/actions/ec2_describe_spot_fleet_request_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_spot_fleet_request_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_spot_fleet_request_history immutable: true diff --git a/actions/ec2_describe_spot_fleet_requests.yaml b/actions/ec2_describe_spot_fleet_requests.yaml index 2058926e..f1da4144 100644 --- a/actions/ec2_describe_spot_fleet_requests.yaml +++ b/actions/ec2_describe_spot_fleet_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_spot_fleet_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_spot_fleet_requests immutable: true diff --git a/actions/ec2_describe_spot_instance_requests.yaml b/actions/ec2_describe_spot_instance_requests.yaml index ce47442c..19bfaf08 100644 --- a/actions/ec2_describe_spot_instance_requests.yaml +++ b/actions/ec2_describe_spot_instance_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_spot_instance_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_spot_instance_requests immutable: true diff --git a/actions/ec2_describe_spot_price_history.yaml b/actions/ec2_describe_spot_price_history.yaml index 9743d678..4c275468 100644 --- a/actions/ec2_describe_spot_price_history.yaml +++ b/actions/ec2_describe_spot_price_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_spot_price_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_spot_price_history immutable: true diff --git a/actions/ec2_describe_stale_security_groups.yaml b/actions/ec2_describe_stale_security_groups.yaml index 4a1bba20..a348c3ed 100644 --- a/actions/ec2_describe_stale_security_groups.yaml +++ b/actions/ec2_describe_stale_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_stale_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stale_security_groups immutable: true diff --git a/actions/ec2_describe_subnets.yaml b/actions/ec2_describe_subnets.yaml index 5babc4ed..cb8c5981 100644 --- a/actions/ec2_describe_subnets.yaml +++ b/actions/ec2_describe_subnets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_subnets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_subnets immutable: true diff --git a/actions/ec2_describe_tags.yaml b/actions/ec2_describe_tags.yaml index 883e29e9..5be2e456 100644 --- a/actions/ec2_describe_tags.yaml +++ b/actions/ec2_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/ec2_describe_volume_attribute.yaml b/actions/ec2_describe_volume_attribute.yaml index 16438461..3caf7b68 100644 --- a/actions/ec2_describe_volume_attribute.yaml +++ b/actions/ec2_describe_volume_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_volume_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_volume_attribute immutable: true diff --git a/actions/ec2_describe_volume_status.yaml b/actions/ec2_describe_volume_status.yaml index 031da81f..b022a138 100644 --- a/actions/ec2_describe_volume_status.yaml +++ b/actions/ec2_describe_volume_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_volume_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_volume_status immutable: true diff --git a/actions/ec2_describe_volumes.yaml b/actions/ec2_describe_volumes.yaml index 2359db29..167b896c 100644 --- a/actions/ec2_describe_volumes.yaml +++ b/actions/ec2_describe_volumes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_volumes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_volumes immutable: true diff --git a/actions/ec2_describe_volumes_modifications.yaml b/actions/ec2_describe_volumes_modifications.yaml index e618eaf8..aac704c7 100644 --- a/actions/ec2_describe_volumes_modifications.yaml +++ b/actions/ec2_describe_volumes_modifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_volumes_modifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_volumes_modifications immutable: true diff --git a/actions/ec2_describe_vpc_attribute.yaml b/actions/ec2_describe_vpc_attribute.yaml index cba82868..8ca42f50 100644 --- a/actions/ec2_describe_vpc_attribute.yaml +++ b/actions/ec2_describe_vpc_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpc_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_attribute immutable: true diff --git a/actions/ec2_describe_vpc_classic_link.yaml b/actions/ec2_describe_vpc_classic_link.yaml index 3c7c3ca0..652d0bf8 100644 --- a/actions/ec2_describe_vpc_classic_link.yaml +++ b/actions/ec2_describe_vpc_classic_link.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpc_classic_link runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_classic_link immutable: true diff --git a/actions/ec2_describe_vpc_classic_link_dns_support.yaml b/actions/ec2_describe_vpc_classic_link_dns_support.yaml index fbdc35b7..44b8ab5d 100644 --- a/actions/ec2_describe_vpc_classic_link_dns_support.yaml +++ b/actions/ec2_describe_vpc_classic_link_dns_support.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpc_classic_link_dns_support runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_classic_link_dns_support immutable: true diff --git a/actions/ec2_describe_vpc_endpoint_services.yaml b/actions/ec2_describe_vpc_endpoint_services.yaml index acb9f861..631b1193 100644 --- a/actions/ec2_describe_vpc_endpoint_services.yaml +++ b/actions/ec2_describe_vpc_endpoint_services.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpc_endpoint_services runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_endpoint_services immutable: true diff --git a/actions/ec2_describe_vpc_endpoints.yaml b/actions/ec2_describe_vpc_endpoints.yaml index 35e56515..e76541e7 100644 --- a/actions/ec2_describe_vpc_endpoints.yaml +++ b/actions/ec2_describe_vpc_endpoints.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpc_endpoints runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_endpoints immutable: true diff --git a/actions/ec2_describe_vpc_peering_connections.yaml b/actions/ec2_describe_vpc_peering_connections.yaml index eef4e565..00020f0f 100644 --- a/actions/ec2_describe_vpc_peering_connections.yaml +++ b/actions/ec2_describe_vpc_peering_connections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpc_peering_connections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_peering_connections immutable: true diff --git a/actions/ec2_describe_vpcs.yaml b/actions/ec2_describe_vpcs.yaml index 862c8436..87cda3db 100644 --- a/actions/ec2_describe_vpcs.yaml +++ b/actions/ec2_describe_vpcs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpcs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpcs immutable: true diff --git a/actions/ec2_describe_vpn_connections.yaml b/actions/ec2_describe_vpn_connections.yaml index ddd63f6b..872b6be2 100644 --- a/actions/ec2_describe_vpn_connections.yaml +++ b/actions/ec2_describe_vpn_connections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpn_connections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpn_connections immutable: true diff --git a/actions/ec2_describe_vpn_gateways.yaml b/actions/ec2_describe_vpn_gateways.yaml index d26849f0..83e0becb 100644 --- a/actions/ec2_describe_vpn_gateways.yaml +++ b/actions/ec2_describe_vpn_gateways.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_describe_vpn_gateways runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vpn_gateways immutable: true diff --git a/actions/ec2_detach_classic_link_vpc.yaml b/actions/ec2_detach_classic_link_vpc.yaml index 260289c7..f01762bb 100644 --- a/actions/ec2_detach_classic_link_vpc.yaml +++ b/actions/ec2_detach_classic_link_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_detach_classic_link_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_classic_link_vpc immutable: true diff --git a/actions/ec2_detach_internet_gateway.yaml b/actions/ec2_detach_internet_gateway.yaml index 57189c16..9f66b490 100644 --- a/actions/ec2_detach_internet_gateway.yaml +++ b/actions/ec2_detach_internet_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_detach_internet_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_internet_gateway immutable: true diff --git a/actions/ec2_detach_network_interface.yaml b/actions/ec2_detach_network_interface.yaml index cc07b33c..9d55d527 100644 --- a/actions/ec2_detach_network_interface.yaml +++ b/actions/ec2_detach_network_interface.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_detach_network_interface runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_network_interface immutable: true diff --git a/actions/ec2_detach_volume.yaml b/actions/ec2_detach_volume.yaml index b184b696..b97a75f5 100644 --- a/actions/ec2_detach_volume.yaml +++ b/actions/ec2_detach_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_detach_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_volume immutable: true diff --git a/actions/ec2_detach_vpn_gateway.yaml b/actions/ec2_detach_vpn_gateway.yaml index 43c8f715..55891470 100644 --- a/actions/ec2_detach_vpn_gateway.yaml +++ b/actions/ec2_detach_vpn_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_detach_vpn_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_vpn_gateway immutable: true diff --git a/actions/ec2_disable_vgw_route_propagation.yaml b/actions/ec2_disable_vgw_route_propagation.yaml index 1b74f8ea..10953931 100644 --- a/actions/ec2_disable_vgw_route_propagation.yaml +++ b/actions/ec2_disable_vgw_route_propagation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disable_vgw_route_propagation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_vgw_route_propagation immutable: true diff --git a/actions/ec2_disable_vpc_classic_link.yaml b/actions/ec2_disable_vpc_classic_link.yaml index 0a7037b3..2c480d16 100644 --- a/actions/ec2_disable_vpc_classic_link.yaml +++ b/actions/ec2_disable_vpc_classic_link.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disable_vpc_classic_link runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_vpc_classic_link immutable: true diff --git a/actions/ec2_disable_vpc_classic_link_dns_support.yaml b/actions/ec2_disable_vpc_classic_link_dns_support.yaml index dd9725c5..08feb6fc 100644 --- a/actions/ec2_disable_vpc_classic_link_dns_support.yaml +++ b/actions/ec2_disable_vpc_classic_link_dns_support.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disable_vpc_classic_link_dns_support runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_vpc_classic_link_dns_support immutable: true diff --git a/actions/ec2_disassociate_address.yaml b/actions/ec2_disassociate_address.yaml index 3d132ed8..6da56dbb 100644 --- a/actions/ec2_disassociate_address.yaml +++ b/actions/ec2_disassociate_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disassociate_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_address immutable: true diff --git a/actions/ec2_disassociate_iam_instance_profile.yaml b/actions/ec2_disassociate_iam_instance_profile.yaml index 880a9690..9971c5f3 100644 --- a/actions/ec2_disassociate_iam_instance_profile.yaml +++ b/actions/ec2_disassociate_iam_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disassociate_iam_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_iam_instance_profile immutable: true diff --git a/actions/ec2_disassociate_route_table.yaml b/actions/ec2_disassociate_route_table.yaml index 3f91f17b..cb7f622c 100644 --- a/actions/ec2_disassociate_route_table.yaml +++ b/actions/ec2_disassociate_route_table.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disassociate_route_table runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_route_table immutable: true diff --git a/actions/ec2_disassociate_subnet_cidr_block.yaml b/actions/ec2_disassociate_subnet_cidr_block.yaml index 026093c9..7a797c62 100644 --- a/actions/ec2_disassociate_subnet_cidr_block.yaml +++ b/actions/ec2_disassociate_subnet_cidr_block.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disassociate_subnet_cidr_block runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_subnet_cidr_block immutable: true diff --git a/actions/ec2_disassociate_vpc_cidr_block.yaml b/actions/ec2_disassociate_vpc_cidr_block.yaml index df9dbd11..b8265f36 100644 --- a/actions/ec2_disassociate_vpc_cidr_block.yaml +++ b/actions/ec2_disassociate_vpc_cidr_block.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_disassociate_vpc_cidr_block runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_vpc_cidr_block immutable: true diff --git a/actions/ec2_enable_vgw_route_propagation.yaml b/actions/ec2_enable_vgw_route_propagation.yaml index eaef000b..6d04df7f 100644 --- a/actions/ec2_enable_vgw_route_propagation.yaml +++ b/actions/ec2_enable_vgw_route_propagation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_enable_vgw_route_propagation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_vgw_route_propagation immutable: true diff --git a/actions/ec2_enable_volume_io.yaml b/actions/ec2_enable_volume_io.yaml index 43ea79d6..f35070b7 100644 --- a/actions/ec2_enable_volume_io.yaml +++ b/actions/ec2_enable_volume_io.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_enable_volume_io runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_volume_io immutable: true diff --git a/actions/ec2_enable_vpc_classic_link.yaml b/actions/ec2_enable_vpc_classic_link.yaml index 483d60a5..10d230f0 100644 --- a/actions/ec2_enable_vpc_classic_link.yaml +++ b/actions/ec2_enable_vpc_classic_link.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_enable_vpc_classic_link runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_vpc_classic_link immutable: true diff --git a/actions/ec2_enable_vpc_classic_link_dns_support.yaml b/actions/ec2_enable_vpc_classic_link_dns_support.yaml index 273a4432..54e2677f 100644 --- a/actions/ec2_enable_vpc_classic_link_dns_support.yaml +++ b/actions/ec2_enable_vpc_classic_link_dns_support.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_enable_vpc_classic_link_dns_support runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_vpc_classic_link_dns_support immutable: true diff --git a/actions/ec2_get_all_addresses.yaml b/actions/ec2_get_all_addresses.yaml index bdb1ce5e..2f55a0b3 100644 --- a/actions/ec2_get_all_addresses.yaml +++ b/actions/ec2_get_all_addresses.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_addresses parameters: + account_id: + type: string + region: + type: string action: default: get_all_addresses immutable: true diff --git a/actions/ec2_get_all_bundle_tasks.yaml b/actions/ec2_get_all_bundle_tasks.yaml index 23367fb0..b69b173f 100644 --- a/actions/ec2_get_all_bundle_tasks.yaml +++ b/actions/ec2_get_all_bundle_tasks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_bundle_tasks parameters: + account_id: + type: string + region: + type: string action: default: get_all_bundle_tasks immutable: true diff --git a/actions/ec2_get_all_classic_link_instances.yaml b/actions/ec2_get_all_classic_link_instances.yaml index 50da3c41..12d6615f 100644 --- a/actions/ec2_get_all_classic_link_instances.yaml +++ b/actions/ec2_get_all_classic_link_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_classic_link_instances parameters: + account_id: + type: string + region: + type: string action: default: get_all_classic_link_instances immutable: true diff --git a/actions/ec2_get_all_images.yaml b/actions/ec2_get_all_images.yaml index 4a56bd95..3f500667 100644 --- a/actions/ec2_get_all_images.yaml +++ b/actions/ec2_get_all_images.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_images parameters: + account_id: + type: string + region: + type: string action: default: get_all_images immutable: true diff --git a/actions/ec2_get_all_instance_status.yaml b/actions/ec2_get_all_instance_status.yaml index 6902d104..2670e061 100644 --- a/actions/ec2_get_all_instance_status.yaml +++ b/actions/ec2_get_all_instance_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_instance_status parameters: + account_id: + type: string + region: + type: string action: default: get_all_instance_status immutable: true diff --git a/actions/ec2_get_all_instance_types.yaml b/actions/ec2_get_all_instance_types.yaml index 21468963..33a68b4e 100644 --- a/actions/ec2_get_all_instance_types.yaml +++ b/actions/ec2_get_all_instance_types.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_instance_types parameters: + account_id: + type: string + region: + type: string action: default: get_all_instance_types immutable: true diff --git a/actions/ec2_get_all_instances.yaml b/actions/ec2_get_all_instances.yaml index 223e157f..00ce638b 100644 --- a/actions/ec2_get_all_instances.yaml +++ b/actions/ec2_get_all_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_instances parameters: + account_id: + type: string + region: + type: string action: default: get_all_instances immutable: true diff --git a/actions/ec2_get_all_kernels.yaml b/actions/ec2_get_all_kernels.yaml index acb89fbd..055c0d09 100644 --- a/actions/ec2_get_all_kernels.yaml +++ b/actions/ec2_get_all_kernels.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_kernels parameters: + account_id: + type: string + region: + type: string action: default: get_all_kernels immutable: true diff --git a/actions/ec2_get_all_key_pairs.yaml b/actions/ec2_get_all_key_pairs.yaml index 9651a577..3c0bc1f6 100644 --- a/actions/ec2_get_all_key_pairs.yaml +++ b/actions/ec2_get_all_key_pairs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_key_pairs parameters: + account_id: + type: string + region: + type: string action: default: get_all_key_pairs immutable: true diff --git a/actions/ec2_get_all_network_interfaces.yaml b/actions/ec2_get_all_network_interfaces.yaml index baca2b65..ba179ed1 100644 --- a/actions/ec2_get_all_network_interfaces.yaml +++ b/actions/ec2_get_all_network_interfaces.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_network_interfaces parameters: + account_id: + type: string + region: + type: string action: default: get_all_network_interfaces immutable: true diff --git a/actions/ec2_get_all_placement_groups.yaml b/actions/ec2_get_all_placement_groups.yaml index 99d51a5b..52ea07dc 100644 --- a/actions/ec2_get_all_placement_groups.yaml +++ b/actions/ec2_get_all_placement_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_placement_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_placement_groups immutable: true diff --git a/actions/ec2_get_all_ramdisks.yaml b/actions/ec2_get_all_ramdisks.yaml index 38d291f0..21ec7a81 100644 --- a/actions/ec2_get_all_ramdisks.yaml +++ b/actions/ec2_get_all_ramdisks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_ramdisks parameters: + account_id: + type: string + region: + type: string action: default: get_all_ramdisks immutable: true diff --git a/actions/ec2_get_all_regions.yaml b/actions/ec2_get_all_regions.yaml index 7f02cd10..662761e6 100644 --- a/actions/ec2_get_all_regions.yaml +++ b/actions/ec2_get_all_regions.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_regions parameters: + account_id: + type: string + region: + type: string action: default: get_all_regions immutable: true diff --git a/actions/ec2_get_all_reservations.yaml b/actions/ec2_get_all_reservations.yaml index 5f126d5a..13d4a9f0 100644 --- a/actions/ec2_get_all_reservations.yaml +++ b/actions/ec2_get_all_reservations.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_reservations parameters: + account_id: + type: string + region: + type: string action: default: get_all_reservations immutable: true diff --git a/actions/ec2_get_all_reserved_instances.yaml b/actions/ec2_get_all_reserved_instances.yaml index befc9c35..854aa4b2 100644 --- a/actions/ec2_get_all_reserved_instances.yaml +++ b/actions/ec2_get_all_reserved_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_reserved_instances parameters: + account_id: + type: string + region: + type: string action: default: get_all_reserved_instances immutable: true diff --git a/actions/ec2_get_all_reserved_instances_offerings.yaml b/actions/ec2_get_all_reserved_instances_offerings.yaml index 831cab00..07329e5c 100644 --- a/actions/ec2_get_all_reserved_instances_offerings.yaml +++ b/actions/ec2_get_all_reserved_instances_offerings.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_reserved_instances_offerings parameters: + account_id: + type: string + region: + type: string action: default: get_all_reserved_instances_offerings immutable: true diff --git a/actions/ec2_get_all_security_groups.yaml b/actions/ec2_get_all_security_groups.yaml index 3890f898..f6102b62 100644 --- a/actions/ec2_get_all_security_groups.yaml +++ b/actions/ec2_get_all_security_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_security_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_security_groups immutable: true diff --git a/actions/ec2_get_all_snapshots.yaml b/actions/ec2_get_all_snapshots.yaml index 5e7d43a1..d5c33f84 100644 --- a/actions/ec2_get_all_snapshots.yaml +++ b/actions/ec2_get_all_snapshots.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_snapshots parameters: + account_id: + type: string + region: + type: string action: default: get_all_snapshots immutable: true diff --git a/actions/ec2_get_all_spot_instance_requests.yaml b/actions/ec2_get_all_spot_instance_requests.yaml index 75245eba..41bcada6 100644 --- a/actions/ec2_get_all_spot_instance_requests.yaml +++ b/actions/ec2_get_all_spot_instance_requests.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_spot_instance_requests parameters: + account_id: + type: string + region: + type: string action: default: get_all_spot_instance_requests immutable: true diff --git a/actions/ec2_get_all_tags.yaml b/actions/ec2_get_all_tags.yaml index d8d3e564..8e76b7c6 100644 --- a/actions/ec2_get_all_tags.yaml +++ b/actions/ec2_get_all_tags.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_tags parameters: + account_id: + type: string + region: + type: string action: default: get_all_tags immutable: true diff --git a/actions/ec2_get_all_volume_status.yaml b/actions/ec2_get_all_volume_status.yaml index 2e09d5f2..96275634 100644 --- a/actions/ec2_get_all_volume_status.yaml +++ b/actions/ec2_get_all_volume_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_volume_status parameters: + account_id: + type: string + region: + type: string action: default: get_all_volume_status immutable: true diff --git a/actions/ec2_get_all_volumes.yaml b/actions/ec2_get_all_volumes.yaml index cc616f7b..22e3e24f 100644 --- a/actions/ec2_get_all_volumes.yaml +++ b/actions/ec2_get_all_volumes.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_volumes parameters: + account_id: + type: string + region: + type: string action: default: get_all_volumes immutable: true diff --git a/actions/ec2_get_all_zones.yaml b/actions/ec2_get_all_zones.yaml index 57c6f98f..a4e9c1ac 100644 --- a/actions/ec2_get_all_zones.yaml +++ b/actions/ec2_get_all_zones.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_all_zones parameters: + account_id: + type: string + region: + type: string action: default: get_all_zones immutable: true diff --git a/actions/ec2_get_console_output.yaml b/actions/ec2_get_console_output.yaml index ebbd1d97..8e648cd7 100644 --- a/actions/ec2_get_console_output.yaml +++ b/actions/ec2_get_console_output.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_get_console_output runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_console_output immutable: true diff --git a/actions/ec2_get_console_screenshot.yaml b/actions/ec2_get_console_screenshot.yaml index f88bc97c..77005581 100644 --- a/actions/ec2_get_console_screenshot.yaml +++ b/actions/ec2_get_console_screenshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_get_console_screenshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_console_screenshot immutable: true diff --git a/actions/ec2_get_host_reservation_purchase_preview.yaml b/actions/ec2_get_host_reservation_purchase_preview.yaml index f53d1320..976f1eeb 100644 --- a/actions/ec2_get_host_reservation_purchase_preview.yaml +++ b/actions/ec2_get_host_reservation_purchase_preview.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_get_host_reservation_purchase_preview runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_host_reservation_purchase_preview immutable: true diff --git a/actions/ec2_get_http_connection.yaml b/actions/ec2_get_http_connection.yaml index 441c503a..f7f3671f 100644 --- a/actions/ec2_get_http_connection.yaml +++ b/actions/ec2_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/ec2_get_image.yaml b/actions/ec2_get_image.yaml index b3277ccf..00293d90 100644 --- a/actions/ec2_get_image.yaml +++ b/actions/ec2_get_image.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_image parameters: + account_id: + type: string + region: + type: string action: default: get_image immutable: true diff --git a/actions/ec2_get_image_attribute.yaml b/actions/ec2_get_image_attribute.yaml index 1a609ab7..76ccf987 100644 --- a/actions/ec2_get_image_attribute.yaml +++ b/actions/ec2_get_image_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_image_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_image_attribute immutable: true diff --git a/actions/ec2_get_instance_attribute.yaml b/actions/ec2_get_instance_attribute.yaml index 1b7a272a..3ecc3575 100644 --- a/actions/ec2_get_instance_attribute.yaml +++ b/actions/ec2_get_instance_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_instance_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_instance_attribute immutable: true diff --git a/actions/ec2_get_key_pair.yaml b/actions/ec2_get_key_pair.yaml index b3196110..c3755159 100644 --- a/actions/ec2_get_key_pair.yaml +++ b/actions/ec2_get_key_pair.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_key_pair parameters: + account_id: + type: string + region: + type: string action: default: get_key_pair immutable: true diff --git a/actions/ec2_get_list.yaml b/actions/ec2_get_list.yaml index 31650725..a39312ee 100644 --- a/actions/ec2_get_list.yaml +++ b/actions/ec2_get_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_list parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/ec2_get_object.yaml b/actions/ec2_get_object.yaml index ed843601..fea61ddb 100644 --- a/actions/ec2_get_object.yaml +++ b/actions/ec2_get_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_object parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/ec2_get_only_instances.yaml b/actions/ec2_get_only_instances.yaml index 822ac1b9..311e2b61 100644 --- a/actions/ec2_get_only_instances.yaml +++ b/actions/ec2_get_only_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_only_instances parameters: + account_id: + type: string + region: + type: string action: default: get_only_instances immutable: true diff --git a/actions/ec2_get_params.yaml b/actions/ec2_get_params.yaml index a645acd1..29931491 100644 --- a/actions/ec2_get_params.yaml +++ b/actions/ec2_get_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_params parameters: + account_id: + type: string + region: + type: string action: default: get_params immutable: true diff --git a/actions/ec2_get_password_data.yaml b/actions/ec2_get_password_data.yaml index 47f0007f..297ecc0f 100644 --- a/actions/ec2_get_password_data.yaml +++ b/actions/ec2_get_password_data.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_get_password_data runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_password_data immutable: true diff --git a/actions/ec2_get_path.yaml b/actions/ec2_get_path.yaml index 805f8706..703d3944 100644 --- a/actions/ec2_get_path.yaml +++ b/actions/ec2_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/ec2_get_proxy_auth_header.yaml b/actions/ec2_get_proxy_auth_header.yaml index c1d01762..89f8876d 100644 --- a/actions/ec2_get_proxy_auth_header.yaml +++ b/actions/ec2_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/ec2_get_proxy_url_with_auth.yaml b/actions/ec2_get_proxy_url_with_auth.yaml index e04814e5..2259893c 100644 --- a/actions/ec2_get_proxy_url_with_auth.yaml +++ b/actions/ec2_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/ec2_get_reserved_instances_exchange_quote.yaml b/actions/ec2_get_reserved_instances_exchange_quote.yaml index 15fecc85..5e32c0ec 100644 --- a/actions/ec2_get_reserved_instances_exchange_quote.yaml +++ b/actions/ec2_get_reserved_instances_exchange_quote.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_get_reserved_instances_exchange_quote runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_reserved_instances_exchange_quote immutable: true diff --git a/actions/ec2_get_snapshot_attribute.yaml b/actions/ec2_get_snapshot_attribute.yaml index 1edcefb0..29a8d376 100644 --- a/actions/ec2_get_snapshot_attribute.yaml +++ b/actions/ec2_get_snapshot_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_snapshot_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_snapshot_attribute immutable: true diff --git a/actions/ec2_get_spot_datafeed_subscription.yaml b/actions/ec2_get_spot_datafeed_subscription.yaml index b0eda9d6..ef074f1b 100644 --- a/actions/ec2_get_spot_datafeed_subscription.yaml +++ b/actions/ec2_get_spot_datafeed_subscription.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_spot_datafeed_subscription parameters: + account_id: + type: string + region: + type: string action: default: get_spot_datafeed_subscription immutable: true diff --git a/actions/ec2_get_spot_price_history.yaml b/actions/ec2_get_spot_price_history.yaml index 917c97a7..f8a52b26 100644 --- a/actions/ec2_get_spot_price_history.yaml +++ b/actions/ec2_get_spot_price_history.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_spot_price_history parameters: + account_id: + type: string + region: + type: string action: default: get_spot_price_history immutable: true diff --git a/actions/ec2_get_status.yaml b/actions/ec2_get_status.yaml index 2a4f98dd..a0c6beb4 100644 --- a/actions/ec2_get_status.yaml +++ b/actions/ec2_get_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_status parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/ec2_get_utf8_value.yaml b/actions/ec2_get_utf8_value.yaml index 41ed6638..ada7bbe6 100644 --- a/actions/ec2_get_utf8_value.yaml +++ b/actions/ec2_get_utf8_value.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_utf8_value parameters: + account_id: + type: string + region: + type: string action: default: get_utf8_value immutable: true diff --git a/actions/ec2_get_volume_attribute.yaml b/actions/ec2_get_volume_attribute.yaml index ad5e1168..2020dac1 100644 --- a/actions/ec2_get_volume_attribute.yaml +++ b/actions/ec2_get_volume_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_get_volume_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_volume_attribute immutable: true diff --git a/actions/ec2_handle_proxy.yaml b/actions/ec2_handle_proxy.yaml index 8572deed..2820e99c 100644 --- a/actions/ec2_handle_proxy.yaml +++ b/actions/ec2_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/ec2_import_image.yaml b/actions/ec2_import_image.yaml index 6d6ba056..5f867575 100644 --- a/actions/ec2_import_image.yaml +++ b/actions/ec2_import_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_import_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_image immutable: true diff --git a/actions/ec2_import_instance.yaml b/actions/ec2_import_instance.yaml index dc94da5f..033ddbef 100644 --- a/actions/ec2_import_instance.yaml +++ b/actions/ec2_import_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_import_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_instance immutable: true diff --git a/actions/ec2_import_key_pair.yaml b/actions/ec2_import_key_pair.yaml index 71032b8d..8cb21681 100644 --- a/actions/ec2_import_key_pair.yaml +++ b/actions/ec2_import_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_import_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_key_pair immutable: true diff --git a/actions/ec2_import_snapshot.yaml b/actions/ec2_import_snapshot.yaml index fc5b6662..3b0d25d5 100644 --- a/actions/ec2_import_snapshot.yaml +++ b/actions/ec2_import_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_import_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_snapshot immutable: true diff --git a/actions/ec2_import_volume.yaml b/actions/ec2_import_volume.yaml index 21d98104..7409d48d 100644 --- a/actions/ec2_import_volume.yaml +++ b/actions/ec2_import_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_import_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_volume immutable: true diff --git a/actions/ec2_make_request.yaml b/actions/ec2_make_request.yaml index 898ee88e..891394a8 100644 --- a/actions/ec2_make_request.yaml +++ b/actions/ec2_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/ec2_modify_hosts.yaml b/actions/ec2_modify_hosts.yaml index 6e7f89d7..e9e42450 100644 --- a/actions/ec2_modify_hosts.yaml +++ b/actions/ec2_modify_hosts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_hosts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_hosts immutable: true diff --git a/actions/ec2_modify_id_format.yaml b/actions/ec2_modify_id_format.yaml index d0b0b18a..1aec72de 100644 --- a/actions/ec2_modify_id_format.yaml +++ b/actions/ec2_modify_id_format.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_id_format runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_id_format immutable: true diff --git a/actions/ec2_modify_identity_id_format.yaml b/actions/ec2_modify_identity_id_format.yaml index 66dee298..20e46e0c 100644 --- a/actions/ec2_modify_identity_id_format.yaml +++ b/actions/ec2_modify_identity_id_format.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_identity_id_format runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_identity_id_format immutable: true diff --git a/actions/ec2_modify_image_attribute.yaml b/actions/ec2_modify_image_attribute.yaml index 592c2cf5..d753cf5e 100644 --- a/actions/ec2_modify_image_attribute.yaml +++ b/actions/ec2_modify_image_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_image_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_image_attribute immutable: true diff --git a/actions/ec2_modify_instance_attribute.yaml b/actions/ec2_modify_instance_attribute.yaml index 762029f6..21929559 100644 --- a/actions/ec2_modify_instance_attribute.yaml +++ b/actions/ec2_modify_instance_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_instance_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_instance_attribute immutable: true diff --git a/actions/ec2_modify_instance_placement.yaml b/actions/ec2_modify_instance_placement.yaml index bea1dc5e..0ac19580 100644 --- a/actions/ec2_modify_instance_placement.yaml +++ b/actions/ec2_modify_instance_placement.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_instance_placement runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_instance_placement immutable: true diff --git a/actions/ec2_modify_network_interface_attribute.yaml b/actions/ec2_modify_network_interface_attribute.yaml index 5235b606..22b42805 100644 --- a/actions/ec2_modify_network_interface_attribute.yaml +++ b/actions/ec2_modify_network_interface_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_network_interface_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_network_interface_attribute immutable: true diff --git a/actions/ec2_modify_reserved_instances.yaml b/actions/ec2_modify_reserved_instances.yaml index cbd34179..29b703cb 100644 --- a/actions/ec2_modify_reserved_instances.yaml +++ b/actions/ec2_modify_reserved_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_reserved_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_reserved_instances immutable: true diff --git a/actions/ec2_modify_snapshot_attribute.yaml b/actions/ec2_modify_snapshot_attribute.yaml index e2006cf1..4292338f 100644 --- a/actions/ec2_modify_snapshot_attribute.yaml +++ b/actions/ec2_modify_snapshot_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_snapshot_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_snapshot_attribute immutable: true diff --git a/actions/ec2_modify_spot_fleet_request.yaml b/actions/ec2_modify_spot_fleet_request.yaml index 64838397..43f6f282 100644 --- a/actions/ec2_modify_spot_fleet_request.yaml +++ b/actions/ec2_modify_spot_fleet_request.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_spot_fleet_request runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_spot_fleet_request immutable: true diff --git a/actions/ec2_modify_subnet_attribute.yaml b/actions/ec2_modify_subnet_attribute.yaml index 276c83de..06d807f6 100644 --- a/actions/ec2_modify_subnet_attribute.yaml +++ b/actions/ec2_modify_subnet_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_subnet_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_subnet_attribute immutable: true diff --git a/actions/ec2_modify_volume.yaml b/actions/ec2_modify_volume.yaml index 85011afb..7feacd35 100644 --- a/actions/ec2_modify_volume.yaml +++ b/actions/ec2_modify_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_volume immutable: true diff --git a/actions/ec2_modify_volume_attribute.yaml b/actions/ec2_modify_volume_attribute.yaml index 6aa0992e..78af5f6d 100644 --- a/actions/ec2_modify_volume_attribute.yaml +++ b/actions/ec2_modify_volume_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_volume_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_volume_attribute immutable: true diff --git a/actions/ec2_modify_vpc_attribute.yaml b/actions/ec2_modify_vpc_attribute.yaml index 80e80b8d..1a2d2974 100644 --- a/actions/ec2_modify_vpc_attribute.yaml +++ b/actions/ec2_modify_vpc_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_vpc_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_vpc_attribute immutable: true diff --git a/actions/ec2_modify_vpc_endpoint.yaml b/actions/ec2_modify_vpc_endpoint.yaml index 2db0aaa4..093dbf8e 100644 --- a/actions/ec2_modify_vpc_endpoint.yaml +++ b/actions/ec2_modify_vpc_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_vpc_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_vpc_endpoint immutable: true diff --git a/actions/ec2_modify_vpc_peering_connection_options.yaml b/actions/ec2_modify_vpc_peering_connection_options.yaml index 1168d44c..230ff481 100644 --- a/actions/ec2_modify_vpc_peering_connection_options.yaml +++ b/actions/ec2_modify_vpc_peering_connection_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_modify_vpc_peering_connection_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_vpc_peering_connection_options immutable: true diff --git a/actions/ec2_monitor_instance.yaml b/actions/ec2_monitor_instance.yaml index 1ecc4742..50ad8228 100644 --- a/actions/ec2_monitor_instance.yaml +++ b/actions/ec2_monitor_instance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_monitor_instance parameters: + account_id: + type: string + region: + type: string action: default: monitor_instance immutable: true diff --git a/actions/ec2_monitor_instances.yaml b/actions/ec2_monitor_instances.yaml index ca01e753..11138132 100644 --- a/actions/ec2_monitor_instances.yaml +++ b/actions/ec2_monitor_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_monitor_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: monitor_instances immutable: true diff --git a/actions/ec2_move_address_to_vpc.yaml b/actions/ec2_move_address_to_vpc.yaml index eba991f5..817fecba 100644 --- a/actions/ec2_move_address_to_vpc.yaml +++ b/actions/ec2_move_address_to_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_move_address_to_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: move_address_to_vpc immutable: true diff --git a/actions/ec2_new_http_connection.yaml b/actions/ec2_new_http_connection.yaml index 3bf9fb56..04113f63 100644 --- a/actions/ec2_new_http_connection.yaml +++ b/actions/ec2_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/ec2_prefix_proxy_to_path.yaml b/actions/ec2_prefix_proxy_to_path.yaml index f0633edc..2009e0d0 100644 --- a/actions/ec2_prefix_proxy_to_path.yaml +++ b/actions/ec2_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/ec2_proxy_ssl.yaml b/actions/ec2_proxy_ssl.yaml index a7f9962a..725b9e48 100644 --- a/actions/ec2_proxy_ssl.yaml +++ b/actions/ec2_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/ec2_purchase_host_reservation.yaml b/actions/ec2_purchase_host_reservation.yaml index 55577c16..6e717e36 100644 --- a/actions/ec2_purchase_host_reservation.yaml +++ b/actions/ec2_purchase_host_reservation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_purchase_host_reservation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_host_reservation immutable: true diff --git a/actions/ec2_purchase_reserved_instance_offering.yaml b/actions/ec2_purchase_reserved_instance_offering.yaml index 6be75bc4..8d25a540 100644 --- a/actions/ec2_purchase_reserved_instance_offering.yaml +++ b/actions/ec2_purchase_reserved_instance_offering.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_purchase_reserved_instance_offering parameters: + account_id: + type: string + region: + type: string action: default: purchase_reserved_instance_offering immutable: true diff --git a/actions/ec2_purchase_reserved_instances_offering.yaml b/actions/ec2_purchase_reserved_instances_offering.yaml index 0dc4a782..28eaba86 100644 --- a/actions/ec2_purchase_reserved_instances_offering.yaml +++ b/actions/ec2_purchase_reserved_instances_offering.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_purchase_reserved_instances_offering runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_reserved_instances_offering immutable: true diff --git a/actions/ec2_purchase_scheduled_instances.yaml b/actions/ec2_purchase_scheduled_instances.yaml index 9ef0f920..cb91740d 100644 --- a/actions/ec2_purchase_scheduled_instances.yaml +++ b/actions/ec2_purchase_scheduled_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_purchase_scheduled_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_scheduled_instances immutable: true diff --git a/actions/ec2_put_http_connection.yaml b/actions/ec2_put_http_connection.yaml index d5bf6ad2..7a5c6ff1 100644 --- a/actions/ec2_put_http_connection.yaml +++ b/actions/ec2_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/ec2_reboot_instances.yaml b/actions/ec2_reboot_instances.yaml index 6d58d6b8..033cc92c 100644 --- a/actions/ec2_reboot_instances.yaml +++ b/actions/ec2_reboot_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_reboot_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_instances immutable: true diff --git a/actions/ec2_register_image.yaml b/actions/ec2_register_image.yaml index c6df4b54..93d300a8 100644 --- a/actions/ec2_register_image.yaml +++ b/actions/ec2_register_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_register_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_image immutable: true diff --git a/actions/ec2_reject_vpc_peering_connection.yaml b/actions/ec2_reject_vpc_peering_connection.yaml index 0e4ae893..11330f2b 100644 --- a/actions/ec2_reject_vpc_peering_connection.yaml +++ b/actions/ec2_reject_vpc_peering_connection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_reject_vpc_peering_connection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reject_vpc_peering_connection immutable: true diff --git a/actions/ec2_release_address.yaml b/actions/ec2_release_address.yaml index 36ea61c7..a672cfdd 100644 --- a/actions/ec2_release_address.yaml +++ b/actions/ec2_release_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_release_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: release_address immutable: true diff --git a/actions/ec2_release_hosts.yaml b/actions/ec2_release_hosts.yaml index bd9e8151..c7c8ca7d 100644 --- a/actions/ec2_release_hosts.yaml +++ b/actions/ec2_release_hosts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_release_hosts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: release_hosts immutable: true diff --git a/actions/ec2_replace_iam_instance_profile_association.yaml b/actions/ec2_replace_iam_instance_profile_association.yaml index fc00b9e4..bf0fcf1d 100644 --- a/actions/ec2_replace_iam_instance_profile_association.yaml +++ b/actions/ec2_replace_iam_instance_profile_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_replace_iam_instance_profile_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: replace_iam_instance_profile_association immutable: true diff --git a/actions/ec2_replace_network_acl_association.yaml b/actions/ec2_replace_network_acl_association.yaml index edf681d3..119f0d10 100644 --- a/actions/ec2_replace_network_acl_association.yaml +++ b/actions/ec2_replace_network_acl_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_replace_network_acl_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: replace_network_acl_association immutable: true diff --git a/actions/ec2_replace_network_acl_entry.yaml b/actions/ec2_replace_network_acl_entry.yaml index 3c9d64b9..08ed627a 100644 --- a/actions/ec2_replace_network_acl_entry.yaml +++ b/actions/ec2_replace_network_acl_entry.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_replace_network_acl_entry runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: replace_network_acl_entry immutable: true diff --git a/actions/ec2_replace_route.yaml b/actions/ec2_replace_route.yaml index e7e742de..06689762 100644 --- a/actions/ec2_replace_route.yaml +++ b/actions/ec2_replace_route.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_replace_route runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: replace_route immutable: true diff --git a/actions/ec2_replace_route_table_association.yaml b/actions/ec2_replace_route_table_association.yaml index 44779148..81a41eb8 100644 --- a/actions/ec2_replace_route_table_association.yaml +++ b/actions/ec2_replace_route_table_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_replace_route_table_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: replace_route_table_association immutable: true diff --git a/actions/ec2_report_instance_status.yaml b/actions/ec2_report_instance_status.yaml index 0f210767..5fdba441 100644 --- a/actions/ec2_report_instance_status.yaml +++ b/actions/ec2_report_instance_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_report_instance_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: report_instance_status immutable: true diff --git a/actions/ec2_request_spot_fleet.yaml b/actions/ec2_request_spot_fleet.yaml index 384c327c..33a87487 100644 --- a/actions/ec2_request_spot_fleet.yaml +++ b/actions/ec2_request_spot_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_request_spot_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: request_spot_fleet immutable: true diff --git a/actions/ec2_request_spot_instances.yaml b/actions/ec2_request_spot_instances.yaml index 6f3dc395..6d184a86 100644 --- a/actions/ec2_request_spot_instances.yaml +++ b/actions/ec2_request_spot_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_request_spot_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: request_spot_instances immutable: true diff --git a/actions/ec2_reset_image_attribute.yaml b/actions/ec2_reset_image_attribute.yaml index fc19d5d3..c8804097 100644 --- a/actions/ec2_reset_image_attribute.yaml +++ b/actions/ec2_reset_image_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_reset_image_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_image_attribute immutable: true diff --git a/actions/ec2_reset_instance_attribute.yaml b/actions/ec2_reset_instance_attribute.yaml index e3202c3b..6a8fd27e 100644 --- a/actions/ec2_reset_instance_attribute.yaml +++ b/actions/ec2_reset_instance_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_reset_instance_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_instance_attribute immutable: true diff --git a/actions/ec2_reset_network_interface_attribute.yaml b/actions/ec2_reset_network_interface_attribute.yaml index 1b6d97b1..8fbfe9a8 100644 --- a/actions/ec2_reset_network_interface_attribute.yaml +++ b/actions/ec2_reset_network_interface_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_reset_network_interface_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_network_interface_attribute immutable: true diff --git a/actions/ec2_reset_snapshot_attribute.yaml b/actions/ec2_reset_snapshot_attribute.yaml index bbb91e30..5744bd3c 100644 --- a/actions/ec2_reset_snapshot_attribute.yaml +++ b/actions/ec2_reset_snapshot_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_reset_snapshot_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_snapshot_attribute immutable: true diff --git a/actions/ec2_restore_address_to_classic.yaml b/actions/ec2_restore_address_to_classic.yaml index 9f4d12c9..5764b692 100644 --- a/actions/ec2_restore_address_to_classic.yaml +++ b/actions/ec2_restore_address_to_classic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_restore_address_to_classic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_address_to_classic immutable: true diff --git a/actions/ec2_revoke_security_group.yaml b/actions/ec2_revoke_security_group.yaml index d83de19b..dfb7de4b 100644 --- a/actions/ec2_revoke_security_group.yaml +++ b/actions/ec2_revoke_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_revoke_security_group parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group immutable: true diff --git a/actions/ec2_revoke_security_group_deprecated.yaml b/actions/ec2_revoke_security_group_deprecated.yaml index 054af8bb..1c299790 100644 --- a/actions/ec2_revoke_security_group_deprecated.yaml +++ b/actions/ec2_revoke_security_group_deprecated.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_revoke_security_group_deprecated parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group_deprecated immutable: true diff --git a/actions/ec2_revoke_security_group_egress.yaml b/actions/ec2_revoke_security_group_egress.yaml index 11159f39..49029688 100644 --- a/actions/ec2_revoke_security_group_egress.yaml +++ b/actions/ec2_revoke_security_group_egress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_revoke_security_group_egress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group_egress immutable: true diff --git a/actions/ec2_revoke_security_group_ingress.yaml b/actions/ec2_revoke_security_group_ingress.yaml index 4e6cd1bd..0bea1193 100644 --- a/actions/ec2_revoke_security_group_ingress.yaml +++ b/actions/ec2_revoke_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_revoke_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group_ingress immutable: true diff --git a/actions/ec2_run_instances.yaml b/actions/ec2_run_instances.yaml index ad6b3942..c688ac62 100644 --- a/actions/ec2_run_instances.yaml +++ b/actions/ec2_run_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_run_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: run_instances immutable: true diff --git a/actions/ec2_run_scheduled_instances.yaml b/actions/ec2_run_scheduled_instances.yaml index 9d032beb..7c632da4 100644 --- a/actions/ec2_run_scheduled_instances.yaml +++ b/actions/ec2_run_scheduled_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_run_scheduled_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: run_scheduled_instances immutable: true diff --git a/actions/ec2_server_name.yaml b/actions/ec2_server_name.yaml index a81ad483..df6acb03 100644 --- a/actions/ec2_server_name.yaml +++ b/actions/ec2_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/ec2_set_host_header.yaml b/actions/ec2_set_host_header.yaml index 2364e624..de7678a2 100644 --- a/actions/ec2_set_host_header.yaml +++ b/actions/ec2_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/ec2_set_request_hook.yaml b/actions/ec2_set_request_hook.yaml index 76881225..38672946 100644 --- a/actions/ec2_set_request_hook.yaml +++ b/actions/ec2_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/ec2_skip_proxy.yaml b/actions/ec2_skip_proxy.yaml index f3ec2b89..7c3c250e 100644 --- a/actions/ec2_skip_proxy.yaml +++ b/actions/ec2_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/ec2_start_instances.yaml b/actions/ec2_start_instances.yaml index 5e18832c..458f25ed 100644 --- a/actions/ec2_start_instances.yaml +++ b/actions/ec2_start_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_start_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_instances immutable: true diff --git a/actions/ec2_stop_instances.yaml b/actions/ec2_stop_instances.yaml index bf966e24..90cce2f4 100644 --- a/actions/ec2_stop_instances.yaml +++ b/actions/ec2_stop_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_stop_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_instances immutable: true diff --git a/actions/ec2_terminate_instances.yaml b/actions/ec2_terminate_instances.yaml index f023cd3c..9009ff06 100644 --- a/actions/ec2_terminate_instances.yaml +++ b/actions/ec2_terminate_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_terminate_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_instances immutable: true diff --git a/actions/ec2_trim_snapshots.yaml b/actions/ec2_trim_snapshots.yaml index f5adbdd6..a1aca49f 100644 --- a/actions/ec2_trim_snapshots.yaml +++ b/actions/ec2_trim_snapshots.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_trim_snapshots parameters: + account_id: + type: string + region: + type: string action: default: trim_snapshots immutable: true diff --git a/actions/ec2_unassign_ipv6_addresses.yaml b/actions/ec2_unassign_ipv6_addresses.yaml index f06b99ca..d5eb4246 100644 --- a/actions/ec2_unassign_ipv6_addresses.yaml +++ b/actions/ec2_unassign_ipv6_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_unassign_ipv6_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unassign_ipv6_addresses immutable: true diff --git a/actions/ec2_unassign_private_ip_addresses.yaml b/actions/ec2_unassign_private_ip_addresses.yaml index 7db023c0..3e00988e 100644 --- a/actions/ec2_unassign_private_ip_addresses.yaml +++ b/actions/ec2_unassign_private_ip_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_unassign_private_ip_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unassign_private_ip_addresses immutable: true diff --git a/actions/ec2_unmonitor_instance.yaml b/actions/ec2_unmonitor_instance.yaml index 5ae6d682..e14937b6 100644 --- a/actions/ec2_unmonitor_instance.yaml +++ b/actions/ec2_unmonitor_instance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: ec2_unmonitor_instance parameters: + account_id: + type: string + region: + type: string action: default: unmonitor_instance immutable: true diff --git a/actions/ec2_unmonitor_instances.yaml b/actions/ec2_unmonitor_instances.yaml index d97a145c..843da38e 100644 --- a/actions/ec2_unmonitor_instances.yaml +++ b/actions/ec2_unmonitor_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ec2_unmonitor_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unmonitor_instances immutable: true diff --git a/actions/ec2_wait_for_state.py b/actions/ec2_wait_for_state.py index c7615b70..254b5f34 100755 --- a/actions/ec2_wait_for_state.py +++ b/actions/ec2_wait_for_state.py @@ -5,5 +5,5 @@ class WaitManager(action.BaseAction): - def run(self, instance_id, state): - return self.wait_for_state(instance_id, state) + def run(self, instance_id, state, account_id, region): + return self.wait_for_state(instance_id, state, account_id, region) diff --git a/actions/ec2_wait_for_state.yaml b/actions/ec2_wait_for_state.yaml index 89fb90d4..1a3a2c0a 100644 --- a/actions/ec2_wait_for_state.yaml +++ b/actions/ec2_wait_for_state.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: ec2_wait_for_state.py name: ec2_wait_for_state parameters: + account_id: + type: string + region: + type: string instance_id: required: true type: string diff --git a/actions/ecr_batch_check_layer_availability.yaml b/actions/ecr_batch_check_layer_availability.yaml index ab3dc526..9d7dd496 100644 --- a/actions/ecr_batch_check_layer_availability.yaml +++ b/actions/ecr_batch_check_layer_availability.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_batch_check_layer_availability runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_check_layer_availability immutable: true diff --git a/actions/ecr_batch_delete_image.yaml b/actions/ecr_batch_delete_image.yaml index 2f79eee9..fb293213 100644 --- a/actions/ecr_batch_delete_image.yaml +++ b/actions/ecr_batch_delete_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_batch_delete_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_delete_image immutable: true diff --git a/actions/ecr_batch_get_image.yaml b/actions/ecr_batch_get_image.yaml index b5e3a9e3..c19c8270 100644 --- a/actions/ecr_batch_get_image.yaml +++ b/actions/ecr_batch_get_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_batch_get_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_image immutable: true diff --git a/actions/ecr_complete_layer_upload.yaml b/actions/ecr_complete_layer_upload.yaml index 87d5a65c..db1c335d 100644 --- a/actions/ecr_complete_layer_upload.yaml +++ b/actions/ecr_complete_layer_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_complete_layer_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: complete_layer_upload immutable: true diff --git a/actions/ecr_create_repository.yaml b/actions/ecr_create_repository.yaml index 2c787bdb..1564d25e 100644 --- a/actions/ecr_create_repository.yaml +++ b/actions/ecr_create_repository.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_create_repository runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_repository immutable: true diff --git a/actions/ecr_delete_repository.yaml b/actions/ecr_delete_repository.yaml index 313e3813..c2e1a7ae 100644 --- a/actions/ecr_delete_repository.yaml +++ b/actions/ecr_delete_repository.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_delete_repository runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_repository immutable: true diff --git a/actions/ecr_delete_repository_policy.yaml b/actions/ecr_delete_repository_policy.yaml index d7ba0b1d..5f7c8cc4 100644 --- a/actions/ecr_delete_repository_policy.yaml +++ b/actions/ecr_delete_repository_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_delete_repository_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_repository_policy immutable: true diff --git a/actions/ecr_describe_images.yaml b/actions/ecr_describe_images.yaml index f8fb5282..29154429 100644 --- a/actions/ecr_describe_images.yaml +++ b/actions/ecr_describe_images.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_describe_images runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_images immutable: true diff --git a/actions/ecr_describe_repositories.yaml b/actions/ecr_describe_repositories.yaml index 1d854df3..8df53403 100644 --- a/actions/ecr_describe_repositories.yaml +++ b/actions/ecr_describe_repositories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_describe_repositories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_repositories immutable: true diff --git a/actions/ecr_get_authorization_token.yaml b/actions/ecr_get_authorization_token.yaml index 151fac61..c212c852 100644 --- a/actions/ecr_get_authorization_token.yaml +++ b/actions/ecr_get_authorization_token.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_get_authorization_token runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_authorization_token immutable: true diff --git a/actions/ecr_get_download_url_for_layer.yaml b/actions/ecr_get_download_url_for_layer.yaml index 01214994..8cac944d 100644 --- a/actions/ecr_get_download_url_for_layer.yaml +++ b/actions/ecr_get_download_url_for_layer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_get_download_url_for_layer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_download_url_for_layer immutable: true diff --git a/actions/ecr_get_repository_policy.yaml b/actions/ecr_get_repository_policy.yaml index 12564486..2657db7a 100644 --- a/actions/ecr_get_repository_policy.yaml +++ b/actions/ecr_get_repository_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_get_repository_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_repository_policy immutable: true diff --git a/actions/ecr_initiate_layer_upload.yaml b/actions/ecr_initiate_layer_upload.yaml index b469b642..c52447a0 100644 --- a/actions/ecr_initiate_layer_upload.yaml +++ b/actions/ecr_initiate_layer_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_initiate_layer_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: initiate_layer_upload immutable: true diff --git a/actions/ecr_list_images.yaml b/actions/ecr_list_images.yaml index d1b238a3..627dafbf 100644 --- a/actions/ecr_list_images.yaml +++ b/actions/ecr_list_images.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_list_images runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_images immutable: true diff --git a/actions/ecr_put_image.yaml b/actions/ecr_put_image.yaml index 77e19431..19e60424 100644 --- a/actions/ecr_put_image.yaml +++ b/actions/ecr_put_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_put_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_image immutable: true diff --git a/actions/ecr_set_repository_policy.yaml b/actions/ecr_set_repository_policy.yaml index 1b3febae..98670670 100644 --- a/actions/ecr_set_repository_policy.yaml +++ b/actions/ecr_set_repository_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_set_repository_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_repository_policy immutable: true diff --git a/actions/ecr_upload_layer_part.yaml b/actions/ecr_upload_layer_part.yaml index 991cd755..591d503d 100644 --- a/actions/ecr_upload_layer_part.yaml +++ b/actions/ecr_upload_layer_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecr_upload_layer_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_layer_part immutable: true diff --git a/actions/ecs_create_cluster.yaml b/actions/ecs_create_cluster.yaml index f2c5ea6c..6f4d18eb 100644 --- a/actions/ecs_create_cluster.yaml +++ b/actions/ecs_create_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_create_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster immutable: true diff --git a/actions/ecs_create_service.yaml b/actions/ecs_create_service.yaml index e6c1ef6d..ae7ed8c7 100644 --- a/actions/ecs_create_service.yaml +++ b/actions/ecs_create_service.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_create_service runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_service immutable: true diff --git a/actions/ecs_delete_attributes.yaml b/actions/ecs_delete_attributes.yaml index 228f99e8..b0971136 100644 --- a/actions/ecs_delete_attributes.yaml +++ b/actions/ecs_delete_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_delete_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_attributes immutable: true diff --git a/actions/ecs_delete_cluster.yaml b/actions/ecs_delete_cluster.yaml index 5ee95699..7350c422 100644 --- a/actions/ecs_delete_cluster.yaml +++ b/actions/ecs_delete_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_delete_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster immutable: true diff --git a/actions/ecs_delete_service.yaml b/actions/ecs_delete_service.yaml index c1e3eb84..146d8561 100644 --- a/actions/ecs_delete_service.yaml +++ b/actions/ecs_delete_service.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_delete_service runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_service immutable: true diff --git a/actions/ecs_deregister_container_instance.yaml b/actions/ecs_deregister_container_instance.yaml index 448441a2..4e88c06f 100644 --- a/actions/ecs_deregister_container_instance.yaml +++ b/actions/ecs_deregister_container_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_deregister_container_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_container_instance immutable: true diff --git a/actions/ecs_deregister_task_definition.yaml b/actions/ecs_deregister_task_definition.yaml index 95486d25..ba7d2fe1 100644 --- a/actions/ecs_deregister_task_definition.yaml +++ b/actions/ecs_deregister_task_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_deregister_task_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_task_definition immutable: true diff --git a/actions/ecs_describe_clusters.yaml b/actions/ecs_describe_clusters.yaml index b90e1c26..d163ca2c 100644 --- a/actions/ecs_describe_clusters.yaml +++ b/actions/ecs_describe_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_describe_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_clusters immutable: true diff --git a/actions/ecs_describe_container_instances.yaml b/actions/ecs_describe_container_instances.yaml index f726d4a3..12cf4c1b 100644 --- a/actions/ecs_describe_container_instances.yaml +++ b/actions/ecs_describe_container_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_describe_container_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_container_instances immutable: true diff --git a/actions/ecs_describe_services.yaml b/actions/ecs_describe_services.yaml index 533cf7a4..6eb6c8bd 100644 --- a/actions/ecs_describe_services.yaml +++ b/actions/ecs_describe_services.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_describe_services runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_services immutable: true diff --git a/actions/ecs_describe_task_definition.yaml b/actions/ecs_describe_task_definition.yaml index 125813a3..329ceedc 100644 --- a/actions/ecs_describe_task_definition.yaml +++ b/actions/ecs_describe_task_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_describe_task_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_task_definition immutable: true diff --git a/actions/ecs_describe_tasks.yaml b/actions/ecs_describe_tasks.yaml index 4192f8ba..d060ae52 100644 --- a/actions/ecs_describe_tasks.yaml +++ b/actions/ecs_describe_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_describe_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tasks immutable: true diff --git a/actions/ecs_discover_poll_endpoint.yaml b/actions/ecs_discover_poll_endpoint.yaml index b87f019e..fdd5b698 100644 --- a/actions/ecs_discover_poll_endpoint.yaml +++ b/actions/ecs_discover_poll_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_discover_poll_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: discover_poll_endpoint immutable: true diff --git a/actions/ecs_list_attributes.yaml b/actions/ecs_list_attributes.yaml index 486a9ebf..75165158 100644 --- a/actions/ecs_list_attributes.yaml +++ b/actions/ecs_list_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_attributes immutable: true diff --git a/actions/ecs_list_clusters.yaml b/actions/ecs_list_clusters.yaml index d6ce8bbd..75e3e121 100644 --- a/actions/ecs_list_clusters.yaml +++ b/actions/ecs_list_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_clusters immutable: true diff --git a/actions/ecs_list_container_instances.yaml b/actions/ecs_list_container_instances.yaml index 6fdc0962..bff94404 100644 --- a/actions/ecs_list_container_instances.yaml +++ b/actions/ecs_list_container_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_container_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_container_instances immutable: true diff --git a/actions/ecs_list_services.yaml b/actions/ecs_list_services.yaml index b38c075b..1b558ad6 100644 --- a/actions/ecs_list_services.yaml +++ b/actions/ecs_list_services.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_services runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_services immutable: true diff --git a/actions/ecs_list_task_definition_families.yaml b/actions/ecs_list_task_definition_families.yaml index e9751e22..06a3c51d 100644 --- a/actions/ecs_list_task_definition_families.yaml +++ b/actions/ecs_list_task_definition_families.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_task_definition_families runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_task_definition_families immutable: true diff --git a/actions/ecs_list_task_definitions.yaml b/actions/ecs_list_task_definitions.yaml index a505e26d..02159998 100644 --- a/actions/ecs_list_task_definitions.yaml +++ b/actions/ecs_list_task_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_task_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_task_definitions immutable: true diff --git a/actions/ecs_list_tasks.yaml b/actions/ecs_list_tasks.yaml index 4a40c6e7..4944c3ea 100644 --- a/actions/ecs_list_tasks.yaml +++ b/actions/ecs_list_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_list_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tasks immutable: true diff --git a/actions/ecs_put_attributes.yaml b/actions/ecs_put_attributes.yaml index c22c59ab..d22f7829 100644 --- a/actions/ecs_put_attributes.yaml +++ b/actions/ecs_put_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_put_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_attributes immutable: true diff --git a/actions/ecs_register_container_instance.yaml b/actions/ecs_register_container_instance.yaml index 2652732c..deaa8243 100644 --- a/actions/ecs_register_container_instance.yaml +++ b/actions/ecs_register_container_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_register_container_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_container_instance immutable: true diff --git a/actions/ecs_register_task_definition.yaml b/actions/ecs_register_task_definition.yaml index 3f9895e0..d39480bf 100644 --- a/actions/ecs_register_task_definition.yaml +++ b/actions/ecs_register_task_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_register_task_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_task_definition immutable: true diff --git a/actions/ecs_run_task.yaml b/actions/ecs_run_task.yaml index cae78cb9..0c7d0730 100644 --- a/actions/ecs_run_task.yaml +++ b/actions/ecs_run_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_run_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: run_task immutable: true diff --git a/actions/ecs_start_task.yaml b/actions/ecs_start_task.yaml index 6260cc34..6f7e082f 100644 --- a/actions/ecs_start_task.yaml +++ b/actions/ecs_start_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_start_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_task immutable: true diff --git a/actions/ecs_stop_task.yaml b/actions/ecs_stop_task.yaml index fec342f9..bdc8d61c 100644 --- a/actions/ecs_stop_task.yaml +++ b/actions/ecs_stop_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_stop_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_task immutable: true diff --git a/actions/ecs_submit_container_state_change.yaml b/actions/ecs_submit_container_state_change.yaml index 1ffac784..d9482bf4 100644 --- a/actions/ecs_submit_container_state_change.yaml +++ b/actions/ecs_submit_container_state_change.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_submit_container_state_change runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: submit_container_state_change immutable: true diff --git a/actions/ecs_submit_task_state_change.yaml b/actions/ecs_submit_task_state_change.yaml index 328bc3f8..cd4098a2 100644 --- a/actions/ecs_submit_task_state_change.yaml +++ b/actions/ecs_submit_task_state_change.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_submit_task_state_change runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: submit_task_state_change immutable: true diff --git a/actions/ecs_update_container_agent.yaml b/actions/ecs_update_container_agent.yaml index 7cfcb0f8..d116ba19 100644 --- a/actions/ecs_update_container_agent.yaml +++ b/actions/ecs_update_container_agent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_update_container_agent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_container_agent immutable: true diff --git a/actions/ecs_update_container_instances_state.yaml b/actions/ecs_update_container_instances_state.yaml index e29be02c..2448557e 100644 --- a/actions/ecs_update_container_instances_state.yaml +++ b/actions/ecs_update_container_instances_state.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_update_container_instances_state runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_container_instances_state immutable: true diff --git a/actions/ecs_update_service.yaml b/actions/ecs_update_service.yaml index df1f1542..4b082bee 100644 --- a/actions/ecs_update_service.yaml +++ b/actions/ecs_update_service.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ecs_update_service runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_service immutable: true diff --git a/actions/efs_create_file_system.yaml b/actions/efs_create_file_system.yaml index 40d85e38..fcaf7b40 100644 --- a/actions/efs_create_file_system.yaml +++ b/actions/efs_create_file_system.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_create_file_system runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_file_system immutable: true diff --git a/actions/efs_create_mount_target.yaml b/actions/efs_create_mount_target.yaml index 59bcfa6e..36e8f543 100644 --- a/actions/efs_create_mount_target.yaml +++ b/actions/efs_create_mount_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_create_mount_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_mount_target immutable: true diff --git a/actions/efs_create_tags.yaml b/actions/efs_create_tags.yaml index 055415cc..96e62038 100644 --- a/actions/efs_create_tags.yaml +++ b/actions/efs_create_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_create_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tags immutable: true diff --git a/actions/efs_delete_file_system.yaml b/actions/efs_delete_file_system.yaml index 3e021894..bd10b201 100644 --- a/actions/efs_delete_file_system.yaml +++ b/actions/efs_delete_file_system.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_delete_file_system runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_file_system immutable: true diff --git a/actions/efs_delete_mount_target.yaml b/actions/efs_delete_mount_target.yaml index 9b22e4d6..63cd550f 100644 --- a/actions/efs_delete_mount_target.yaml +++ b/actions/efs_delete_mount_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_delete_mount_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_mount_target immutable: true diff --git a/actions/efs_delete_tags.yaml b/actions/efs_delete_tags.yaml index b9db65ae..4d08446d 100644 --- a/actions/efs_delete_tags.yaml +++ b/actions/efs_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/efs_describe_file_systems.yaml b/actions/efs_describe_file_systems.yaml index a4aaf4df..c97ba731 100644 --- a/actions/efs_describe_file_systems.yaml +++ b/actions/efs_describe_file_systems.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_describe_file_systems runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_file_systems immutable: true diff --git a/actions/efs_describe_mount_target_security_groups.yaml b/actions/efs_describe_mount_target_security_groups.yaml index 96e45617..2b2c3a96 100644 --- a/actions/efs_describe_mount_target_security_groups.yaml +++ b/actions/efs_describe_mount_target_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_describe_mount_target_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_mount_target_security_groups immutable: true diff --git a/actions/efs_describe_mount_targets.yaml b/actions/efs_describe_mount_targets.yaml index 97d4e111..bbdcdbeb 100644 --- a/actions/efs_describe_mount_targets.yaml +++ b/actions/efs_describe_mount_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_describe_mount_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_mount_targets immutable: true diff --git a/actions/efs_describe_tags.yaml b/actions/efs_describe_tags.yaml index f3707dd9..0eaba9eb 100644 --- a/actions/efs_describe_tags.yaml +++ b/actions/efs_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/efs_modify_mount_target_security_groups.yaml b/actions/efs_modify_mount_target_security_groups.yaml index cb789b6a..42262ecd 100644 --- a/actions/efs_modify_mount_target_security_groups.yaml +++ b/actions/efs_modify_mount_target_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: efs_modify_mount_target_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_mount_target_security_groups immutable: true diff --git a/actions/elasticache_add_tags_to_resource.yaml b/actions/elasticache_add_tags_to_resource.yaml index e323d215..34f38cae 100644 --- a/actions/elasticache_add_tags_to_resource.yaml +++ b/actions/elasticache_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/elasticache_authorize_cache_security_group_ingress.yaml b/actions/elasticache_authorize_cache_security_group_ingress.yaml index 06e04dc3..ca010a78 100644 --- a/actions/elasticache_authorize_cache_security_group_ingress.yaml +++ b/actions/elasticache_authorize_cache_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_authorize_cache_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: authorize_cache_security_group_ingress immutable: true diff --git a/actions/elasticache_copy_snapshot.yaml b/actions/elasticache_copy_snapshot.yaml index 79d98f0a..b3890c38 100644 --- a/actions/elasticache_copy_snapshot.yaml +++ b/actions/elasticache_copy_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_copy_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_snapshot immutable: true diff --git a/actions/elasticache_create_cache_cluster.yaml b/actions/elasticache_create_cache_cluster.yaml index a8b9cd58..55879164 100644 --- a/actions/elasticache_create_cache_cluster.yaml +++ b/actions/elasticache_create_cache_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_create_cache_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cache_cluster immutable: true diff --git a/actions/elasticache_create_cache_parameter_group.yaml b/actions/elasticache_create_cache_parameter_group.yaml index 6eb06e0d..43d8c791 100644 --- a/actions/elasticache_create_cache_parameter_group.yaml +++ b/actions/elasticache_create_cache_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_create_cache_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cache_parameter_group immutable: true diff --git a/actions/elasticache_create_cache_security_group.yaml b/actions/elasticache_create_cache_security_group.yaml index 775ecdc8..d9ea6a5d 100644 --- a/actions/elasticache_create_cache_security_group.yaml +++ b/actions/elasticache_create_cache_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_create_cache_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cache_security_group immutable: true diff --git a/actions/elasticache_create_cache_subnet_group.yaml b/actions/elasticache_create_cache_subnet_group.yaml index ce21cfac..afcd75e4 100644 --- a/actions/elasticache_create_cache_subnet_group.yaml +++ b/actions/elasticache_create_cache_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_create_cache_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cache_subnet_group immutable: true diff --git a/actions/elasticache_create_replication_group.yaml b/actions/elasticache_create_replication_group.yaml index 0c9828e8..db1e9390 100644 --- a/actions/elasticache_create_replication_group.yaml +++ b/actions/elasticache_create_replication_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_create_replication_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_replication_group immutable: true diff --git a/actions/elasticache_create_snapshot.yaml b/actions/elasticache_create_snapshot.yaml index 89dfa3d9..a14af2c3 100644 --- a/actions/elasticache_create_snapshot.yaml +++ b/actions/elasticache_create_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_create_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot immutable: true diff --git a/actions/elasticache_delete_cache_cluster.yaml b/actions/elasticache_delete_cache_cluster.yaml index 6e273a72..cd30166f 100644 --- a/actions/elasticache_delete_cache_cluster.yaml +++ b/actions/elasticache_delete_cache_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_delete_cache_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cache_cluster immutable: true diff --git a/actions/elasticache_delete_cache_parameter_group.yaml b/actions/elasticache_delete_cache_parameter_group.yaml index 635a8033..644fe54f 100644 --- a/actions/elasticache_delete_cache_parameter_group.yaml +++ b/actions/elasticache_delete_cache_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_delete_cache_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cache_parameter_group immutable: true diff --git a/actions/elasticache_delete_cache_security_group.yaml b/actions/elasticache_delete_cache_security_group.yaml index 28b9716e..4a4dc280 100644 --- a/actions/elasticache_delete_cache_security_group.yaml +++ b/actions/elasticache_delete_cache_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_delete_cache_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cache_security_group immutable: true diff --git a/actions/elasticache_delete_cache_subnet_group.yaml b/actions/elasticache_delete_cache_subnet_group.yaml index c4704d19..ba90d1b4 100644 --- a/actions/elasticache_delete_cache_subnet_group.yaml +++ b/actions/elasticache_delete_cache_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_delete_cache_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cache_subnet_group immutable: true diff --git a/actions/elasticache_delete_replication_group.yaml b/actions/elasticache_delete_replication_group.yaml index 98b10f20..33bbeb49 100644 --- a/actions/elasticache_delete_replication_group.yaml +++ b/actions/elasticache_delete_replication_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_delete_replication_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_replication_group immutable: true diff --git a/actions/elasticache_delete_snapshot.yaml b/actions/elasticache_delete_snapshot.yaml index f998cc43..15bc8253 100644 --- a/actions/elasticache_delete_snapshot.yaml +++ b/actions/elasticache_delete_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_delete_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_snapshot immutable: true diff --git a/actions/elasticache_describe_cache_clusters.yaml b/actions/elasticache_describe_cache_clusters.yaml index cd6fc242..a0531095 100644 --- a/actions/elasticache_describe_cache_clusters.yaml +++ b/actions/elasticache_describe_cache_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_cache_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache_clusters immutable: true diff --git a/actions/elasticache_describe_cache_engine_versions.yaml b/actions/elasticache_describe_cache_engine_versions.yaml index 2d18e53f..eb51a94d 100644 --- a/actions/elasticache_describe_cache_engine_versions.yaml +++ b/actions/elasticache_describe_cache_engine_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_cache_engine_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache_engine_versions immutable: true diff --git a/actions/elasticache_describe_cache_parameter_groups.yaml b/actions/elasticache_describe_cache_parameter_groups.yaml index 200422fc..a0472296 100644 --- a/actions/elasticache_describe_cache_parameter_groups.yaml +++ b/actions/elasticache_describe_cache_parameter_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_cache_parameter_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache_parameter_groups immutable: true diff --git a/actions/elasticache_describe_cache_parameters.yaml b/actions/elasticache_describe_cache_parameters.yaml index 543f5bd5..2cffa36f 100644 --- a/actions/elasticache_describe_cache_parameters.yaml +++ b/actions/elasticache_describe_cache_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_cache_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache_parameters immutable: true diff --git a/actions/elasticache_describe_cache_security_groups.yaml b/actions/elasticache_describe_cache_security_groups.yaml index a5eac3eb..d8a4274e 100644 --- a/actions/elasticache_describe_cache_security_groups.yaml +++ b/actions/elasticache_describe_cache_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_cache_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache_security_groups immutable: true diff --git a/actions/elasticache_describe_cache_subnet_groups.yaml b/actions/elasticache_describe_cache_subnet_groups.yaml index 3313b00c..977288d2 100644 --- a/actions/elasticache_describe_cache_subnet_groups.yaml +++ b/actions/elasticache_describe_cache_subnet_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_cache_subnet_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache_subnet_groups immutable: true diff --git a/actions/elasticache_describe_engine_default_parameters.yaml b/actions/elasticache_describe_engine_default_parameters.yaml index 6131df32..65f35169 100644 --- a/actions/elasticache_describe_engine_default_parameters.yaml +++ b/actions/elasticache_describe_engine_default_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_engine_default_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_engine_default_parameters immutable: true diff --git a/actions/elasticache_describe_events.yaml b/actions/elasticache_describe_events.yaml index 7b12fd18..c1422d93 100644 --- a/actions/elasticache_describe_events.yaml +++ b/actions/elasticache_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/elasticache_describe_replication_groups.yaml b/actions/elasticache_describe_replication_groups.yaml index 84dfac34..f4a9db33 100644 --- a/actions/elasticache_describe_replication_groups.yaml +++ b/actions/elasticache_describe_replication_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_replication_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_replication_groups immutable: true diff --git a/actions/elasticache_describe_reserved_cache_nodes.yaml b/actions/elasticache_describe_reserved_cache_nodes.yaml index 84296666..f9d0c78b 100644 --- a/actions/elasticache_describe_reserved_cache_nodes.yaml +++ b/actions/elasticache_describe_reserved_cache_nodes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_reserved_cache_nodes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_cache_nodes immutable: true diff --git a/actions/elasticache_describe_reserved_cache_nodes_offerings.yaml b/actions/elasticache_describe_reserved_cache_nodes_offerings.yaml index 8bb645cc..afc8fe41 100644 --- a/actions/elasticache_describe_reserved_cache_nodes_offerings.yaml +++ b/actions/elasticache_describe_reserved_cache_nodes_offerings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_reserved_cache_nodes_offerings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_cache_nodes_offerings immutable: true diff --git a/actions/elasticache_describe_snapshots.yaml b/actions/elasticache_describe_snapshots.yaml index b3d9048c..aedb3d5b 100644 --- a/actions/elasticache_describe_snapshots.yaml +++ b/actions/elasticache_describe_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_describe_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_snapshots immutable: true diff --git a/actions/elasticache_list_allowed_node_type_modifications.yaml b/actions/elasticache_list_allowed_node_type_modifications.yaml index 42da92d3..32d58bc5 100644 --- a/actions/elasticache_list_allowed_node_type_modifications.yaml +++ b/actions/elasticache_list_allowed_node_type_modifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_list_allowed_node_type_modifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_allowed_node_type_modifications immutable: true diff --git a/actions/elasticache_list_tags_for_resource.yaml b/actions/elasticache_list_tags_for_resource.yaml index b79d74b6..a55fd968 100644 --- a/actions/elasticache_list_tags_for_resource.yaml +++ b/actions/elasticache_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/elasticache_modify_cache_cluster.yaml b/actions/elasticache_modify_cache_cluster.yaml index a08f8b97..f9b3d9ca 100644 --- a/actions/elasticache_modify_cache_cluster.yaml +++ b/actions/elasticache_modify_cache_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_modify_cache_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cache_cluster immutable: true diff --git a/actions/elasticache_modify_cache_parameter_group.yaml b/actions/elasticache_modify_cache_parameter_group.yaml index 1a46f18f..344690bc 100644 --- a/actions/elasticache_modify_cache_parameter_group.yaml +++ b/actions/elasticache_modify_cache_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_modify_cache_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cache_parameter_group immutable: true diff --git a/actions/elasticache_modify_cache_subnet_group.yaml b/actions/elasticache_modify_cache_subnet_group.yaml index c2473a2f..2bf7feda 100644 --- a/actions/elasticache_modify_cache_subnet_group.yaml +++ b/actions/elasticache_modify_cache_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_modify_cache_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cache_subnet_group immutable: true diff --git a/actions/elasticache_modify_replication_group.yaml b/actions/elasticache_modify_replication_group.yaml index f074edd2..b525b365 100644 --- a/actions/elasticache_modify_replication_group.yaml +++ b/actions/elasticache_modify_replication_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_modify_replication_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_replication_group immutable: true diff --git a/actions/elasticache_purchase_reserved_cache_nodes_offering.yaml b/actions/elasticache_purchase_reserved_cache_nodes_offering.yaml index a53aac64..69718101 100644 --- a/actions/elasticache_purchase_reserved_cache_nodes_offering.yaml +++ b/actions/elasticache_purchase_reserved_cache_nodes_offering.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_purchase_reserved_cache_nodes_offering runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_reserved_cache_nodes_offering immutable: true diff --git a/actions/elasticache_reboot_cache_cluster.yaml b/actions/elasticache_reboot_cache_cluster.yaml index ac65555a..6a72c3aa 100644 --- a/actions/elasticache_reboot_cache_cluster.yaml +++ b/actions/elasticache_reboot_cache_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_reboot_cache_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_cache_cluster immutable: true diff --git a/actions/elasticache_remove_tags_from_resource.yaml b/actions/elasticache_remove_tags_from_resource.yaml index 2c8cda83..7968ed55 100644 --- a/actions/elasticache_remove_tags_from_resource.yaml +++ b/actions/elasticache_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/elasticache_reset_cache_parameter_group.yaml b/actions/elasticache_reset_cache_parameter_group.yaml index fe520d87..ba218547 100644 --- a/actions/elasticache_reset_cache_parameter_group.yaml +++ b/actions/elasticache_reset_cache_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_reset_cache_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_cache_parameter_group immutable: true diff --git a/actions/elasticache_revoke_cache_security_group_ingress.yaml b/actions/elasticache_revoke_cache_security_group_ingress.yaml index acda6248..db57f835 100644 --- a/actions/elasticache_revoke_cache_security_group_ingress.yaml +++ b/actions/elasticache_revoke_cache_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_revoke_cache_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_cache_security_group_ingress immutable: true diff --git a/actions/elasticache_test_failover.yaml b/actions/elasticache_test_failover.yaml index d942657f..f745d74a 100644 --- a/actions/elasticache_test_failover.yaml +++ b/actions/elasticache_test_failover.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticache_test_failover runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_failover immutable: true diff --git a/actions/elasticbeanstalk_abort_environment_update.yaml b/actions/elasticbeanstalk_abort_environment_update.yaml index 3d9481e5..f7896530 100644 --- a/actions/elasticbeanstalk_abort_environment_update.yaml +++ b/actions/elasticbeanstalk_abort_environment_update.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_abort_environment_update runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: abort_environment_update immutable: true diff --git a/actions/elasticbeanstalk_apply_environment_managed_action.yaml b/actions/elasticbeanstalk_apply_environment_managed_action.yaml index bfc1946a..98f683a8 100644 --- a/actions/elasticbeanstalk_apply_environment_managed_action.yaml +++ b/actions/elasticbeanstalk_apply_environment_managed_action.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_apply_environment_managed_action runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: apply_environment_managed_action immutable: true diff --git a/actions/elasticbeanstalk_check_dns_availability.yaml b/actions/elasticbeanstalk_check_dns_availability.yaml index 8742ae2d..afc2eaf2 100644 --- a/actions/elasticbeanstalk_check_dns_availability.yaml +++ b/actions/elasticbeanstalk_check_dns_availability.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_check_dns_availability runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: check_dns_availability immutable: true diff --git a/actions/elasticbeanstalk_compose_environments.yaml b/actions/elasticbeanstalk_compose_environments.yaml index a5666f20..3f173df6 100644 --- a/actions/elasticbeanstalk_compose_environments.yaml +++ b/actions/elasticbeanstalk_compose_environments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_compose_environments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: compose_environments immutable: true diff --git a/actions/elasticbeanstalk_create_application.yaml b/actions/elasticbeanstalk_create_application.yaml index 6ab3a053..f9a8e14c 100644 --- a/actions/elasticbeanstalk_create_application.yaml +++ b/actions/elasticbeanstalk_create_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_create_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_application immutable: true diff --git a/actions/elasticbeanstalk_create_application_version.yaml b/actions/elasticbeanstalk_create_application_version.yaml index 500ac927..0761a7bb 100644 --- a/actions/elasticbeanstalk_create_application_version.yaml +++ b/actions/elasticbeanstalk_create_application_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_create_application_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_application_version immutable: true diff --git a/actions/elasticbeanstalk_create_configuration_template.yaml b/actions/elasticbeanstalk_create_configuration_template.yaml index ffdeb9ac..3607bf8d 100644 --- a/actions/elasticbeanstalk_create_configuration_template.yaml +++ b/actions/elasticbeanstalk_create_configuration_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_create_configuration_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_configuration_template immutable: true diff --git a/actions/elasticbeanstalk_create_environment.yaml b/actions/elasticbeanstalk_create_environment.yaml index d50d65f8..b6b8b3ba 100644 --- a/actions/elasticbeanstalk_create_environment.yaml +++ b/actions/elasticbeanstalk_create_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_create_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_environment immutable: true diff --git a/actions/elasticbeanstalk_create_platform_version.yaml b/actions/elasticbeanstalk_create_platform_version.yaml index 300ef79b..478ad3e6 100644 --- a/actions/elasticbeanstalk_create_platform_version.yaml +++ b/actions/elasticbeanstalk_create_platform_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_create_platform_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_platform_version immutable: true diff --git a/actions/elasticbeanstalk_delete_application.yaml b/actions/elasticbeanstalk_delete_application.yaml index 91fb01be..2227d5b2 100644 --- a/actions/elasticbeanstalk_delete_application.yaml +++ b/actions/elasticbeanstalk_delete_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_delete_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application immutable: true diff --git a/actions/elasticbeanstalk_delete_application_version.yaml b/actions/elasticbeanstalk_delete_application_version.yaml index a2f606bb..910cbf07 100644 --- a/actions/elasticbeanstalk_delete_application_version.yaml +++ b/actions/elasticbeanstalk_delete_application_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_delete_application_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application_version immutable: true diff --git a/actions/elasticbeanstalk_delete_configuration_template.yaml b/actions/elasticbeanstalk_delete_configuration_template.yaml index 6fa32855..4e8ba702 100644 --- a/actions/elasticbeanstalk_delete_configuration_template.yaml +++ b/actions/elasticbeanstalk_delete_configuration_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_delete_configuration_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_configuration_template immutable: true diff --git a/actions/elasticbeanstalk_delete_environment_configuration.yaml b/actions/elasticbeanstalk_delete_environment_configuration.yaml index 6b6165d7..b2c8a9b7 100644 --- a/actions/elasticbeanstalk_delete_environment_configuration.yaml +++ b/actions/elasticbeanstalk_delete_environment_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_delete_environment_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_environment_configuration immutable: true diff --git a/actions/elasticbeanstalk_delete_platform_version.yaml b/actions/elasticbeanstalk_delete_platform_version.yaml index 623c2cc7..844703ec 100644 --- a/actions/elasticbeanstalk_delete_platform_version.yaml +++ b/actions/elasticbeanstalk_delete_platform_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_delete_platform_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_platform_version immutable: true diff --git a/actions/elasticbeanstalk_describe_application_versions.yaml b/actions/elasticbeanstalk_describe_application_versions.yaml index cad1a0ed..c6fab85b 100644 --- a/actions/elasticbeanstalk_describe_application_versions.yaml +++ b/actions/elasticbeanstalk_describe_application_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_application_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_application_versions immutable: true diff --git a/actions/elasticbeanstalk_describe_applications.yaml b/actions/elasticbeanstalk_describe_applications.yaml index ab2da45d..e0e16536 100644 --- a/actions/elasticbeanstalk_describe_applications.yaml +++ b/actions/elasticbeanstalk_describe_applications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_applications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_applications immutable: true diff --git a/actions/elasticbeanstalk_describe_configuration_options.yaml b/actions/elasticbeanstalk_describe_configuration_options.yaml index 983306e1..99b561de 100644 --- a/actions/elasticbeanstalk_describe_configuration_options.yaml +++ b/actions/elasticbeanstalk_describe_configuration_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_configuration_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_configuration_options immutable: true diff --git a/actions/elasticbeanstalk_describe_configuration_settings.yaml b/actions/elasticbeanstalk_describe_configuration_settings.yaml index e1639935..01d4a010 100644 --- a/actions/elasticbeanstalk_describe_configuration_settings.yaml +++ b/actions/elasticbeanstalk_describe_configuration_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_configuration_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_configuration_settings immutable: true diff --git a/actions/elasticbeanstalk_describe_environment_health.yaml b/actions/elasticbeanstalk_describe_environment_health.yaml index 8fd067b0..fe4c4bc6 100644 --- a/actions/elasticbeanstalk_describe_environment_health.yaml +++ b/actions/elasticbeanstalk_describe_environment_health.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_environment_health runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_environment_health immutable: true diff --git a/actions/elasticbeanstalk_describe_environment_managed_action_history.yaml b/actions/elasticbeanstalk_describe_environment_managed_action_history.yaml index 43e0ae80..9b51743c 100644 --- a/actions/elasticbeanstalk_describe_environment_managed_action_history.yaml +++ b/actions/elasticbeanstalk_describe_environment_managed_action_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_environment_managed_action_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_environment_managed_action_history immutable: true diff --git a/actions/elasticbeanstalk_describe_environment_managed_actions.yaml b/actions/elasticbeanstalk_describe_environment_managed_actions.yaml index 06c5e103..dd167eb6 100644 --- a/actions/elasticbeanstalk_describe_environment_managed_actions.yaml +++ b/actions/elasticbeanstalk_describe_environment_managed_actions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_environment_managed_actions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_environment_managed_actions immutable: true diff --git a/actions/elasticbeanstalk_describe_environment_resources.yaml b/actions/elasticbeanstalk_describe_environment_resources.yaml index ea63bced..6fad5c29 100644 --- a/actions/elasticbeanstalk_describe_environment_resources.yaml +++ b/actions/elasticbeanstalk_describe_environment_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_environment_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_environment_resources immutable: true diff --git a/actions/elasticbeanstalk_describe_environments.yaml b/actions/elasticbeanstalk_describe_environments.yaml index bde7dc3a..da68b444 100644 --- a/actions/elasticbeanstalk_describe_environments.yaml +++ b/actions/elasticbeanstalk_describe_environments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_environments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_environments immutable: true diff --git a/actions/elasticbeanstalk_describe_events.yaml b/actions/elasticbeanstalk_describe_events.yaml index 797a99b5..a72ed597 100644 --- a/actions/elasticbeanstalk_describe_events.yaml +++ b/actions/elasticbeanstalk_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/elasticbeanstalk_describe_instances_health.yaml b/actions/elasticbeanstalk_describe_instances_health.yaml index 58c2f954..b5cc374c 100644 --- a/actions/elasticbeanstalk_describe_instances_health.yaml +++ b/actions/elasticbeanstalk_describe_instances_health.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_instances_health runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instances_health immutable: true diff --git a/actions/elasticbeanstalk_describe_platform_version.yaml b/actions/elasticbeanstalk_describe_platform_version.yaml index 6c2e0aef..d8d0a9d3 100644 --- a/actions/elasticbeanstalk_describe_platform_version.yaml +++ b/actions/elasticbeanstalk_describe_platform_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_describe_platform_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_platform_version immutable: true diff --git a/actions/elasticbeanstalk_list_platform_versions.yaml b/actions/elasticbeanstalk_list_platform_versions.yaml index 14bbefa4..50844a3f 100644 --- a/actions/elasticbeanstalk_list_platform_versions.yaml +++ b/actions/elasticbeanstalk_list_platform_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_list_platform_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_platform_versions immutable: true diff --git a/actions/elasticbeanstalk_rebuild_environment.yaml b/actions/elasticbeanstalk_rebuild_environment.yaml index 999cdd07..6b21e81f 100644 --- a/actions/elasticbeanstalk_rebuild_environment.yaml +++ b/actions/elasticbeanstalk_rebuild_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_rebuild_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: rebuild_environment immutable: true diff --git a/actions/elasticbeanstalk_request_environment_info.yaml b/actions/elasticbeanstalk_request_environment_info.yaml index af2855ab..6f5a829c 100644 --- a/actions/elasticbeanstalk_request_environment_info.yaml +++ b/actions/elasticbeanstalk_request_environment_info.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_request_environment_info runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: request_environment_info immutable: true diff --git a/actions/elasticbeanstalk_restart_app_server.yaml b/actions/elasticbeanstalk_restart_app_server.yaml index 7d95ca27..d98bf6f3 100644 --- a/actions/elasticbeanstalk_restart_app_server.yaml +++ b/actions/elasticbeanstalk_restart_app_server.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_restart_app_server runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restart_app_server immutable: true diff --git a/actions/elasticbeanstalk_retrieve_environment_info.yaml b/actions/elasticbeanstalk_retrieve_environment_info.yaml index 393e375b..d44ca3ff 100644 --- a/actions/elasticbeanstalk_retrieve_environment_info.yaml +++ b/actions/elasticbeanstalk_retrieve_environment_info.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_retrieve_environment_info runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: retrieve_environment_info immutable: true diff --git a/actions/elasticbeanstalk_swap_environment_cnam_es.yaml b/actions/elasticbeanstalk_swap_environment_cnam_es.yaml index e04ac87d..0f0de413 100644 --- a/actions/elasticbeanstalk_swap_environment_cnam_es.yaml +++ b/actions/elasticbeanstalk_swap_environment_cnam_es.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_swap_environment_cnam_es runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: swap_environment_cnam_es immutable: true diff --git a/actions/elasticbeanstalk_terminate_environment.yaml b/actions/elasticbeanstalk_terminate_environment.yaml index f0f9493c..e78ce2be 100644 --- a/actions/elasticbeanstalk_terminate_environment.yaml +++ b/actions/elasticbeanstalk_terminate_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_terminate_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_environment immutable: true diff --git a/actions/elasticbeanstalk_update_application.yaml b/actions/elasticbeanstalk_update_application.yaml index d8730bbd..dd1a25ce 100644 --- a/actions/elasticbeanstalk_update_application.yaml +++ b/actions/elasticbeanstalk_update_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_update_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application immutable: true diff --git a/actions/elasticbeanstalk_update_application_resource_lifecycle.yaml b/actions/elasticbeanstalk_update_application_resource_lifecycle.yaml index a37391be..7d25bd64 100644 --- a/actions/elasticbeanstalk_update_application_resource_lifecycle.yaml +++ b/actions/elasticbeanstalk_update_application_resource_lifecycle.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_update_application_resource_lifecycle runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application_resource_lifecycle immutable: true diff --git a/actions/elasticbeanstalk_update_application_version.yaml b/actions/elasticbeanstalk_update_application_version.yaml index b03c77b8..8e1388c8 100644 --- a/actions/elasticbeanstalk_update_application_version.yaml +++ b/actions/elasticbeanstalk_update_application_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_update_application_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application_version immutable: true diff --git a/actions/elasticbeanstalk_update_configuration_template.yaml b/actions/elasticbeanstalk_update_configuration_template.yaml index da17c307..c752767b 100644 --- a/actions/elasticbeanstalk_update_configuration_template.yaml +++ b/actions/elasticbeanstalk_update_configuration_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_update_configuration_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_configuration_template immutable: true diff --git a/actions/elasticbeanstalk_update_environment.yaml b/actions/elasticbeanstalk_update_environment.yaml index 651ab818..7cf8462f 100644 --- a/actions/elasticbeanstalk_update_environment.yaml +++ b/actions/elasticbeanstalk_update_environment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_update_environment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_environment immutable: true diff --git a/actions/elasticbeanstalk_validate_configuration_settings.yaml b/actions/elasticbeanstalk_validate_configuration_settings.yaml index 1828e820..da897171 100644 --- a/actions/elasticbeanstalk_validate_configuration_settings.yaml +++ b/actions/elasticbeanstalk_validate_configuration_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elasticbeanstalk_validate_configuration_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: validate_configuration_settings immutable: true diff --git a/actions/elastictranscoder_cancel_job.yaml b/actions/elastictranscoder_cancel_job.yaml index e2a14cfc..333e4296 100644 --- a/actions/elastictranscoder_cancel_job.yaml +++ b/actions/elastictranscoder_cancel_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_cancel_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_job immutable: true diff --git a/actions/elastictranscoder_create_job.yaml b/actions/elastictranscoder_create_job.yaml index d947702d..a4a5f26f 100644 --- a/actions/elastictranscoder_create_job.yaml +++ b/actions/elastictranscoder_create_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_create_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_job immutable: true diff --git a/actions/elastictranscoder_create_pipeline.yaml b/actions/elastictranscoder_create_pipeline.yaml index 66ba25b1..92557a4e 100644 --- a/actions/elastictranscoder_create_pipeline.yaml +++ b/actions/elastictranscoder_create_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_create_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_pipeline immutable: true diff --git a/actions/elastictranscoder_create_preset.yaml b/actions/elastictranscoder_create_preset.yaml index 28bd979d..977de7ea 100644 --- a/actions/elastictranscoder_create_preset.yaml +++ b/actions/elastictranscoder_create_preset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_create_preset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_preset immutable: true diff --git a/actions/elastictranscoder_delete_pipeline.yaml b/actions/elastictranscoder_delete_pipeline.yaml index fa9d18c6..7a30de42 100644 --- a/actions/elastictranscoder_delete_pipeline.yaml +++ b/actions/elastictranscoder_delete_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_delete_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_pipeline immutable: true diff --git a/actions/elastictranscoder_delete_preset.yaml b/actions/elastictranscoder_delete_preset.yaml index ac80099f..03070c15 100644 --- a/actions/elastictranscoder_delete_preset.yaml +++ b/actions/elastictranscoder_delete_preset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_delete_preset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_preset immutable: true diff --git a/actions/elastictranscoder_list_jobs_by_pipeline.yaml b/actions/elastictranscoder_list_jobs_by_pipeline.yaml index 52c6d444..db38de12 100644 --- a/actions/elastictranscoder_list_jobs_by_pipeline.yaml +++ b/actions/elastictranscoder_list_jobs_by_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_list_jobs_by_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs_by_pipeline immutable: true diff --git a/actions/elastictranscoder_list_jobs_by_status.yaml b/actions/elastictranscoder_list_jobs_by_status.yaml index a949a8ab..516bdb5b 100644 --- a/actions/elastictranscoder_list_jobs_by_status.yaml +++ b/actions/elastictranscoder_list_jobs_by_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_list_jobs_by_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs_by_status immutable: true diff --git a/actions/elastictranscoder_list_pipelines.yaml b/actions/elastictranscoder_list_pipelines.yaml index 2f4a4fc7..a109bd3e 100644 --- a/actions/elastictranscoder_list_pipelines.yaml +++ b/actions/elastictranscoder_list_pipelines.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_list_pipelines runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_pipelines immutable: true diff --git a/actions/elastictranscoder_list_presets.yaml b/actions/elastictranscoder_list_presets.yaml index 34469042..92fd18f4 100644 --- a/actions/elastictranscoder_list_presets.yaml +++ b/actions/elastictranscoder_list_presets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_list_presets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_presets immutable: true diff --git a/actions/elastictranscoder_read_job.yaml b/actions/elastictranscoder_read_job.yaml index 3d2d4577..256b652e 100644 --- a/actions/elastictranscoder_read_job.yaml +++ b/actions/elastictranscoder_read_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_read_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: read_job immutable: true diff --git a/actions/elastictranscoder_read_pipeline.yaml b/actions/elastictranscoder_read_pipeline.yaml index f59b08f0..13d7b0c6 100644 --- a/actions/elastictranscoder_read_pipeline.yaml +++ b/actions/elastictranscoder_read_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_read_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: read_pipeline immutable: true diff --git a/actions/elastictranscoder_read_preset.yaml b/actions/elastictranscoder_read_preset.yaml index 76038843..a190c178 100644 --- a/actions/elastictranscoder_read_preset.yaml +++ b/actions/elastictranscoder_read_preset.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_read_preset runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: read_preset immutable: true diff --git a/actions/elastictranscoder_test_role.yaml b/actions/elastictranscoder_test_role.yaml index d94b8de3..26145dec 100644 --- a/actions/elastictranscoder_test_role.yaml +++ b/actions/elastictranscoder_test_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_test_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_role immutable: true diff --git a/actions/elastictranscoder_update_pipeline.yaml b/actions/elastictranscoder_update_pipeline.yaml index a5ef472a..e7c0674e 100644 --- a/actions/elastictranscoder_update_pipeline.yaml +++ b/actions/elastictranscoder_update_pipeline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_update_pipeline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_pipeline immutable: true diff --git a/actions/elastictranscoder_update_pipeline_notifications.yaml b/actions/elastictranscoder_update_pipeline_notifications.yaml index 552ec29b..e83ac84e 100644 --- a/actions/elastictranscoder_update_pipeline_notifications.yaml +++ b/actions/elastictranscoder_update_pipeline_notifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_update_pipeline_notifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_pipeline_notifications immutable: true diff --git a/actions/elastictranscoder_update_pipeline_status.yaml b/actions/elastictranscoder_update_pipeline_status.yaml index bb416677..68d3719b 100644 --- a/actions/elastictranscoder_update_pipeline_status.yaml +++ b/actions/elastictranscoder_update_pipeline_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elastictranscoder_update_pipeline_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_pipeline_status immutable: true diff --git a/actions/elb_add_tags.yaml b/actions/elb_add_tags.yaml index deb945e3..918de4a2 100644 --- a/actions/elb_add_tags.yaml +++ b/actions/elb_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/elb_apply_security_groups_to_load_balancer.yaml b/actions/elb_apply_security_groups_to_load_balancer.yaml index 2b80aa80..7ec3e557 100644 --- a/actions/elb_apply_security_groups_to_load_balancer.yaml +++ b/actions/elb_apply_security_groups_to_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_apply_security_groups_to_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: apply_security_groups_to_load_balancer immutable: true diff --git a/actions/elb_attach_load_balancer_to_subnets.yaml b/actions/elb_attach_load_balancer_to_subnets.yaml index ce151741..9f948c84 100644 --- a/actions/elb_attach_load_balancer_to_subnets.yaml +++ b/actions/elb_attach_load_balancer_to_subnets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_attach_load_balancer_to_subnets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_load_balancer_to_subnets immutable: true diff --git a/actions/elb_configure_health_check.yaml b/actions/elb_configure_health_check.yaml index 0e18623f..2c811389 100644 --- a/actions/elb_configure_health_check.yaml +++ b/actions/elb_configure_health_check.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_configure_health_check runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: configure_health_check immutable: true diff --git a/actions/elb_create_app_cookie_stickiness_policy.yaml b/actions/elb_create_app_cookie_stickiness_policy.yaml index 1f7b884a..626b270b 100644 --- a/actions/elb_create_app_cookie_stickiness_policy.yaml +++ b/actions/elb_create_app_cookie_stickiness_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_create_app_cookie_stickiness_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_app_cookie_stickiness_policy immutable: true diff --git a/actions/elb_create_lb_cookie_stickiness_policy.yaml b/actions/elb_create_lb_cookie_stickiness_policy.yaml index 1c4c0b37..dbcd7d12 100644 --- a/actions/elb_create_lb_cookie_stickiness_policy.yaml +++ b/actions/elb_create_lb_cookie_stickiness_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_create_lb_cookie_stickiness_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_lb_cookie_stickiness_policy immutable: true diff --git a/actions/elb_create_load_balancer.yaml b/actions/elb_create_load_balancer.yaml index 34fa02ba..ab0eb033 100644 --- a/actions/elb_create_load_balancer.yaml +++ b/actions/elb_create_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_create_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_load_balancer immutable: true diff --git a/actions/elb_create_load_balancer_listeners.yaml b/actions/elb_create_load_balancer_listeners.yaml index d80b4970..16ccf2ce 100644 --- a/actions/elb_create_load_balancer_listeners.yaml +++ b/actions/elb_create_load_balancer_listeners.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_create_load_balancer_listeners runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_load_balancer_listeners immutable: true diff --git a/actions/elb_create_load_balancer_policy.yaml b/actions/elb_create_load_balancer_policy.yaml index 00c7c947..cfff5ace 100644 --- a/actions/elb_create_load_balancer_policy.yaml +++ b/actions/elb_create_load_balancer_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_create_load_balancer_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_load_balancer_policy immutable: true diff --git a/actions/elb_delete_load_balancer.yaml b/actions/elb_delete_load_balancer.yaml index 7ecde278..6a9ea6d5 100644 --- a/actions/elb_delete_load_balancer.yaml +++ b/actions/elb_delete_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_delete_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_load_balancer immutable: true diff --git a/actions/elb_delete_load_balancer_listeners.yaml b/actions/elb_delete_load_balancer_listeners.yaml index 6a1a9612..802e1ea0 100644 --- a/actions/elb_delete_load_balancer_listeners.yaml +++ b/actions/elb_delete_load_balancer_listeners.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_delete_load_balancer_listeners runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_load_balancer_listeners immutable: true diff --git a/actions/elb_delete_load_balancer_policy.yaml b/actions/elb_delete_load_balancer_policy.yaml index e59db15f..0bded70c 100644 --- a/actions/elb_delete_load_balancer_policy.yaml +++ b/actions/elb_delete_load_balancer_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_delete_load_balancer_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_load_balancer_policy immutable: true diff --git a/actions/elb_deregister_instances_from_load_balancer.yaml b/actions/elb_deregister_instances_from_load_balancer.yaml index 8419dabd..93bc6b24 100644 --- a/actions/elb_deregister_instances_from_load_balancer.yaml +++ b/actions/elb_deregister_instances_from_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_deregister_instances_from_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_instances_from_load_balancer immutable: true diff --git a/actions/elb_describe_account_limits.yaml b/actions/elb_describe_account_limits.yaml index b3253ccd..31a7c3c7 100644 --- a/actions/elb_describe_account_limits.yaml +++ b/actions/elb_describe_account_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_account_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_limits immutable: true diff --git a/actions/elb_describe_instance_health.yaml b/actions/elb_describe_instance_health.yaml index 6b8cde71..ac31b451 100644 --- a/actions/elb_describe_instance_health.yaml +++ b/actions/elb_describe_instance_health.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_instance_health runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_health immutable: true diff --git a/actions/elb_describe_load_balancer_attributes.yaml b/actions/elb_describe_load_balancer_attributes.yaml index bbf6f8e3..cf722ae0 100644 --- a/actions/elb_describe_load_balancer_attributes.yaml +++ b/actions/elb_describe_load_balancer_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_load_balancer_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancer_attributes immutable: true diff --git a/actions/elb_describe_load_balancer_policies.yaml b/actions/elb_describe_load_balancer_policies.yaml index 003b4827..cb32785c 100644 --- a/actions/elb_describe_load_balancer_policies.yaml +++ b/actions/elb_describe_load_balancer_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_load_balancer_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancer_policies immutable: true diff --git a/actions/elb_describe_load_balancer_policy_types.yaml b/actions/elb_describe_load_balancer_policy_types.yaml index b787eac5..e3694105 100644 --- a/actions/elb_describe_load_balancer_policy_types.yaml +++ b/actions/elb_describe_load_balancer_policy_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_load_balancer_policy_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancer_policy_types immutable: true diff --git a/actions/elb_describe_load_balancers.yaml b/actions/elb_describe_load_balancers.yaml index 96dee5fa..d9c2e4da 100644 --- a/actions/elb_describe_load_balancers.yaml +++ b/actions/elb_describe_load_balancers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_load_balancers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancers immutable: true diff --git a/actions/elb_describe_tags.yaml b/actions/elb_describe_tags.yaml index 39643c23..224f87f9 100644 --- a/actions/elb_describe_tags.yaml +++ b/actions/elb_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/elb_detach_load_balancer_from_subnets.yaml b/actions/elb_detach_load_balancer_from_subnets.yaml index 2cc188ac..cddd0fb8 100644 --- a/actions/elb_detach_load_balancer_from_subnets.yaml +++ b/actions/elb_detach_load_balancer_from_subnets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_detach_load_balancer_from_subnets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_load_balancer_from_subnets immutable: true diff --git a/actions/elb_disable_availability_zones_for_load_balancer.yaml b/actions/elb_disable_availability_zones_for_load_balancer.yaml index 1a3718b0..aa983d3e 100644 --- a/actions/elb_disable_availability_zones_for_load_balancer.yaml +++ b/actions/elb_disable_availability_zones_for_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_disable_availability_zones_for_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_availability_zones_for_load_balancer immutable: true diff --git a/actions/elb_enable_availability_zones_for_load_balancer.yaml b/actions/elb_enable_availability_zones_for_load_balancer.yaml index a7ce0c07..5e5cf41d 100644 --- a/actions/elb_enable_availability_zones_for_load_balancer.yaml +++ b/actions/elb_enable_availability_zones_for_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_enable_availability_zones_for_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_availability_zones_for_load_balancer immutable: true diff --git a/actions/elb_modify_load_balancer_attributes.yaml b/actions/elb_modify_load_balancer_attributes.yaml index ca8d696f..6627fff8 100644 --- a/actions/elb_modify_load_balancer_attributes.yaml +++ b/actions/elb_modify_load_balancer_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_modify_load_balancer_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_load_balancer_attributes immutable: true diff --git a/actions/elb_register_instances_with_load_balancer.yaml b/actions/elb_register_instances_with_load_balancer.yaml index 80dd18bd..06ff0cd3 100644 --- a/actions/elb_register_instances_with_load_balancer.yaml +++ b/actions/elb_register_instances_with_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_register_instances_with_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_instances_with_load_balancer immutable: true diff --git a/actions/elb_remove_tags.yaml b/actions/elb_remove_tags.yaml index 7d7f5b44..d3c01464 100644 --- a/actions/elb_remove_tags.yaml +++ b/actions/elb_remove_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_remove_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags immutable: true diff --git a/actions/elb_set_load_balancer_listener_ssl_certificate.yaml b/actions/elb_set_load_balancer_listener_ssl_certificate.yaml index 4146cf6a..c09d1329 100644 --- a/actions/elb_set_load_balancer_listener_ssl_certificate.yaml +++ b/actions/elb_set_load_balancer_listener_ssl_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_set_load_balancer_listener_ssl_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_load_balancer_listener_ssl_certificate immutable: true diff --git a/actions/elb_set_load_balancer_policies_for_backend_server.yaml b/actions/elb_set_load_balancer_policies_for_backend_server.yaml index 8fad2a22..3549abfd 100644 --- a/actions/elb_set_load_balancer_policies_for_backend_server.yaml +++ b/actions/elb_set_load_balancer_policies_for_backend_server.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_set_load_balancer_policies_for_backend_server runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_load_balancer_policies_for_backend_server immutable: true diff --git a/actions/elb_set_load_balancer_policies_of_listener.yaml b/actions/elb_set_load_balancer_policies_of_listener.yaml index 1b505509..9ded7d98 100644 --- a/actions/elb_set_load_balancer_policies_of_listener.yaml +++ b/actions/elb_set_load_balancer_policies_of_listener.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elb_set_load_balancer_policies_of_listener runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_load_balancer_policies_of_listener immutable: true diff --git a/actions/elbv2_add_tags.yaml b/actions/elbv2_add_tags.yaml index 184308e1..b69890ef 100644 --- a/actions/elbv2_add_tags.yaml +++ b/actions/elbv2_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/elbv2_create_listener.yaml b/actions/elbv2_create_listener.yaml index d9271903..d6c270f1 100644 --- a/actions/elbv2_create_listener.yaml +++ b/actions/elbv2_create_listener.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_create_listener runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_listener immutable: true diff --git a/actions/elbv2_create_load_balancer.yaml b/actions/elbv2_create_load_balancer.yaml index 4b473b17..910dff34 100644 --- a/actions/elbv2_create_load_balancer.yaml +++ b/actions/elbv2_create_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_create_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_load_balancer immutable: true diff --git a/actions/elbv2_create_rule.yaml b/actions/elbv2_create_rule.yaml index b531eab4..2b82ca46 100644 --- a/actions/elbv2_create_rule.yaml +++ b/actions/elbv2_create_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_create_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_rule immutable: true diff --git a/actions/elbv2_create_target_group.yaml b/actions/elbv2_create_target_group.yaml index ef2f1401..9b364f40 100644 --- a/actions/elbv2_create_target_group.yaml +++ b/actions/elbv2_create_target_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_create_target_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_target_group immutable: true diff --git a/actions/elbv2_delete_listener.yaml b/actions/elbv2_delete_listener.yaml index 299b9e7d..1914e645 100644 --- a/actions/elbv2_delete_listener.yaml +++ b/actions/elbv2_delete_listener.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_delete_listener runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_listener immutable: true diff --git a/actions/elbv2_delete_load_balancer.yaml b/actions/elbv2_delete_load_balancer.yaml index 693fc8e9..1fd55f8b 100644 --- a/actions/elbv2_delete_load_balancer.yaml +++ b/actions/elbv2_delete_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_delete_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_load_balancer immutable: true diff --git a/actions/elbv2_delete_rule.yaml b/actions/elbv2_delete_rule.yaml index c2a591f5..ebdc6ea6 100644 --- a/actions/elbv2_delete_rule.yaml +++ b/actions/elbv2_delete_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_delete_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rule immutable: true diff --git a/actions/elbv2_delete_target_group.yaml b/actions/elbv2_delete_target_group.yaml index c5d5a985..2aed6ccf 100644 --- a/actions/elbv2_delete_target_group.yaml +++ b/actions/elbv2_delete_target_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_delete_target_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_target_group immutable: true diff --git a/actions/elbv2_deregister_targets.yaml b/actions/elbv2_deregister_targets.yaml index b346192e..1b0ed0de 100644 --- a/actions/elbv2_deregister_targets.yaml +++ b/actions/elbv2_deregister_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_deregister_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_targets immutable: true diff --git a/actions/elbv2_describe_account_limits.yaml b/actions/elbv2_describe_account_limits.yaml index 1c98d3af..d105bdd9 100644 --- a/actions/elbv2_describe_account_limits.yaml +++ b/actions/elbv2_describe_account_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_account_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_limits immutable: true diff --git a/actions/elbv2_describe_listeners.yaml b/actions/elbv2_describe_listeners.yaml index c6eb9b84..06b6dbf9 100644 --- a/actions/elbv2_describe_listeners.yaml +++ b/actions/elbv2_describe_listeners.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_listeners runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_listeners immutable: true diff --git a/actions/elbv2_describe_load_balancer_attributes.yaml b/actions/elbv2_describe_load_balancer_attributes.yaml index 705c99bd..6d17b258 100644 --- a/actions/elbv2_describe_load_balancer_attributes.yaml +++ b/actions/elbv2_describe_load_balancer_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_load_balancer_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancer_attributes immutable: true diff --git a/actions/elbv2_describe_load_balancers.yaml b/actions/elbv2_describe_load_balancers.yaml index d449aa19..7d2b2e8a 100644 --- a/actions/elbv2_describe_load_balancers.yaml +++ b/actions/elbv2_describe_load_balancers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_load_balancers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_balancers immutable: true diff --git a/actions/elbv2_describe_rules.yaml b/actions/elbv2_describe_rules.yaml index e59d84e3..d327ffc2 100644 --- a/actions/elbv2_describe_rules.yaml +++ b/actions/elbv2_describe_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_rules immutable: true diff --git a/actions/elbv2_describe_ssl_policies.yaml b/actions/elbv2_describe_ssl_policies.yaml index 104da260..18732672 100644 --- a/actions/elbv2_describe_ssl_policies.yaml +++ b/actions/elbv2_describe_ssl_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_ssl_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_ssl_policies immutable: true diff --git a/actions/elbv2_describe_tags.yaml b/actions/elbv2_describe_tags.yaml index dad47803..0c6e7f5e 100644 --- a/actions/elbv2_describe_tags.yaml +++ b/actions/elbv2_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/elbv2_describe_target_group_attributes.yaml b/actions/elbv2_describe_target_group_attributes.yaml index fe1c2262..0bf59121 100644 --- a/actions/elbv2_describe_target_group_attributes.yaml +++ b/actions/elbv2_describe_target_group_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_target_group_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_target_group_attributes immutable: true diff --git a/actions/elbv2_describe_target_groups.yaml b/actions/elbv2_describe_target_groups.yaml index df6ce42c..352913ed 100644 --- a/actions/elbv2_describe_target_groups.yaml +++ b/actions/elbv2_describe_target_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_target_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_target_groups immutable: true diff --git a/actions/elbv2_describe_target_health.yaml b/actions/elbv2_describe_target_health.yaml index 1d5216de..58933d9a 100644 --- a/actions/elbv2_describe_target_health.yaml +++ b/actions/elbv2_describe_target_health.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_describe_target_health runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_target_health immutable: true diff --git a/actions/elbv2_modify_listener.yaml b/actions/elbv2_modify_listener.yaml index 830ef406..8ec15237 100644 --- a/actions/elbv2_modify_listener.yaml +++ b/actions/elbv2_modify_listener.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_modify_listener runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_listener immutable: true diff --git a/actions/elbv2_modify_load_balancer_attributes.yaml b/actions/elbv2_modify_load_balancer_attributes.yaml index 96ed216f..90d64036 100644 --- a/actions/elbv2_modify_load_balancer_attributes.yaml +++ b/actions/elbv2_modify_load_balancer_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_modify_load_balancer_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_load_balancer_attributes immutable: true diff --git a/actions/elbv2_modify_rule.yaml b/actions/elbv2_modify_rule.yaml index bad61445..708b87a0 100644 --- a/actions/elbv2_modify_rule.yaml +++ b/actions/elbv2_modify_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_modify_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_rule immutable: true diff --git a/actions/elbv2_modify_target_group.yaml b/actions/elbv2_modify_target_group.yaml index da6df7c0..a4dd01e4 100644 --- a/actions/elbv2_modify_target_group.yaml +++ b/actions/elbv2_modify_target_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_modify_target_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_target_group immutable: true diff --git a/actions/elbv2_modify_target_group_attributes.yaml b/actions/elbv2_modify_target_group_attributes.yaml index 3abc3454..ef9d2e26 100644 --- a/actions/elbv2_modify_target_group_attributes.yaml +++ b/actions/elbv2_modify_target_group_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_modify_target_group_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_target_group_attributes immutable: true diff --git a/actions/elbv2_register_targets.yaml b/actions/elbv2_register_targets.yaml index 2d26994c..677f9795 100644 --- a/actions/elbv2_register_targets.yaml +++ b/actions/elbv2_register_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_register_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_targets immutable: true diff --git a/actions/elbv2_remove_tags.yaml b/actions/elbv2_remove_tags.yaml index 58f50092..9bfa93fc 100644 --- a/actions/elbv2_remove_tags.yaml +++ b/actions/elbv2_remove_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_remove_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags immutable: true diff --git a/actions/elbv2_set_ip_address_type.yaml b/actions/elbv2_set_ip_address_type.yaml index b51ba45b..c46cd459 100644 --- a/actions/elbv2_set_ip_address_type.yaml +++ b/actions/elbv2_set_ip_address_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_set_ip_address_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_ip_address_type immutable: true diff --git a/actions/elbv2_set_rule_priorities.yaml b/actions/elbv2_set_rule_priorities.yaml index b3f3458c..773c2856 100644 --- a/actions/elbv2_set_rule_priorities.yaml +++ b/actions/elbv2_set_rule_priorities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_set_rule_priorities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_rule_priorities immutable: true diff --git a/actions/elbv2_set_security_groups.yaml b/actions/elbv2_set_security_groups.yaml index c11cfa36..9a4d5ca0 100644 --- a/actions/elbv2_set_security_groups.yaml +++ b/actions/elbv2_set_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_set_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_security_groups immutable: true diff --git a/actions/elbv2_set_subnets.yaml b/actions/elbv2_set_subnets.yaml index b764f6e8..3810b7ca 100644 --- a/actions/elbv2_set_subnets.yaml +++ b/actions/elbv2_set_subnets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: elbv2_set_subnets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_subnets immutable: true diff --git a/actions/emr_add_instance_fleet.yaml b/actions/emr_add_instance_fleet.yaml index 1d031208..af613d6a 100644 --- a/actions/emr_add_instance_fleet.yaml +++ b/actions/emr_add_instance_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_add_instance_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_instance_fleet immutable: true diff --git a/actions/emr_add_instance_groups.yaml b/actions/emr_add_instance_groups.yaml index 3c764958..8d091ed4 100644 --- a/actions/emr_add_instance_groups.yaml +++ b/actions/emr_add_instance_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_add_instance_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_instance_groups immutable: true diff --git a/actions/emr_add_job_flow_steps.yaml b/actions/emr_add_job_flow_steps.yaml index b4392105..ff38f965 100644 --- a/actions/emr_add_job_flow_steps.yaml +++ b/actions/emr_add_job_flow_steps.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_add_job_flow_steps runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_job_flow_steps immutable: true diff --git a/actions/emr_add_tags.yaml b/actions/emr_add_tags.yaml index 25abfae1..3bf3608e 100644 --- a/actions/emr_add_tags.yaml +++ b/actions/emr_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/emr_cancel_steps.yaml b/actions/emr_cancel_steps.yaml index ef9765f3..2e354111 100644 --- a/actions/emr_cancel_steps.yaml +++ b/actions/emr_cancel_steps.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_cancel_steps runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_steps immutable: true diff --git a/actions/emr_create_security_configuration.yaml b/actions/emr_create_security_configuration.yaml index b1a910d7..3de45337 100644 --- a/actions/emr_create_security_configuration.yaml +++ b/actions/emr_create_security_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_create_security_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_security_configuration immutable: true diff --git a/actions/emr_delete_security_configuration.yaml b/actions/emr_delete_security_configuration.yaml index 9eda8e06..f6373271 100644 --- a/actions/emr_delete_security_configuration.yaml +++ b/actions/emr_delete_security_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_delete_security_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_security_configuration immutable: true diff --git a/actions/emr_describe_cluster.yaml b/actions/emr_describe_cluster.yaml index cf7c5d8e..07078d14 100644 --- a/actions/emr_describe_cluster.yaml +++ b/actions/emr_describe_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_describe_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster immutable: true diff --git a/actions/emr_describe_job_flows.yaml b/actions/emr_describe_job_flows.yaml index 87e2540f..7f5bddd4 100644 --- a/actions/emr_describe_job_flows.yaml +++ b/actions/emr_describe_job_flows.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_describe_job_flows runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_job_flows immutable: true diff --git a/actions/emr_describe_security_configuration.yaml b/actions/emr_describe_security_configuration.yaml index 7555f55d..c8775a14 100644 --- a/actions/emr_describe_security_configuration.yaml +++ b/actions/emr_describe_security_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_describe_security_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_security_configuration immutable: true diff --git a/actions/emr_describe_step.yaml b/actions/emr_describe_step.yaml index bbc53c97..1b712c1d 100644 --- a/actions/emr_describe_step.yaml +++ b/actions/emr_describe_step.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_describe_step runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_step immutable: true diff --git a/actions/emr_list_bootstrap_actions.yaml b/actions/emr_list_bootstrap_actions.yaml index e815ffb9..c3fe2767 100644 --- a/actions/emr_list_bootstrap_actions.yaml +++ b/actions/emr_list_bootstrap_actions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_bootstrap_actions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_bootstrap_actions immutable: true diff --git a/actions/emr_list_clusters.yaml b/actions/emr_list_clusters.yaml index d27bc856..c3d784cb 100644 --- a/actions/emr_list_clusters.yaml +++ b/actions/emr_list_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_clusters immutable: true diff --git a/actions/emr_list_instance_fleets.yaml b/actions/emr_list_instance_fleets.yaml index 4f40ca61..4ba61222 100644 --- a/actions/emr_list_instance_fleets.yaml +++ b/actions/emr_list_instance_fleets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_instance_fleets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_instance_fleets immutable: true diff --git a/actions/emr_list_instance_groups.yaml b/actions/emr_list_instance_groups.yaml index 13593a0d..f556851b 100644 --- a/actions/emr_list_instance_groups.yaml +++ b/actions/emr_list_instance_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_instance_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_instance_groups immutable: true diff --git a/actions/emr_list_instances.yaml b/actions/emr_list_instances.yaml index 4887832c..4f2d1a70 100644 --- a/actions/emr_list_instances.yaml +++ b/actions/emr_list_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_instances immutable: true diff --git a/actions/emr_list_security_configurations.yaml b/actions/emr_list_security_configurations.yaml index 08d283aa..6278ba48 100644 --- a/actions/emr_list_security_configurations.yaml +++ b/actions/emr_list_security_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_security_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_security_configurations immutable: true diff --git a/actions/emr_list_steps.yaml b/actions/emr_list_steps.yaml index ce766d6a..3b8cf1a6 100644 --- a/actions/emr_list_steps.yaml +++ b/actions/emr_list_steps.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_list_steps runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_steps immutable: true diff --git a/actions/emr_modify_instance_fleet.yaml b/actions/emr_modify_instance_fleet.yaml index f3365486..fbfc68d0 100644 --- a/actions/emr_modify_instance_fleet.yaml +++ b/actions/emr_modify_instance_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_modify_instance_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_instance_fleet immutable: true diff --git a/actions/emr_modify_instance_groups.yaml b/actions/emr_modify_instance_groups.yaml index 5413321e..a4d4f386 100644 --- a/actions/emr_modify_instance_groups.yaml +++ b/actions/emr_modify_instance_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_modify_instance_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_instance_groups immutable: true diff --git a/actions/emr_put_auto_scaling_policy.yaml b/actions/emr_put_auto_scaling_policy.yaml index 634dae25..42becc55 100644 --- a/actions/emr_put_auto_scaling_policy.yaml +++ b/actions/emr_put_auto_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_put_auto_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_auto_scaling_policy immutable: true diff --git a/actions/emr_remove_auto_scaling_policy.yaml b/actions/emr_remove_auto_scaling_policy.yaml index 700866ac..d991bf97 100644 --- a/actions/emr_remove_auto_scaling_policy.yaml +++ b/actions/emr_remove_auto_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_remove_auto_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_auto_scaling_policy immutable: true diff --git a/actions/emr_remove_tags.yaml b/actions/emr_remove_tags.yaml index 73b45c97..b930ac56 100644 --- a/actions/emr_remove_tags.yaml +++ b/actions/emr_remove_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_remove_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags immutable: true diff --git a/actions/emr_run_job_flow.yaml b/actions/emr_run_job_flow.yaml index 52e7e97a..e1b619cb 100644 --- a/actions/emr_run_job_flow.yaml +++ b/actions/emr_run_job_flow.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_run_job_flow runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: run_job_flow immutable: true diff --git a/actions/emr_set_termination_protection.yaml b/actions/emr_set_termination_protection.yaml index 1b20b749..5583c605 100644 --- a/actions/emr_set_termination_protection.yaml +++ b/actions/emr_set_termination_protection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_set_termination_protection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_termination_protection immutable: true diff --git a/actions/emr_set_visible_to_all_users.yaml b/actions/emr_set_visible_to_all_users.yaml index 6d57817d..6df4d004 100644 --- a/actions/emr_set_visible_to_all_users.yaml +++ b/actions/emr_set_visible_to_all_users.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_set_visible_to_all_users runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_visible_to_all_users immutable: true diff --git a/actions/emr_terminate_job_flows.yaml b/actions/emr_terminate_job_flows.yaml index 342aba26..6697fc28 100644 --- a/actions/emr_terminate_job_flows.yaml +++ b/actions/emr_terminate_job_flows.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: emr_terminate_job_flows runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_job_flows immutable: true diff --git a/actions/es_add_tags.yaml b/actions/es_add_tags.yaml index 3cb9f0ba..f1be7475 100644 --- a/actions/es_add_tags.yaml +++ b/actions/es_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/es_create_elasticsearch_domain.yaml b/actions/es_create_elasticsearch_domain.yaml index 2abda1b3..c60fb53a 100644 --- a/actions/es_create_elasticsearch_domain.yaml +++ b/actions/es_create_elasticsearch_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_create_elasticsearch_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_elasticsearch_domain immutable: true diff --git a/actions/es_delete_elasticsearch_domain.yaml b/actions/es_delete_elasticsearch_domain.yaml index a30ba947..f34b225f 100644 --- a/actions/es_delete_elasticsearch_domain.yaml +++ b/actions/es_delete_elasticsearch_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_delete_elasticsearch_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_elasticsearch_domain immutable: true diff --git a/actions/es_describe_elasticsearch_domain.yaml b/actions/es_describe_elasticsearch_domain.yaml index f53261fa..677b0f4e 100644 --- a/actions/es_describe_elasticsearch_domain.yaml +++ b/actions/es_describe_elasticsearch_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_describe_elasticsearch_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_elasticsearch_domain immutable: true diff --git a/actions/es_describe_elasticsearch_domain_config.yaml b/actions/es_describe_elasticsearch_domain_config.yaml index bd3130ba..09e0f99a 100644 --- a/actions/es_describe_elasticsearch_domain_config.yaml +++ b/actions/es_describe_elasticsearch_domain_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_describe_elasticsearch_domain_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_elasticsearch_domain_config immutable: true diff --git a/actions/es_describe_elasticsearch_domains.yaml b/actions/es_describe_elasticsearch_domains.yaml index 2f6f6149..2e3653c5 100644 --- a/actions/es_describe_elasticsearch_domains.yaml +++ b/actions/es_describe_elasticsearch_domains.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_describe_elasticsearch_domains runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_elasticsearch_domains immutable: true diff --git a/actions/es_describe_elasticsearch_instance_type_limits.yaml b/actions/es_describe_elasticsearch_instance_type_limits.yaml index cbec881f..3c4ae460 100644 --- a/actions/es_describe_elasticsearch_instance_type_limits.yaml +++ b/actions/es_describe_elasticsearch_instance_type_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_describe_elasticsearch_instance_type_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_elasticsearch_instance_type_limits immutable: true diff --git a/actions/es_list_elasticsearch_instance_types.yaml b/actions/es_list_elasticsearch_instance_types.yaml index 1d76ad84..480227f8 100644 --- a/actions/es_list_elasticsearch_instance_types.yaml +++ b/actions/es_list_elasticsearch_instance_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_list_elasticsearch_instance_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_elasticsearch_instance_types immutable: true diff --git a/actions/es_list_elasticsearch_versions.yaml b/actions/es_list_elasticsearch_versions.yaml index b8c172b9..d9fb3dd8 100644 --- a/actions/es_list_elasticsearch_versions.yaml +++ b/actions/es_list_elasticsearch_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_list_elasticsearch_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_elasticsearch_versions immutable: true diff --git a/actions/es_list_tags.yaml b/actions/es_list_tags.yaml index e8092425..8ecf4395 100644 --- a/actions/es_list_tags.yaml +++ b/actions/es_list_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_list_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags immutable: true diff --git a/actions/es_remove_tags.yaml b/actions/es_remove_tags.yaml index 3f7f292d..23a46d05 100644 --- a/actions/es_remove_tags.yaml +++ b/actions/es_remove_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_remove_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags immutable: true diff --git a/actions/es_update_elasticsearch_domain_config.yaml b/actions/es_update_elasticsearch_domain_config.yaml index 3b06bde7..7185e721 100644 --- a/actions/es_update_elasticsearch_domain_config.yaml +++ b/actions/es_update_elasticsearch_domain_config.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: es_update_elasticsearch_domain_config runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_elasticsearch_domain_config immutable: true diff --git a/actions/events_delete_rule.yaml b/actions/events_delete_rule.yaml index 24f78180..8479266f 100644 --- a/actions/events_delete_rule.yaml +++ b/actions/events_delete_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_delete_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rule immutable: true diff --git a/actions/events_describe_rule.yaml b/actions/events_describe_rule.yaml index b31e50ed..c135efd7 100644 --- a/actions/events_describe_rule.yaml +++ b/actions/events_describe_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_describe_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_rule immutable: true diff --git a/actions/events_disable_rule.yaml b/actions/events_disable_rule.yaml index 27f394af..03794b6e 100644 --- a/actions/events_disable_rule.yaml +++ b/actions/events_disable_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_disable_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_rule immutable: true diff --git a/actions/events_enable_rule.yaml b/actions/events_enable_rule.yaml index 8f2c4462..0cbacb61 100644 --- a/actions/events_enable_rule.yaml +++ b/actions/events_enable_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_enable_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_rule immutable: true diff --git a/actions/events_list_rule_names_by_target.yaml b/actions/events_list_rule_names_by_target.yaml index ab928bcc..47c361cf 100644 --- a/actions/events_list_rule_names_by_target.yaml +++ b/actions/events_list_rule_names_by_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_list_rule_names_by_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rule_names_by_target immutable: true diff --git a/actions/events_list_rules.yaml b/actions/events_list_rules.yaml index 2587a85e..a9a9c7f1 100644 --- a/actions/events_list_rules.yaml +++ b/actions/events_list_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_list_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rules immutable: true diff --git a/actions/events_list_targets_by_rule.yaml b/actions/events_list_targets_by_rule.yaml index 09586dc1..c2e2a5ff 100644 --- a/actions/events_list_targets_by_rule.yaml +++ b/actions/events_list_targets_by_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_list_targets_by_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_targets_by_rule immutable: true diff --git a/actions/events_put_events.yaml b/actions/events_put_events.yaml index c55a6de8..a2a0b082 100644 --- a/actions/events_put_events.yaml +++ b/actions/events_put_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_put_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_events immutable: true diff --git a/actions/events_put_rule.yaml b/actions/events_put_rule.yaml index 9ea84374..75e32859 100644 --- a/actions/events_put_rule.yaml +++ b/actions/events_put_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_put_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_rule immutable: true diff --git a/actions/events_put_targets.yaml b/actions/events_put_targets.yaml index 2fe03401..544b48f0 100644 --- a/actions/events_put_targets.yaml +++ b/actions/events_put_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_put_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_targets immutable: true diff --git a/actions/events_remove_targets.yaml b/actions/events_remove_targets.yaml index 63c5ba48..66d03771 100644 --- a/actions/events_remove_targets.yaml +++ b/actions/events_remove_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_remove_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_targets immutable: true diff --git a/actions/events_test_event_pattern.yaml b/actions/events_test_event_pattern.yaml index e09ecca2..a5f6aa30 100644 --- a/actions/events_test_event_pattern.yaml +++ b/actions/events_test_event_pattern.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: events_test_event_pattern runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_event_pattern immutable: true diff --git a/actions/firehose_create_delivery_stream.yaml b/actions/firehose_create_delivery_stream.yaml index 3ae7763b..c8db41f4 100644 --- a/actions/firehose_create_delivery_stream.yaml +++ b/actions/firehose_create_delivery_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_create_delivery_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_delivery_stream immutable: true diff --git a/actions/firehose_delete_delivery_stream.yaml b/actions/firehose_delete_delivery_stream.yaml index 1013ed8d..68bf7e1e 100644 --- a/actions/firehose_delete_delivery_stream.yaml +++ b/actions/firehose_delete_delivery_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_delete_delivery_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_delivery_stream immutable: true diff --git a/actions/firehose_describe_delivery_stream.yaml b/actions/firehose_describe_delivery_stream.yaml index a16c1f54..b7fe6bf8 100644 --- a/actions/firehose_describe_delivery_stream.yaml +++ b/actions/firehose_describe_delivery_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_describe_delivery_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_delivery_stream immutable: true diff --git a/actions/firehose_list_delivery_streams.yaml b/actions/firehose_list_delivery_streams.yaml index 387e0995..b0f291e0 100644 --- a/actions/firehose_list_delivery_streams.yaml +++ b/actions/firehose_list_delivery_streams.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_list_delivery_streams runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_delivery_streams immutable: true diff --git a/actions/firehose_put_record.yaml b/actions/firehose_put_record.yaml index 42a0ed8c..69c0201a 100644 --- a/actions/firehose_put_record.yaml +++ b/actions/firehose_put_record.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_put_record runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_record immutable: true diff --git a/actions/firehose_put_record_batch.yaml b/actions/firehose_put_record_batch.yaml index de7f1b1d..004a3dc5 100644 --- a/actions/firehose_put_record_batch.yaml +++ b/actions/firehose_put_record_batch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_put_record_batch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_record_batch immutable: true diff --git a/actions/firehose_update_destination.yaml b/actions/firehose_update_destination.yaml index d077408e..7b9780fe 100644 --- a/actions/firehose_update_destination.yaml +++ b/actions/firehose_update_destination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: firehose_update_destination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_destination immutable: true diff --git a/actions/gamelift_create_alias.yaml b/actions/gamelift_create_alias.yaml index 2e181bd4..a3a08f64 100644 --- a/actions/gamelift_create_alias.yaml +++ b/actions/gamelift_create_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_alias immutable: true diff --git a/actions/gamelift_create_build.yaml b/actions/gamelift_create_build.yaml index 1b17aa6e..853c6898 100644 --- a/actions/gamelift_create_build.yaml +++ b/actions/gamelift_create_build.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_build runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_build immutable: true diff --git a/actions/gamelift_create_fleet.yaml b/actions/gamelift_create_fleet.yaml index f45780ac..9e945978 100644 --- a/actions/gamelift_create_fleet.yaml +++ b/actions/gamelift_create_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_fleet immutable: true diff --git a/actions/gamelift_create_game_session.yaml b/actions/gamelift_create_game_session.yaml index 9b994a7e..3fb50c1c 100644 --- a/actions/gamelift_create_game_session.yaml +++ b/actions/gamelift_create_game_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_game_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_game_session immutable: true diff --git a/actions/gamelift_create_game_session_queue.yaml b/actions/gamelift_create_game_session_queue.yaml index d2a3830e..81849436 100644 --- a/actions/gamelift_create_game_session_queue.yaml +++ b/actions/gamelift_create_game_session_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_game_session_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_game_session_queue immutable: true diff --git a/actions/gamelift_create_player_session.yaml b/actions/gamelift_create_player_session.yaml index e2d2865b..9ef80ef8 100644 --- a/actions/gamelift_create_player_session.yaml +++ b/actions/gamelift_create_player_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_player_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_player_session immutable: true diff --git a/actions/gamelift_create_player_sessions.yaml b/actions/gamelift_create_player_sessions.yaml index a0babf86..c0b1cac5 100644 --- a/actions/gamelift_create_player_sessions.yaml +++ b/actions/gamelift_create_player_sessions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_create_player_sessions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_player_sessions immutable: true diff --git a/actions/gamelift_delete_alias.yaml b/actions/gamelift_delete_alias.yaml index d8c939d7..dd1b6836 100644 --- a/actions/gamelift_delete_alias.yaml +++ b/actions/gamelift_delete_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_delete_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_alias immutable: true diff --git a/actions/gamelift_delete_build.yaml b/actions/gamelift_delete_build.yaml index 91830f24..7903be62 100644 --- a/actions/gamelift_delete_build.yaml +++ b/actions/gamelift_delete_build.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_delete_build runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_build immutable: true diff --git a/actions/gamelift_delete_fleet.yaml b/actions/gamelift_delete_fleet.yaml index 2cb6e8a5..00c9c92f 100644 --- a/actions/gamelift_delete_fleet.yaml +++ b/actions/gamelift_delete_fleet.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_delete_fleet runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_fleet immutable: true diff --git a/actions/gamelift_delete_game_session_queue.yaml b/actions/gamelift_delete_game_session_queue.yaml index 8cd1e1da..c433c947 100644 --- a/actions/gamelift_delete_game_session_queue.yaml +++ b/actions/gamelift_delete_game_session_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_delete_game_session_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_game_session_queue immutable: true diff --git a/actions/gamelift_delete_scaling_policy.yaml b/actions/gamelift_delete_scaling_policy.yaml index d3128bb6..491305b6 100644 --- a/actions/gamelift_delete_scaling_policy.yaml +++ b/actions/gamelift_delete_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_delete_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_scaling_policy immutable: true diff --git a/actions/gamelift_describe_alias.yaml b/actions/gamelift_describe_alias.yaml index 27aacecb..d2bb0f0e 100644 --- a/actions/gamelift_describe_alias.yaml +++ b/actions/gamelift_describe_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_alias immutable: true diff --git a/actions/gamelift_describe_build.yaml b/actions/gamelift_describe_build.yaml index a1992a62..bed7acc5 100644 --- a/actions/gamelift_describe_build.yaml +++ b/actions/gamelift_describe_build.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_build runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_build immutable: true diff --git a/actions/gamelift_describe_ec2_instance_limits.yaml b/actions/gamelift_describe_ec2_instance_limits.yaml index c64cb15d..ed81a567 100644 --- a/actions/gamelift_describe_ec2_instance_limits.yaml +++ b/actions/gamelift_describe_ec2_instance_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_ec2_instance_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_ec2_instance_limits immutable: true diff --git a/actions/gamelift_describe_fleet_attributes.yaml b/actions/gamelift_describe_fleet_attributes.yaml index d59b3f70..c616fe07 100644 --- a/actions/gamelift_describe_fleet_attributes.yaml +++ b/actions/gamelift_describe_fleet_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_fleet_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fleet_attributes immutable: true diff --git a/actions/gamelift_describe_fleet_capacity.yaml b/actions/gamelift_describe_fleet_capacity.yaml index 4b9564c3..1f688807 100644 --- a/actions/gamelift_describe_fleet_capacity.yaml +++ b/actions/gamelift_describe_fleet_capacity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_fleet_capacity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fleet_capacity immutable: true diff --git a/actions/gamelift_describe_fleet_events.yaml b/actions/gamelift_describe_fleet_events.yaml index 33a4de35..f9061798 100644 --- a/actions/gamelift_describe_fleet_events.yaml +++ b/actions/gamelift_describe_fleet_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_fleet_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fleet_events immutable: true diff --git a/actions/gamelift_describe_fleet_port_settings.yaml b/actions/gamelift_describe_fleet_port_settings.yaml index e6fb5a33..34edbaca 100644 --- a/actions/gamelift_describe_fleet_port_settings.yaml +++ b/actions/gamelift_describe_fleet_port_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_fleet_port_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fleet_port_settings immutable: true diff --git a/actions/gamelift_describe_fleet_utilization.yaml b/actions/gamelift_describe_fleet_utilization.yaml index b40856e1..0dc1c49f 100644 --- a/actions/gamelift_describe_fleet_utilization.yaml +++ b/actions/gamelift_describe_fleet_utilization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_fleet_utilization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_fleet_utilization immutable: true diff --git a/actions/gamelift_describe_game_session_details.yaml b/actions/gamelift_describe_game_session_details.yaml index 7fe56692..56f3ed5e 100644 --- a/actions/gamelift_describe_game_session_details.yaml +++ b/actions/gamelift_describe_game_session_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_game_session_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_game_session_details immutable: true diff --git a/actions/gamelift_describe_game_session_placement.yaml b/actions/gamelift_describe_game_session_placement.yaml index ffabdbec..55868fdd 100644 --- a/actions/gamelift_describe_game_session_placement.yaml +++ b/actions/gamelift_describe_game_session_placement.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_game_session_placement runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_game_session_placement immutable: true diff --git a/actions/gamelift_describe_game_session_queues.yaml b/actions/gamelift_describe_game_session_queues.yaml index bfbf8458..dc9a5efa 100644 --- a/actions/gamelift_describe_game_session_queues.yaml +++ b/actions/gamelift_describe_game_session_queues.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_game_session_queues runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_game_session_queues immutable: true diff --git a/actions/gamelift_describe_game_sessions.yaml b/actions/gamelift_describe_game_sessions.yaml index c8bf90e3..f0e0ab89 100644 --- a/actions/gamelift_describe_game_sessions.yaml +++ b/actions/gamelift_describe_game_sessions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_game_sessions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_game_sessions immutable: true diff --git a/actions/gamelift_describe_instances.yaml b/actions/gamelift_describe_instances.yaml index f8f4a14b..ff5de351 100644 --- a/actions/gamelift_describe_instances.yaml +++ b/actions/gamelift_describe_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instances immutable: true diff --git a/actions/gamelift_describe_player_sessions.yaml b/actions/gamelift_describe_player_sessions.yaml index 74ab48be..c1fec054 100644 --- a/actions/gamelift_describe_player_sessions.yaml +++ b/actions/gamelift_describe_player_sessions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_player_sessions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_player_sessions immutable: true diff --git a/actions/gamelift_describe_runtime_configuration.yaml b/actions/gamelift_describe_runtime_configuration.yaml index 85524076..5097ebc5 100644 --- a/actions/gamelift_describe_runtime_configuration.yaml +++ b/actions/gamelift_describe_runtime_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_runtime_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_runtime_configuration immutable: true diff --git a/actions/gamelift_describe_scaling_policies.yaml b/actions/gamelift_describe_scaling_policies.yaml index 73e141d8..90e96b4f 100644 --- a/actions/gamelift_describe_scaling_policies.yaml +++ b/actions/gamelift_describe_scaling_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_describe_scaling_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_scaling_policies immutable: true diff --git a/actions/gamelift_get_game_session_log_url.yaml b/actions/gamelift_get_game_session_log_url.yaml index ceb0f569..4fd78b38 100644 --- a/actions/gamelift_get_game_session_log_url.yaml +++ b/actions/gamelift_get_game_session_log_url.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_get_game_session_log_url runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_game_session_log_url immutable: true diff --git a/actions/gamelift_get_instance_access.yaml b/actions/gamelift_get_instance_access.yaml index e6f4c03b..3eee4b03 100644 --- a/actions/gamelift_get_instance_access.yaml +++ b/actions/gamelift_get_instance_access.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_get_instance_access runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_access immutable: true diff --git a/actions/gamelift_list_aliases.yaml b/actions/gamelift_list_aliases.yaml index 72248190..8c61efa2 100644 --- a/actions/gamelift_list_aliases.yaml +++ b/actions/gamelift_list_aliases.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_list_aliases runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_aliases immutable: true diff --git a/actions/gamelift_list_builds.yaml b/actions/gamelift_list_builds.yaml index 5d762a14..6158c768 100644 --- a/actions/gamelift_list_builds.yaml +++ b/actions/gamelift_list_builds.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_list_builds runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_builds immutable: true diff --git a/actions/gamelift_list_fleets.yaml b/actions/gamelift_list_fleets.yaml index 74f59e63..6c2184f2 100644 --- a/actions/gamelift_list_fleets.yaml +++ b/actions/gamelift_list_fleets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_list_fleets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_fleets immutable: true diff --git a/actions/gamelift_put_scaling_policy.yaml b/actions/gamelift_put_scaling_policy.yaml index 87de345c..1d6beb0e 100644 --- a/actions/gamelift_put_scaling_policy.yaml +++ b/actions/gamelift_put_scaling_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_put_scaling_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_scaling_policy immutable: true diff --git a/actions/gamelift_request_upload_credentials.yaml b/actions/gamelift_request_upload_credentials.yaml index cacb8683..1785c1a6 100644 --- a/actions/gamelift_request_upload_credentials.yaml +++ b/actions/gamelift_request_upload_credentials.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_request_upload_credentials runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: request_upload_credentials immutable: true diff --git a/actions/gamelift_resolve_alias.yaml b/actions/gamelift_resolve_alias.yaml index 7b32962d..92ad3279 100644 --- a/actions/gamelift_resolve_alias.yaml +++ b/actions/gamelift_resolve_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_resolve_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resolve_alias immutable: true diff --git a/actions/gamelift_search_game_sessions.yaml b/actions/gamelift_search_game_sessions.yaml index 7cedce8d..77569f84 100644 --- a/actions/gamelift_search_game_sessions.yaml +++ b/actions/gamelift_search_game_sessions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_search_game_sessions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: search_game_sessions immutable: true diff --git a/actions/gamelift_start_game_session_placement.yaml b/actions/gamelift_start_game_session_placement.yaml index 23822781..591abab7 100644 --- a/actions/gamelift_start_game_session_placement.yaml +++ b/actions/gamelift_start_game_session_placement.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_start_game_session_placement runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_game_session_placement immutable: true diff --git a/actions/gamelift_stop_game_session_placement.yaml b/actions/gamelift_stop_game_session_placement.yaml index bb5c425b..34c81860 100644 --- a/actions/gamelift_stop_game_session_placement.yaml +++ b/actions/gamelift_stop_game_session_placement.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_stop_game_session_placement runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_game_session_placement immutable: true diff --git a/actions/gamelift_update_alias.yaml b/actions/gamelift_update_alias.yaml index 4f37b67f..fe959e8b 100644 --- a/actions/gamelift_update_alias.yaml +++ b/actions/gamelift_update_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_alias immutable: true diff --git a/actions/gamelift_update_build.yaml b/actions/gamelift_update_build.yaml index d5100444..f439b20a 100644 --- a/actions/gamelift_update_build.yaml +++ b/actions/gamelift_update_build.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_build runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_build immutable: true diff --git a/actions/gamelift_update_fleet_attributes.yaml b/actions/gamelift_update_fleet_attributes.yaml index 76014618..771fe929 100644 --- a/actions/gamelift_update_fleet_attributes.yaml +++ b/actions/gamelift_update_fleet_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_fleet_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_fleet_attributes immutable: true diff --git a/actions/gamelift_update_fleet_capacity.yaml b/actions/gamelift_update_fleet_capacity.yaml index 63d0af02..f16eca0b 100644 --- a/actions/gamelift_update_fleet_capacity.yaml +++ b/actions/gamelift_update_fleet_capacity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_fleet_capacity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_fleet_capacity immutable: true diff --git a/actions/gamelift_update_fleet_port_settings.yaml b/actions/gamelift_update_fleet_port_settings.yaml index db48a233..8b8c2fdb 100644 --- a/actions/gamelift_update_fleet_port_settings.yaml +++ b/actions/gamelift_update_fleet_port_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_fleet_port_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_fleet_port_settings immutable: true diff --git a/actions/gamelift_update_game_session.yaml b/actions/gamelift_update_game_session.yaml index a80e9246..986a2375 100644 --- a/actions/gamelift_update_game_session.yaml +++ b/actions/gamelift_update_game_session.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_game_session runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_game_session immutable: true diff --git a/actions/gamelift_update_game_session_queue.yaml b/actions/gamelift_update_game_session_queue.yaml index 12f18490..f2ac701d 100644 --- a/actions/gamelift_update_game_session_queue.yaml +++ b/actions/gamelift_update_game_session_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_game_session_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_game_session_queue immutable: true diff --git a/actions/gamelift_update_runtime_configuration.yaml b/actions/gamelift_update_runtime_configuration.yaml index 38c973a8..284951b4 100644 --- a/actions/gamelift_update_runtime_configuration.yaml +++ b/actions/gamelift_update_runtime_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: gamelift_update_runtime_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_runtime_configuration immutable: true diff --git a/actions/glacier_abort_multipart_upload.yaml b/actions/glacier_abort_multipart_upload.yaml index 008a8f10..0ed97f61 100644 --- a/actions/glacier_abort_multipart_upload.yaml +++ b/actions/glacier_abort_multipart_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_abort_multipart_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: abort_multipart_upload immutable: true diff --git a/actions/glacier_abort_vault_lock.yaml b/actions/glacier_abort_vault_lock.yaml index c7b4fdf5..6ee553bb 100644 --- a/actions/glacier_abort_vault_lock.yaml +++ b/actions/glacier_abort_vault_lock.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_abort_vault_lock runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: abort_vault_lock immutable: true diff --git a/actions/glacier_add_tags_to_vault.yaml b/actions/glacier_add_tags_to_vault.yaml index a54ea784..a40fc6aa 100644 --- a/actions/glacier_add_tags_to_vault.yaml +++ b/actions/glacier_add_tags_to_vault.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_add_tags_to_vault runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_vault immutable: true diff --git a/actions/glacier_complete_multipart_upload.yaml b/actions/glacier_complete_multipart_upload.yaml index 5c499828..5585bfe2 100644 --- a/actions/glacier_complete_multipart_upload.yaml +++ b/actions/glacier_complete_multipart_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_complete_multipart_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: complete_multipart_upload immutable: true diff --git a/actions/glacier_complete_vault_lock.yaml b/actions/glacier_complete_vault_lock.yaml index 31d7e142..559a256f 100644 --- a/actions/glacier_complete_vault_lock.yaml +++ b/actions/glacier_complete_vault_lock.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_complete_vault_lock runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: complete_vault_lock immutable: true diff --git a/actions/glacier_create_vault.yaml b/actions/glacier_create_vault.yaml index 336c113c..71018fb2 100644 --- a/actions/glacier_create_vault.yaml +++ b/actions/glacier_create_vault.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_create_vault runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vault immutable: true diff --git a/actions/glacier_delete_archive.yaml b/actions/glacier_delete_archive.yaml index 13020fad..5b34b322 100644 --- a/actions/glacier_delete_archive.yaml +++ b/actions/glacier_delete_archive.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_delete_archive runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_archive immutable: true diff --git a/actions/glacier_delete_vault.yaml b/actions/glacier_delete_vault.yaml index 0d72196e..4656a68d 100644 --- a/actions/glacier_delete_vault.yaml +++ b/actions/glacier_delete_vault.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_delete_vault runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vault immutable: true diff --git a/actions/glacier_delete_vault_access_policy.yaml b/actions/glacier_delete_vault_access_policy.yaml index 7d326461..ecbe91ba 100644 --- a/actions/glacier_delete_vault_access_policy.yaml +++ b/actions/glacier_delete_vault_access_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_delete_vault_access_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vault_access_policy immutable: true diff --git a/actions/glacier_delete_vault_notifications.yaml b/actions/glacier_delete_vault_notifications.yaml index 6af5edc1..a814575c 100644 --- a/actions/glacier_delete_vault_notifications.yaml +++ b/actions/glacier_delete_vault_notifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_delete_vault_notifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vault_notifications immutable: true diff --git a/actions/glacier_describe_job.yaml b/actions/glacier_describe_job.yaml index 7b844d08..9b87e327 100644 --- a/actions/glacier_describe_job.yaml +++ b/actions/glacier_describe_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_describe_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_job immutable: true diff --git a/actions/glacier_describe_vault.yaml b/actions/glacier_describe_vault.yaml index daa94c16..32499249 100644 --- a/actions/glacier_describe_vault.yaml +++ b/actions/glacier_describe_vault.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_describe_vault runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vault immutable: true diff --git a/actions/glacier_get_data_retrieval_policy.yaml b/actions/glacier_get_data_retrieval_policy.yaml index bd065074..06fc575e 100644 --- a/actions/glacier_get_data_retrieval_policy.yaml +++ b/actions/glacier_get_data_retrieval_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_get_data_retrieval_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_data_retrieval_policy immutable: true diff --git a/actions/glacier_get_job_output.yaml b/actions/glacier_get_job_output.yaml index c8fd7a9f..072f7654 100644 --- a/actions/glacier_get_job_output.yaml +++ b/actions/glacier_get_job_output.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_get_job_output runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_job_output immutable: true diff --git a/actions/glacier_get_vault_access_policy.yaml b/actions/glacier_get_vault_access_policy.yaml index 512c2278..12d828e8 100644 --- a/actions/glacier_get_vault_access_policy.yaml +++ b/actions/glacier_get_vault_access_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_get_vault_access_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_vault_access_policy immutable: true diff --git a/actions/glacier_get_vault_lock.yaml b/actions/glacier_get_vault_lock.yaml index 0571a254..81cf72b6 100644 --- a/actions/glacier_get_vault_lock.yaml +++ b/actions/glacier_get_vault_lock.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_get_vault_lock runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_vault_lock immutable: true diff --git a/actions/glacier_get_vault_notifications.yaml b/actions/glacier_get_vault_notifications.yaml index 6af5ee4a..52324fe1 100644 --- a/actions/glacier_get_vault_notifications.yaml +++ b/actions/glacier_get_vault_notifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_get_vault_notifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_vault_notifications immutable: true diff --git a/actions/glacier_initiate_job.yaml b/actions/glacier_initiate_job.yaml index f2f365de..7b20932e 100644 --- a/actions/glacier_initiate_job.yaml +++ b/actions/glacier_initiate_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_initiate_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: initiate_job immutable: true diff --git a/actions/glacier_initiate_multipart_upload.yaml b/actions/glacier_initiate_multipart_upload.yaml index 7a4f3456..60714e80 100644 --- a/actions/glacier_initiate_multipart_upload.yaml +++ b/actions/glacier_initiate_multipart_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_initiate_multipart_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: initiate_multipart_upload immutable: true diff --git a/actions/glacier_initiate_vault_lock.yaml b/actions/glacier_initiate_vault_lock.yaml index 91ba252b..c7a477cd 100644 --- a/actions/glacier_initiate_vault_lock.yaml +++ b/actions/glacier_initiate_vault_lock.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_initiate_vault_lock runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: initiate_vault_lock immutable: true diff --git a/actions/glacier_list_jobs.yaml b/actions/glacier_list_jobs.yaml index dfd5b1d9..94f82f80 100644 --- a/actions/glacier_list_jobs.yaml +++ b/actions/glacier_list_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_list_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs immutable: true diff --git a/actions/glacier_list_multipart_uploads.yaml b/actions/glacier_list_multipart_uploads.yaml index 3615bf4b..72ed9794 100644 --- a/actions/glacier_list_multipart_uploads.yaml +++ b/actions/glacier_list_multipart_uploads.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_list_multipart_uploads runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_multipart_uploads immutable: true diff --git a/actions/glacier_list_parts.yaml b/actions/glacier_list_parts.yaml index 37c149e2..469b70e7 100644 --- a/actions/glacier_list_parts.yaml +++ b/actions/glacier_list_parts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_list_parts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_parts immutable: true diff --git a/actions/glacier_list_provisioned_capacity.yaml b/actions/glacier_list_provisioned_capacity.yaml index eba4982c..bffc72be 100644 --- a/actions/glacier_list_provisioned_capacity.yaml +++ b/actions/glacier_list_provisioned_capacity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_list_provisioned_capacity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_provisioned_capacity immutable: true diff --git a/actions/glacier_list_tags_for_vault.yaml b/actions/glacier_list_tags_for_vault.yaml index 79b60687..9b4c4181 100644 --- a/actions/glacier_list_tags_for_vault.yaml +++ b/actions/glacier_list_tags_for_vault.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_list_tags_for_vault runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_vault immutable: true diff --git a/actions/glacier_list_vaults.yaml b/actions/glacier_list_vaults.yaml index 1d294d61..5b7da385 100644 --- a/actions/glacier_list_vaults.yaml +++ b/actions/glacier_list_vaults.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_list_vaults runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_vaults immutable: true diff --git a/actions/glacier_purchase_provisioned_capacity.yaml b/actions/glacier_purchase_provisioned_capacity.yaml index 05d076c3..1427a203 100644 --- a/actions/glacier_purchase_provisioned_capacity.yaml +++ b/actions/glacier_purchase_provisioned_capacity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_purchase_provisioned_capacity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_provisioned_capacity immutable: true diff --git a/actions/glacier_remove_tags_from_vault.yaml b/actions/glacier_remove_tags_from_vault.yaml index 668507c9..2eef89a0 100644 --- a/actions/glacier_remove_tags_from_vault.yaml +++ b/actions/glacier_remove_tags_from_vault.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_remove_tags_from_vault runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_vault immutable: true diff --git a/actions/glacier_set_data_retrieval_policy.yaml b/actions/glacier_set_data_retrieval_policy.yaml index 40a92e3e..133fe075 100644 --- a/actions/glacier_set_data_retrieval_policy.yaml +++ b/actions/glacier_set_data_retrieval_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_set_data_retrieval_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_data_retrieval_policy immutable: true diff --git a/actions/glacier_set_vault_access_policy.yaml b/actions/glacier_set_vault_access_policy.yaml index 4e783567..80dfd3fc 100644 --- a/actions/glacier_set_vault_access_policy.yaml +++ b/actions/glacier_set_vault_access_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_set_vault_access_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_vault_access_policy immutable: true diff --git a/actions/glacier_set_vault_notifications.yaml b/actions/glacier_set_vault_notifications.yaml index 11b8b9eb..f7ea2e30 100644 --- a/actions/glacier_set_vault_notifications.yaml +++ b/actions/glacier_set_vault_notifications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_set_vault_notifications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_vault_notifications immutable: true diff --git a/actions/glacier_upload_archive.yaml b/actions/glacier_upload_archive.yaml index f76bd521..483d5e38 100644 --- a/actions/glacier_upload_archive.yaml +++ b/actions/glacier_upload_archive.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_upload_archive runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_archive immutable: true diff --git a/actions/glacier_upload_multipart_part.yaml b/actions/glacier_upload_multipart_part.yaml index 00402744..d397003e 100644 --- a/actions/glacier_upload_multipart_part.yaml +++ b/actions/glacier_upload_multipart_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: glacier_upload_multipart_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_multipart_part immutable: true diff --git a/actions/greengrass_associate_role_to_group.yaml b/actions/greengrass_associate_role_to_group.yaml index 0a496710..ec698216 100644 --- a/actions/greengrass_associate_role_to_group.yaml +++ b/actions/greengrass_associate_role_to_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_associate_role_to_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_role_to_group immutable: true diff --git a/actions/greengrass_associate_service_role_to_account.yaml b/actions/greengrass_associate_service_role_to_account.yaml index 4b9d512a..cf46b052 100644 --- a/actions/greengrass_associate_service_role_to_account.yaml +++ b/actions/greengrass_associate_service_role_to_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_associate_service_role_to_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_service_role_to_account immutable: true diff --git a/actions/greengrass_create_core_definition.yaml b/actions/greengrass_create_core_definition.yaml index 954b158b..85e85919 100644 --- a/actions/greengrass_create_core_definition.yaml +++ b/actions/greengrass_create_core_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_core_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_core_definition immutable: true diff --git a/actions/greengrass_create_core_definition_version.yaml b/actions/greengrass_create_core_definition_version.yaml index 67af6970..47449a88 100644 --- a/actions/greengrass_create_core_definition_version.yaml +++ b/actions/greengrass_create_core_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_core_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_core_definition_version immutable: true diff --git a/actions/greengrass_create_deployment.yaml b/actions/greengrass_create_deployment.yaml index 5f54d9fe..7e8e605e 100644 --- a/actions/greengrass_create_deployment.yaml +++ b/actions/greengrass_create_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_deployment immutable: true diff --git a/actions/greengrass_create_device_definition.yaml b/actions/greengrass_create_device_definition.yaml index 11cda3ed..dd0e53bd 100644 --- a/actions/greengrass_create_device_definition.yaml +++ b/actions/greengrass_create_device_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_device_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_device_definition immutable: true diff --git a/actions/greengrass_create_device_definition_version.yaml b/actions/greengrass_create_device_definition_version.yaml index 960aa3e0..eb0d1c82 100644 --- a/actions/greengrass_create_device_definition_version.yaml +++ b/actions/greengrass_create_device_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_device_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_device_definition_version immutable: true diff --git a/actions/greengrass_create_function_definition.yaml b/actions/greengrass_create_function_definition.yaml index 43b108c9..98b73db8 100644 --- a/actions/greengrass_create_function_definition.yaml +++ b/actions/greengrass_create_function_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_function_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_function_definition immutable: true diff --git a/actions/greengrass_create_function_definition_version.yaml b/actions/greengrass_create_function_definition_version.yaml index f733ffe2..718bd93a 100644 --- a/actions/greengrass_create_function_definition_version.yaml +++ b/actions/greengrass_create_function_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_function_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_function_definition_version immutable: true diff --git a/actions/greengrass_create_group.yaml b/actions/greengrass_create_group.yaml index ea8c3a6e..81887a68 100644 --- a/actions/greengrass_create_group.yaml +++ b/actions/greengrass_create_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_group immutable: true diff --git a/actions/greengrass_create_group_certificate_authority.yaml b/actions/greengrass_create_group_certificate_authority.yaml index b379144c..107fe748 100644 --- a/actions/greengrass_create_group_certificate_authority.yaml +++ b/actions/greengrass_create_group_certificate_authority.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_group_certificate_authority runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_group_certificate_authority immutable: true diff --git a/actions/greengrass_create_group_version.yaml b/actions/greengrass_create_group_version.yaml index e788fdd2..b3cf36e7 100644 --- a/actions/greengrass_create_group_version.yaml +++ b/actions/greengrass_create_group_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_group_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_group_version immutable: true diff --git a/actions/greengrass_create_logger_definition.yaml b/actions/greengrass_create_logger_definition.yaml index 75ba70e1..e4b8e603 100644 --- a/actions/greengrass_create_logger_definition.yaml +++ b/actions/greengrass_create_logger_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_logger_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_logger_definition immutable: true diff --git a/actions/greengrass_create_logger_definition_version.yaml b/actions/greengrass_create_logger_definition_version.yaml index 7e9e5e08..14671161 100644 --- a/actions/greengrass_create_logger_definition_version.yaml +++ b/actions/greengrass_create_logger_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_logger_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_logger_definition_version immutable: true diff --git a/actions/greengrass_create_subscription_definition.yaml b/actions/greengrass_create_subscription_definition.yaml index 51f90515..c8168b11 100644 --- a/actions/greengrass_create_subscription_definition.yaml +++ b/actions/greengrass_create_subscription_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_subscription_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_subscription_definition immutable: true diff --git a/actions/greengrass_create_subscription_definition_version.yaml b/actions/greengrass_create_subscription_definition_version.yaml index a4dbdfad..bcd4a677 100644 --- a/actions/greengrass_create_subscription_definition_version.yaml +++ b/actions/greengrass_create_subscription_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_create_subscription_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_subscription_definition_version immutable: true diff --git a/actions/greengrass_delete_core_definition.yaml b/actions/greengrass_delete_core_definition.yaml index 1131efec..9c0588cd 100644 --- a/actions/greengrass_delete_core_definition.yaml +++ b/actions/greengrass_delete_core_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_delete_core_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_core_definition immutable: true diff --git a/actions/greengrass_delete_device_definition.yaml b/actions/greengrass_delete_device_definition.yaml index fcc608e9..b4f66860 100644 --- a/actions/greengrass_delete_device_definition.yaml +++ b/actions/greengrass_delete_device_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_delete_device_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_device_definition immutable: true diff --git a/actions/greengrass_delete_function_definition.yaml b/actions/greengrass_delete_function_definition.yaml index 50152ca0..f6c6a933 100644 --- a/actions/greengrass_delete_function_definition.yaml +++ b/actions/greengrass_delete_function_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_delete_function_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_function_definition immutable: true diff --git a/actions/greengrass_delete_group.yaml b/actions/greengrass_delete_group.yaml index e2c65816..5c53f5ba 100644 --- a/actions/greengrass_delete_group.yaml +++ b/actions/greengrass_delete_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_delete_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_group immutable: true diff --git a/actions/greengrass_delete_logger_definition.yaml b/actions/greengrass_delete_logger_definition.yaml index 65d81e4d..993bc00a 100644 --- a/actions/greengrass_delete_logger_definition.yaml +++ b/actions/greengrass_delete_logger_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_delete_logger_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_logger_definition immutable: true diff --git a/actions/greengrass_delete_subscription_definition.yaml b/actions/greengrass_delete_subscription_definition.yaml index 8f903205..72d111e9 100644 --- a/actions/greengrass_delete_subscription_definition.yaml +++ b/actions/greengrass_delete_subscription_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_delete_subscription_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_subscription_definition immutable: true diff --git a/actions/greengrass_disassociate_role_from_group.yaml b/actions/greengrass_disassociate_role_from_group.yaml index 07dcca0b..12f51221 100644 --- a/actions/greengrass_disassociate_role_from_group.yaml +++ b/actions/greengrass_disassociate_role_from_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_disassociate_role_from_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_role_from_group immutable: true diff --git a/actions/greengrass_disassociate_service_role_from_account.yaml b/actions/greengrass_disassociate_service_role_from_account.yaml index 6ac9fc61..bf375be7 100644 --- a/actions/greengrass_disassociate_service_role_from_account.yaml +++ b/actions/greengrass_disassociate_service_role_from_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_disassociate_service_role_from_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_service_role_from_account immutable: true diff --git a/actions/greengrass_get_associated_role.yaml b/actions/greengrass_get_associated_role.yaml index 6af46e30..8f3b6c9f 100644 --- a/actions/greengrass_get_associated_role.yaml +++ b/actions/greengrass_get_associated_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_associated_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_associated_role immutable: true diff --git a/actions/greengrass_get_connectivity_info.yaml b/actions/greengrass_get_connectivity_info.yaml index b33c5b72..8f21d700 100644 --- a/actions/greengrass_get_connectivity_info.yaml +++ b/actions/greengrass_get_connectivity_info.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_connectivity_info runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_connectivity_info immutable: true diff --git a/actions/greengrass_get_core_definition.yaml b/actions/greengrass_get_core_definition.yaml index 649ebd79..6fe04014 100644 --- a/actions/greengrass_get_core_definition.yaml +++ b/actions/greengrass_get_core_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_core_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_core_definition immutable: true diff --git a/actions/greengrass_get_core_definition_version.yaml b/actions/greengrass_get_core_definition_version.yaml index f46bccb0..1ddced27 100644 --- a/actions/greengrass_get_core_definition_version.yaml +++ b/actions/greengrass_get_core_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_core_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_core_definition_version immutable: true diff --git a/actions/greengrass_get_deployment_status.yaml b/actions/greengrass_get_deployment_status.yaml index 494f7cab..9e882659 100644 --- a/actions/greengrass_get_deployment_status.yaml +++ b/actions/greengrass_get_deployment_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_deployment_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployment_status immutable: true diff --git a/actions/greengrass_get_device_definition.yaml b/actions/greengrass_get_device_definition.yaml index 3bc57eaf..d70aa0d4 100644 --- a/actions/greengrass_get_device_definition.yaml +++ b/actions/greengrass_get_device_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_device_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_device_definition immutable: true diff --git a/actions/greengrass_get_device_definition_version.yaml b/actions/greengrass_get_device_definition_version.yaml index 4ac06cbc..6b3c0ae3 100644 --- a/actions/greengrass_get_device_definition_version.yaml +++ b/actions/greengrass_get_device_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_device_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_device_definition_version immutable: true diff --git a/actions/greengrass_get_function_definition.yaml b/actions/greengrass_get_function_definition.yaml index 9f75a95b..23866c11 100644 --- a/actions/greengrass_get_function_definition.yaml +++ b/actions/greengrass_get_function_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_function_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_function_definition immutable: true diff --git a/actions/greengrass_get_function_definition_version.yaml b/actions/greengrass_get_function_definition_version.yaml index ec721576..f9e4f492 100644 --- a/actions/greengrass_get_function_definition_version.yaml +++ b/actions/greengrass_get_function_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_function_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_function_definition_version immutable: true diff --git a/actions/greengrass_get_group.yaml b/actions/greengrass_get_group.yaml index 9f16193c..4389a27e 100644 --- a/actions/greengrass_get_group.yaml +++ b/actions/greengrass_get_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group immutable: true diff --git a/actions/greengrass_get_group_certificate_authority.yaml b/actions/greengrass_get_group_certificate_authority.yaml index 4e5664f3..4f0f3d2f 100644 --- a/actions/greengrass_get_group_certificate_authority.yaml +++ b/actions/greengrass_get_group_certificate_authority.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_group_certificate_authority runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group_certificate_authority immutable: true diff --git a/actions/greengrass_get_group_certificate_configuration.yaml b/actions/greengrass_get_group_certificate_configuration.yaml index 221b74be..6aa84ee3 100644 --- a/actions/greengrass_get_group_certificate_configuration.yaml +++ b/actions/greengrass_get_group_certificate_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_group_certificate_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group_certificate_configuration immutable: true diff --git a/actions/greengrass_get_group_version.yaml b/actions/greengrass_get_group_version.yaml index c8369f6c..0cc00bf7 100644 --- a/actions/greengrass_get_group_version.yaml +++ b/actions/greengrass_get_group_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_group_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group_version immutable: true diff --git a/actions/greengrass_get_logger_definition.yaml b/actions/greengrass_get_logger_definition.yaml index e4d82146..6201665f 100644 --- a/actions/greengrass_get_logger_definition.yaml +++ b/actions/greengrass_get_logger_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_logger_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_logger_definition immutable: true diff --git a/actions/greengrass_get_logger_definition_version.yaml b/actions/greengrass_get_logger_definition_version.yaml index 677e7bc3..82d00aaf 100644 --- a/actions/greengrass_get_logger_definition_version.yaml +++ b/actions/greengrass_get_logger_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_logger_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_logger_definition_version immutable: true diff --git a/actions/greengrass_get_service_role_for_account.yaml b/actions/greengrass_get_service_role_for_account.yaml index 5f938631..cc57f55d 100644 --- a/actions/greengrass_get_service_role_for_account.yaml +++ b/actions/greengrass_get_service_role_for_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_service_role_for_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_service_role_for_account immutable: true diff --git a/actions/greengrass_get_subscription_definition.yaml b/actions/greengrass_get_subscription_definition.yaml index 03793d70..8e2b6449 100644 --- a/actions/greengrass_get_subscription_definition.yaml +++ b/actions/greengrass_get_subscription_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_subscription_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_subscription_definition immutable: true diff --git a/actions/greengrass_get_subscription_definition_version.yaml b/actions/greengrass_get_subscription_definition_version.yaml index e17efc95..86880509 100644 --- a/actions/greengrass_get_subscription_definition_version.yaml +++ b/actions/greengrass_get_subscription_definition_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_get_subscription_definition_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_subscription_definition_version immutable: true diff --git a/actions/greengrass_list_core_definition_versions.yaml b/actions/greengrass_list_core_definition_versions.yaml index 850eca7b..a3285c96 100644 --- a/actions/greengrass_list_core_definition_versions.yaml +++ b/actions/greengrass_list_core_definition_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_core_definition_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_core_definition_versions immutable: true diff --git a/actions/greengrass_list_core_definitions.yaml b/actions/greengrass_list_core_definitions.yaml index c12f8b7d..01a812c4 100644 --- a/actions/greengrass_list_core_definitions.yaml +++ b/actions/greengrass_list_core_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_core_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_core_definitions immutable: true diff --git a/actions/greengrass_list_deployments.yaml b/actions/greengrass_list_deployments.yaml index 244c6138..5a90ecce 100644 --- a/actions/greengrass_list_deployments.yaml +++ b/actions/greengrass_list_deployments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_deployments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_deployments immutable: true diff --git a/actions/greengrass_list_device_definition_versions.yaml b/actions/greengrass_list_device_definition_versions.yaml index d505de27..142890ac 100644 --- a/actions/greengrass_list_device_definition_versions.yaml +++ b/actions/greengrass_list_device_definition_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_device_definition_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_device_definition_versions immutable: true diff --git a/actions/greengrass_list_device_definitions.yaml b/actions/greengrass_list_device_definitions.yaml index 4d4ff50e..0e1b4e8a 100644 --- a/actions/greengrass_list_device_definitions.yaml +++ b/actions/greengrass_list_device_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_device_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_device_definitions immutable: true diff --git a/actions/greengrass_list_function_definition_versions.yaml b/actions/greengrass_list_function_definition_versions.yaml index 818eb90d..75b19421 100644 --- a/actions/greengrass_list_function_definition_versions.yaml +++ b/actions/greengrass_list_function_definition_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_function_definition_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_function_definition_versions immutable: true diff --git a/actions/greengrass_list_function_definitions.yaml b/actions/greengrass_list_function_definitions.yaml index 9bb1b558..67e55359 100644 --- a/actions/greengrass_list_function_definitions.yaml +++ b/actions/greengrass_list_function_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_function_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_function_definitions immutable: true diff --git a/actions/greengrass_list_group_certificate_authorities.yaml b/actions/greengrass_list_group_certificate_authorities.yaml index eb5a4a66..f627ff1c 100644 --- a/actions/greengrass_list_group_certificate_authorities.yaml +++ b/actions/greengrass_list_group_certificate_authorities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_group_certificate_authorities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_group_certificate_authorities immutable: true diff --git a/actions/greengrass_list_group_versions.yaml b/actions/greengrass_list_group_versions.yaml index 463aa7f2..9879de1a 100644 --- a/actions/greengrass_list_group_versions.yaml +++ b/actions/greengrass_list_group_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_group_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_group_versions immutable: true diff --git a/actions/greengrass_list_groups.yaml b/actions/greengrass_list_groups.yaml index a11751db..da9d568a 100644 --- a/actions/greengrass_list_groups.yaml +++ b/actions/greengrass_list_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_groups immutable: true diff --git a/actions/greengrass_list_logger_definition_versions.yaml b/actions/greengrass_list_logger_definition_versions.yaml index 13efbeb7..b43a66a8 100644 --- a/actions/greengrass_list_logger_definition_versions.yaml +++ b/actions/greengrass_list_logger_definition_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_logger_definition_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_logger_definition_versions immutable: true diff --git a/actions/greengrass_list_logger_definitions.yaml b/actions/greengrass_list_logger_definitions.yaml index 24f47cc9..1888ba7e 100644 --- a/actions/greengrass_list_logger_definitions.yaml +++ b/actions/greengrass_list_logger_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_logger_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_logger_definitions immutable: true diff --git a/actions/greengrass_list_subscription_definition_versions.yaml b/actions/greengrass_list_subscription_definition_versions.yaml index 82db8f46..b085841d 100644 --- a/actions/greengrass_list_subscription_definition_versions.yaml +++ b/actions/greengrass_list_subscription_definition_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_subscription_definition_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_subscription_definition_versions immutable: true diff --git a/actions/greengrass_list_subscription_definitions.yaml b/actions/greengrass_list_subscription_definitions.yaml index 5fee2e03..a1388262 100644 --- a/actions/greengrass_list_subscription_definitions.yaml +++ b/actions/greengrass_list_subscription_definitions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_list_subscription_definitions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_subscription_definitions immutable: true diff --git a/actions/greengrass_update_connectivity_info.yaml b/actions/greengrass_update_connectivity_info.yaml index 7b3e9a1f..9d30ab0f 100644 --- a/actions/greengrass_update_connectivity_info.yaml +++ b/actions/greengrass_update_connectivity_info.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_connectivity_info runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_connectivity_info immutable: true diff --git a/actions/greengrass_update_core_definition.yaml b/actions/greengrass_update_core_definition.yaml index e9358e7c..934effd7 100644 --- a/actions/greengrass_update_core_definition.yaml +++ b/actions/greengrass_update_core_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_core_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_core_definition immutable: true diff --git a/actions/greengrass_update_device_definition.yaml b/actions/greengrass_update_device_definition.yaml index 15d7c6a0..d6545f74 100644 --- a/actions/greengrass_update_device_definition.yaml +++ b/actions/greengrass_update_device_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_device_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_device_definition immutable: true diff --git a/actions/greengrass_update_function_definition.yaml b/actions/greengrass_update_function_definition.yaml index c9b38c44..a2d34463 100644 --- a/actions/greengrass_update_function_definition.yaml +++ b/actions/greengrass_update_function_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_function_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_function_definition immutable: true diff --git a/actions/greengrass_update_group.yaml b/actions/greengrass_update_group.yaml index d74f138f..3c70f7a1 100644 --- a/actions/greengrass_update_group.yaml +++ b/actions/greengrass_update_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_group immutable: true diff --git a/actions/greengrass_update_group_certificate_configuration.yaml b/actions/greengrass_update_group_certificate_configuration.yaml index 73771fdb..f15267fd 100644 --- a/actions/greengrass_update_group_certificate_configuration.yaml +++ b/actions/greengrass_update_group_certificate_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_group_certificate_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_group_certificate_configuration immutable: true diff --git a/actions/greengrass_update_logger_definition.yaml b/actions/greengrass_update_logger_definition.yaml index 8537b5d9..acfbca2e 100644 --- a/actions/greengrass_update_logger_definition.yaml +++ b/actions/greengrass_update_logger_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_logger_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_logger_definition immutable: true diff --git a/actions/greengrass_update_subscription_definition.yaml b/actions/greengrass_update_subscription_definition.yaml index c1156887..64ee20c0 100644 --- a/actions/greengrass_update_subscription_definition.yaml +++ b/actions/greengrass_update_subscription_definition.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: greengrass_update_subscription_definition runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_subscription_definition immutable: true diff --git a/actions/health_describe_affected_entities.yaml b/actions/health_describe_affected_entities.yaml index bcb165e7..10738537 100644 --- a/actions/health_describe_affected_entities.yaml +++ b/actions/health_describe_affected_entities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: health_describe_affected_entities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_affected_entities immutable: true diff --git a/actions/health_describe_entity_aggregates.yaml b/actions/health_describe_entity_aggregates.yaml index 11ece93f..0f1d323a 100644 --- a/actions/health_describe_entity_aggregates.yaml +++ b/actions/health_describe_entity_aggregates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: health_describe_entity_aggregates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_entity_aggregates immutable: true diff --git a/actions/health_describe_event_aggregates.yaml b/actions/health_describe_event_aggregates.yaml index 2d2c4dd4..346b4ee7 100644 --- a/actions/health_describe_event_aggregates.yaml +++ b/actions/health_describe_event_aggregates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: health_describe_event_aggregates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_aggregates immutable: true diff --git a/actions/health_describe_event_details.yaml b/actions/health_describe_event_details.yaml index f750a151..7172cbe8 100644 --- a/actions/health_describe_event_details.yaml +++ b/actions/health_describe_event_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: health_describe_event_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_details immutable: true diff --git a/actions/health_describe_event_types.yaml b/actions/health_describe_event_types.yaml index ada44f85..a3484f7c 100644 --- a/actions/health_describe_event_types.yaml +++ b/actions/health_describe_event_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: health_describe_event_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_types immutable: true diff --git a/actions/health_describe_events.yaml b/actions/health_describe_events.yaml index d00f8d84..dd348ca7 100644 --- a/actions/health_describe_events.yaml +++ b/actions/health_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: health_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/iam_add_client_id_to_open_id_connect_provider.yaml b/actions/iam_add_client_id_to_open_id_connect_provider.yaml index 6a09b9ff..98c8c5f6 100644 --- a/actions/iam_add_client_id_to_open_id_connect_provider.yaml +++ b/actions/iam_add_client_id_to_open_id_connect_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_add_client_id_to_open_id_connect_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_client_id_to_open_id_connect_provider immutable: true diff --git a/actions/iam_add_role_to_instance_profile.yaml b/actions/iam_add_role_to_instance_profile.yaml index 82f2ab28..621fcf45 100644 --- a/actions/iam_add_role_to_instance_profile.yaml +++ b/actions/iam_add_role_to_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_add_role_to_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_role_to_instance_profile immutable: true diff --git a/actions/iam_add_user_to_group.yaml b/actions/iam_add_user_to_group.yaml index a66f95ae..61a2145c 100644 --- a/actions/iam_add_user_to_group.yaml +++ b/actions/iam_add_user_to_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_add_user_to_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_user_to_group immutable: true diff --git a/actions/iam_attach_group_policy.yaml b/actions/iam_attach_group_policy.yaml index 0e87b6f3..b91120db 100644 --- a/actions/iam_attach_group_policy.yaml +++ b/actions/iam_attach_group_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_attach_group_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_group_policy immutable: true diff --git a/actions/iam_attach_role_policy.yaml b/actions/iam_attach_role_policy.yaml index 777c039d..0ba69ca2 100644 --- a/actions/iam_attach_role_policy.yaml +++ b/actions/iam_attach_role_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_attach_role_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_role_policy immutable: true diff --git a/actions/iam_attach_user_policy.yaml b/actions/iam_attach_user_policy.yaml index a4c7f9de..3b01f7d8 100644 --- a/actions/iam_attach_user_policy.yaml +++ b/actions/iam_attach_user_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_attach_user_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_user_policy immutable: true diff --git a/actions/iam_build_base_http_request.yaml b/actions/iam_build_base_http_request.yaml index 27ba19d3..16c38b33 100644 --- a/actions/iam_build_base_http_request.yaml +++ b/actions/iam_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/iam_build_complex_list_params.yaml b/actions/iam_build_complex_list_params.yaml index 51f1930c..8855a276 100644 --- a/actions/iam_build_complex_list_params.yaml +++ b/actions/iam_build_complex_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_build_complex_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_complex_list_params immutable: true diff --git a/actions/iam_build_list_params.yaml b/actions/iam_build_list_params.yaml index 38608730..0a169ada 100644 --- a/actions/iam_build_list_params.yaml +++ b/actions/iam_build_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_build_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_list_params immutable: true diff --git a/actions/iam_change_password.yaml b/actions/iam_change_password.yaml index 6ba3979a..6b6a6304 100644 --- a/actions/iam_change_password.yaml +++ b/actions/iam_change_password.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_change_password runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: change_password immutable: true diff --git a/actions/iam_close.yaml b/actions/iam_close.yaml index 781b8960..926ceb1e 100644 --- a/actions/iam_close.yaml +++ b/actions/iam_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/iam_create_access_key.yaml b/actions/iam_create_access_key.yaml index 7d34bdbd..c83a9399 100644 --- a/actions/iam_create_access_key.yaml +++ b/actions/iam_create_access_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_access_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_access_key immutable: true diff --git a/actions/iam_create_account_alias.yaml b/actions/iam_create_account_alias.yaml index 7608a2ad..4f5d5dec 100644 --- a/actions/iam_create_account_alias.yaml +++ b/actions/iam_create_account_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_account_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_account_alias immutable: true diff --git a/actions/iam_create_group.yaml b/actions/iam_create_group.yaml index fb6fcc8d..7daaf5c9 100644 --- a/actions/iam_create_group.yaml +++ b/actions/iam_create_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_group immutable: true diff --git a/actions/iam_create_instance_profile.yaml b/actions/iam_create_instance_profile.yaml index 240bd7de..c9f35111 100644 --- a/actions/iam_create_instance_profile.yaml +++ b/actions/iam_create_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_instance_profile immutable: true diff --git a/actions/iam_create_login_profile.yaml b/actions/iam_create_login_profile.yaml index 01232bd8..0fff64fc 100644 --- a/actions/iam_create_login_profile.yaml +++ b/actions/iam_create_login_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_login_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_login_profile immutable: true diff --git a/actions/iam_create_open_id_connect_provider.yaml b/actions/iam_create_open_id_connect_provider.yaml index 293776c6..e75ee600 100644 --- a/actions/iam_create_open_id_connect_provider.yaml +++ b/actions/iam_create_open_id_connect_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_open_id_connect_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_open_id_connect_provider immutable: true diff --git a/actions/iam_create_policy.yaml b/actions/iam_create_policy.yaml index 9b504641..7ab61b99 100644 --- a/actions/iam_create_policy.yaml +++ b/actions/iam_create_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_policy immutable: true diff --git a/actions/iam_create_policy_version.yaml b/actions/iam_create_policy_version.yaml index c5735fca..28e93de8 100644 --- a/actions/iam_create_policy_version.yaml +++ b/actions/iam_create_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_policy_version immutable: true diff --git a/actions/iam_create_role.yaml b/actions/iam_create_role.yaml index 6ce028b0..d1e2cc7c 100644 --- a/actions/iam_create_role.yaml +++ b/actions/iam_create_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_role immutable: true diff --git a/actions/iam_create_saml_provider.yaml b/actions/iam_create_saml_provider.yaml index 4bcf07b2..8aad9830 100644 --- a/actions/iam_create_saml_provider.yaml +++ b/actions/iam_create_saml_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_saml_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_saml_provider immutable: true diff --git a/actions/iam_create_service_linked_role.yaml b/actions/iam_create_service_linked_role.yaml index a435480e..e82f574c 100644 --- a/actions/iam_create_service_linked_role.yaml +++ b/actions/iam_create_service_linked_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_service_linked_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_service_linked_role immutable: true diff --git a/actions/iam_create_service_specific_credential.yaml b/actions/iam_create_service_specific_credential.yaml index b7ac5eeb..46e42b5e 100644 --- a/actions/iam_create_service_specific_credential.yaml +++ b/actions/iam_create_service_specific_credential.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_service_specific_credential runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_service_specific_credential immutable: true diff --git a/actions/iam_create_user.yaml b/actions/iam_create_user.yaml index cadf8587..d6f6c842 100644 --- a/actions/iam_create_user.yaml +++ b/actions/iam_create_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user immutable: true diff --git a/actions/iam_create_virtual_mfa_device.yaml b/actions/iam_create_virtual_mfa_device.yaml index 89b3284c..4ab14b65 100644 --- a/actions/iam_create_virtual_mfa_device.yaml +++ b/actions/iam_create_virtual_mfa_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_create_virtual_mfa_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_virtual_mfa_device immutable: true diff --git a/actions/iam_deactivate_mfa_device.yaml b/actions/iam_deactivate_mfa_device.yaml index 0f89cf39..619e8231 100644 --- a/actions/iam_deactivate_mfa_device.yaml +++ b/actions/iam_deactivate_mfa_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_deactivate_mfa_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deactivate_mfa_device immutable: true diff --git a/actions/iam_delete_access_key.yaml b/actions/iam_delete_access_key.yaml index 0048e45b..52c2f179 100644 --- a/actions/iam_delete_access_key.yaml +++ b/actions/iam_delete_access_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_access_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_access_key immutable: true diff --git a/actions/iam_delete_account_alias.yaml b/actions/iam_delete_account_alias.yaml index c8150a83..be4bfbe6 100644 --- a/actions/iam_delete_account_alias.yaml +++ b/actions/iam_delete_account_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_account_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_account_alias immutable: true diff --git a/actions/iam_delete_account_password_policy.yaml b/actions/iam_delete_account_password_policy.yaml index 479a35f2..ff8b4eac 100644 --- a/actions/iam_delete_account_password_policy.yaml +++ b/actions/iam_delete_account_password_policy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_delete_account_password_policy parameters: + account_id: + type: string + region: + type: string action: default: delete_account_password_policy immutable: true diff --git a/actions/iam_delete_group.yaml b/actions/iam_delete_group.yaml index 21e068eb..69d0de0e 100644 --- a/actions/iam_delete_group.yaml +++ b/actions/iam_delete_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_group immutable: true diff --git a/actions/iam_delete_group_policy.yaml b/actions/iam_delete_group_policy.yaml index f1e44736..fb184923 100644 --- a/actions/iam_delete_group_policy.yaml +++ b/actions/iam_delete_group_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_group_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_group_policy immutable: true diff --git a/actions/iam_delete_instance_profile.yaml b/actions/iam_delete_instance_profile.yaml index 7f92cde8..92f00b38 100644 --- a/actions/iam_delete_instance_profile.yaml +++ b/actions/iam_delete_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_instance_profile immutable: true diff --git a/actions/iam_delete_login_profile.yaml b/actions/iam_delete_login_profile.yaml index 062f6331..61df2a58 100644 --- a/actions/iam_delete_login_profile.yaml +++ b/actions/iam_delete_login_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_login_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_login_profile immutable: true diff --git a/actions/iam_delete_open_id_connect_provider.yaml b/actions/iam_delete_open_id_connect_provider.yaml index 56d5bf11..3a9c7115 100644 --- a/actions/iam_delete_open_id_connect_provider.yaml +++ b/actions/iam_delete_open_id_connect_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_open_id_connect_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_open_id_connect_provider immutable: true diff --git a/actions/iam_delete_policy.yaml b/actions/iam_delete_policy.yaml index 10458dc0..73dc6873 100644 --- a/actions/iam_delete_policy.yaml +++ b/actions/iam_delete_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_policy immutable: true diff --git a/actions/iam_delete_policy_version.yaml b/actions/iam_delete_policy_version.yaml index 38e41c83..04f6b018 100644 --- a/actions/iam_delete_policy_version.yaml +++ b/actions/iam_delete_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_policy_version immutable: true diff --git a/actions/iam_delete_role.yaml b/actions/iam_delete_role.yaml index 276ca90a..00e6f6c9 100644 --- a/actions/iam_delete_role.yaml +++ b/actions/iam_delete_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_role immutable: true diff --git a/actions/iam_delete_role_policy.yaml b/actions/iam_delete_role_policy.yaml index 321bd258..1300980a 100644 --- a/actions/iam_delete_role_policy.yaml +++ b/actions/iam_delete_role_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_role_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_role_policy immutable: true diff --git a/actions/iam_delete_saml_provider.yaml b/actions/iam_delete_saml_provider.yaml index 6b8dff03..6e487356 100644 --- a/actions/iam_delete_saml_provider.yaml +++ b/actions/iam_delete_saml_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_saml_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_saml_provider immutable: true diff --git a/actions/iam_delete_server_cert.yaml b/actions/iam_delete_server_cert.yaml index 9c896d10..c52eed9c 100644 --- a/actions/iam_delete_server_cert.yaml +++ b/actions/iam_delete_server_cert.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_delete_server_cert parameters: + account_id: + type: string + region: + type: string action: default: delete_server_cert immutable: true diff --git a/actions/iam_delete_server_certificate.yaml b/actions/iam_delete_server_certificate.yaml index 8a189363..8e348753 100644 --- a/actions/iam_delete_server_certificate.yaml +++ b/actions/iam_delete_server_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_server_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_server_certificate immutable: true diff --git a/actions/iam_delete_service_specific_credential.yaml b/actions/iam_delete_service_specific_credential.yaml index 9570ab43..f44669e9 100644 --- a/actions/iam_delete_service_specific_credential.yaml +++ b/actions/iam_delete_service_specific_credential.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_service_specific_credential runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_service_specific_credential immutable: true diff --git a/actions/iam_delete_signing_cert.yaml b/actions/iam_delete_signing_cert.yaml index 297b6008..a970e0bc 100644 --- a/actions/iam_delete_signing_cert.yaml +++ b/actions/iam_delete_signing_cert.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_delete_signing_cert parameters: + account_id: + type: string + region: + type: string action: default: delete_signing_cert immutable: true diff --git a/actions/iam_delete_signing_certificate.yaml b/actions/iam_delete_signing_certificate.yaml index 919d59b9..f0fda40f 100644 --- a/actions/iam_delete_signing_certificate.yaml +++ b/actions/iam_delete_signing_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_signing_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_signing_certificate immutable: true diff --git a/actions/iam_delete_ssh_public_key.yaml b/actions/iam_delete_ssh_public_key.yaml index 221dfc23..bf262ff9 100644 --- a/actions/iam_delete_ssh_public_key.yaml +++ b/actions/iam_delete_ssh_public_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_ssh_public_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_ssh_public_key immutable: true diff --git a/actions/iam_delete_user.yaml b/actions/iam_delete_user.yaml index db3dcf4f..c21d36f9 100644 --- a/actions/iam_delete_user.yaml +++ b/actions/iam_delete_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user immutable: true diff --git a/actions/iam_delete_user_policy.yaml b/actions/iam_delete_user_policy.yaml index 676ec50c..8b52bcfa 100644 --- a/actions/iam_delete_user_policy.yaml +++ b/actions/iam_delete_user_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_user_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_policy immutable: true diff --git a/actions/iam_delete_virtual_mfa_device.yaml b/actions/iam_delete_virtual_mfa_device.yaml index 388fb846..51d90701 100644 --- a/actions/iam_delete_virtual_mfa_device.yaml +++ b/actions/iam_delete_virtual_mfa_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_delete_virtual_mfa_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_virtual_mfa_device immutable: true diff --git a/actions/iam_detach_group_policy.yaml b/actions/iam_detach_group_policy.yaml index d167b1c1..cef52057 100644 --- a/actions/iam_detach_group_policy.yaml +++ b/actions/iam_detach_group_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_detach_group_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_group_policy immutable: true diff --git a/actions/iam_detach_role_policy.yaml b/actions/iam_detach_role_policy.yaml index 9c07e028..0c985fa2 100644 --- a/actions/iam_detach_role_policy.yaml +++ b/actions/iam_detach_role_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_detach_role_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_role_policy immutable: true diff --git a/actions/iam_detach_user_policy.yaml b/actions/iam_detach_user_policy.yaml index 132b6628..692d17b1 100644 --- a/actions/iam_detach_user_policy.yaml +++ b/actions/iam_detach_user_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_detach_user_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_user_policy immutable: true diff --git a/actions/iam_enable_mfa_device.yaml b/actions/iam_enable_mfa_device.yaml index b2aa8c53..85134c3e 100644 --- a/actions/iam_enable_mfa_device.yaml +++ b/actions/iam_enable_mfa_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_enable_mfa_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_mfa_device immutable: true diff --git a/actions/iam_generate_credential_report.yaml b/actions/iam_generate_credential_report.yaml index c1f4eb05..e3cc8a80 100644 --- a/actions/iam_generate_credential_report.yaml +++ b/actions/iam_generate_credential_report.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_generate_credential_report parameters: + account_id: + type: string + region: + type: string action: default: generate_credential_report immutable: true diff --git a/actions/iam_get_access_key_last_used.yaml b/actions/iam_get_access_key_last_used.yaml index 05abe0bb..c4a7e377 100644 --- a/actions/iam_get_access_key_last_used.yaml +++ b/actions/iam_get_access_key_last_used.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_access_key_last_used runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_access_key_last_used immutable: true diff --git a/actions/iam_get_account_alias.yaml b/actions/iam_get_account_alias.yaml index ac8a1d25..62d6aa50 100644 --- a/actions/iam_get_account_alias.yaml +++ b/actions/iam_get_account_alias.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_account_alias parameters: + account_id: + type: string + region: + type: string action: default: get_account_alias immutable: true diff --git a/actions/iam_get_account_authorization_details.yaml b/actions/iam_get_account_authorization_details.yaml index 9e8e6a18..153fbbe9 100644 --- a/actions/iam_get_account_authorization_details.yaml +++ b/actions/iam_get_account_authorization_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_account_authorization_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_account_authorization_details immutable: true diff --git a/actions/iam_get_account_password_policy.yaml b/actions/iam_get_account_password_policy.yaml index 7872fcf1..2993fd8d 100644 --- a/actions/iam_get_account_password_policy.yaml +++ b/actions/iam_get_account_password_policy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_account_password_policy parameters: + account_id: + type: string + region: + type: string action: default: get_account_password_policy immutable: true diff --git a/actions/iam_get_account_summary.yaml b/actions/iam_get_account_summary.yaml index 225a3b0a..76e8c341 100644 --- a/actions/iam_get_account_summary.yaml +++ b/actions/iam_get_account_summary.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_account_summary parameters: + account_id: + type: string + region: + type: string action: default: get_account_summary immutable: true diff --git a/actions/iam_get_all_access_keys.yaml b/actions/iam_get_all_access_keys.yaml index c67b0127..083fc11b 100644 --- a/actions/iam_get_all_access_keys.yaml +++ b/actions/iam_get_all_access_keys.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_access_keys parameters: + account_id: + type: string + region: + type: string action: default: get_all_access_keys immutable: true diff --git a/actions/iam_get_all_group_policies.yaml b/actions/iam_get_all_group_policies.yaml index 0bdc6a19..dd9061d4 100644 --- a/actions/iam_get_all_group_policies.yaml +++ b/actions/iam_get_all_group_policies.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_group_policies parameters: + account_id: + type: string + region: + type: string action: default: get_all_group_policies immutable: true diff --git a/actions/iam_get_all_groups.yaml b/actions/iam_get_all_groups.yaml index 91a07e8d..0ae8131b 100644 --- a/actions/iam_get_all_groups.yaml +++ b/actions/iam_get_all_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_groups immutable: true diff --git a/actions/iam_get_all_mfa_devices.yaml b/actions/iam_get_all_mfa_devices.yaml index 33876160..4df34e7f 100644 --- a/actions/iam_get_all_mfa_devices.yaml +++ b/actions/iam_get_all_mfa_devices.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_mfa_devices parameters: + account_id: + type: string + region: + type: string action: default: get_all_mfa_devices immutable: true diff --git a/actions/iam_get_all_server_certs.yaml b/actions/iam_get_all_server_certs.yaml index 206c73b4..0acc0453 100644 --- a/actions/iam_get_all_server_certs.yaml +++ b/actions/iam_get_all_server_certs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_server_certs parameters: + account_id: + type: string + region: + type: string action: default: get_all_server_certs immutable: true diff --git a/actions/iam_get_all_signing_certs.yaml b/actions/iam_get_all_signing_certs.yaml index 55926cdd..b2fab574 100644 --- a/actions/iam_get_all_signing_certs.yaml +++ b/actions/iam_get_all_signing_certs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_signing_certs parameters: + account_id: + type: string + region: + type: string action: default: get_all_signing_certs immutable: true diff --git a/actions/iam_get_all_user_policies.yaml b/actions/iam_get_all_user_policies.yaml index 4348be80..8ffa92dc 100644 --- a/actions/iam_get_all_user_policies.yaml +++ b/actions/iam_get_all_user_policies.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_user_policies parameters: + account_id: + type: string + region: + type: string action: default: get_all_user_policies immutable: true diff --git a/actions/iam_get_all_users.yaml b/actions/iam_get_all_users.yaml index 2a33899d..71588ea1 100644 --- a/actions/iam_get_all_users.yaml +++ b/actions/iam_get_all_users.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_all_users parameters: + account_id: + type: string + region: + type: string action: default: get_all_users immutable: true diff --git a/actions/iam_get_context_keys_for_custom_policy.yaml b/actions/iam_get_context_keys_for_custom_policy.yaml index 9733d570..50591c0b 100644 --- a/actions/iam_get_context_keys_for_custom_policy.yaml +++ b/actions/iam_get_context_keys_for_custom_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_context_keys_for_custom_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_context_keys_for_custom_policy immutable: true diff --git a/actions/iam_get_context_keys_for_principal_policy.yaml b/actions/iam_get_context_keys_for_principal_policy.yaml index 9cdcdf6e..2dada4e1 100644 --- a/actions/iam_get_context_keys_for_principal_policy.yaml +++ b/actions/iam_get_context_keys_for_principal_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_context_keys_for_principal_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_context_keys_for_principal_policy immutable: true diff --git a/actions/iam_get_credential_report.yaml b/actions/iam_get_credential_report.yaml index 01c7f5e1..2cd0f2ba 100644 --- a/actions/iam_get_credential_report.yaml +++ b/actions/iam_get_credential_report.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_credential_report parameters: + account_id: + type: string + region: + type: string action: default: get_credential_report immutable: true diff --git a/actions/iam_get_group.yaml b/actions/iam_get_group.yaml index 58f22be3..ddc9d795 100644 --- a/actions/iam_get_group.yaml +++ b/actions/iam_get_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group immutable: true diff --git a/actions/iam_get_group_policy.yaml b/actions/iam_get_group_policy.yaml index 73d2462d..9559aa45 100644 --- a/actions/iam_get_group_policy.yaml +++ b/actions/iam_get_group_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_group_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_group_policy immutable: true diff --git a/actions/iam_get_groups_for_user.yaml b/actions/iam_get_groups_for_user.yaml index 3701896d..bd035e61 100644 --- a/actions/iam_get_groups_for_user.yaml +++ b/actions/iam_get_groups_for_user.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_groups_for_user parameters: + account_id: + type: string + region: + type: string action: default: get_groups_for_user immutable: true diff --git a/actions/iam_get_http_connection.yaml b/actions/iam_get_http_connection.yaml index 2e62f1c8..16a20e69 100644 --- a/actions/iam_get_http_connection.yaml +++ b/actions/iam_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/iam_get_instance_profile.yaml b/actions/iam_get_instance_profile.yaml index a3e4490d..5f6410b1 100644 --- a/actions/iam_get_instance_profile.yaml +++ b/actions/iam_get_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_profile immutable: true diff --git a/actions/iam_get_list.yaml b/actions/iam_get_list.yaml index 32737fcf..18075252 100644 --- a/actions/iam_get_list.yaml +++ b/actions/iam_get_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_list parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/iam_get_login_profile.yaml b/actions/iam_get_login_profile.yaml index 2a6432d6..5d91ec85 100644 --- a/actions/iam_get_login_profile.yaml +++ b/actions/iam_get_login_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_login_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_login_profile immutable: true diff --git a/actions/iam_get_login_profiles.yaml b/actions/iam_get_login_profiles.yaml index 7ec46dae..d02662ea 100644 --- a/actions/iam_get_login_profiles.yaml +++ b/actions/iam_get_login_profiles.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_login_profiles parameters: + account_id: + type: string + region: + type: string action: default: get_login_profiles immutable: true diff --git a/actions/iam_get_object.yaml b/actions/iam_get_object.yaml index d4dcbdc7..71462fcd 100644 --- a/actions/iam_get_object.yaml +++ b/actions/iam_get_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_object parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/iam_get_open_id_connect_provider.yaml b/actions/iam_get_open_id_connect_provider.yaml index 80362254..af813882 100644 --- a/actions/iam_get_open_id_connect_provider.yaml +++ b/actions/iam_get_open_id_connect_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_open_id_connect_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_open_id_connect_provider immutable: true diff --git a/actions/iam_get_path.yaml b/actions/iam_get_path.yaml index e209ee55..79b3420e 100644 --- a/actions/iam_get_path.yaml +++ b/actions/iam_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/iam_get_policy.yaml b/actions/iam_get_policy.yaml index 0b32eb2e..1f32de86 100644 --- a/actions/iam_get_policy.yaml +++ b/actions/iam_get_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_policy immutable: true diff --git a/actions/iam_get_policy_version.yaml b/actions/iam_get_policy_version.yaml index f5b3aa56..71e59e2d 100644 --- a/actions/iam_get_policy_version.yaml +++ b/actions/iam_get_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_policy_version immutable: true diff --git a/actions/iam_get_proxy_auth_header.yaml b/actions/iam_get_proxy_auth_header.yaml index 7f990be4..023d2c38 100644 --- a/actions/iam_get_proxy_auth_header.yaml +++ b/actions/iam_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/iam_get_proxy_url_with_auth.yaml b/actions/iam_get_proxy_url_with_auth.yaml index 3e8c6ab0..0c0989b2 100644 --- a/actions/iam_get_proxy_url_with_auth.yaml +++ b/actions/iam_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/iam_get_response.yaml b/actions/iam_get_response.yaml index b58f6c8b..3f860050 100644 --- a/actions/iam_get_response.yaml +++ b/actions/iam_get_response.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_response parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/iam_get_role.yaml b/actions/iam_get_role.yaml index f771cc39..bf0385b1 100644 --- a/actions/iam_get_role.yaml +++ b/actions/iam_get_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_role immutable: true diff --git a/actions/iam_get_role_policy.yaml b/actions/iam_get_role_policy.yaml index bc77dee1..a99b9a97 100644 --- a/actions/iam_get_role_policy.yaml +++ b/actions/iam_get_role_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_role_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_role_policy immutable: true diff --git a/actions/iam_get_saml_provider.yaml b/actions/iam_get_saml_provider.yaml index ae19624a..c1d4cec2 100644 --- a/actions/iam_get_saml_provider.yaml +++ b/actions/iam_get_saml_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_saml_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_saml_provider immutable: true diff --git a/actions/iam_get_server_certificate.yaml b/actions/iam_get_server_certificate.yaml index 0c18c1f0..6d5b4f42 100644 --- a/actions/iam_get_server_certificate.yaml +++ b/actions/iam_get_server_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_server_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_server_certificate immutable: true diff --git a/actions/iam_get_signin_url.yaml b/actions/iam_get_signin_url.yaml index c91357f6..3bcaea0e 100644 --- a/actions/iam_get_signin_url.yaml +++ b/actions/iam_get_signin_url.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_signin_url parameters: + account_id: + type: string + region: + type: string action: default: get_signin_url immutable: true diff --git a/actions/iam_get_ssh_public_key.yaml b/actions/iam_get_ssh_public_key.yaml index 3037b418..76fcd941 100644 --- a/actions/iam_get_ssh_public_key.yaml +++ b/actions/iam_get_ssh_public_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_ssh_public_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_ssh_public_key immutable: true diff --git a/actions/iam_get_status.yaml b/actions/iam_get_status.yaml index 9832a148..ffc49919 100644 --- a/actions/iam_get_status.yaml +++ b/actions/iam_get_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_status parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/iam_get_user.yaml b/actions/iam_get_user.yaml index 69a2d126..bb5ad895 100644 --- a/actions/iam_get_user.yaml +++ b/actions/iam_get_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_user immutable: true diff --git a/actions/iam_get_user_policy.yaml b/actions/iam_get_user_policy.yaml index 75b7bc06..860a0769 100644 --- a/actions/iam_get_user_policy.yaml +++ b/actions/iam_get_user_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_get_user_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_user_policy immutable: true diff --git a/actions/iam_get_utf8_value.yaml b/actions/iam_get_utf8_value.yaml index 952d91c2..ea8159c8 100644 --- a/actions/iam_get_utf8_value.yaml +++ b/actions/iam_get_utf8_value.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_get_utf8_value parameters: + account_id: + type: string + region: + type: string action: default: get_utf8_value immutable: true diff --git a/actions/iam_handle_proxy.yaml b/actions/iam_handle_proxy.yaml index b1ddca85..a587d018 100644 --- a/actions/iam_handle_proxy.yaml +++ b/actions/iam_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/iam_list_access_keys.yaml b/actions/iam_list_access_keys.yaml index 70c777b0..764fae0c 100644 --- a/actions/iam_list_access_keys.yaml +++ b/actions/iam_list_access_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_access_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_access_keys immutable: true diff --git a/actions/iam_list_account_aliases.yaml b/actions/iam_list_account_aliases.yaml index a906d8b0..4c9c9398 100644 --- a/actions/iam_list_account_aliases.yaml +++ b/actions/iam_list_account_aliases.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_account_aliases runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_account_aliases immutable: true diff --git a/actions/iam_list_attached_group_policies.yaml b/actions/iam_list_attached_group_policies.yaml index df9f0e9c..8b107039 100644 --- a/actions/iam_list_attached_group_policies.yaml +++ b/actions/iam_list_attached_group_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_attached_group_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_attached_group_policies immutable: true diff --git a/actions/iam_list_attached_role_policies.yaml b/actions/iam_list_attached_role_policies.yaml index a82c3fae..3960a126 100644 --- a/actions/iam_list_attached_role_policies.yaml +++ b/actions/iam_list_attached_role_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_attached_role_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_attached_role_policies immutable: true diff --git a/actions/iam_list_attached_user_policies.yaml b/actions/iam_list_attached_user_policies.yaml index 9ec1edc7..2d149209 100644 --- a/actions/iam_list_attached_user_policies.yaml +++ b/actions/iam_list_attached_user_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_attached_user_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_attached_user_policies immutable: true diff --git a/actions/iam_list_entities_for_policy.yaml b/actions/iam_list_entities_for_policy.yaml index 18d20bf0..f2b28257 100644 --- a/actions/iam_list_entities_for_policy.yaml +++ b/actions/iam_list_entities_for_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_entities_for_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_entities_for_policy immutable: true diff --git a/actions/iam_list_group_policies.yaml b/actions/iam_list_group_policies.yaml index 5a2f9844..7ae4a1c8 100644 --- a/actions/iam_list_group_policies.yaml +++ b/actions/iam_list_group_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_group_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_group_policies immutable: true diff --git a/actions/iam_list_groups.yaml b/actions/iam_list_groups.yaml index 432df9fb..e4879846 100644 --- a/actions/iam_list_groups.yaml +++ b/actions/iam_list_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_groups immutable: true diff --git a/actions/iam_list_groups_for_user.yaml b/actions/iam_list_groups_for_user.yaml index 72f805c6..05b5747f 100644 --- a/actions/iam_list_groups_for_user.yaml +++ b/actions/iam_list_groups_for_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_groups_for_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_groups_for_user immutable: true diff --git a/actions/iam_list_instance_profiles.yaml b/actions/iam_list_instance_profiles.yaml index 18fe9cdc..715e526d 100644 --- a/actions/iam_list_instance_profiles.yaml +++ b/actions/iam_list_instance_profiles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_instance_profiles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_instance_profiles immutable: true diff --git a/actions/iam_list_instance_profiles_for_role.yaml b/actions/iam_list_instance_profiles_for_role.yaml index 7cc3e40e..fa0b6742 100644 --- a/actions/iam_list_instance_profiles_for_role.yaml +++ b/actions/iam_list_instance_profiles_for_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_instance_profiles_for_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_instance_profiles_for_role immutable: true diff --git a/actions/iam_list_mfa_devices.yaml b/actions/iam_list_mfa_devices.yaml index 84cd7e97..b4bcd856 100644 --- a/actions/iam_list_mfa_devices.yaml +++ b/actions/iam_list_mfa_devices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_mfa_devices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_mfa_devices immutable: true diff --git a/actions/iam_list_open_id_connect_providers.yaml b/actions/iam_list_open_id_connect_providers.yaml index 963a3dae..b89c1f4d 100644 --- a/actions/iam_list_open_id_connect_providers.yaml +++ b/actions/iam_list_open_id_connect_providers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_open_id_connect_providers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_open_id_connect_providers immutable: true diff --git a/actions/iam_list_policies.yaml b/actions/iam_list_policies.yaml index 1081357b..2b8ae53d 100644 --- a/actions/iam_list_policies.yaml +++ b/actions/iam_list_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policies immutable: true diff --git a/actions/iam_list_policy_versions.yaml b/actions/iam_list_policy_versions.yaml index d6ffc29e..2dd2f294 100644 --- a/actions/iam_list_policy_versions.yaml +++ b/actions/iam_list_policy_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_policy_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policy_versions immutable: true diff --git a/actions/iam_list_role_policies.yaml b/actions/iam_list_role_policies.yaml index ab9c9a5b..ba272798 100644 --- a/actions/iam_list_role_policies.yaml +++ b/actions/iam_list_role_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_role_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_role_policies immutable: true diff --git a/actions/iam_list_roles.yaml b/actions/iam_list_roles.yaml index c69abbd6..20069343 100644 --- a/actions/iam_list_roles.yaml +++ b/actions/iam_list_roles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_roles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_roles immutable: true diff --git a/actions/iam_list_saml_providers.yaml b/actions/iam_list_saml_providers.yaml index 002b2efe..b7ca4baf 100644 --- a/actions/iam_list_saml_providers.yaml +++ b/actions/iam_list_saml_providers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_saml_providers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_saml_providers immutable: true diff --git a/actions/iam_list_server_certificates.yaml b/actions/iam_list_server_certificates.yaml index a798fa3f..3283f75e 100644 --- a/actions/iam_list_server_certificates.yaml +++ b/actions/iam_list_server_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_server_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_server_certificates immutable: true diff --git a/actions/iam_list_server_certs.yaml b/actions/iam_list_server_certs.yaml index 2536e42f..d5a99be5 100644 --- a/actions/iam_list_server_certs.yaml +++ b/actions/iam_list_server_certs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_list_server_certs parameters: + account_id: + type: string + region: + type: string action: default: list_server_certs immutable: true diff --git a/actions/iam_list_service_specific_credentials.yaml b/actions/iam_list_service_specific_credentials.yaml index 2c24a828..ef538a22 100644 --- a/actions/iam_list_service_specific_credentials.yaml +++ b/actions/iam_list_service_specific_credentials.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_service_specific_credentials runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_service_specific_credentials immutable: true diff --git a/actions/iam_list_signing_certificates.yaml b/actions/iam_list_signing_certificates.yaml index 857a43fd..3ff6db6f 100644 --- a/actions/iam_list_signing_certificates.yaml +++ b/actions/iam_list_signing_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_signing_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_signing_certificates immutable: true diff --git a/actions/iam_list_ssh_public_keys.yaml b/actions/iam_list_ssh_public_keys.yaml index 2f1fc7a8..9b538591 100644 --- a/actions/iam_list_ssh_public_keys.yaml +++ b/actions/iam_list_ssh_public_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_ssh_public_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_ssh_public_keys immutable: true diff --git a/actions/iam_list_user_policies.yaml b/actions/iam_list_user_policies.yaml index c93a13b8..de551c75 100644 --- a/actions/iam_list_user_policies.yaml +++ b/actions/iam_list_user_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_user_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_user_policies immutable: true diff --git a/actions/iam_list_users.yaml b/actions/iam_list_users.yaml index 7ee15455..cad4e3b3 100644 --- a/actions/iam_list_users.yaml +++ b/actions/iam_list_users.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_users runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_users immutable: true diff --git a/actions/iam_list_virtual_mfa_devices.yaml b/actions/iam_list_virtual_mfa_devices.yaml index d94249cb..318f60f0 100644 --- a/actions/iam_list_virtual_mfa_devices.yaml +++ b/actions/iam_list_virtual_mfa_devices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_list_virtual_mfa_devices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_virtual_mfa_devices immutable: true diff --git a/actions/iam_make_request.yaml b/actions/iam_make_request.yaml index 8c9d1a8e..cc28a31d 100644 --- a/actions/iam_make_request.yaml +++ b/actions/iam_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/iam_new_http_connection.yaml b/actions/iam_new_http_connection.yaml index ecf90b22..d88d9ddb 100644 --- a/actions/iam_new_http_connection.yaml +++ b/actions/iam_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/iam_prefix_proxy_to_path.yaml b/actions/iam_prefix_proxy_to_path.yaml index f1801867..2b423f3f 100644 --- a/actions/iam_prefix_proxy_to_path.yaml +++ b/actions/iam_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/iam_proxy_ssl.yaml b/actions/iam_proxy_ssl.yaml index 9712cb51..940536ec 100644 --- a/actions/iam_proxy_ssl.yaml +++ b/actions/iam_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/iam_put_group_policy.yaml b/actions/iam_put_group_policy.yaml index ffff07e1..90395f50 100644 --- a/actions/iam_put_group_policy.yaml +++ b/actions/iam_put_group_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_put_group_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_group_policy immutable: true diff --git a/actions/iam_put_http_connection.yaml b/actions/iam_put_http_connection.yaml index 7cd22ce4..7f1b4bf3 100644 --- a/actions/iam_put_http_connection.yaml +++ b/actions/iam_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/iam_put_role_policy.yaml b/actions/iam_put_role_policy.yaml index a2243059..3dace01b 100644 --- a/actions/iam_put_role_policy.yaml +++ b/actions/iam_put_role_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_put_role_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_role_policy immutable: true diff --git a/actions/iam_put_user_policy.yaml b/actions/iam_put_user_policy.yaml index 657bd753..8f791b8f 100644 --- a/actions/iam_put_user_policy.yaml +++ b/actions/iam_put_user_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_put_user_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_user_policy immutable: true diff --git a/actions/iam_remove_client_id_from_open_id_connect_provider.yaml b/actions/iam_remove_client_id_from_open_id_connect_provider.yaml index 1e0a15ab..e037b14c 100644 --- a/actions/iam_remove_client_id_from_open_id_connect_provider.yaml +++ b/actions/iam_remove_client_id_from_open_id_connect_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_remove_client_id_from_open_id_connect_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_client_id_from_open_id_connect_provider immutable: true diff --git a/actions/iam_remove_role_from_instance_profile.yaml b/actions/iam_remove_role_from_instance_profile.yaml index e401dca2..f7b86cc4 100644 --- a/actions/iam_remove_role_from_instance_profile.yaml +++ b/actions/iam_remove_role_from_instance_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_remove_role_from_instance_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_role_from_instance_profile immutable: true diff --git a/actions/iam_remove_user_from_group.yaml b/actions/iam_remove_user_from_group.yaml index ce2ff60e..3f8880a2 100644 --- a/actions/iam_remove_user_from_group.yaml +++ b/actions/iam_remove_user_from_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_remove_user_from_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_user_from_group immutable: true diff --git a/actions/iam_reset_service_specific_credential.yaml b/actions/iam_reset_service_specific_credential.yaml index 0d4adf48..8887b927 100644 --- a/actions/iam_reset_service_specific_credential.yaml +++ b/actions/iam_reset_service_specific_credential.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_reset_service_specific_credential runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_service_specific_credential immutable: true diff --git a/actions/iam_resync_mfa_device.yaml b/actions/iam_resync_mfa_device.yaml index a6faebed..fa77effc 100644 --- a/actions/iam_resync_mfa_device.yaml +++ b/actions/iam_resync_mfa_device.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_resync_mfa_device runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resync_mfa_device immutable: true diff --git a/actions/iam_server_name.yaml b/actions/iam_server_name.yaml index 62d100a2..72c90274 100644 --- a/actions/iam_server_name.yaml +++ b/actions/iam_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/iam_set_default_policy_version.yaml b/actions/iam_set_default_policy_version.yaml index 6b2d23f6..54c6a591 100644 --- a/actions/iam_set_default_policy_version.yaml +++ b/actions/iam_set_default_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_set_default_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_default_policy_version immutable: true diff --git a/actions/iam_set_host_header.yaml b/actions/iam_set_host_header.yaml index ef1a93a4..0e7059de 100644 --- a/actions/iam_set_host_header.yaml +++ b/actions/iam_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/iam_set_request_hook.yaml b/actions/iam_set_request_hook.yaml index 20a1cee4..7b2a83f6 100644 --- a/actions/iam_set_request_hook.yaml +++ b/actions/iam_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/iam_simulate_custom_policy.yaml b/actions/iam_simulate_custom_policy.yaml index 432239f1..9badfea9 100644 --- a/actions/iam_simulate_custom_policy.yaml +++ b/actions/iam_simulate_custom_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_simulate_custom_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: simulate_custom_policy immutable: true diff --git a/actions/iam_simulate_principal_policy.yaml b/actions/iam_simulate_principal_policy.yaml index 33a7fb1a..9252aa14 100644 --- a/actions/iam_simulate_principal_policy.yaml +++ b/actions/iam_simulate_principal_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_simulate_principal_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: simulate_principal_policy immutable: true diff --git a/actions/iam_skip_proxy.yaml b/actions/iam_skip_proxy.yaml index 9e167105..30ac21de 100644 --- a/actions/iam_skip_proxy.yaml +++ b/actions/iam_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/iam_update_access_key.yaml b/actions/iam_update_access_key.yaml index 559cfb88..850533ed 100644 --- a/actions/iam_update_access_key.yaml +++ b/actions/iam_update_access_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_access_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_access_key immutable: true diff --git a/actions/iam_update_account_password_policy.yaml b/actions/iam_update_account_password_policy.yaml index 2c723de3..4aa379e9 100644 --- a/actions/iam_update_account_password_policy.yaml +++ b/actions/iam_update_account_password_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_account_password_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_account_password_policy immutable: true diff --git a/actions/iam_update_assume_role_policy.yaml b/actions/iam_update_assume_role_policy.yaml index 5307018f..61095589 100644 --- a/actions/iam_update_assume_role_policy.yaml +++ b/actions/iam_update_assume_role_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_assume_role_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_assume_role_policy immutable: true diff --git a/actions/iam_update_group.yaml b/actions/iam_update_group.yaml index 484fdba7..37348082 100644 --- a/actions/iam_update_group.yaml +++ b/actions/iam_update_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_group immutable: true diff --git a/actions/iam_update_login_profile.yaml b/actions/iam_update_login_profile.yaml index 28d4abc0..6dd197f9 100644 --- a/actions/iam_update_login_profile.yaml +++ b/actions/iam_update_login_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_login_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_login_profile immutable: true diff --git a/actions/iam_update_open_id_connect_provider_thumbprint.yaml b/actions/iam_update_open_id_connect_provider_thumbprint.yaml index 70b44430..1655a24b 100644 --- a/actions/iam_update_open_id_connect_provider_thumbprint.yaml +++ b/actions/iam_update_open_id_connect_provider_thumbprint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_open_id_connect_provider_thumbprint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_open_id_connect_provider_thumbprint immutable: true diff --git a/actions/iam_update_role_description.yaml b/actions/iam_update_role_description.yaml index 7d559f90..72c2f390 100644 --- a/actions/iam_update_role_description.yaml +++ b/actions/iam_update_role_description.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_role_description runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_role_description immutable: true diff --git a/actions/iam_update_saml_provider.yaml b/actions/iam_update_saml_provider.yaml index 00654876..63271894 100644 --- a/actions/iam_update_saml_provider.yaml +++ b/actions/iam_update_saml_provider.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_saml_provider runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_saml_provider immutable: true diff --git a/actions/iam_update_server_cert.yaml b/actions/iam_update_server_cert.yaml index 8bca78ff..1f4587b3 100644 --- a/actions/iam_update_server_cert.yaml +++ b/actions/iam_update_server_cert.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_update_server_cert parameters: + account_id: + type: string + region: + type: string action: default: update_server_cert immutable: true diff --git a/actions/iam_update_server_certificate.yaml b/actions/iam_update_server_certificate.yaml index 8b2baf7c..d0fb3dbb 100644 --- a/actions/iam_update_server_certificate.yaml +++ b/actions/iam_update_server_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_server_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_server_certificate immutable: true diff --git a/actions/iam_update_service_specific_credential.yaml b/actions/iam_update_service_specific_credential.yaml index efd9892f..b92127e9 100644 --- a/actions/iam_update_service_specific_credential.yaml +++ b/actions/iam_update_service_specific_credential.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_service_specific_credential runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_service_specific_credential immutable: true diff --git a/actions/iam_update_signing_cert.yaml b/actions/iam_update_signing_cert.yaml index 7f3dd65b..1b03a2c5 100644 --- a/actions/iam_update_signing_cert.yaml +++ b/actions/iam_update_signing_cert.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_update_signing_cert parameters: + account_id: + type: string + region: + type: string action: default: update_signing_cert immutable: true diff --git a/actions/iam_update_signing_certificate.yaml b/actions/iam_update_signing_certificate.yaml index 01aa1e97..c7f1e119 100644 --- a/actions/iam_update_signing_certificate.yaml +++ b/actions/iam_update_signing_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_signing_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_signing_certificate immutable: true diff --git a/actions/iam_update_ssh_public_key.yaml b/actions/iam_update_ssh_public_key.yaml index 6d4c24ab..9ac23df3 100644 --- a/actions/iam_update_ssh_public_key.yaml +++ b/actions/iam_update_ssh_public_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_ssh_public_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_ssh_public_key immutable: true diff --git a/actions/iam_update_user.yaml b/actions/iam_update_user.yaml index 3c641480..35888307 100644 --- a/actions/iam_update_user.yaml +++ b/actions/iam_update_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_update_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user immutable: true diff --git a/actions/iam_upload_server_cert.yaml b/actions/iam_upload_server_cert.yaml index a75313fe..2226e3be 100644 --- a/actions/iam_upload_server_cert.yaml +++ b/actions/iam_upload_server_cert.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_upload_server_cert parameters: + account_id: + type: string + region: + type: string action: default: upload_server_cert immutable: true diff --git a/actions/iam_upload_server_certificate.yaml b/actions/iam_upload_server_certificate.yaml index 3eb8b36e..62eeb343 100644 --- a/actions/iam_upload_server_certificate.yaml +++ b/actions/iam_upload_server_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_upload_server_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_server_certificate immutable: true diff --git a/actions/iam_upload_signing_cert.yaml b/actions/iam_upload_signing_cert.yaml index 50cb2f6c..75d6e36a 100644 --- a/actions/iam_upload_signing_cert.yaml +++ b/actions/iam_upload_signing_cert.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: iam_upload_signing_cert parameters: + account_id: + type: string + region: + type: string action: default: upload_signing_cert immutable: true diff --git a/actions/iam_upload_signing_certificate.yaml b/actions/iam_upload_signing_certificate.yaml index 6d99c87e..5bac5847 100644 --- a/actions/iam_upload_signing_certificate.yaml +++ b/actions/iam_upload_signing_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_upload_signing_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_signing_certificate immutable: true diff --git a/actions/iam_upload_ssh_public_key.yaml b/actions/iam_upload_ssh_public_key.yaml index 9b271c9f..5b9210a5 100644 --- a/actions/iam_upload_ssh_public_key.yaml +++ b/actions/iam_upload_ssh_public_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iam_upload_ssh_public_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_ssh_public_key immutable: true diff --git a/actions/importexport_cancel_job.yaml b/actions/importexport_cancel_job.yaml index 5d849db2..062fc1d8 100644 --- a/actions/importexport_cancel_job.yaml +++ b/actions/importexport_cancel_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: importexport_cancel_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_job immutable: true diff --git a/actions/importexport_create_job.yaml b/actions/importexport_create_job.yaml index 2b2ee82f..f31d235e 100644 --- a/actions/importexport_create_job.yaml +++ b/actions/importexport_create_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: importexport_create_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_job immutable: true diff --git a/actions/importexport_get_shipping_label.yaml b/actions/importexport_get_shipping_label.yaml index b804a8fe..8073550f 100644 --- a/actions/importexport_get_shipping_label.yaml +++ b/actions/importexport_get_shipping_label.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: importexport_get_shipping_label runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_shipping_label immutable: true diff --git a/actions/importexport_get_status.yaml b/actions/importexport_get_status.yaml index f0912b83..03d8adb6 100644 --- a/actions/importexport_get_status.yaml +++ b/actions/importexport_get_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: importexport_get_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_status immutable: true diff --git a/actions/importexport_list_jobs.yaml b/actions/importexport_list_jobs.yaml index 60ac569c..a1c98673 100644 --- a/actions/importexport_list_jobs.yaml +++ b/actions/importexport_list_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: importexport_list_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs immutable: true diff --git a/actions/importexport_update_job.yaml b/actions/importexport_update_job.yaml index 3943b99f..0cbcff12 100644 --- a/actions/importexport_update_job.yaml +++ b/actions/importexport_update_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: importexport_update_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_job immutable: true diff --git a/actions/inspector_add_attributes_to_findings.yaml b/actions/inspector_add_attributes_to_findings.yaml index 33f16901..f31f895b 100644 --- a/actions/inspector_add_attributes_to_findings.yaml +++ b/actions/inspector_add_attributes_to_findings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_add_attributes_to_findings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_attributes_to_findings immutable: true diff --git a/actions/inspector_create_assessment_target.yaml b/actions/inspector_create_assessment_target.yaml index 9b2338d7..13b66f58 100644 --- a/actions/inspector_create_assessment_target.yaml +++ b/actions/inspector_create_assessment_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_create_assessment_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_assessment_target immutable: true diff --git a/actions/inspector_create_assessment_template.yaml b/actions/inspector_create_assessment_template.yaml index 0a59ab19..c102b73f 100644 --- a/actions/inspector_create_assessment_template.yaml +++ b/actions/inspector_create_assessment_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_create_assessment_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_assessment_template immutable: true diff --git a/actions/inspector_create_resource_group.yaml b/actions/inspector_create_resource_group.yaml index 334c0d0e..256a7a2a 100644 --- a/actions/inspector_create_resource_group.yaml +++ b/actions/inspector_create_resource_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_create_resource_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_resource_group immutable: true diff --git a/actions/inspector_delete_assessment_run.yaml b/actions/inspector_delete_assessment_run.yaml index 19e339fd..c817749b 100644 --- a/actions/inspector_delete_assessment_run.yaml +++ b/actions/inspector_delete_assessment_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_delete_assessment_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_assessment_run immutable: true diff --git a/actions/inspector_delete_assessment_target.yaml b/actions/inspector_delete_assessment_target.yaml index 6de46fe5..98be51ff 100644 --- a/actions/inspector_delete_assessment_target.yaml +++ b/actions/inspector_delete_assessment_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_delete_assessment_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_assessment_target immutable: true diff --git a/actions/inspector_delete_assessment_template.yaml b/actions/inspector_delete_assessment_template.yaml index e97b88eb..1413eda0 100644 --- a/actions/inspector_delete_assessment_template.yaml +++ b/actions/inspector_delete_assessment_template.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_delete_assessment_template runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_assessment_template immutable: true diff --git a/actions/inspector_describe_assessment_runs.yaml b/actions/inspector_describe_assessment_runs.yaml index 5159f181..55d4b408 100644 --- a/actions/inspector_describe_assessment_runs.yaml +++ b/actions/inspector_describe_assessment_runs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_describe_assessment_runs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_assessment_runs immutable: true diff --git a/actions/inspector_describe_assessment_targets.yaml b/actions/inspector_describe_assessment_targets.yaml index 17f35c2d..85030e56 100644 --- a/actions/inspector_describe_assessment_targets.yaml +++ b/actions/inspector_describe_assessment_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_describe_assessment_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_assessment_targets immutable: true diff --git a/actions/inspector_describe_assessment_templates.yaml b/actions/inspector_describe_assessment_templates.yaml index 7b1dbefa..6b50e3da 100644 --- a/actions/inspector_describe_assessment_templates.yaml +++ b/actions/inspector_describe_assessment_templates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_describe_assessment_templates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_assessment_templates immutable: true diff --git a/actions/inspector_describe_findings.yaml b/actions/inspector_describe_findings.yaml index 44c1a52f..4484ac3d 100644 --- a/actions/inspector_describe_findings.yaml +++ b/actions/inspector_describe_findings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_describe_findings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_findings immutable: true diff --git a/actions/inspector_describe_resource_groups.yaml b/actions/inspector_describe_resource_groups.yaml index bebb6dfd..54be1f11 100644 --- a/actions/inspector_describe_resource_groups.yaml +++ b/actions/inspector_describe_resource_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_describe_resource_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_resource_groups immutable: true diff --git a/actions/inspector_describe_rules_packages.yaml b/actions/inspector_describe_rules_packages.yaml index fdd35624..8f986656 100644 --- a/actions/inspector_describe_rules_packages.yaml +++ b/actions/inspector_describe_rules_packages.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_describe_rules_packages runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_rules_packages immutable: true diff --git a/actions/inspector_get_assessment_report.yaml b/actions/inspector_get_assessment_report.yaml index 0eaf12c7..f6749db8 100644 --- a/actions/inspector_get_assessment_report.yaml +++ b/actions/inspector_get_assessment_report.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_get_assessment_report runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_assessment_report immutable: true diff --git a/actions/inspector_get_telemetry_metadata.yaml b/actions/inspector_get_telemetry_metadata.yaml index cdaf8a9f..ce5b1af6 100644 --- a/actions/inspector_get_telemetry_metadata.yaml +++ b/actions/inspector_get_telemetry_metadata.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_get_telemetry_metadata runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_telemetry_metadata immutable: true diff --git a/actions/inspector_list_assessment_run_agents.yaml b/actions/inspector_list_assessment_run_agents.yaml index cccf5d92..a387268b 100644 --- a/actions/inspector_list_assessment_run_agents.yaml +++ b/actions/inspector_list_assessment_run_agents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_assessment_run_agents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_assessment_run_agents immutable: true diff --git a/actions/inspector_list_assessment_runs.yaml b/actions/inspector_list_assessment_runs.yaml index 731afc4d..dba30084 100644 --- a/actions/inspector_list_assessment_runs.yaml +++ b/actions/inspector_list_assessment_runs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_assessment_runs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_assessment_runs immutable: true diff --git a/actions/inspector_list_assessment_targets.yaml b/actions/inspector_list_assessment_targets.yaml index b2826f97..98a94421 100644 --- a/actions/inspector_list_assessment_targets.yaml +++ b/actions/inspector_list_assessment_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_assessment_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_assessment_targets immutable: true diff --git a/actions/inspector_list_assessment_templates.yaml b/actions/inspector_list_assessment_templates.yaml index 94c10c96..cf05da31 100644 --- a/actions/inspector_list_assessment_templates.yaml +++ b/actions/inspector_list_assessment_templates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_assessment_templates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_assessment_templates immutable: true diff --git a/actions/inspector_list_event_subscriptions.yaml b/actions/inspector_list_event_subscriptions.yaml index 37a66028..9adf2148 100644 --- a/actions/inspector_list_event_subscriptions.yaml +++ b/actions/inspector_list_event_subscriptions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_event_subscriptions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_event_subscriptions immutable: true diff --git a/actions/inspector_list_findings.yaml b/actions/inspector_list_findings.yaml index a1914c05..81e02a95 100644 --- a/actions/inspector_list_findings.yaml +++ b/actions/inspector_list_findings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_findings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_findings immutable: true diff --git a/actions/inspector_list_rules_packages.yaml b/actions/inspector_list_rules_packages.yaml index 05f20a48..4195867d 100644 --- a/actions/inspector_list_rules_packages.yaml +++ b/actions/inspector_list_rules_packages.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_rules_packages runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rules_packages immutable: true diff --git a/actions/inspector_list_tags_for_resource.yaml b/actions/inspector_list_tags_for_resource.yaml index 1f59af25..c2e816c7 100644 --- a/actions/inspector_list_tags_for_resource.yaml +++ b/actions/inspector_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/inspector_preview_agents.yaml b/actions/inspector_preview_agents.yaml index 5f3fb47c..1a1a16a7 100644 --- a/actions/inspector_preview_agents.yaml +++ b/actions/inspector_preview_agents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_preview_agents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: preview_agents immutable: true diff --git a/actions/inspector_register_cross_account_access_role.yaml b/actions/inspector_register_cross_account_access_role.yaml index ba1e363f..37aa78a8 100644 --- a/actions/inspector_register_cross_account_access_role.yaml +++ b/actions/inspector_register_cross_account_access_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_register_cross_account_access_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_cross_account_access_role immutable: true diff --git a/actions/inspector_remove_attributes_from_findings.yaml b/actions/inspector_remove_attributes_from_findings.yaml index 855d70bb..9f48abc2 100644 --- a/actions/inspector_remove_attributes_from_findings.yaml +++ b/actions/inspector_remove_attributes_from_findings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_remove_attributes_from_findings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_attributes_from_findings immutable: true diff --git a/actions/inspector_set_tags_for_resource.yaml b/actions/inspector_set_tags_for_resource.yaml index a56f5edc..73618d1d 100644 --- a/actions/inspector_set_tags_for_resource.yaml +++ b/actions/inspector_set_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_set_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_tags_for_resource immutable: true diff --git a/actions/inspector_start_assessment_run.yaml b/actions/inspector_start_assessment_run.yaml index c64e54fb..a54ae6fe 100644 --- a/actions/inspector_start_assessment_run.yaml +++ b/actions/inspector_start_assessment_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_start_assessment_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_assessment_run immutable: true diff --git a/actions/inspector_stop_assessment_run.yaml b/actions/inspector_stop_assessment_run.yaml index 452987b8..23cafb69 100644 --- a/actions/inspector_stop_assessment_run.yaml +++ b/actions/inspector_stop_assessment_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_stop_assessment_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_assessment_run immutable: true diff --git a/actions/inspector_subscribe_to_event.yaml b/actions/inspector_subscribe_to_event.yaml index badf3650..92782166 100644 --- a/actions/inspector_subscribe_to_event.yaml +++ b/actions/inspector_subscribe_to_event.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_subscribe_to_event runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: subscribe_to_event immutable: true diff --git a/actions/inspector_unsubscribe_from_event.yaml b/actions/inspector_unsubscribe_from_event.yaml index 67c1b3d1..a4a060ee 100644 --- a/actions/inspector_unsubscribe_from_event.yaml +++ b/actions/inspector_unsubscribe_from_event.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_unsubscribe_from_event runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unsubscribe_from_event immutable: true diff --git a/actions/inspector_update_assessment_target.yaml b/actions/inspector_update_assessment_target.yaml index c112b48f..74975010 100644 --- a/actions/inspector_update_assessment_target.yaml +++ b/actions/inspector_update_assessment_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: inspector_update_assessment_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_assessment_target immutable: true diff --git a/actions/iot-data_delete_thing_shadow.yaml b/actions/iot-data_delete_thing_shadow.yaml index 732580a0..8936e173 100644 --- a/actions/iot-data_delete_thing_shadow.yaml +++ b/actions/iot-data_delete_thing_shadow.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot-data_delete_thing_shadow runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_thing_shadow immutable: true diff --git a/actions/iot-data_get_thing_shadow.yaml b/actions/iot-data_get_thing_shadow.yaml index d82abf2b..19769fbe 100644 --- a/actions/iot-data_get_thing_shadow.yaml +++ b/actions/iot-data_get_thing_shadow.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot-data_get_thing_shadow runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_thing_shadow immutable: true diff --git a/actions/iot-data_publish.yaml b/actions/iot-data_publish.yaml index 5336a623..6b6786a1 100644 --- a/actions/iot-data_publish.yaml +++ b/actions/iot-data_publish.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot-data_publish runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: publish immutable: true diff --git a/actions/iot-data_update_thing_shadow.yaml b/actions/iot-data_update_thing_shadow.yaml index 5d615cb3..3d66ddce 100644 --- a/actions/iot-data_update_thing_shadow.yaml +++ b/actions/iot-data_update_thing_shadow.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot-data_update_thing_shadow runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_thing_shadow immutable: true diff --git a/actions/iot_accept_certificate_transfer.yaml b/actions/iot_accept_certificate_transfer.yaml index 81a8de95..b38f26b9 100644 --- a/actions/iot_accept_certificate_transfer.yaml +++ b/actions/iot_accept_certificate_transfer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_accept_certificate_transfer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: accept_certificate_transfer immutable: true diff --git a/actions/iot_attach_principal_policy.yaml b/actions/iot_attach_principal_policy.yaml index cea08d4c..2a890c89 100644 --- a/actions/iot_attach_principal_policy.yaml +++ b/actions/iot_attach_principal_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_attach_principal_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_principal_policy immutable: true diff --git a/actions/iot_attach_thing_principal.yaml b/actions/iot_attach_thing_principal.yaml index 0cd758f0..e3a6e076 100644 --- a/actions/iot_attach_thing_principal.yaml +++ b/actions/iot_attach_thing_principal.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_attach_thing_principal runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_thing_principal immutable: true diff --git a/actions/iot_cancel_certificate_transfer.yaml b/actions/iot_cancel_certificate_transfer.yaml index 73d12bd3..145ca2aa 100644 --- a/actions/iot_cancel_certificate_transfer.yaml +++ b/actions/iot_cancel_certificate_transfer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_cancel_certificate_transfer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_certificate_transfer immutable: true diff --git a/actions/iot_create_certificate_from_csr.yaml b/actions/iot_create_certificate_from_csr.yaml index 196d8c7b..5d1c11cc 100644 --- a/actions/iot_create_certificate_from_csr.yaml +++ b/actions/iot_create_certificate_from_csr.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_certificate_from_csr runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_certificate_from_csr immutable: true diff --git a/actions/iot_create_keys_and_certificate.yaml b/actions/iot_create_keys_and_certificate.yaml index 5ff1ac52..8631df85 100644 --- a/actions/iot_create_keys_and_certificate.yaml +++ b/actions/iot_create_keys_and_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_keys_and_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_keys_and_certificate immutable: true diff --git a/actions/iot_create_policy.yaml b/actions/iot_create_policy.yaml index 05f9fa20..96edb7bd 100644 --- a/actions/iot_create_policy.yaml +++ b/actions/iot_create_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_policy immutable: true diff --git a/actions/iot_create_policy_version.yaml b/actions/iot_create_policy_version.yaml index 19d139f4..1d9c15e5 100644 --- a/actions/iot_create_policy_version.yaml +++ b/actions/iot_create_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_policy_version immutable: true diff --git a/actions/iot_create_thing.yaml b/actions/iot_create_thing.yaml index 26cb49c7..bddcb313 100644 --- a/actions/iot_create_thing.yaml +++ b/actions/iot_create_thing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_thing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_thing immutable: true diff --git a/actions/iot_create_thing_type.yaml b/actions/iot_create_thing_type.yaml index 0a740e63..91859fcb 100644 --- a/actions/iot_create_thing_type.yaml +++ b/actions/iot_create_thing_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_thing_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_thing_type immutable: true diff --git a/actions/iot_create_topic_rule.yaml b/actions/iot_create_topic_rule.yaml index 91004dc2..c97ea71d 100644 --- a/actions/iot_create_topic_rule.yaml +++ b/actions/iot_create_topic_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_create_topic_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_topic_rule immutable: true diff --git a/actions/iot_delete_ca_certificate.yaml b/actions/iot_delete_ca_certificate.yaml index 5df53cdc..a5a1f303 100644 --- a/actions/iot_delete_ca_certificate.yaml +++ b/actions/iot_delete_ca_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_ca_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_ca_certificate immutable: true diff --git a/actions/iot_delete_certificate.yaml b/actions/iot_delete_certificate.yaml index 88aea47c..5fe06696 100644 --- a/actions/iot_delete_certificate.yaml +++ b/actions/iot_delete_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_certificate immutable: true diff --git a/actions/iot_delete_policy.yaml b/actions/iot_delete_policy.yaml index 36268f77..8e36a7a4 100644 --- a/actions/iot_delete_policy.yaml +++ b/actions/iot_delete_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_policy immutable: true diff --git a/actions/iot_delete_policy_version.yaml b/actions/iot_delete_policy_version.yaml index ea77c05a..d8ce3fc7 100644 --- a/actions/iot_delete_policy_version.yaml +++ b/actions/iot_delete_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_policy_version immutable: true diff --git a/actions/iot_delete_registration_code.yaml b/actions/iot_delete_registration_code.yaml index 57a1597f..5272527c 100644 --- a/actions/iot_delete_registration_code.yaml +++ b/actions/iot_delete_registration_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_registration_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_registration_code immutable: true diff --git a/actions/iot_delete_thing.yaml b/actions/iot_delete_thing.yaml index 4f1d9b3f..2c17397a 100644 --- a/actions/iot_delete_thing.yaml +++ b/actions/iot_delete_thing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_thing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_thing immutable: true diff --git a/actions/iot_delete_thing_type.yaml b/actions/iot_delete_thing_type.yaml index 5a68ba6d..992d2529 100644 --- a/actions/iot_delete_thing_type.yaml +++ b/actions/iot_delete_thing_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_thing_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_thing_type immutable: true diff --git a/actions/iot_delete_topic_rule.yaml b/actions/iot_delete_topic_rule.yaml index 72b17e1f..5fbdc6d7 100644 --- a/actions/iot_delete_topic_rule.yaml +++ b/actions/iot_delete_topic_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_delete_topic_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_topic_rule immutable: true diff --git a/actions/iot_deprecate_thing_type.yaml b/actions/iot_deprecate_thing_type.yaml index d84d2a29..f9f48e87 100644 --- a/actions/iot_deprecate_thing_type.yaml +++ b/actions/iot_deprecate_thing_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_deprecate_thing_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deprecate_thing_type immutable: true diff --git a/actions/iot_describe_ca_certificate.yaml b/actions/iot_describe_ca_certificate.yaml index 64dd36cc..93b64fbe 100644 --- a/actions/iot_describe_ca_certificate.yaml +++ b/actions/iot_describe_ca_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_describe_ca_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_ca_certificate immutable: true diff --git a/actions/iot_describe_certificate.yaml b/actions/iot_describe_certificate.yaml index 529cbc1f..eb5ca761 100644 --- a/actions/iot_describe_certificate.yaml +++ b/actions/iot_describe_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_describe_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_certificate immutable: true diff --git a/actions/iot_describe_endpoint.yaml b/actions/iot_describe_endpoint.yaml index 8a77e1c9..39bff138 100644 --- a/actions/iot_describe_endpoint.yaml +++ b/actions/iot_describe_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_describe_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_endpoint immutable: true diff --git a/actions/iot_describe_thing.yaml b/actions/iot_describe_thing.yaml index de473dff..a7d2c2c7 100644 --- a/actions/iot_describe_thing.yaml +++ b/actions/iot_describe_thing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_describe_thing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_thing immutable: true diff --git a/actions/iot_describe_thing_type.yaml b/actions/iot_describe_thing_type.yaml index d8d0b0a4..5b2a3d97 100644 --- a/actions/iot_describe_thing_type.yaml +++ b/actions/iot_describe_thing_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_describe_thing_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_thing_type immutable: true diff --git a/actions/iot_detach_principal_policy.yaml b/actions/iot_detach_principal_policy.yaml index 55d8f0fd..ba81903f 100644 --- a/actions/iot_detach_principal_policy.yaml +++ b/actions/iot_detach_principal_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_detach_principal_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_principal_policy immutable: true diff --git a/actions/iot_detach_thing_principal.yaml b/actions/iot_detach_thing_principal.yaml index 917dc16f..d94bd954 100644 --- a/actions/iot_detach_thing_principal.yaml +++ b/actions/iot_detach_thing_principal.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_detach_thing_principal runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_thing_principal immutable: true diff --git a/actions/iot_disable_topic_rule.yaml b/actions/iot_disable_topic_rule.yaml index 6b437b9e..68497753 100644 --- a/actions/iot_disable_topic_rule.yaml +++ b/actions/iot_disable_topic_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_disable_topic_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_topic_rule immutable: true diff --git a/actions/iot_enable_topic_rule.yaml b/actions/iot_enable_topic_rule.yaml index 56808cdb..6764607c 100644 --- a/actions/iot_enable_topic_rule.yaml +++ b/actions/iot_enable_topic_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_enable_topic_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_topic_rule immutable: true diff --git a/actions/iot_get_logging_options.yaml b/actions/iot_get_logging_options.yaml index a65d3d06..9e877bfc 100644 --- a/actions/iot_get_logging_options.yaml +++ b/actions/iot_get_logging_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_get_logging_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_logging_options immutable: true diff --git a/actions/iot_get_policy.yaml b/actions/iot_get_policy.yaml index f6afd30d..253ee9f3 100644 --- a/actions/iot_get_policy.yaml +++ b/actions/iot_get_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_get_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_policy immutable: true diff --git a/actions/iot_get_policy_version.yaml b/actions/iot_get_policy_version.yaml index 3140691d..a86aca6e 100644 --- a/actions/iot_get_policy_version.yaml +++ b/actions/iot_get_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_get_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_policy_version immutable: true diff --git a/actions/iot_get_registration_code.yaml b/actions/iot_get_registration_code.yaml index ae1eb774..23d7c4ed 100644 --- a/actions/iot_get_registration_code.yaml +++ b/actions/iot_get_registration_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_get_registration_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_registration_code immutable: true diff --git a/actions/iot_get_topic_rule.yaml b/actions/iot_get_topic_rule.yaml index 5e8a4e7e..d7fa1174 100644 --- a/actions/iot_get_topic_rule.yaml +++ b/actions/iot_get_topic_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_get_topic_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_topic_rule immutable: true diff --git a/actions/iot_list_ca_certificates.yaml b/actions/iot_list_ca_certificates.yaml index bf87486c..e3e50d7f 100644 --- a/actions/iot_list_ca_certificates.yaml +++ b/actions/iot_list_ca_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_ca_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_ca_certificates immutable: true diff --git a/actions/iot_list_certificates.yaml b/actions/iot_list_certificates.yaml index de88117e..fd1a869f 100644 --- a/actions/iot_list_certificates.yaml +++ b/actions/iot_list_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_certificates immutable: true diff --git a/actions/iot_list_certificates_by_ca.yaml b/actions/iot_list_certificates_by_ca.yaml index 5b675eeb..193d6824 100644 --- a/actions/iot_list_certificates_by_ca.yaml +++ b/actions/iot_list_certificates_by_ca.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_certificates_by_ca runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_certificates_by_ca immutable: true diff --git a/actions/iot_list_outgoing_certificates.yaml b/actions/iot_list_outgoing_certificates.yaml index 9c619b11..45087e73 100644 --- a/actions/iot_list_outgoing_certificates.yaml +++ b/actions/iot_list_outgoing_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_outgoing_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_outgoing_certificates immutable: true diff --git a/actions/iot_list_policies.yaml b/actions/iot_list_policies.yaml index e53bb61c..a5d38fee 100644 --- a/actions/iot_list_policies.yaml +++ b/actions/iot_list_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policies immutable: true diff --git a/actions/iot_list_policy_principals.yaml b/actions/iot_list_policy_principals.yaml index 660301f2..dcc8c870 100644 --- a/actions/iot_list_policy_principals.yaml +++ b/actions/iot_list_policy_principals.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_policy_principals runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policy_principals immutable: true diff --git a/actions/iot_list_policy_versions.yaml b/actions/iot_list_policy_versions.yaml index 6c6193fb..24520519 100644 --- a/actions/iot_list_policy_versions.yaml +++ b/actions/iot_list_policy_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_policy_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policy_versions immutable: true diff --git a/actions/iot_list_principal_policies.yaml b/actions/iot_list_principal_policies.yaml index 9dd7da35..08c94f3d 100644 --- a/actions/iot_list_principal_policies.yaml +++ b/actions/iot_list_principal_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_principal_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_principal_policies immutable: true diff --git a/actions/iot_list_principal_things.yaml b/actions/iot_list_principal_things.yaml index 5af8891d..bbfd8e3e 100644 --- a/actions/iot_list_principal_things.yaml +++ b/actions/iot_list_principal_things.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_principal_things runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_principal_things immutable: true diff --git a/actions/iot_list_thing_principals.yaml b/actions/iot_list_thing_principals.yaml index 20feeb3a..700a84b4 100644 --- a/actions/iot_list_thing_principals.yaml +++ b/actions/iot_list_thing_principals.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_thing_principals runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_thing_principals immutable: true diff --git a/actions/iot_list_thing_types.yaml b/actions/iot_list_thing_types.yaml index e8af2750..688754aa 100644 --- a/actions/iot_list_thing_types.yaml +++ b/actions/iot_list_thing_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_thing_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_thing_types immutable: true diff --git a/actions/iot_list_things.yaml b/actions/iot_list_things.yaml index 76682c6a..e0a8ead1 100644 --- a/actions/iot_list_things.yaml +++ b/actions/iot_list_things.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_things runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_things immutable: true diff --git a/actions/iot_list_topic_rules.yaml b/actions/iot_list_topic_rules.yaml index ab49c8af..f42ec3fa 100644 --- a/actions/iot_list_topic_rules.yaml +++ b/actions/iot_list_topic_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_list_topic_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_topic_rules immutable: true diff --git a/actions/iot_register_ca_certificate.yaml b/actions/iot_register_ca_certificate.yaml index f5f90a11..cfc9ac8a 100644 --- a/actions/iot_register_ca_certificate.yaml +++ b/actions/iot_register_ca_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_register_ca_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_ca_certificate immutable: true diff --git a/actions/iot_register_certificate.yaml b/actions/iot_register_certificate.yaml index c6787e51..6ca6d8af 100644 --- a/actions/iot_register_certificate.yaml +++ b/actions/iot_register_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_register_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_certificate immutable: true diff --git a/actions/iot_reject_certificate_transfer.yaml b/actions/iot_reject_certificate_transfer.yaml index 3634274b..f3c6f04e 100644 --- a/actions/iot_reject_certificate_transfer.yaml +++ b/actions/iot_reject_certificate_transfer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_reject_certificate_transfer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reject_certificate_transfer immutable: true diff --git a/actions/iot_replace_topic_rule.yaml b/actions/iot_replace_topic_rule.yaml index 2941745c..ad91a50c 100644 --- a/actions/iot_replace_topic_rule.yaml +++ b/actions/iot_replace_topic_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_replace_topic_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: replace_topic_rule immutable: true diff --git a/actions/iot_set_default_policy_version.yaml b/actions/iot_set_default_policy_version.yaml index 963c0a7f..0a622da4 100644 --- a/actions/iot_set_default_policy_version.yaml +++ b/actions/iot_set_default_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_set_default_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_default_policy_version immutable: true diff --git a/actions/iot_set_logging_options.yaml b/actions/iot_set_logging_options.yaml index c023a464..cf830127 100644 --- a/actions/iot_set_logging_options.yaml +++ b/actions/iot_set_logging_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_set_logging_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_logging_options immutable: true diff --git a/actions/iot_transfer_certificate.yaml b/actions/iot_transfer_certificate.yaml index 186bb6b5..0db73be5 100644 --- a/actions/iot_transfer_certificate.yaml +++ b/actions/iot_transfer_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_transfer_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: transfer_certificate immutable: true diff --git a/actions/iot_update_ca_certificate.yaml b/actions/iot_update_ca_certificate.yaml index 5d8cfd2c..6d68ab33 100644 --- a/actions/iot_update_ca_certificate.yaml +++ b/actions/iot_update_ca_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_update_ca_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_ca_certificate immutable: true diff --git a/actions/iot_update_certificate.yaml b/actions/iot_update_certificate.yaml index 1d42e940..7216e447 100644 --- a/actions/iot_update_certificate.yaml +++ b/actions/iot_update_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_update_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_certificate immutable: true diff --git a/actions/iot_update_thing.yaml b/actions/iot_update_thing.yaml index a8d014c2..c03a020a 100644 --- a/actions/iot_update_thing.yaml +++ b/actions/iot_update_thing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: iot_update_thing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_thing immutable: true diff --git a/actions/kinesis_add_tags_to_stream.yaml b/actions/kinesis_add_tags_to_stream.yaml index e17b784c..f7f078b3 100644 --- a/actions/kinesis_add_tags_to_stream.yaml +++ b/actions/kinesis_add_tags_to_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_add_tags_to_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_stream immutable: true diff --git a/actions/kinesis_create_stream.yaml b/actions/kinesis_create_stream.yaml index 339dfa9f..0347d9b8 100644 --- a/actions/kinesis_create_stream.yaml +++ b/actions/kinesis_create_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_create_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_stream immutable: true diff --git a/actions/kinesis_decrease_stream_retention_period.yaml b/actions/kinesis_decrease_stream_retention_period.yaml index 34aeca2d..f4ee3d6a 100644 --- a/actions/kinesis_decrease_stream_retention_period.yaml +++ b/actions/kinesis_decrease_stream_retention_period.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_decrease_stream_retention_period runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: decrease_stream_retention_period immutable: true diff --git a/actions/kinesis_delete_stream.yaml b/actions/kinesis_delete_stream.yaml index be1790ec..0c00f322 100644 --- a/actions/kinesis_delete_stream.yaml +++ b/actions/kinesis_delete_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_delete_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_stream immutable: true diff --git a/actions/kinesis_describe_limits.yaml b/actions/kinesis_describe_limits.yaml index 35bd8328..e63446d4 100644 --- a/actions/kinesis_describe_limits.yaml +++ b/actions/kinesis_describe_limits.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_describe_limits runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_limits immutable: true diff --git a/actions/kinesis_describe_stream.yaml b/actions/kinesis_describe_stream.yaml index 6ce9ed91..ac29a510 100644 --- a/actions/kinesis_describe_stream.yaml +++ b/actions/kinesis_describe_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_describe_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stream immutable: true diff --git a/actions/kinesis_disable_enhanced_monitoring.yaml b/actions/kinesis_disable_enhanced_monitoring.yaml index 7fa33766..1589bd89 100644 --- a/actions/kinesis_disable_enhanced_monitoring.yaml +++ b/actions/kinesis_disable_enhanced_monitoring.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_disable_enhanced_monitoring runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_enhanced_monitoring immutable: true diff --git a/actions/kinesis_enable_enhanced_monitoring.yaml b/actions/kinesis_enable_enhanced_monitoring.yaml index 78d114dd..ea686e31 100644 --- a/actions/kinesis_enable_enhanced_monitoring.yaml +++ b/actions/kinesis_enable_enhanced_monitoring.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_enable_enhanced_monitoring runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_enhanced_monitoring immutable: true diff --git a/actions/kinesis_get_records.yaml b/actions/kinesis_get_records.yaml index 9a4f6b19..e4735d11 100644 --- a/actions/kinesis_get_records.yaml +++ b/actions/kinesis_get_records.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_get_records runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_records immutable: true diff --git a/actions/kinesis_get_shard_iterator.yaml b/actions/kinesis_get_shard_iterator.yaml index 76727cd8..037f8c4b 100644 --- a/actions/kinesis_get_shard_iterator.yaml +++ b/actions/kinesis_get_shard_iterator.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_get_shard_iterator runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_shard_iterator immutable: true diff --git a/actions/kinesis_increase_stream_retention_period.yaml b/actions/kinesis_increase_stream_retention_period.yaml index 1d231166..a82f1686 100644 --- a/actions/kinesis_increase_stream_retention_period.yaml +++ b/actions/kinesis_increase_stream_retention_period.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_increase_stream_retention_period runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: increase_stream_retention_period immutable: true diff --git a/actions/kinesis_list_streams.yaml b/actions/kinesis_list_streams.yaml index 8cc973b7..87f8a245 100644 --- a/actions/kinesis_list_streams.yaml +++ b/actions/kinesis_list_streams.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_list_streams runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_streams immutable: true diff --git a/actions/kinesis_list_tags_for_stream.yaml b/actions/kinesis_list_tags_for_stream.yaml index eaf615fb..6e0f2f2b 100644 --- a/actions/kinesis_list_tags_for_stream.yaml +++ b/actions/kinesis_list_tags_for_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_list_tags_for_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_stream immutable: true diff --git a/actions/kinesis_merge_shards.yaml b/actions/kinesis_merge_shards.yaml index 3b113091..5a059b67 100644 --- a/actions/kinesis_merge_shards.yaml +++ b/actions/kinesis_merge_shards.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_merge_shards runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: merge_shards immutable: true diff --git a/actions/kinesis_put_record.yaml b/actions/kinesis_put_record.yaml index 214ffbed..03beb87f 100644 --- a/actions/kinesis_put_record.yaml +++ b/actions/kinesis_put_record.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_put_record runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_record immutable: true diff --git a/actions/kinesis_put_records.yaml b/actions/kinesis_put_records.yaml index 498ac992..21871ff6 100644 --- a/actions/kinesis_put_records.yaml +++ b/actions/kinesis_put_records.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_put_records runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_records immutable: true diff --git a/actions/kinesis_remove_tags_from_stream.yaml b/actions/kinesis_remove_tags_from_stream.yaml index 543954f8..692352f2 100644 --- a/actions/kinesis_remove_tags_from_stream.yaml +++ b/actions/kinesis_remove_tags_from_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_remove_tags_from_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_stream immutable: true diff --git a/actions/kinesis_split_shard.yaml b/actions/kinesis_split_shard.yaml index 80ad1cdf..7e48a609 100644 --- a/actions/kinesis_split_shard.yaml +++ b/actions/kinesis_split_shard.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_split_shard runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: split_shard immutable: true diff --git a/actions/kinesis_update_shard_count.yaml b/actions/kinesis_update_shard_count.yaml index 1bdc54cb..6c9aa80c 100644 --- a/actions/kinesis_update_shard_count.yaml +++ b/actions/kinesis_update_shard_count.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesis_update_shard_count runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_shard_count immutable: true diff --git a/actions/kinesisanalytics_add_application_cloud_watch_logging_option.yaml b/actions/kinesisanalytics_add_application_cloud_watch_logging_option.yaml index 4e4da19b..76132c8c 100644 --- a/actions/kinesisanalytics_add_application_cloud_watch_logging_option.yaml +++ b/actions/kinesisanalytics_add_application_cloud_watch_logging_option.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_add_application_cloud_watch_logging_option runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_application_cloud_watch_logging_option immutable: true diff --git a/actions/kinesisanalytics_add_application_input.yaml b/actions/kinesisanalytics_add_application_input.yaml index f8cb1333..e1f6c0cc 100644 --- a/actions/kinesisanalytics_add_application_input.yaml +++ b/actions/kinesisanalytics_add_application_input.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_add_application_input runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_application_input immutable: true diff --git a/actions/kinesisanalytics_add_application_output.yaml b/actions/kinesisanalytics_add_application_output.yaml index 2402905e..871b0451 100644 --- a/actions/kinesisanalytics_add_application_output.yaml +++ b/actions/kinesisanalytics_add_application_output.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_add_application_output runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_application_output immutable: true diff --git a/actions/kinesisanalytics_add_application_reference_data_source.yaml b/actions/kinesisanalytics_add_application_reference_data_source.yaml index af1dea7a..927f8e68 100644 --- a/actions/kinesisanalytics_add_application_reference_data_source.yaml +++ b/actions/kinesisanalytics_add_application_reference_data_source.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_add_application_reference_data_source runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_application_reference_data_source immutable: true diff --git a/actions/kinesisanalytics_create_application.yaml b/actions/kinesisanalytics_create_application.yaml index 24d6cea4..c8404edc 100644 --- a/actions/kinesisanalytics_create_application.yaml +++ b/actions/kinesisanalytics_create_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_create_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_application immutable: true diff --git a/actions/kinesisanalytics_delete_application.yaml b/actions/kinesisanalytics_delete_application.yaml index 9e4ae831..74c55f4b 100644 --- a/actions/kinesisanalytics_delete_application.yaml +++ b/actions/kinesisanalytics_delete_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_delete_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application immutable: true diff --git a/actions/kinesisanalytics_delete_application_cloud_watch_logging_option.yaml b/actions/kinesisanalytics_delete_application_cloud_watch_logging_option.yaml index 03c7190b..66b7ce64 100644 --- a/actions/kinesisanalytics_delete_application_cloud_watch_logging_option.yaml +++ b/actions/kinesisanalytics_delete_application_cloud_watch_logging_option.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_delete_application_cloud_watch_logging_option runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application_cloud_watch_logging_option immutable: true diff --git a/actions/kinesisanalytics_delete_application_output.yaml b/actions/kinesisanalytics_delete_application_output.yaml index 87d6e198..7db6df3d 100644 --- a/actions/kinesisanalytics_delete_application_output.yaml +++ b/actions/kinesisanalytics_delete_application_output.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_delete_application_output runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application_output immutable: true diff --git a/actions/kinesisanalytics_delete_application_reference_data_source.yaml b/actions/kinesisanalytics_delete_application_reference_data_source.yaml index fcea44e1..f9908397 100644 --- a/actions/kinesisanalytics_delete_application_reference_data_source.yaml +++ b/actions/kinesisanalytics_delete_application_reference_data_source.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_delete_application_reference_data_source runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_application_reference_data_source immutable: true diff --git a/actions/kinesisanalytics_describe_application.yaml b/actions/kinesisanalytics_describe_application.yaml index c6050085..8c4f1f31 100644 --- a/actions/kinesisanalytics_describe_application.yaml +++ b/actions/kinesisanalytics_describe_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_describe_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_application immutable: true diff --git a/actions/kinesisanalytics_discover_input_schema.yaml b/actions/kinesisanalytics_discover_input_schema.yaml index b6ad92bd..6889dfef 100644 --- a/actions/kinesisanalytics_discover_input_schema.yaml +++ b/actions/kinesisanalytics_discover_input_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_discover_input_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: discover_input_schema immutable: true diff --git a/actions/kinesisanalytics_list_applications.yaml b/actions/kinesisanalytics_list_applications.yaml index 3eec8ea2..2bbd6eaa 100644 --- a/actions/kinesisanalytics_list_applications.yaml +++ b/actions/kinesisanalytics_list_applications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_list_applications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_applications immutable: true diff --git a/actions/kinesisanalytics_start_application.yaml b/actions/kinesisanalytics_start_application.yaml index ee8aaecb..0b0bb0fc 100644 --- a/actions/kinesisanalytics_start_application.yaml +++ b/actions/kinesisanalytics_start_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_start_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_application immutable: true diff --git a/actions/kinesisanalytics_stop_application.yaml b/actions/kinesisanalytics_stop_application.yaml index 240b37bc..0ee3f71d 100644 --- a/actions/kinesisanalytics_stop_application.yaml +++ b/actions/kinesisanalytics_stop_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_stop_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_application immutable: true diff --git a/actions/kinesisanalytics_update_application.yaml b/actions/kinesisanalytics_update_application.yaml index 39896a7a..753bfa8f 100644 --- a/actions/kinesisanalytics_update_application.yaml +++ b/actions/kinesisanalytics_update_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kinesisanalytics_update_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application immutable: true diff --git a/actions/kms_cancel_key_deletion.yaml b/actions/kms_cancel_key_deletion.yaml index 3297b464..48201428 100644 --- a/actions/kms_cancel_key_deletion.yaml +++ b/actions/kms_cancel_key_deletion.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_cancel_key_deletion runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_key_deletion immutable: true diff --git a/actions/kms_create_alias.yaml b/actions/kms_create_alias.yaml index 2dd834f3..b5c792d2 100644 --- a/actions/kms_create_alias.yaml +++ b/actions/kms_create_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_create_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_alias immutable: true diff --git a/actions/kms_create_grant.yaml b/actions/kms_create_grant.yaml index b9de0244..a413cd4e 100644 --- a/actions/kms_create_grant.yaml +++ b/actions/kms_create_grant.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_create_grant runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_grant immutable: true diff --git a/actions/kms_create_key.yaml b/actions/kms_create_key.yaml index 7c708d35..3a3515b6 100644 --- a/actions/kms_create_key.yaml +++ b/actions/kms_create_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_create_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_key immutable: true diff --git a/actions/kms_decrypt.yaml b/actions/kms_decrypt.yaml index 715da615..5c343733 100644 --- a/actions/kms_decrypt.yaml +++ b/actions/kms_decrypt.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_decrypt runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: decrypt immutable: true diff --git a/actions/kms_delete_alias.yaml b/actions/kms_delete_alias.yaml index 3ca8cce6..dc331b52 100644 --- a/actions/kms_delete_alias.yaml +++ b/actions/kms_delete_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_delete_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_alias immutable: true diff --git a/actions/kms_delete_imported_key_material.yaml b/actions/kms_delete_imported_key_material.yaml index dc1633fd..bb42bb1f 100644 --- a/actions/kms_delete_imported_key_material.yaml +++ b/actions/kms_delete_imported_key_material.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_delete_imported_key_material runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_imported_key_material immutable: true diff --git a/actions/kms_describe_key.yaml b/actions/kms_describe_key.yaml index 8f2e236c..bc19cbab 100644 --- a/actions/kms_describe_key.yaml +++ b/actions/kms_describe_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_describe_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_key immutable: true diff --git a/actions/kms_disable_key.yaml b/actions/kms_disable_key.yaml index 5589502e..a573c71f 100644 --- a/actions/kms_disable_key.yaml +++ b/actions/kms_disable_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_disable_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_key immutable: true diff --git a/actions/kms_disable_key_rotation.yaml b/actions/kms_disable_key_rotation.yaml index 82bf09af..bca4fb5e 100644 --- a/actions/kms_disable_key_rotation.yaml +++ b/actions/kms_disable_key_rotation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_disable_key_rotation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_key_rotation immutable: true diff --git a/actions/kms_enable_key.yaml b/actions/kms_enable_key.yaml index cb11bece..12960d7c 100644 --- a/actions/kms_enable_key.yaml +++ b/actions/kms_enable_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_enable_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_key immutable: true diff --git a/actions/kms_enable_key_rotation.yaml b/actions/kms_enable_key_rotation.yaml index 015bd5da..3ede7861 100644 --- a/actions/kms_enable_key_rotation.yaml +++ b/actions/kms_enable_key_rotation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_enable_key_rotation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_key_rotation immutable: true diff --git a/actions/kms_encrypt.yaml b/actions/kms_encrypt.yaml index b0ec42c9..98bfc5de 100644 --- a/actions/kms_encrypt.yaml +++ b/actions/kms_encrypt.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_encrypt runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: encrypt immutable: true diff --git a/actions/kms_generate_data_key.yaml b/actions/kms_generate_data_key.yaml index aaf41a33..3489ccf9 100644 --- a/actions/kms_generate_data_key.yaml +++ b/actions/kms_generate_data_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_generate_data_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: generate_data_key immutable: true diff --git a/actions/kms_generate_data_key_without_plaintext.yaml b/actions/kms_generate_data_key_without_plaintext.yaml index 377656a0..feb1e4dc 100644 --- a/actions/kms_generate_data_key_without_plaintext.yaml +++ b/actions/kms_generate_data_key_without_plaintext.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_generate_data_key_without_plaintext runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: generate_data_key_without_plaintext immutable: true diff --git a/actions/kms_generate_random.yaml b/actions/kms_generate_random.yaml index 3f86867d..a9064cf8 100644 --- a/actions/kms_generate_random.yaml +++ b/actions/kms_generate_random.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_generate_random runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: generate_random immutable: true diff --git a/actions/kms_get_key_policy.yaml b/actions/kms_get_key_policy.yaml index 7e4c6fa0..591da2c5 100644 --- a/actions/kms_get_key_policy.yaml +++ b/actions/kms_get_key_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_get_key_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_key_policy immutable: true diff --git a/actions/kms_get_key_rotation_status.yaml b/actions/kms_get_key_rotation_status.yaml index 8d2a1c8a..3b589af5 100644 --- a/actions/kms_get_key_rotation_status.yaml +++ b/actions/kms_get_key_rotation_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_get_key_rotation_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_key_rotation_status immutable: true diff --git a/actions/kms_get_parameters_for_import.yaml b/actions/kms_get_parameters_for_import.yaml index 0342fec8..ee315c19 100644 --- a/actions/kms_get_parameters_for_import.yaml +++ b/actions/kms_get_parameters_for_import.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_get_parameters_for_import runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_parameters_for_import immutable: true diff --git a/actions/kms_import_key_material.yaml b/actions/kms_import_key_material.yaml index 2cfbc5db..0770234d 100644 --- a/actions/kms_import_key_material.yaml +++ b/actions/kms_import_key_material.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_import_key_material runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_key_material immutable: true diff --git a/actions/kms_list_aliases.yaml b/actions/kms_list_aliases.yaml index 8c225c46..2ff4465f 100644 --- a/actions/kms_list_aliases.yaml +++ b/actions/kms_list_aliases.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_list_aliases runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_aliases immutable: true diff --git a/actions/kms_list_grants.yaml b/actions/kms_list_grants.yaml index 41531c0e..5cbe4bda 100644 --- a/actions/kms_list_grants.yaml +++ b/actions/kms_list_grants.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_list_grants runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_grants immutable: true diff --git a/actions/kms_list_key_policies.yaml b/actions/kms_list_key_policies.yaml index d3ff96af..8a5d0d9d 100644 --- a/actions/kms_list_key_policies.yaml +++ b/actions/kms_list_key_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_list_key_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_key_policies immutable: true diff --git a/actions/kms_list_keys.yaml b/actions/kms_list_keys.yaml index bfe8888d..f7edfd4d 100644 --- a/actions/kms_list_keys.yaml +++ b/actions/kms_list_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_list_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_keys immutable: true diff --git a/actions/kms_list_resource_tags.yaml b/actions/kms_list_resource_tags.yaml index f5f24dbb..c6e39834 100644 --- a/actions/kms_list_resource_tags.yaml +++ b/actions/kms_list_resource_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_list_resource_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_resource_tags immutable: true diff --git a/actions/kms_list_retirable_grants.yaml b/actions/kms_list_retirable_grants.yaml index 141f9e94..b11ed9ff 100644 --- a/actions/kms_list_retirable_grants.yaml +++ b/actions/kms_list_retirable_grants.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_list_retirable_grants runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_retirable_grants immutable: true diff --git a/actions/kms_put_key_policy.yaml b/actions/kms_put_key_policy.yaml index b5477b0b..f9e52647 100644 --- a/actions/kms_put_key_policy.yaml +++ b/actions/kms_put_key_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_put_key_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_key_policy immutable: true diff --git a/actions/kms_re_encrypt.yaml b/actions/kms_re_encrypt.yaml index 651ea590..c86f78e0 100644 --- a/actions/kms_re_encrypt.yaml +++ b/actions/kms_re_encrypt.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_re_encrypt runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: re_encrypt immutable: true diff --git a/actions/kms_retire_grant.yaml b/actions/kms_retire_grant.yaml index 1b61676c..f5059d1f 100644 --- a/actions/kms_retire_grant.yaml +++ b/actions/kms_retire_grant.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_retire_grant runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: retire_grant immutable: true diff --git a/actions/kms_revoke_grant.yaml b/actions/kms_revoke_grant.yaml index 2b8cd4f6..2fa1151c 100644 --- a/actions/kms_revoke_grant.yaml +++ b/actions/kms_revoke_grant.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_revoke_grant runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_grant immutable: true diff --git a/actions/kms_schedule_key_deletion.yaml b/actions/kms_schedule_key_deletion.yaml index b2dd7b5c..35801b0a 100644 --- a/actions/kms_schedule_key_deletion.yaml +++ b/actions/kms_schedule_key_deletion.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_schedule_key_deletion runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: schedule_key_deletion immutable: true diff --git a/actions/kms_tag_resource.yaml b/actions/kms_tag_resource.yaml index 521ad509..734a1329 100644 --- a/actions/kms_tag_resource.yaml +++ b/actions/kms_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/kms_untag_resource.yaml b/actions/kms_untag_resource.yaml index cc19a395..a90dd38f 100644 --- a/actions/kms_untag_resource.yaml +++ b/actions/kms_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/kms_update_alias.yaml b/actions/kms_update_alias.yaml index 608cbc60..b4cb1c25 100644 --- a/actions/kms_update_alias.yaml +++ b/actions/kms_update_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_update_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_alias immutable: true diff --git a/actions/kms_update_key_description.yaml b/actions/kms_update_key_description.yaml index e192f352..4fa35a2e 100644 --- a/actions/kms_update_key_description.yaml +++ b/actions/kms_update_key_description.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: kms_update_key_description runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_key_description immutable: true diff --git a/actions/lambda_add_permission.yaml b/actions/lambda_add_permission.yaml index 448dd809..537df2b6 100644 --- a/actions/lambda_add_permission.yaml +++ b/actions/lambda_add_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_add_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_permission immutable: true diff --git a/actions/lambda_create_alias.yaml b/actions/lambda_create_alias.yaml index 927c5ea1..fc7cfa40 100644 --- a/actions/lambda_create_alias.yaml +++ b/actions/lambda_create_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_create_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_alias immutable: true diff --git a/actions/lambda_create_event_source_mapping.yaml b/actions/lambda_create_event_source_mapping.yaml index 672fdeb8..9357fe84 100644 --- a/actions/lambda_create_event_source_mapping.yaml +++ b/actions/lambda_create_event_source_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_create_event_source_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_event_source_mapping immutable: true diff --git a/actions/lambda_create_function.yaml b/actions/lambda_create_function.yaml index 096e451c..4a76c675 100644 --- a/actions/lambda_create_function.yaml +++ b/actions/lambda_create_function.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_create_function runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_function immutable: true diff --git a/actions/lambda_delete_alias.yaml b/actions/lambda_delete_alias.yaml index 862d2bcf..32ebd3a9 100644 --- a/actions/lambda_delete_alias.yaml +++ b/actions/lambda_delete_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_delete_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_alias immutable: true diff --git a/actions/lambda_delete_event_source_mapping.yaml b/actions/lambda_delete_event_source_mapping.yaml index 54746dcd..334be3e3 100644 --- a/actions/lambda_delete_event_source_mapping.yaml +++ b/actions/lambda_delete_event_source_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_delete_event_source_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_event_source_mapping immutable: true diff --git a/actions/lambda_delete_function.yaml b/actions/lambda_delete_function.yaml index ca6abe08..a647cfd4 100644 --- a/actions/lambda_delete_function.yaml +++ b/actions/lambda_delete_function.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_delete_function runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_function immutable: true diff --git a/actions/lambda_get_account_settings.yaml b/actions/lambda_get_account_settings.yaml index 7ecbe80d..33df8241 100644 --- a/actions/lambda_get_account_settings.yaml +++ b/actions/lambda_get_account_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_get_account_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_account_settings immutable: true diff --git a/actions/lambda_get_alias.yaml b/actions/lambda_get_alias.yaml index 0b97820f..ad0f79eb 100644 --- a/actions/lambda_get_alias.yaml +++ b/actions/lambda_get_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_get_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_alias immutable: true diff --git a/actions/lambda_get_event_source_mapping.yaml b/actions/lambda_get_event_source_mapping.yaml index 44d4b521..b764ecd8 100644 --- a/actions/lambda_get_event_source_mapping.yaml +++ b/actions/lambda_get_event_source_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_get_event_source_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_event_source_mapping immutable: true diff --git a/actions/lambda_get_function.yaml b/actions/lambda_get_function.yaml index 9194f77c..50acd63d 100644 --- a/actions/lambda_get_function.yaml +++ b/actions/lambda_get_function.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_get_function runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_function immutable: true diff --git a/actions/lambda_get_function_configuration.yaml b/actions/lambda_get_function_configuration.yaml index 7c9e9519..7e5df981 100644 --- a/actions/lambda_get_function_configuration.yaml +++ b/actions/lambda_get_function_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_get_function_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_function_configuration immutable: true diff --git a/actions/lambda_get_policy.yaml b/actions/lambda_get_policy.yaml index 666b2d39..f9d7ba00 100644 --- a/actions/lambda_get_policy.yaml +++ b/actions/lambda_get_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_get_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_policy immutable: true diff --git a/actions/lambda_invoke.yaml b/actions/lambda_invoke.yaml index 16336226..e6482cef 100644 --- a/actions/lambda_invoke.yaml +++ b/actions/lambda_invoke.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_invoke runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: invoke immutable: true diff --git a/actions/lambda_invoke_async.yaml b/actions/lambda_invoke_async.yaml index e9c9e502..07fb12c1 100644 --- a/actions/lambda_invoke_async.yaml +++ b/actions/lambda_invoke_async.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_invoke_async runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: invoke_async immutable: true diff --git a/actions/lambda_list_aliases.yaml b/actions/lambda_list_aliases.yaml index 6bb62b05..d95c1a81 100644 --- a/actions/lambda_list_aliases.yaml +++ b/actions/lambda_list_aliases.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_list_aliases runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_aliases immutable: true diff --git a/actions/lambda_list_event_source_mappings.yaml b/actions/lambda_list_event_source_mappings.yaml index 8a71be7b..8cc484ef 100644 --- a/actions/lambda_list_event_source_mappings.yaml +++ b/actions/lambda_list_event_source_mappings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_list_event_source_mappings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_event_source_mappings immutable: true diff --git a/actions/lambda_list_functions.yaml b/actions/lambda_list_functions.yaml index 58f8a0dc..f728d140 100644 --- a/actions/lambda_list_functions.yaml +++ b/actions/lambda_list_functions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_list_functions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_functions immutable: true diff --git a/actions/lambda_list_tags.yaml b/actions/lambda_list_tags.yaml index 68ddf7de..bdeb7295 100644 --- a/actions/lambda_list_tags.yaml +++ b/actions/lambda_list_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_list_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags immutable: true diff --git a/actions/lambda_list_versions_by_function.yaml b/actions/lambda_list_versions_by_function.yaml index 2adb8cff..d9a8e142 100644 --- a/actions/lambda_list_versions_by_function.yaml +++ b/actions/lambda_list_versions_by_function.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_list_versions_by_function runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_versions_by_function immutable: true diff --git a/actions/lambda_publish_version.yaml b/actions/lambda_publish_version.yaml index 328a01d7..e1092560 100644 --- a/actions/lambda_publish_version.yaml +++ b/actions/lambda_publish_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_publish_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: publish_version immutable: true diff --git a/actions/lambda_remove_permission.yaml b/actions/lambda_remove_permission.yaml index 800930d4..abc21fc1 100644 --- a/actions/lambda_remove_permission.yaml +++ b/actions/lambda_remove_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_remove_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_permission immutable: true diff --git a/actions/lambda_tag_resource.yaml b/actions/lambda_tag_resource.yaml index 7956b137..923306ae 100644 --- a/actions/lambda_tag_resource.yaml +++ b/actions/lambda_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/lambda_untag_resource.yaml b/actions/lambda_untag_resource.yaml index cafd1161..0a8d32dd 100644 --- a/actions/lambda_untag_resource.yaml +++ b/actions/lambda_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/lambda_update_alias.yaml b/actions/lambda_update_alias.yaml index 6cc95be6..6102e8cb 100644 --- a/actions/lambda_update_alias.yaml +++ b/actions/lambda_update_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_update_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_alias immutable: true diff --git a/actions/lambda_update_event_source_mapping.yaml b/actions/lambda_update_event_source_mapping.yaml index a5ec4883..dd76d0ba 100644 --- a/actions/lambda_update_event_source_mapping.yaml +++ b/actions/lambda_update_event_source_mapping.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_update_event_source_mapping runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_event_source_mapping immutable: true diff --git a/actions/lambda_update_function_code.yaml b/actions/lambda_update_function_code.yaml index 4d067b61..b9590ef7 100644 --- a/actions/lambda_update_function_code.yaml +++ b/actions/lambda_update_function_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_update_function_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_function_code immutable: true diff --git a/actions/lambda_update_function_configuration.yaml b/actions/lambda_update_function_configuration.yaml index 940c7ffd..e5a1f2b5 100644 --- a/actions/lambda_update_function_configuration.yaml +++ b/actions/lambda_update_function_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lambda_update_function_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_function_configuration immutable: true diff --git a/actions/lex-models_create_bot_version.yaml b/actions/lex-models_create_bot_version.yaml index 9e1032b0..3f38cf5a 100644 --- a/actions/lex-models_create_bot_version.yaml +++ b/actions/lex-models_create_bot_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_create_bot_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_bot_version immutable: true diff --git a/actions/lex-models_create_intent_version.yaml b/actions/lex-models_create_intent_version.yaml index 3566c59d..fac39a7e 100644 --- a/actions/lex-models_create_intent_version.yaml +++ b/actions/lex-models_create_intent_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_create_intent_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_intent_version immutable: true diff --git a/actions/lex-models_create_slot_type_version.yaml b/actions/lex-models_create_slot_type_version.yaml index aafed5ab..51093350 100644 --- a/actions/lex-models_create_slot_type_version.yaml +++ b/actions/lex-models_create_slot_type_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_create_slot_type_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_slot_type_version immutable: true diff --git a/actions/lex-models_delete_bot.yaml b/actions/lex-models_delete_bot.yaml index b47543f5..8476372c 100644 --- a/actions/lex-models_delete_bot.yaml +++ b/actions/lex-models_delete_bot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_bot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bot immutable: true diff --git a/actions/lex-models_delete_bot_alias.yaml b/actions/lex-models_delete_bot_alias.yaml index 75719fc6..f45b8ceb 100644 --- a/actions/lex-models_delete_bot_alias.yaml +++ b/actions/lex-models_delete_bot_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_bot_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bot_alias immutable: true diff --git a/actions/lex-models_delete_bot_channel_association.yaml b/actions/lex-models_delete_bot_channel_association.yaml index f2e51a8a..acd210cc 100644 --- a/actions/lex-models_delete_bot_channel_association.yaml +++ b/actions/lex-models_delete_bot_channel_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_bot_channel_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bot_channel_association immutable: true diff --git a/actions/lex-models_delete_bot_version.yaml b/actions/lex-models_delete_bot_version.yaml index 8386456c..7341bfca 100644 --- a/actions/lex-models_delete_bot_version.yaml +++ b/actions/lex-models_delete_bot_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_bot_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bot_version immutable: true diff --git a/actions/lex-models_delete_intent.yaml b/actions/lex-models_delete_intent.yaml index b317b00c..1b6c281c 100644 --- a/actions/lex-models_delete_intent.yaml +++ b/actions/lex-models_delete_intent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_intent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_intent immutable: true diff --git a/actions/lex-models_delete_intent_version.yaml b/actions/lex-models_delete_intent_version.yaml index 80be6cf8..bf1feffe 100644 --- a/actions/lex-models_delete_intent_version.yaml +++ b/actions/lex-models_delete_intent_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_intent_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_intent_version immutable: true diff --git a/actions/lex-models_delete_slot_type.yaml b/actions/lex-models_delete_slot_type.yaml index d07c9ccf..075c0f1b 100644 --- a/actions/lex-models_delete_slot_type.yaml +++ b/actions/lex-models_delete_slot_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_slot_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_slot_type immutable: true diff --git a/actions/lex-models_delete_slot_type_version.yaml b/actions/lex-models_delete_slot_type_version.yaml index 5637b646..b28597c8 100644 --- a/actions/lex-models_delete_slot_type_version.yaml +++ b/actions/lex-models_delete_slot_type_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_slot_type_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_slot_type_version immutable: true diff --git a/actions/lex-models_delete_utterances.yaml b/actions/lex-models_delete_utterances.yaml index 6baa3239..efb3576d 100644 --- a/actions/lex-models_delete_utterances.yaml +++ b/actions/lex-models_delete_utterances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_delete_utterances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_utterances immutable: true diff --git a/actions/lex-models_get_bot.yaml b/actions/lex-models_get_bot.yaml index d330d314..6c34064e 100644 --- a/actions/lex-models_get_bot.yaml +++ b/actions/lex-models_get_bot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bot immutable: true diff --git a/actions/lex-models_get_bot_alias.yaml b/actions/lex-models_get_bot_alias.yaml index 97a7dcca..be43f5c9 100644 --- a/actions/lex-models_get_bot_alias.yaml +++ b/actions/lex-models_get_bot_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bot_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bot_alias immutable: true diff --git a/actions/lex-models_get_bot_aliases.yaml b/actions/lex-models_get_bot_aliases.yaml index 67eb7a48..c4d5698d 100644 --- a/actions/lex-models_get_bot_aliases.yaml +++ b/actions/lex-models_get_bot_aliases.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bot_aliases runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bot_aliases immutable: true diff --git a/actions/lex-models_get_bot_channel_association.yaml b/actions/lex-models_get_bot_channel_association.yaml index 43c4a3c6..53d1b166 100644 --- a/actions/lex-models_get_bot_channel_association.yaml +++ b/actions/lex-models_get_bot_channel_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bot_channel_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bot_channel_association immutable: true diff --git a/actions/lex-models_get_bot_channel_associations.yaml b/actions/lex-models_get_bot_channel_associations.yaml index c6bcef70..0321e7e1 100644 --- a/actions/lex-models_get_bot_channel_associations.yaml +++ b/actions/lex-models_get_bot_channel_associations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bot_channel_associations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bot_channel_associations immutable: true diff --git a/actions/lex-models_get_bot_versions.yaml b/actions/lex-models_get_bot_versions.yaml index 79bd8850..1241a58a 100644 --- a/actions/lex-models_get_bot_versions.yaml +++ b/actions/lex-models_get_bot_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bot_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bot_versions immutable: true diff --git a/actions/lex-models_get_bots.yaml b/actions/lex-models_get_bots.yaml index 015d9875..8b37cb49 100644 --- a/actions/lex-models_get_bots.yaml +++ b/actions/lex-models_get_bots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_bots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bots immutable: true diff --git a/actions/lex-models_get_builtin_intent.yaml b/actions/lex-models_get_builtin_intent.yaml index 20b3e05d..f4de36af 100644 --- a/actions/lex-models_get_builtin_intent.yaml +++ b/actions/lex-models_get_builtin_intent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_builtin_intent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_builtin_intent immutable: true diff --git a/actions/lex-models_get_builtin_intents.yaml b/actions/lex-models_get_builtin_intents.yaml index 0f037f9e..aac62d4c 100644 --- a/actions/lex-models_get_builtin_intents.yaml +++ b/actions/lex-models_get_builtin_intents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_builtin_intents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_builtin_intents immutable: true diff --git a/actions/lex-models_get_builtin_slot_types.yaml b/actions/lex-models_get_builtin_slot_types.yaml index c371b845..f1c53392 100644 --- a/actions/lex-models_get_builtin_slot_types.yaml +++ b/actions/lex-models_get_builtin_slot_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_builtin_slot_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_builtin_slot_types immutable: true diff --git a/actions/lex-models_get_intent.yaml b/actions/lex-models_get_intent.yaml index d4339c7a..6df7534a 100644 --- a/actions/lex-models_get_intent.yaml +++ b/actions/lex-models_get_intent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_intent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_intent immutable: true diff --git a/actions/lex-models_get_intent_versions.yaml b/actions/lex-models_get_intent_versions.yaml index 9814bb98..4585b5da 100644 --- a/actions/lex-models_get_intent_versions.yaml +++ b/actions/lex-models_get_intent_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_intent_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_intent_versions immutable: true diff --git a/actions/lex-models_get_intents.yaml b/actions/lex-models_get_intents.yaml index 527aefc9..bf0b0f70 100644 --- a/actions/lex-models_get_intents.yaml +++ b/actions/lex-models_get_intents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_intents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_intents immutable: true diff --git a/actions/lex-models_get_slot_type.yaml b/actions/lex-models_get_slot_type.yaml index f174facb..1eae4dda 100644 --- a/actions/lex-models_get_slot_type.yaml +++ b/actions/lex-models_get_slot_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_slot_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_slot_type immutable: true diff --git a/actions/lex-models_get_slot_type_versions.yaml b/actions/lex-models_get_slot_type_versions.yaml index 3187ef9e..c777e27e 100644 --- a/actions/lex-models_get_slot_type_versions.yaml +++ b/actions/lex-models_get_slot_type_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_slot_type_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_slot_type_versions immutable: true diff --git a/actions/lex-models_get_slot_types.yaml b/actions/lex-models_get_slot_types.yaml index 76c4ff86..09278a72 100644 --- a/actions/lex-models_get_slot_types.yaml +++ b/actions/lex-models_get_slot_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_slot_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_slot_types immutable: true diff --git a/actions/lex-models_get_utterances_view.yaml b/actions/lex-models_get_utterances_view.yaml index e7aab1fa..9c186660 100644 --- a/actions/lex-models_get_utterances_view.yaml +++ b/actions/lex-models_get_utterances_view.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_get_utterances_view runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_utterances_view immutable: true diff --git a/actions/lex-models_put_bot.yaml b/actions/lex-models_put_bot.yaml index b38a60b3..00856d6c 100644 --- a/actions/lex-models_put_bot.yaml +++ b/actions/lex-models_put_bot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_put_bot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bot immutable: true diff --git a/actions/lex-models_put_bot_alias.yaml b/actions/lex-models_put_bot_alias.yaml index 3ce412cd..d884aa48 100644 --- a/actions/lex-models_put_bot_alias.yaml +++ b/actions/lex-models_put_bot_alias.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_put_bot_alias runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bot_alias immutable: true diff --git a/actions/lex-models_put_intent.yaml b/actions/lex-models_put_intent.yaml index ec4aed8b..e5ed1701 100644 --- a/actions/lex-models_put_intent.yaml +++ b/actions/lex-models_put_intent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_put_intent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_intent immutable: true diff --git a/actions/lex-models_put_slot_type.yaml b/actions/lex-models_put_slot_type.yaml index 8271be17..7f6ca798 100644 --- a/actions/lex-models_put_slot_type.yaml +++ b/actions/lex-models_put_slot_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-models_put_slot_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_slot_type immutable: true diff --git a/actions/lex-runtime_post_content.yaml b/actions/lex-runtime_post_content.yaml index 183bb0e0..62eb0bd8 100644 --- a/actions/lex-runtime_post_content.yaml +++ b/actions/lex-runtime_post_content.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-runtime_post_content runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: post_content immutable: true diff --git a/actions/lex-runtime_post_text.yaml b/actions/lex-runtime_post_text.yaml index 42e284ee..b0c034a0 100644 --- a/actions/lex-runtime_post_text.yaml +++ b/actions/lex-runtime_post_text.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lex-runtime_post_text runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: post_text immutable: true diff --git a/actions/lib/action.py b/actions/lib/action.py index 70bb3fc9..b6f23b9a 100755 --- a/actions/lib/action.py +++ b/actions/lib/action.py @@ -9,6 +9,8 @@ import boto.vpc import boto3 +from boto3.session import Session +from botocore.exceptions import ClientError from st2common.runners.base_action import Action from ec2parsers import ResultSets @@ -59,8 +61,43 @@ def __init__(self, config): if region: self.credentials['region'] = region + self.session = Session(aws_access_key_id=self.credentials['aws_access_key_id'], + aws_secret_access_key=self.credentials['aws_secret_access_key']) + + self.account_id = self.session.client('sts').get_caller_identity().get('Account') + self.cross_roles = { + arn.split(':')[4]: arn for arn in self.config.get('actions', {}).get('roles', []) + } + self.resultsets = ResultSets() + def assume_role(self, account_id): + ''' Assumes role and setup Boto3 session for the cross-account capability''' + if account_id == self.account_id: + return + + try: + assumed_role = self.session.client('sts').assume_role( + RoleArn=self.cross_roles[account_id], + RoleSessionName='StackStormEvents' + ) + except ClientError: + self.logger.error("Failed to assume role as account %s when using the AWS session " + "client. Check the roles configured for the AWS pack and ensure " + "that the '%s' is still valid.", + account_id, self.cross_roles[account_id]) + raise + except KeyError: + self.logger.error("Could not find the role referring %s account in the config file. " + "Please, introduce it in 'aws.yaml' file.", account_id) + raise + + self.credentials.update({ + 'aws_access_key_id': assumed_role["Credentials"]["AccessKeyId"], + 'aws_secret_access_key': assumed_role["Credentials"]["SecretAccessKey"], + 'security_token': assumed_role["Credentials"]["SessionToken"] + }) + def ec2_connect(self): region = self.credentials['region'] del self.credentials['region'] @@ -103,8 +140,15 @@ def split_tags(self, tags): tag_dict[k] = v return tag_dict - def wait_for_state(self, instance_id, state, timeout=10, retries=3): + def wait_for_state(self, instance_id, state, account_id=None, region=None, timeout=10, + retries=3): state_list = {} + + if account_id: + self.assume_role(account_id) + if region: + self.credentials['region'] = region + obj = self.ec2_connect() eventlet.sleep(timeout) instance_list = [] @@ -131,6 +175,12 @@ def wait_for_state(self, instance_id, state, timeout=10, retries=3): def do_method(self, module_path, cls, action, **kwargs): module = importlib.import_module(module_path) + + if 'account_id' in kwargs: + self.assume_role(kwargs.pop('account_id')) + if 'region' in kwargs: + self.credentials['region'] = kwargs.pop('region') + # hack to connect to correct region if cls == 'EC2Connection': obj = self.ec2_connect() diff --git a/actions/lightsail_allocate_static_ip.yaml b/actions/lightsail_allocate_static_ip.yaml index 4d4d31be..37b51283 100644 --- a/actions/lightsail_allocate_static_ip.yaml +++ b/actions/lightsail_allocate_static_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_allocate_static_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: allocate_static_ip immutable: true diff --git a/actions/lightsail_attach_static_ip.yaml b/actions/lightsail_attach_static_ip.yaml index 7bbf5a6d..4c829b3f 100644 --- a/actions/lightsail_attach_static_ip.yaml +++ b/actions/lightsail_attach_static_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_attach_static_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_static_ip immutable: true diff --git a/actions/lightsail_close_instance_public_ports.yaml b/actions/lightsail_close_instance_public_ports.yaml index d707e0e8..9c43c77e 100644 --- a/actions/lightsail_close_instance_public_ports.yaml +++ b/actions/lightsail_close_instance_public_ports.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_close_instance_public_ports runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: close_instance_public_ports immutable: true diff --git a/actions/lightsail_create_domain.yaml b/actions/lightsail_create_domain.yaml index 1dee8a6e..62c3b7ec 100644 --- a/actions/lightsail_create_domain.yaml +++ b/actions/lightsail_create_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_create_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_domain immutable: true diff --git a/actions/lightsail_create_domain_entry.yaml b/actions/lightsail_create_domain_entry.yaml index 4c8f68ae..35b1dbc0 100644 --- a/actions/lightsail_create_domain_entry.yaml +++ b/actions/lightsail_create_domain_entry.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_create_domain_entry runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_domain_entry immutable: true diff --git a/actions/lightsail_create_instance_snapshot.yaml b/actions/lightsail_create_instance_snapshot.yaml index bae193e3..367e1dc0 100644 --- a/actions/lightsail_create_instance_snapshot.yaml +++ b/actions/lightsail_create_instance_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_create_instance_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_instance_snapshot immutable: true diff --git a/actions/lightsail_create_instances.yaml b/actions/lightsail_create_instances.yaml index 73a70712..851b88b1 100644 --- a/actions/lightsail_create_instances.yaml +++ b/actions/lightsail_create_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_create_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_instances immutable: true diff --git a/actions/lightsail_create_instances_from_snapshot.yaml b/actions/lightsail_create_instances_from_snapshot.yaml index 978f7d49..d9979c3f 100644 --- a/actions/lightsail_create_instances_from_snapshot.yaml +++ b/actions/lightsail_create_instances_from_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_create_instances_from_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_instances_from_snapshot immutable: true diff --git a/actions/lightsail_create_key_pair.yaml b/actions/lightsail_create_key_pair.yaml index 89bd0b0b..2fce7dbb 100644 --- a/actions/lightsail_create_key_pair.yaml +++ b/actions/lightsail_create_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_create_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_key_pair immutable: true diff --git a/actions/lightsail_delete_domain.yaml b/actions/lightsail_delete_domain.yaml index 16f9324d..7b949005 100644 --- a/actions/lightsail_delete_domain.yaml +++ b/actions/lightsail_delete_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_delete_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_domain immutable: true diff --git a/actions/lightsail_delete_domain_entry.yaml b/actions/lightsail_delete_domain_entry.yaml index eff99531..5624a2a7 100644 --- a/actions/lightsail_delete_domain_entry.yaml +++ b/actions/lightsail_delete_domain_entry.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_delete_domain_entry runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_domain_entry immutable: true diff --git a/actions/lightsail_delete_instance.yaml b/actions/lightsail_delete_instance.yaml index 8840f9d8..062658eb 100644 --- a/actions/lightsail_delete_instance.yaml +++ b/actions/lightsail_delete_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_delete_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_instance immutable: true diff --git a/actions/lightsail_delete_instance_snapshot.yaml b/actions/lightsail_delete_instance_snapshot.yaml index 99dea2e3..31bdf9a1 100644 --- a/actions/lightsail_delete_instance_snapshot.yaml +++ b/actions/lightsail_delete_instance_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_delete_instance_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_instance_snapshot immutable: true diff --git a/actions/lightsail_delete_key_pair.yaml b/actions/lightsail_delete_key_pair.yaml index 086c3394..97a36d28 100644 --- a/actions/lightsail_delete_key_pair.yaml +++ b/actions/lightsail_delete_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_delete_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_key_pair immutable: true diff --git a/actions/lightsail_detach_static_ip.yaml b/actions/lightsail_detach_static_ip.yaml index eb2e11ad..eddf665c 100644 --- a/actions/lightsail_detach_static_ip.yaml +++ b/actions/lightsail_detach_static_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_detach_static_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_static_ip immutable: true diff --git a/actions/lightsail_download_default_key_pair.yaml b/actions/lightsail_download_default_key_pair.yaml index 109d06af..8bae5cbf 100644 --- a/actions/lightsail_download_default_key_pair.yaml +++ b/actions/lightsail_download_default_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_download_default_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: download_default_key_pair immutable: true diff --git a/actions/lightsail_get_active_names.yaml b/actions/lightsail_get_active_names.yaml index de6b09f7..0d9b74e8 100644 --- a/actions/lightsail_get_active_names.yaml +++ b/actions/lightsail_get_active_names.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_active_names runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_active_names immutable: true diff --git a/actions/lightsail_get_blueprints.yaml b/actions/lightsail_get_blueprints.yaml index 931c95d8..c3c94ffc 100644 --- a/actions/lightsail_get_blueprints.yaml +++ b/actions/lightsail_get_blueprints.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_blueprints runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_blueprints immutable: true diff --git a/actions/lightsail_get_bundles.yaml b/actions/lightsail_get_bundles.yaml index 0121f8d1..b9f51ead 100644 --- a/actions/lightsail_get_bundles.yaml +++ b/actions/lightsail_get_bundles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_bundles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bundles immutable: true diff --git a/actions/lightsail_get_domain.yaml b/actions/lightsail_get_domain.yaml index fe3e4758..4b4b9f7b 100644 --- a/actions/lightsail_get_domain.yaml +++ b/actions/lightsail_get_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_domain immutable: true diff --git a/actions/lightsail_get_domains.yaml b/actions/lightsail_get_domains.yaml index b8c8f011..878f134f 100644 --- a/actions/lightsail_get_domains.yaml +++ b/actions/lightsail_get_domains.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_domains runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_domains immutable: true diff --git a/actions/lightsail_get_instance.yaml b/actions/lightsail_get_instance.yaml index 2f4eeff9..eb867a4b 100644 --- a/actions/lightsail_get_instance.yaml +++ b/actions/lightsail_get_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance immutable: true diff --git a/actions/lightsail_get_instance_access_details.yaml b/actions/lightsail_get_instance_access_details.yaml index 585abb79..ab9aa53b 100644 --- a/actions/lightsail_get_instance_access_details.yaml +++ b/actions/lightsail_get_instance_access_details.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance_access_details runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_access_details immutable: true diff --git a/actions/lightsail_get_instance_metric_data.yaml b/actions/lightsail_get_instance_metric_data.yaml index 00bcad12..fc100b89 100644 --- a/actions/lightsail_get_instance_metric_data.yaml +++ b/actions/lightsail_get_instance_metric_data.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance_metric_data runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_metric_data immutable: true diff --git a/actions/lightsail_get_instance_port_states.yaml b/actions/lightsail_get_instance_port_states.yaml index 02ec41e2..935b7b65 100644 --- a/actions/lightsail_get_instance_port_states.yaml +++ b/actions/lightsail_get_instance_port_states.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance_port_states runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_port_states immutable: true diff --git a/actions/lightsail_get_instance_snapshot.yaml b/actions/lightsail_get_instance_snapshot.yaml index e0babcbb..98a512c0 100644 --- a/actions/lightsail_get_instance_snapshot.yaml +++ b/actions/lightsail_get_instance_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_snapshot immutable: true diff --git a/actions/lightsail_get_instance_snapshots.yaml b/actions/lightsail_get_instance_snapshots.yaml index 99e9b04b..69b2dfe2 100644 --- a/actions/lightsail_get_instance_snapshots.yaml +++ b/actions/lightsail_get_instance_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_snapshots immutable: true diff --git a/actions/lightsail_get_instance_state.yaml b/actions/lightsail_get_instance_state.yaml index f5cf585e..f258073a 100644 --- a/actions/lightsail_get_instance_state.yaml +++ b/actions/lightsail_get_instance_state.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instance_state runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instance_state immutable: true diff --git a/actions/lightsail_get_instances.yaml b/actions/lightsail_get_instances.yaml index 1148b430..c57c145b 100644 --- a/actions/lightsail_get_instances.yaml +++ b/actions/lightsail_get_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_instances immutable: true diff --git a/actions/lightsail_get_key_pair.yaml b/actions/lightsail_get_key_pair.yaml index ba232d46..777b4004 100644 --- a/actions/lightsail_get_key_pair.yaml +++ b/actions/lightsail_get_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_key_pair immutable: true diff --git a/actions/lightsail_get_key_pairs.yaml b/actions/lightsail_get_key_pairs.yaml index 22c898f2..bcc6d3f1 100644 --- a/actions/lightsail_get_key_pairs.yaml +++ b/actions/lightsail_get_key_pairs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_key_pairs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_key_pairs immutable: true diff --git a/actions/lightsail_get_operation.yaml b/actions/lightsail_get_operation.yaml index 7b9f028d..c59d2ac0 100644 --- a/actions/lightsail_get_operation.yaml +++ b/actions/lightsail_get_operation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_operation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_operation immutable: true diff --git a/actions/lightsail_get_operations.yaml b/actions/lightsail_get_operations.yaml index 9d06c93b..f035888a 100644 --- a/actions/lightsail_get_operations.yaml +++ b/actions/lightsail_get_operations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_operations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_operations immutable: true diff --git a/actions/lightsail_get_operations_for_resource.yaml b/actions/lightsail_get_operations_for_resource.yaml index 1c768e1d..e950f226 100644 --- a/actions/lightsail_get_operations_for_resource.yaml +++ b/actions/lightsail_get_operations_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_operations_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_operations_for_resource immutable: true diff --git a/actions/lightsail_get_regions.yaml b/actions/lightsail_get_regions.yaml index 2dccdc59..d4f81704 100644 --- a/actions/lightsail_get_regions.yaml +++ b/actions/lightsail_get_regions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_regions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_regions immutable: true diff --git a/actions/lightsail_get_static_ip.yaml b/actions/lightsail_get_static_ip.yaml index 162cdec3..afee2b70 100644 --- a/actions/lightsail_get_static_ip.yaml +++ b/actions/lightsail_get_static_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_static_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_static_ip immutable: true diff --git a/actions/lightsail_get_static_ips.yaml b/actions/lightsail_get_static_ips.yaml index 826d6def..195741be 100644 --- a/actions/lightsail_get_static_ips.yaml +++ b/actions/lightsail_get_static_ips.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_get_static_ips runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_static_ips immutable: true diff --git a/actions/lightsail_import_key_pair.yaml b/actions/lightsail_import_key_pair.yaml index f9ccd049..ff1eefff 100644 --- a/actions/lightsail_import_key_pair.yaml +++ b/actions/lightsail_import_key_pair.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_import_key_pair runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_key_pair immutable: true diff --git a/actions/lightsail_is_vpc_peered.yaml b/actions/lightsail_is_vpc_peered.yaml index 59865d3c..2f575c09 100644 --- a/actions/lightsail_is_vpc_peered.yaml +++ b/actions/lightsail_is_vpc_peered.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_is_vpc_peered runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: is_vpc_peered immutable: true diff --git a/actions/lightsail_open_instance_public_ports.yaml b/actions/lightsail_open_instance_public_ports.yaml index 02a90122..6c72061b 100644 --- a/actions/lightsail_open_instance_public_ports.yaml +++ b/actions/lightsail_open_instance_public_ports.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_open_instance_public_ports runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: open_instance_public_ports immutable: true diff --git a/actions/lightsail_peer_vpc.yaml b/actions/lightsail_peer_vpc.yaml index 35c483c2..7864eaa7 100644 --- a/actions/lightsail_peer_vpc.yaml +++ b/actions/lightsail_peer_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_peer_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: peer_vpc immutable: true diff --git a/actions/lightsail_put_instance_public_ports.yaml b/actions/lightsail_put_instance_public_ports.yaml index 1e3d3269..75e778c2 100644 --- a/actions/lightsail_put_instance_public_ports.yaml +++ b/actions/lightsail_put_instance_public_ports.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_put_instance_public_ports runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_instance_public_ports immutable: true diff --git a/actions/lightsail_reboot_instance.yaml b/actions/lightsail_reboot_instance.yaml index dd52c123..e029d561 100644 --- a/actions/lightsail_reboot_instance.yaml +++ b/actions/lightsail_reboot_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_reboot_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_instance immutable: true diff --git a/actions/lightsail_release_static_ip.yaml b/actions/lightsail_release_static_ip.yaml index bf0d8c9a..4dd6dd33 100644 --- a/actions/lightsail_release_static_ip.yaml +++ b/actions/lightsail_release_static_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_release_static_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: release_static_ip immutable: true diff --git a/actions/lightsail_start_instance.yaml b/actions/lightsail_start_instance.yaml index 1d46cc44..d2ca0594 100644 --- a/actions/lightsail_start_instance.yaml +++ b/actions/lightsail_start_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_start_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_instance immutable: true diff --git a/actions/lightsail_stop_instance.yaml b/actions/lightsail_stop_instance.yaml index 9d43e740..287f8326 100644 --- a/actions/lightsail_stop_instance.yaml +++ b/actions/lightsail_stop_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_stop_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_instance immutable: true diff --git a/actions/lightsail_unpeer_vpc.yaml b/actions/lightsail_unpeer_vpc.yaml index e67c0ada..979f4f2c 100644 --- a/actions/lightsail_unpeer_vpc.yaml +++ b/actions/lightsail_unpeer_vpc.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_unpeer_vpc runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unpeer_vpc immutable: true diff --git a/actions/lightsail_update_domain_entry.yaml b/actions/lightsail_update_domain_entry.yaml index ed53980e..2666bb32 100644 --- a/actions/lightsail_update_domain_entry.yaml +++ b/actions/lightsail_update_domain_entry.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: lightsail_update_domain_entry runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_domain_entry immutable: true diff --git a/actions/logs_cancel_export_task.yaml b/actions/logs_cancel_export_task.yaml index b4394811..d35e1712 100644 --- a/actions/logs_cancel_export_task.yaml +++ b/actions/logs_cancel_export_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_cancel_export_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_export_task immutable: true diff --git a/actions/logs_create_export_task.yaml b/actions/logs_create_export_task.yaml index 963d73db..131b66cf 100644 --- a/actions/logs_create_export_task.yaml +++ b/actions/logs_create_export_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_create_export_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_export_task immutable: true diff --git a/actions/logs_create_log_group.yaml b/actions/logs_create_log_group.yaml index b6b8a582..1c0d2428 100644 --- a/actions/logs_create_log_group.yaml +++ b/actions/logs_create_log_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_create_log_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_log_group immutable: true diff --git a/actions/logs_create_log_stream.yaml b/actions/logs_create_log_stream.yaml index 1a1af70c..dbdede9f 100644 --- a/actions/logs_create_log_stream.yaml +++ b/actions/logs_create_log_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_create_log_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_log_stream immutable: true diff --git a/actions/logs_delete_destination.yaml b/actions/logs_delete_destination.yaml index b82a7951..d789268a 100644 --- a/actions/logs_delete_destination.yaml +++ b/actions/logs_delete_destination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_delete_destination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_destination immutable: true diff --git a/actions/logs_delete_log_group.yaml b/actions/logs_delete_log_group.yaml index fd7df047..3d56ad85 100644 --- a/actions/logs_delete_log_group.yaml +++ b/actions/logs_delete_log_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_delete_log_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_log_group immutable: true diff --git a/actions/logs_delete_log_stream.yaml b/actions/logs_delete_log_stream.yaml index b1be448c..a3f09775 100644 --- a/actions/logs_delete_log_stream.yaml +++ b/actions/logs_delete_log_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_delete_log_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_log_stream immutable: true diff --git a/actions/logs_delete_metric_filter.yaml b/actions/logs_delete_metric_filter.yaml index 877bfa93..2d51e80e 100644 --- a/actions/logs_delete_metric_filter.yaml +++ b/actions/logs_delete_metric_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_delete_metric_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_metric_filter immutable: true diff --git a/actions/logs_delete_retention_policy.yaml b/actions/logs_delete_retention_policy.yaml index b990048d..612143e3 100644 --- a/actions/logs_delete_retention_policy.yaml +++ b/actions/logs_delete_retention_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_delete_retention_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_retention_policy immutable: true diff --git a/actions/logs_delete_subscription_filter.yaml b/actions/logs_delete_subscription_filter.yaml index e37618b7..71cc3456 100644 --- a/actions/logs_delete_subscription_filter.yaml +++ b/actions/logs_delete_subscription_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_delete_subscription_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_subscription_filter immutable: true diff --git a/actions/logs_describe_destinations.yaml b/actions/logs_describe_destinations.yaml index 9aa5b446..e2c4ef4c 100644 --- a/actions/logs_describe_destinations.yaml +++ b/actions/logs_describe_destinations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_describe_destinations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_destinations immutable: true diff --git a/actions/logs_describe_export_tasks.yaml b/actions/logs_describe_export_tasks.yaml index dec58c0a..37a16a43 100644 --- a/actions/logs_describe_export_tasks.yaml +++ b/actions/logs_describe_export_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_describe_export_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_export_tasks immutable: true diff --git a/actions/logs_describe_log_groups.yaml b/actions/logs_describe_log_groups.yaml index ffd6f528..4dc855af 100644 --- a/actions/logs_describe_log_groups.yaml +++ b/actions/logs_describe_log_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_describe_log_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_log_groups immutable: true diff --git a/actions/logs_describe_log_streams.yaml b/actions/logs_describe_log_streams.yaml index eabe9bb5..f7f79d05 100644 --- a/actions/logs_describe_log_streams.yaml +++ b/actions/logs_describe_log_streams.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_describe_log_streams runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_log_streams immutable: true diff --git a/actions/logs_describe_metric_filters.yaml b/actions/logs_describe_metric_filters.yaml index 0b3e4a0b..3f9b2568 100644 --- a/actions/logs_describe_metric_filters.yaml +++ b/actions/logs_describe_metric_filters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_describe_metric_filters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_metric_filters immutable: true diff --git a/actions/logs_describe_subscription_filters.yaml b/actions/logs_describe_subscription_filters.yaml index 2fcc00e2..7b08ec0d 100644 --- a/actions/logs_describe_subscription_filters.yaml +++ b/actions/logs_describe_subscription_filters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_describe_subscription_filters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_subscription_filters immutable: true diff --git a/actions/logs_filter_log_events.yaml b/actions/logs_filter_log_events.yaml index ad0e66ee..f536566b 100644 --- a/actions/logs_filter_log_events.yaml +++ b/actions/logs_filter_log_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_filter_log_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: filter_log_events immutable: true diff --git a/actions/logs_get_log_events.yaml b/actions/logs_get_log_events.yaml index 8088eeab..b3ca7eef 100644 --- a/actions/logs_get_log_events.yaml +++ b/actions/logs_get_log_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_get_log_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_log_events immutable: true diff --git a/actions/logs_list_tags_log_group.yaml b/actions/logs_list_tags_log_group.yaml index ca24da1f..3a41683d 100644 --- a/actions/logs_list_tags_log_group.yaml +++ b/actions/logs_list_tags_log_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_list_tags_log_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_log_group immutable: true diff --git a/actions/logs_put_destination.yaml b/actions/logs_put_destination.yaml index d1528b9b..5a4575e4 100644 --- a/actions/logs_put_destination.yaml +++ b/actions/logs_put_destination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_put_destination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_destination immutable: true diff --git a/actions/logs_put_destination_policy.yaml b/actions/logs_put_destination_policy.yaml index c5db78f8..ff2f195e 100644 --- a/actions/logs_put_destination_policy.yaml +++ b/actions/logs_put_destination_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_put_destination_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_destination_policy immutable: true diff --git a/actions/logs_put_log_events.yaml b/actions/logs_put_log_events.yaml index f333fe1f..22d6af6b 100644 --- a/actions/logs_put_log_events.yaml +++ b/actions/logs_put_log_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_put_log_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_log_events immutable: true diff --git a/actions/logs_put_metric_filter.yaml b/actions/logs_put_metric_filter.yaml index bfc34510..a7ed1d7b 100644 --- a/actions/logs_put_metric_filter.yaml +++ b/actions/logs_put_metric_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_put_metric_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_metric_filter immutable: true diff --git a/actions/logs_put_retention_policy.yaml b/actions/logs_put_retention_policy.yaml index a642e7e5..ded0531d 100644 --- a/actions/logs_put_retention_policy.yaml +++ b/actions/logs_put_retention_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_put_retention_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_retention_policy immutable: true diff --git a/actions/logs_put_subscription_filter.yaml b/actions/logs_put_subscription_filter.yaml index 4a4811d6..a93f5221 100644 --- a/actions/logs_put_subscription_filter.yaml +++ b/actions/logs_put_subscription_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_put_subscription_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_subscription_filter immutable: true diff --git a/actions/logs_tag_log_group.yaml b/actions/logs_tag_log_group.yaml index eaa43f9b..7915566a 100644 --- a/actions/logs_tag_log_group.yaml +++ b/actions/logs_tag_log_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_tag_log_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_log_group immutable: true diff --git a/actions/logs_test_metric_filter.yaml b/actions/logs_test_metric_filter.yaml index 0e3c78c5..d111e5a5 100644 --- a/actions/logs_test_metric_filter.yaml +++ b/actions/logs_test_metric_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_test_metric_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_metric_filter immutable: true diff --git a/actions/logs_untag_log_group.yaml b/actions/logs_untag_log_group.yaml index fadf275e..407cc340 100644 --- a/actions/logs_untag_log_group.yaml +++ b/actions/logs_untag_log_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: logs_untag_log_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_log_group immutable: true diff --git a/actions/machinelearning_add_tags.yaml b/actions/machinelearning_add_tags.yaml index 34c0488d..d59e6afc 100644 --- a/actions/machinelearning_add_tags.yaml +++ b/actions/machinelearning_add_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_add_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags immutable: true diff --git a/actions/machinelearning_create_batch_prediction.yaml b/actions/machinelearning_create_batch_prediction.yaml index dbc8912b..c36d64a4 100644 --- a/actions/machinelearning_create_batch_prediction.yaml +++ b/actions/machinelearning_create_batch_prediction.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_batch_prediction runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_batch_prediction immutable: true diff --git a/actions/machinelearning_create_data_source_from_rds.yaml b/actions/machinelearning_create_data_source_from_rds.yaml index e218945e..c4354945 100644 --- a/actions/machinelearning_create_data_source_from_rds.yaml +++ b/actions/machinelearning_create_data_source_from_rds.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_data_source_from_rds runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_data_source_from_rds immutable: true diff --git a/actions/machinelearning_create_data_source_from_redshift.yaml b/actions/machinelearning_create_data_source_from_redshift.yaml index 6803d77f..265f38fc 100644 --- a/actions/machinelearning_create_data_source_from_redshift.yaml +++ b/actions/machinelearning_create_data_source_from_redshift.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_data_source_from_redshift runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_data_source_from_redshift immutable: true diff --git a/actions/machinelearning_create_data_source_from_s3.yaml b/actions/machinelearning_create_data_source_from_s3.yaml index 0e8183e7..4af0ebfe 100644 --- a/actions/machinelearning_create_data_source_from_s3.yaml +++ b/actions/machinelearning_create_data_source_from_s3.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_data_source_from_s3 runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_data_source_from_s3 immutable: true diff --git a/actions/machinelearning_create_evaluation.yaml b/actions/machinelearning_create_evaluation.yaml index 4526b0e8..fdc5d525 100644 --- a/actions/machinelearning_create_evaluation.yaml +++ b/actions/machinelearning_create_evaluation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_evaluation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_evaluation immutable: true diff --git a/actions/machinelearning_create_ml_model.yaml b/actions/machinelearning_create_ml_model.yaml index 1b70d406..3480cbb5 100644 --- a/actions/machinelearning_create_ml_model.yaml +++ b/actions/machinelearning_create_ml_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_ml_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_ml_model immutable: true diff --git a/actions/machinelearning_create_realtime_endpoint.yaml b/actions/machinelearning_create_realtime_endpoint.yaml index 49dfb4b8..f2306090 100644 --- a/actions/machinelearning_create_realtime_endpoint.yaml +++ b/actions/machinelearning_create_realtime_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_create_realtime_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_realtime_endpoint immutable: true diff --git a/actions/machinelearning_delete_batch_prediction.yaml b/actions/machinelearning_delete_batch_prediction.yaml index 3ecec66f..b2ae6c7b 100644 --- a/actions/machinelearning_delete_batch_prediction.yaml +++ b/actions/machinelearning_delete_batch_prediction.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_delete_batch_prediction runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_batch_prediction immutable: true diff --git a/actions/machinelearning_delete_data_source.yaml b/actions/machinelearning_delete_data_source.yaml index 48c02d6b..8304aeb2 100644 --- a/actions/machinelearning_delete_data_source.yaml +++ b/actions/machinelearning_delete_data_source.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_delete_data_source runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_data_source immutable: true diff --git a/actions/machinelearning_delete_evaluation.yaml b/actions/machinelearning_delete_evaluation.yaml index d20a0fdf..7537e9bc 100644 --- a/actions/machinelearning_delete_evaluation.yaml +++ b/actions/machinelearning_delete_evaluation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_delete_evaluation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_evaluation immutable: true diff --git a/actions/machinelearning_delete_ml_model.yaml b/actions/machinelearning_delete_ml_model.yaml index c2346752..97518353 100644 --- a/actions/machinelearning_delete_ml_model.yaml +++ b/actions/machinelearning_delete_ml_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_delete_ml_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_ml_model immutable: true diff --git a/actions/machinelearning_delete_realtime_endpoint.yaml b/actions/machinelearning_delete_realtime_endpoint.yaml index cb80a83f..b4a48ce2 100644 --- a/actions/machinelearning_delete_realtime_endpoint.yaml +++ b/actions/machinelearning_delete_realtime_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_delete_realtime_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_realtime_endpoint immutable: true diff --git a/actions/machinelearning_delete_tags.yaml b/actions/machinelearning_delete_tags.yaml index b54fe94d..3b54bb5d 100644 --- a/actions/machinelearning_delete_tags.yaml +++ b/actions/machinelearning_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/machinelearning_describe_batch_predictions.yaml b/actions/machinelearning_describe_batch_predictions.yaml index b97809fe..ffd350a0 100644 --- a/actions/machinelearning_describe_batch_predictions.yaml +++ b/actions/machinelearning_describe_batch_predictions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_describe_batch_predictions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_batch_predictions immutable: true diff --git a/actions/machinelearning_describe_data_sources.yaml b/actions/machinelearning_describe_data_sources.yaml index ab32e6de..a4c43bc7 100644 --- a/actions/machinelearning_describe_data_sources.yaml +++ b/actions/machinelearning_describe_data_sources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_describe_data_sources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_data_sources immutable: true diff --git a/actions/machinelearning_describe_evaluations.yaml b/actions/machinelearning_describe_evaluations.yaml index 27c665ca..7b42c205 100644 --- a/actions/machinelearning_describe_evaluations.yaml +++ b/actions/machinelearning_describe_evaluations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_describe_evaluations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_evaluations immutable: true diff --git a/actions/machinelearning_describe_ml_models.yaml b/actions/machinelearning_describe_ml_models.yaml index 1607ff16..7d3f68d3 100644 --- a/actions/machinelearning_describe_ml_models.yaml +++ b/actions/machinelearning_describe_ml_models.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_describe_ml_models runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_ml_models immutable: true diff --git a/actions/machinelearning_describe_tags.yaml b/actions/machinelearning_describe_tags.yaml index 4fbf4a5a..1a485a03 100644 --- a/actions/machinelearning_describe_tags.yaml +++ b/actions/machinelearning_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/machinelearning_get_batch_prediction.yaml b/actions/machinelearning_get_batch_prediction.yaml index 8626bec6..f82116f8 100644 --- a/actions/machinelearning_get_batch_prediction.yaml +++ b/actions/machinelearning_get_batch_prediction.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_get_batch_prediction runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_batch_prediction immutable: true diff --git a/actions/machinelearning_get_data_source.yaml b/actions/machinelearning_get_data_source.yaml index c0f9a410..4921f7f9 100644 --- a/actions/machinelearning_get_data_source.yaml +++ b/actions/machinelearning_get_data_source.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_get_data_source runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_data_source immutable: true diff --git a/actions/machinelearning_get_evaluation.yaml b/actions/machinelearning_get_evaluation.yaml index 224bfd36..f9fae91c 100644 --- a/actions/machinelearning_get_evaluation.yaml +++ b/actions/machinelearning_get_evaluation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_get_evaluation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_evaluation immutable: true diff --git a/actions/machinelearning_get_ml_model.yaml b/actions/machinelearning_get_ml_model.yaml index 260f834d..52c0ad87 100644 --- a/actions/machinelearning_get_ml_model.yaml +++ b/actions/machinelearning_get_ml_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_get_ml_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_ml_model immutable: true diff --git a/actions/machinelearning_predict.yaml b/actions/machinelearning_predict.yaml index 48ca8b57..48b78338 100644 --- a/actions/machinelearning_predict.yaml +++ b/actions/machinelearning_predict.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_predict runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: predict immutable: true diff --git a/actions/machinelearning_update_batch_prediction.yaml b/actions/machinelearning_update_batch_prediction.yaml index dfaf3fce..833554db 100644 --- a/actions/machinelearning_update_batch_prediction.yaml +++ b/actions/machinelearning_update_batch_prediction.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_update_batch_prediction runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_batch_prediction immutable: true diff --git a/actions/machinelearning_update_data_source.yaml b/actions/machinelearning_update_data_source.yaml index d64bca0d..0362c9cf 100644 --- a/actions/machinelearning_update_data_source.yaml +++ b/actions/machinelearning_update_data_source.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_update_data_source runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_data_source immutable: true diff --git a/actions/machinelearning_update_evaluation.yaml b/actions/machinelearning_update_evaluation.yaml index 82ffbe8c..685b81c1 100644 --- a/actions/machinelearning_update_evaluation.yaml +++ b/actions/machinelearning_update_evaluation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_update_evaluation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_evaluation immutable: true diff --git a/actions/machinelearning_update_ml_model.yaml b/actions/machinelearning_update_ml_model.yaml index 35ca97fd..39bd2e4e 100644 --- a/actions/machinelearning_update_ml_model.yaml +++ b/actions/machinelearning_update_ml_model.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: machinelearning_update_ml_model runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_ml_model immutable: true diff --git a/actions/marketplace-entitlement_get_entitlements.yaml b/actions/marketplace-entitlement_get_entitlements.yaml index 4e5f7b40..0b943e97 100644 --- a/actions/marketplace-entitlement_get_entitlements.yaml +++ b/actions/marketplace-entitlement_get_entitlements.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: marketplace-entitlement_get_entitlements runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_entitlements immutable: true diff --git a/actions/marketplacecommerceanalytics_generate_data_set.yaml b/actions/marketplacecommerceanalytics_generate_data_set.yaml index 17dc4c96..8465f393 100644 --- a/actions/marketplacecommerceanalytics_generate_data_set.yaml +++ b/actions/marketplacecommerceanalytics_generate_data_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: marketplacecommerceanalytics_generate_data_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: generate_data_set immutable: true diff --git a/actions/marketplacecommerceanalytics_start_support_data_export.yaml b/actions/marketplacecommerceanalytics_start_support_data_export.yaml index d1282ba5..fca53a08 100644 --- a/actions/marketplacecommerceanalytics_start_support_data_export.yaml +++ b/actions/marketplacecommerceanalytics_start_support_data_export.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: marketplacecommerceanalytics_start_support_data_export runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_support_data_export immutable: true diff --git a/actions/meteringmarketplace_batch_meter_usage.yaml b/actions/meteringmarketplace_batch_meter_usage.yaml index e6ca5572..5245b309 100644 --- a/actions/meteringmarketplace_batch_meter_usage.yaml +++ b/actions/meteringmarketplace_batch_meter_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: meteringmarketplace_batch_meter_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_meter_usage immutable: true diff --git a/actions/meteringmarketplace_meter_usage.yaml b/actions/meteringmarketplace_meter_usage.yaml index c1af25b5..b8f1b821 100644 --- a/actions/meteringmarketplace_meter_usage.yaml +++ b/actions/meteringmarketplace_meter_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: meteringmarketplace_meter_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: meter_usage immutable: true diff --git a/actions/meteringmarketplace_resolve_customer.yaml b/actions/meteringmarketplace_resolve_customer.yaml index d50b2f71..a7f032b9 100644 --- a/actions/meteringmarketplace_resolve_customer.yaml +++ b/actions/meteringmarketplace_resolve_customer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: meteringmarketplace_resolve_customer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resolve_customer immutable: true diff --git a/actions/mturk_accept_qualification_request.yaml b/actions/mturk_accept_qualification_request.yaml index 33fc2f44..c34596c1 100644 --- a/actions/mturk_accept_qualification_request.yaml +++ b/actions/mturk_accept_qualification_request.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_accept_qualification_request runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: accept_qualification_request immutable: true diff --git a/actions/mturk_approve_assignment.yaml b/actions/mturk_approve_assignment.yaml index b0efbc2b..0246f87f 100644 --- a/actions/mturk_approve_assignment.yaml +++ b/actions/mturk_approve_assignment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_approve_assignment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: approve_assignment immutable: true diff --git a/actions/mturk_associate_qualification_with_worker.yaml b/actions/mturk_associate_qualification_with_worker.yaml index dbb4689f..8e930bd3 100644 --- a/actions/mturk_associate_qualification_with_worker.yaml +++ b/actions/mturk_associate_qualification_with_worker.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_associate_qualification_with_worker runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_qualification_with_worker immutable: true diff --git a/actions/mturk_create_additional_assignments_for_hit.yaml b/actions/mturk_create_additional_assignments_for_hit.yaml index 11be0208..0832566f 100644 --- a/actions/mturk_create_additional_assignments_for_hit.yaml +++ b/actions/mturk_create_additional_assignments_for_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_create_additional_assignments_for_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_additional_assignments_for_hit immutable: true diff --git a/actions/mturk_create_hit.yaml b/actions/mturk_create_hit.yaml index 3c8dbb80..a692ef20 100644 --- a/actions/mturk_create_hit.yaml +++ b/actions/mturk_create_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_create_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hit immutable: true diff --git a/actions/mturk_create_hit_type.yaml b/actions/mturk_create_hit_type.yaml index 95729955..63fe0195 100644 --- a/actions/mturk_create_hit_type.yaml +++ b/actions/mturk_create_hit_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_create_hit_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hit_type immutable: true diff --git a/actions/mturk_create_hit_with_hit_type.yaml b/actions/mturk_create_hit_with_hit_type.yaml index 08b07edc..00300b97 100644 --- a/actions/mturk_create_hit_with_hit_type.yaml +++ b/actions/mturk_create_hit_with_hit_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_create_hit_with_hit_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hit_with_hit_type immutable: true diff --git a/actions/mturk_create_qualification_type.yaml b/actions/mturk_create_qualification_type.yaml index f0b2637b..66932942 100644 --- a/actions/mturk_create_qualification_type.yaml +++ b/actions/mturk_create_qualification_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_create_qualification_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_qualification_type immutable: true diff --git a/actions/mturk_create_worker_block.yaml b/actions/mturk_create_worker_block.yaml index 1213fa56..1c13c521 100644 --- a/actions/mturk_create_worker_block.yaml +++ b/actions/mturk_create_worker_block.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_create_worker_block runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_worker_block immutable: true diff --git a/actions/mturk_delete_hit.yaml b/actions/mturk_delete_hit.yaml index 068d2f86..cc73dd8a 100644 --- a/actions/mturk_delete_hit.yaml +++ b/actions/mturk_delete_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_delete_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_hit immutable: true diff --git a/actions/mturk_delete_qualification_type.yaml b/actions/mturk_delete_qualification_type.yaml index c8be0815..235ef923 100644 --- a/actions/mturk_delete_qualification_type.yaml +++ b/actions/mturk_delete_qualification_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_delete_qualification_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_qualification_type immutable: true diff --git a/actions/mturk_delete_worker_block.yaml b/actions/mturk_delete_worker_block.yaml index 948b3288..99fa6e7a 100644 --- a/actions/mturk_delete_worker_block.yaml +++ b/actions/mturk_delete_worker_block.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_delete_worker_block runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_worker_block immutable: true diff --git a/actions/mturk_disassociate_qualification_from_worker.yaml b/actions/mturk_disassociate_qualification_from_worker.yaml index 8b73463a..bcbbb960 100644 --- a/actions/mturk_disassociate_qualification_from_worker.yaml +++ b/actions/mturk_disassociate_qualification_from_worker.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_disassociate_qualification_from_worker runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_qualification_from_worker immutable: true diff --git a/actions/mturk_get_account_balance.yaml b/actions/mturk_get_account_balance.yaml index ef9398d5..2c3c99e2 100644 --- a/actions/mturk_get_account_balance.yaml +++ b/actions/mturk_get_account_balance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_get_account_balance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_account_balance immutable: true diff --git a/actions/mturk_get_assignment.yaml b/actions/mturk_get_assignment.yaml index 21a23896..b90ab259 100644 --- a/actions/mturk_get_assignment.yaml +++ b/actions/mturk_get_assignment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_get_assignment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_assignment immutable: true diff --git a/actions/mturk_get_file_upload_url.yaml b/actions/mturk_get_file_upload_url.yaml index 98cd53ee..32aed715 100644 --- a/actions/mturk_get_file_upload_url.yaml +++ b/actions/mturk_get_file_upload_url.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_get_file_upload_url runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_file_upload_url immutable: true diff --git a/actions/mturk_get_hit.yaml b/actions/mturk_get_hit.yaml index 24a73b02..68b4e245 100644 --- a/actions/mturk_get_hit.yaml +++ b/actions/mturk_get_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_get_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_hit immutable: true diff --git a/actions/mturk_get_qualification_score.yaml b/actions/mturk_get_qualification_score.yaml index f17e9b3f..f5186c8a 100644 --- a/actions/mturk_get_qualification_score.yaml +++ b/actions/mturk_get_qualification_score.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_get_qualification_score runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_qualification_score immutable: true diff --git a/actions/mturk_get_qualification_type.yaml b/actions/mturk_get_qualification_type.yaml index acfee2a7..ba043f26 100644 --- a/actions/mturk_get_qualification_type.yaml +++ b/actions/mturk_get_qualification_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_get_qualification_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_qualification_type immutable: true diff --git a/actions/mturk_list_assignments_for_hit.yaml b/actions/mturk_list_assignments_for_hit.yaml index 5a573c9f..b0e238c4 100644 --- a/actions/mturk_list_assignments_for_hit.yaml +++ b/actions/mturk_list_assignments_for_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_assignments_for_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_assignments_for_hit immutable: true diff --git a/actions/mturk_list_bonus_payments.yaml b/actions/mturk_list_bonus_payments.yaml index 071b3151..946b2849 100644 --- a/actions/mturk_list_bonus_payments.yaml +++ b/actions/mturk_list_bonus_payments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_bonus_payments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_bonus_payments immutable: true diff --git a/actions/mturk_list_hi_ts.yaml b/actions/mturk_list_hi_ts.yaml index e9ba3771..9abb5f52 100644 --- a/actions/mturk_list_hi_ts.yaml +++ b/actions/mturk_list_hi_ts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_hi_ts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_hi_ts immutable: true diff --git a/actions/mturk_list_hi_ts_for_qualification_type.yaml b/actions/mturk_list_hi_ts_for_qualification_type.yaml index decc526e..242d15ad 100644 --- a/actions/mturk_list_hi_ts_for_qualification_type.yaml +++ b/actions/mturk_list_hi_ts_for_qualification_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_hi_ts_for_qualification_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_hi_ts_for_qualification_type immutable: true diff --git a/actions/mturk_list_qualification_requests.yaml b/actions/mturk_list_qualification_requests.yaml index 039ed93c..8792bc3e 100644 --- a/actions/mturk_list_qualification_requests.yaml +++ b/actions/mturk_list_qualification_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_qualification_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_qualification_requests immutable: true diff --git a/actions/mturk_list_qualification_types.yaml b/actions/mturk_list_qualification_types.yaml index 14e243a0..bcab0354 100644 --- a/actions/mturk_list_qualification_types.yaml +++ b/actions/mturk_list_qualification_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_qualification_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_qualification_types immutable: true diff --git a/actions/mturk_list_review_policy_results_for_hit.yaml b/actions/mturk_list_review_policy_results_for_hit.yaml index 4def7d87..e778b75a 100644 --- a/actions/mturk_list_review_policy_results_for_hit.yaml +++ b/actions/mturk_list_review_policy_results_for_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_review_policy_results_for_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_review_policy_results_for_hit immutable: true diff --git a/actions/mturk_list_reviewable_hi_ts.yaml b/actions/mturk_list_reviewable_hi_ts.yaml index 566f453e..a59eeb63 100644 --- a/actions/mturk_list_reviewable_hi_ts.yaml +++ b/actions/mturk_list_reviewable_hi_ts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_reviewable_hi_ts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_reviewable_hi_ts immutable: true diff --git a/actions/mturk_list_worker_blocks.yaml b/actions/mturk_list_worker_blocks.yaml index b2d086e3..c18663ca 100644 --- a/actions/mturk_list_worker_blocks.yaml +++ b/actions/mturk_list_worker_blocks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_worker_blocks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_worker_blocks immutable: true diff --git a/actions/mturk_list_workers_with_qualification_type.yaml b/actions/mturk_list_workers_with_qualification_type.yaml index 95f6d448..72755433 100644 --- a/actions/mturk_list_workers_with_qualification_type.yaml +++ b/actions/mturk_list_workers_with_qualification_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_list_workers_with_qualification_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_workers_with_qualification_type immutable: true diff --git a/actions/mturk_notify_workers.yaml b/actions/mturk_notify_workers.yaml index 79a2093b..3fac3ddf 100644 --- a/actions/mturk_notify_workers.yaml +++ b/actions/mturk_notify_workers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_notify_workers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: notify_workers immutable: true diff --git a/actions/mturk_reject_assignment.yaml b/actions/mturk_reject_assignment.yaml index 64ff9f9c..17091c7e 100644 --- a/actions/mturk_reject_assignment.yaml +++ b/actions/mturk_reject_assignment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_reject_assignment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reject_assignment immutable: true diff --git a/actions/mturk_reject_qualification_request.yaml b/actions/mturk_reject_qualification_request.yaml index b9d72fb0..69d2f5e2 100644 --- a/actions/mturk_reject_qualification_request.yaml +++ b/actions/mturk_reject_qualification_request.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_reject_qualification_request runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reject_qualification_request immutable: true diff --git a/actions/mturk_send_bonus.yaml b/actions/mturk_send_bonus.yaml index 94cda746..d01eeb64 100644 --- a/actions/mturk_send_bonus.yaml +++ b/actions/mturk_send_bonus.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_send_bonus runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_bonus immutable: true diff --git a/actions/mturk_send_test_event_notification.yaml b/actions/mturk_send_test_event_notification.yaml index 7f412ea3..6dc1bb8c 100644 --- a/actions/mturk_send_test_event_notification.yaml +++ b/actions/mturk_send_test_event_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_send_test_event_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_test_event_notification immutable: true diff --git a/actions/mturk_update_expiration_for_hit.yaml b/actions/mturk_update_expiration_for_hit.yaml index 75ac6829..0b9a03fc 100644 --- a/actions/mturk_update_expiration_for_hit.yaml +++ b/actions/mturk_update_expiration_for_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_update_expiration_for_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_expiration_for_hit immutable: true diff --git a/actions/mturk_update_hit_review_status.yaml b/actions/mturk_update_hit_review_status.yaml index 667c3c8b..383fe60f 100644 --- a/actions/mturk_update_hit_review_status.yaml +++ b/actions/mturk_update_hit_review_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_update_hit_review_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_hit_review_status immutable: true diff --git a/actions/mturk_update_hit_type_of_hit.yaml b/actions/mturk_update_hit_type_of_hit.yaml index 29a7aa75..61d7d1e1 100644 --- a/actions/mturk_update_hit_type_of_hit.yaml +++ b/actions/mturk_update_hit_type_of_hit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_update_hit_type_of_hit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_hit_type_of_hit immutable: true diff --git a/actions/mturk_update_notification_settings.yaml b/actions/mturk_update_notification_settings.yaml index d3796ea6..f20ac1e0 100644 --- a/actions/mturk_update_notification_settings.yaml +++ b/actions/mturk_update_notification_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_update_notification_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_notification_settings immutable: true diff --git a/actions/mturk_update_qualification_type.yaml b/actions/mturk_update_qualification_type.yaml index 072b2a3b..a612936e 100644 --- a/actions/mturk_update_qualification_type.yaml +++ b/actions/mturk_update_qualification_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: mturk_update_qualification_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_qualification_type immutable: true diff --git a/actions/opsworks_assign_instance.yaml b/actions/opsworks_assign_instance.yaml index c69daf3c..f2cf7823 100644 --- a/actions/opsworks_assign_instance.yaml +++ b/actions/opsworks_assign_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_assign_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assign_instance immutable: true diff --git a/actions/opsworks_assign_volume.yaml b/actions/opsworks_assign_volume.yaml index 9c3f8e0e..8f935cbf 100644 --- a/actions/opsworks_assign_volume.yaml +++ b/actions/opsworks_assign_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_assign_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assign_volume immutable: true diff --git a/actions/opsworks_associate_elastic_ip.yaml b/actions/opsworks_associate_elastic_ip.yaml index 927b15b3..6aaa3d54 100644 --- a/actions/opsworks_associate_elastic_ip.yaml +++ b/actions/opsworks_associate_elastic_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_associate_elastic_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_elastic_ip immutable: true diff --git a/actions/opsworks_attach_elastic_load_balancer.yaml b/actions/opsworks_attach_elastic_load_balancer.yaml index adf63ca5..e419c326 100644 --- a/actions/opsworks_attach_elastic_load_balancer.yaml +++ b/actions/opsworks_attach_elastic_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_attach_elastic_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_elastic_load_balancer immutable: true diff --git a/actions/opsworks_clone_stack.yaml b/actions/opsworks_clone_stack.yaml index a3dce5d9..8c1d849b 100644 --- a/actions/opsworks_clone_stack.yaml +++ b/actions/opsworks_clone_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_clone_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: clone_stack immutable: true diff --git a/actions/opsworks_create_app.yaml b/actions/opsworks_create_app.yaml index 5f877bb1..8da475ac 100644 --- a/actions/opsworks_create_app.yaml +++ b/actions/opsworks_create_app.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_create_app runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_app immutable: true diff --git a/actions/opsworks_create_deployment.yaml b/actions/opsworks_create_deployment.yaml index c5b22f11..d1fbb5ec 100644 --- a/actions/opsworks_create_deployment.yaml +++ b/actions/opsworks_create_deployment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_create_deployment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_deployment immutable: true diff --git a/actions/opsworks_create_instance.yaml b/actions/opsworks_create_instance.yaml index 4e6957d4..aec5d172 100644 --- a/actions/opsworks_create_instance.yaml +++ b/actions/opsworks_create_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_create_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_instance immutable: true diff --git a/actions/opsworks_create_layer.yaml b/actions/opsworks_create_layer.yaml index d77e9101..1c721980 100644 --- a/actions/opsworks_create_layer.yaml +++ b/actions/opsworks_create_layer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_create_layer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_layer immutable: true diff --git a/actions/opsworks_create_stack.yaml b/actions/opsworks_create_stack.yaml index 0ef681e1..002aa528 100644 --- a/actions/opsworks_create_stack.yaml +++ b/actions/opsworks_create_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_create_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_stack immutable: true diff --git a/actions/opsworks_create_user_profile.yaml b/actions/opsworks_create_user_profile.yaml index d1037ff0..15687906 100644 --- a/actions/opsworks_create_user_profile.yaml +++ b/actions/opsworks_create_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_create_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user_profile immutable: true diff --git a/actions/opsworks_delete_app.yaml b/actions/opsworks_delete_app.yaml index ec78d93a..a8d79869 100644 --- a/actions/opsworks_delete_app.yaml +++ b/actions/opsworks_delete_app.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_delete_app runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_app immutable: true diff --git a/actions/opsworks_delete_instance.yaml b/actions/opsworks_delete_instance.yaml index b4745c8a..58422eda 100644 --- a/actions/opsworks_delete_instance.yaml +++ b/actions/opsworks_delete_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_delete_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_instance immutable: true diff --git a/actions/opsworks_delete_layer.yaml b/actions/opsworks_delete_layer.yaml index 419ec5ca..4282f6c5 100644 --- a/actions/opsworks_delete_layer.yaml +++ b/actions/opsworks_delete_layer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_delete_layer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_layer immutable: true diff --git a/actions/opsworks_delete_stack.yaml b/actions/opsworks_delete_stack.yaml index 07bda138..7a3aed08 100644 --- a/actions/opsworks_delete_stack.yaml +++ b/actions/opsworks_delete_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_delete_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_stack immutable: true diff --git a/actions/opsworks_delete_user_profile.yaml b/actions/opsworks_delete_user_profile.yaml index fe997e4e..91e65d9c 100644 --- a/actions/opsworks_delete_user_profile.yaml +++ b/actions/opsworks_delete_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_delete_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user_profile immutable: true diff --git a/actions/opsworks_deregister_ecs_cluster.yaml b/actions/opsworks_deregister_ecs_cluster.yaml index 3d499a59..613d9ca7 100644 --- a/actions/opsworks_deregister_ecs_cluster.yaml +++ b/actions/opsworks_deregister_ecs_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_deregister_ecs_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_ecs_cluster immutable: true diff --git a/actions/opsworks_deregister_elastic_ip.yaml b/actions/opsworks_deregister_elastic_ip.yaml index 609609be..be8cad67 100644 --- a/actions/opsworks_deregister_elastic_ip.yaml +++ b/actions/opsworks_deregister_elastic_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_deregister_elastic_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_elastic_ip immutable: true diff --git a/actions/opsworks_deregister_instance.yaml b/actions/opsworks_deregister_instance.yaml index b2b6bc98..1c924e19 100644 --- a/actions/opsworks_deregister_instance.yaml +++ b/actions/opsworks_deregister_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_deregister_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_instance immutable: true diff --git a/actions/opsworks_deregister_rds_db_instance.yaml b/actions/opsworks_deregister_rds_db_instance.yaml index d13f87f4..80076c3a 100644 --- a/actions/opsworks_deregister_rds_db_instance.yaml +++ b/actions/opsworks_deregister_rds_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_deregister_rds_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_rds_db_instance immutable: true diff --git a/actions/opsworks_deregister_volume.yaml b/actions/opsworks_deregister_volume.yaml index ca7379f3..c2e77987 100644 --- a/actions/opsworks_deregister_volume.yaml +++ b/actions/opsworks_deregister_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_deregister_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_volume immutable: true diff --git a/actions/opsworks_describe_agent_versions.yaml b/actions/opsworks_describe_agent_versions.yaml index 459b52de..51d0a9f0 100644 --- a/actions/opsworks_describe_agent_versions.yaml +++ b/actions/opsworks_describe_agent_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_agent_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_agent_versions immutable: true diff --git a/actions/opsworks_describe_apps.yaml b/actions/opsworks_describe_apps.yaml index 2d1e99ad..760f9e50 100644 --- a/actions/opsworks_describe_apps.yaml +++ b/actions/opsworks_describe_apps.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_apps runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_apps immutable: true diff --git a/actions/opsworks_describe_commands.yaml b/actions/opsworks_describe_commands.yaml index 275aeedd..c4898cc6 100644 --- a/actions/opsworks_describe_commands.yaml +++ b/actions/opsworks_describe_commands.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_commands runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_commands immutable: true diff --git a/actions/opsworks_describe_deployments.yaml b/actions/opsworks_describe_deployments.yaml index c1a64d31..f151bd3f 100644 --- a/actions/opsworks_describe_deployments.yaml +++ b/actions/opsworks_describe_deployments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_deployments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_deployments immutable: true diff --git a/actions/opsworks_describe_ecs_clusters.yaml b/actions/opsworks_describe_ecs_clusters.yaml index 1790111e..b8da4c02 100644 --- a/actions/opsworks_describe_ecs_clusters.yaml +++ b/actions/opsworks_describe_ecs_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_ecs_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_ecs_clusters immutable: true diff --git a/actions/opsworks_describe_elastic_ips.yaml b/actions/opsworks_describe_elastic_ips.yaml index f2679413..da04e761 100644 --- a/actions/opsworks_describe_elastic_ips.yaml +++ b/actions/opsworks_describe_elastic_ips.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_elastic_ips runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_elastic_ips immutable: true diff --git a/actions/opsworks_describe_elastic_load_balancers.yaml b/actions/opsworks_describe_elastic_load_balancers.yaml index e13fc31c..98c59955 100644 --- a/actions/opsworks_describe_elastic_load_balancers.yaml +++ b/actions/opsworks_describe_elastic_load_balancers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_elastic_load_balancers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_elastic_load_balancers immutable: true diff --git a/actions/opsworks_describe_instances.yaml b/actions/opsworks_describe_instances.yaml index faf48073..43ab5839 100644 --- a/actions/opsworks_describe_instances.yaml +++ b/actions/opsworks_describe_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instances immutable: true diff --git a/actions/opsworks_describe_layers.yaml b/actions/opsworks_describe_layers.yaml index 7f7b38d3..04ebe455 100644 --- a/actions/opsworks_describe_layers.yaml +++ b/actions/opsworks_describe_layers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_layers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_layers immutable: true diff --git a/actions/opsworks_describe_load_based_auto_scaling.yaml b/actions/opsworks_describe_load_based_auto_scaling.yaml index 913ba439..c5a98c15 100644 --- a/actions/opsworks_describe_load_based_auto_scaling.yaml +++ b/actions/opsworks_describe_load_based_auto_scaling.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_load_based_auto_scaling runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_load_based_auto_scaling immutable: true diff --git a/actions/opsworks_describe_permissions.yaml b/actions/opsworks_describe_permissions.yaml index c36ebbd8..10c8245a 100644 --- a/actions/opsworks_describe_permissions.yaml +++ b/actions/opsworks_describe_permissions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_permissions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_permissions immutable: true diff --git a/actions/opsworks_describe_raid_arrays.yaml b/actions/opsworks_describe_raid_arrays.yaml index 4ff02f60..bba3e248 100644 --- a/actions/opsworks_describe_raid_arrays.yaml +++ b/actions/opsworks_describe_raid_arrays.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_raid_arrays runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_raid_arrays immutable: true diff --git a/actions/opsworks_describe_rds_db_instances.yaml b/actions/opsworks_describe_rds_db_instances.yaml index 9a187a0e..8809692b 100644 --- a/actions/opsworks_describe_rds_db_instances.yaml +++ b/actions/opsworks_describe_rds_db_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_rds_db_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_rds_db_instances immutable: true diff --git a/actions/opsworks_describe_service_errors.yaml b/actions/opsworks_describe_service_errors.yaml index 7ee2a9fd..20ad88d8 100644 --- a/actions/opsworks_describe_service_errors.yaml +++ b/actions/opsworks_describe_service_errors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_service_errors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_service_errors immutable: true diff --git a/actions/opsworks_describe_stack_provisioning_parameters.yaml b/actions/opsworks_describe_stack_provisioning_parameters.yaml index 0a1226cc..cafa3d98 100644 --- a/actions/opsworks_describe_stack_provisioning_parameters.yaml +++ b/actions/opsworks_describe_stack_provisioning_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_stack_provisioning_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_provisioning_parameters immutable: true diff --git a/actions/opsworks_describe_stack_summary.yaml b/actions/opsworks_describe_stack_summary.yaml index 06adff68..3e74f53d 100644 --- a/actions/opsworks_describe_stack_summary.yaml +++ b/actions/opsworks_describe_stack_summary.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_stack_summary runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stack_summary immutable: true diff --git a/actions/opsworks_describe_stacks.yaml b/actions/opsworks_describe_stacks.yaml index 981489ed..b9ab560e 100644 --- a/actions/opsworks_describe_stacks.yaml +++ b/actions/opsworks_describe_stacks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_stacks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_stacks immutable: true diff --git a/actions/opsworks_describe_time_based_auto_scaling.yaml b/actions/opsworks_describe_time_based_auto_scaling.yaml index ef090b88..2d5c103b 100644 --- a/actions/opsworks_describe_time_based_auto_scaling.yaml +++ b/actions/opsworks_describe_time_based_auto_scaling.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_time_based_auto_scaling runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_time_based_auto_scaling immutable: true diff --git a/actions/opsworks_describe_user_profiles.yaml b/actions/opsworks_describe_user_profiles.yaml index 385fd350..1efafe3d 100644 --- a/actions/opsworks_describe_user_profiles.yaml +++ b/actions/opsworks_describe_user_profiles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_user_profiles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_user_profiles immutable: true diff --git a/actions/opsworks_describe_volumes.yaml b/actions/opsworks_describe_volumes.yaml index 4f843ea9..91ece2bf 100644 --- a/actions/opsworks_describe_volumes.yaml +++ b/actions/opsworks_describe_volumes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_describe_volumes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_volumes immutable: true diff --git a/actions/opsworks_detach_elastic_load_balancer.yaml b/actions/opsworks_detach_elastic_load_balancer.yaml index cee3cb5f..dc552bc0 100644 --- a/actions/opsworks_detach_elastic_load_balancer.yaml +++ b/actions/opsworks_detach_elastic_load_balancer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_detach_elastic_load_balancer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_elastic_load_balancer immutable: true diff --git a/actions/opsworks_disassociate_elastic_ip.yaml b/actions/opsworks_disassociate_elastic_ip.yaml index bb8736f8..b60c9d7e 100644 --- a/actions/opsworks_disassociate_elastic_ip.yaml +++ b/actions/opsworks_disassociate_elastic_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_disassociate_elastic_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_elastic_ip immutable: true diff --git a/actions/opsworks_get_hostname_suggestion.yaml b/actions/opsworks_get_hostname_suggestion.yaml index ca22c498..c5d9d4b9 100644 --- a/actions/opsworks_get_hostname_suggestion.yaml +++ b/actions/opsworks_get_hostname_suggestion.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_get_hostname_suggestion runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_hostname_suggestion immutable: true diff --git a/actions/opsworks_grant_access.yaml b/actions/opsworks_grant_access.yaml index 845331af..49a0d5ed 100644 --- a/actions/opsworks_grant_access.yaml +++ b/actions/opsworks_grant_access.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_grant_access runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: grant_access immutable: true diff --git a/actions/opsworks_list_tags.yaml b/actions/opsworks_list_tags.yaml index 69455b9a..b9d92191 100644 --- a/actions/opsworks_list_tags.yaml +++ b/actions/opsworks_list_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_list_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags immutable: true diff --git a/actions/opsworks_reboot_instance.yaml b/actions/opsworks_reboot_instance.yaml index 4d81d2a0..ee756963 100644 --- a/actions/opsworks_reboot_instance.yaml +++ b/actions/opsworks_reboot_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_reboot_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_instance immutable: true diff --git a/actions/opsworks_register_ecs_cluster.yaml b/actions/opsworks_register_ecs_cluster.yaml index f1b5adb3..469cc7d7 100644 --- a/actions/opsworks_register_ecs_cluster.yaml +++ b/actions/opsworks_register_ecs_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_register_ecs_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_ecs_cluster immutable: true diff --git a/actions/opsworks_register_elastic_ip.yaml b/actions/opsworks_register_elastic_ip.yaml index e3e75037..29496442 100644 --- a/actions/opsworks_register_elastic_ip.yaml +++ b/actions/opsworks_register_elastic_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_register_elastic_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_elastic_ip immutable: true diff --git a/actions/opsworks_register_instance.yaml b/actions/opsworks_register_instance.yaml index dc5eab98..0d96559c 100644 --- a/actions/opsworks_register_instance.yaml +++ b/actions/opsworks_register_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_register_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_instance immutable: true diff --git a/actions/opsworks_register_rds_db_instance.yaml b/actions/opsworks_register_rds_db_instance.yaml index 70b4c6ce..8224b4ea 100644 --- a/actions/opsworks_register_rds_db_instance.yaml +++ b/actions/opsworks_register_rds_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_register_rds_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_rds_db_instance immutable: true diff --git a/actions/opsworks_register_volume.yaml b/actions/opsworks_register_volume.yaml index bff7cdd0..b14e7abe 100644 --- a/actions/opsworks_register_volume.yaml +++ b/actions/opsworks_register_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_register_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_volume immutable: true diff --git a/actions/opsworks_set_load_based_auto_scaling.yaml b/actions/opsworks_set_load_based_auto_scaling.yaml index e7b86d80..99fef198 100644 --- a/actions/opsworks_set_load_based_auto_scaling.yaml +++ b/actions/opsworks_set_load_based_auto_scaling.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_set_load_based_auto_scaling runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_load_based_auto_scaling immutable: true diff --git a/actions/opsworks_set_permission.yaml b/actions/opsworks_set_permission.yaml index 23dbcbf4..37e620fa 100644 --- a/actions/opsworks_set_permission.yaml +++ b/actions/opsworks_set_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_set_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_permission immutable: true diff --git a/actions/opsworks_set_time_based_auto_scaling.yaml b/actions/opsworks_set_time_based_auto_scaling.yaml index 93453584..5dec499e 100644 --- a/actions/opsworks_set_time_based_auto_scaling.yaml +++ b/actions/opsworks_set_time_based_auto_scaling.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_set_time_based_auto_scaling runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_time_based_auto_scaling immutable: true diff --git a/actions/opsworks_start_instance.yaml b/actions/opsworks_start_instance.yaml index d0579824..de10afcc 100644 --- a/actions/opsworks_start_instance.yaml +++ b/actions/opsworks_start_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_start_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_instance immutable: true diff --git a/actions/opsworks_start_stack.yaml b/actions/opsworks_start_stack.yaml index b57c3557..dc052640 100644 --- a/actions/opsworks_start_stack.yaml +++ b/actions/opsworks_start_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_start_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_stack immutable: true diff --git a/actions/opsworks_stop_instance.yaml b/actions/opsworks_stop_instance.yaml index 25a8ba2e..d3b2e7b7 100644 --- a/actions/opsworks_stop_instance.yaml +++ b/actions/opsworks_stop_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_stop_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_instance immutable: true diff --git a/actions/opsworks_stop_stack.yaml b/actions/opsworks_stop_stack.yaml index a4feb07a..c8d3ffa7 100644 --- a/actions/opsworks_stop_stack.yaml +++ b/actions/opsworks_stop_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_stop_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_stack immutable: true diff --git a/actions/opsworks_tag_resource.yaml b/actions/opsworks_tag_resource.yaml index 9379af37..c5c7e430 100644 --- a/actions/opsworks_tag_resource.yaml +++ b/actions/opsworks_tag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_tag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resource immutable: true diff --git a/actions/opsworks_unassign_instance.yaml b/actions/opsworks_unassign_instance.yaml index 46fec40b..e2dc935f 100644 --- a/actions/opsworks_unassign_instance.yaml +++ b/actions/opsworks_unassign_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_unassign_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unassign_instance immutable: true diff --git a/actions/opsworks_unassign_volume.yaml b/actions/opsworks_unassign_volume.yaml index db349804..d5d80682 100644 --- a/actions/opsworks_unassign_volume.yaml +++ b/actions/opsworks_unassign_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_unassign_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unassign_volume immutable: true diff --git a/actions/opsworks_untag_resource.yaml b/actions/opsworks_untag_resource.yaml index 1190024f..6acf3918 100644 --- a/actions/opsworks_untag_resource.yaml +++ b/actions/opsworks_untag_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_untag_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resource immutable: true diff --git a/actions/opsworks_update_app.yaml b/actions/opsworks_update_app.yaml index ed59a200..2a65c420 100644 --- a/actions/opsworks_update_app.yaml +++ b/actions/opsworks_update_app.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_app runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_app immutable: true diff --git a/actions/opsworks_update_elastic_ip.yaml b/actions/opsworks_update_elastic_ip.yaml index 5f746002..8697b266 100644 --- a/actions/opsworks_update_elastic_ip.yaml +++ b/actions/opsworks_update_elastic_ip.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_elastic_ip runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_elastic_ip immutable: true diff --git a/actions/opsworks_update_instance.yaml b/actions/opsworks_update_instance.yaml index ae6f88d5..93e49cc0 100644 --- a/actions/opsworks_update_instance.yaml +++ b/actions/opsworks_update_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_instance immutable: true diff --git a/actions/opsworks_update_layer.yaml b/actions/opsworks_update_layer.yaml index 02b82385..9e90cc9c 100644 --- a/actions/opsworks_update_layer.yaml +++ b/actions/opsworks_update_layer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_layer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_layer immutable: true diff --git a/actions/opsworks_update_my_user_profile.yaml b/actions/opsworks_update_my_user_profile.yaml index a235ef06..a91fef36 100644 --- a/actions/opsworks_update_my_user_profile.yaml +++ b/actions/opsworks_update_my_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_my_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_my_user_profile immutable: true diff --git a/actions/opsworks_update_rds_db_instance.yaml b/actions/opsworks_update_rds_db_instance.yaml index 2c7f64e1..ba168c0b 100644 --- a/actions/opsworks_update_rds_db_instance.yaml +++ b/actions/opsworks_update_rds_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_rds_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_rds_db_instance immutable: true diff --git a/actions/opsworks_update_stack.yaml b/actions/opsworks_update_stack.yaml index f12e4256..bde79429 100644 --- a/actions/opsworks_update_stack.yaml +++ b/actions/opsworks_update_stack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_stack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_stack immutable: true diff --git a/actions/opsworks_update_user_profile.yaml b/actions/opsworks_update_user_profile.yaml index 28b7d042..15ba3fe1 100644 --- a/actions/opsworks_update_user_profile.yaml +++ b/actions/opsworks_update_user_profile.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_user_profile runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user_profile immutable: true diff --git a/actions/opsworks_update_volume.yaml b/actions/opsworks_update_volume.yaml index 87eecc8d..284ecd36 100644 --- a/actions/opsworks_update_volume.yaml +++ b/actions/opsworks_update_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworks_update_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_volume immutable: true diff --git a/actions/opsworkscm_associate_node.yaml b/actions/opsworkscm_associate_node.yaml index 4f085ffd..9f5f9119 100644 --- a/actions/opsworkscm_associate_node.yaml +++ b/actions/opsworkscm_associate_node.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_associate_node runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_node immutable: true diff --git a/actions/opsworkscm_create_backup.yaml b/actions/opsworkscm_create_backup.yaml index 00b3c26d..d396d827 100644 --- a/actions/opsworkscm_create_backup.yaml +++ b/actions/opsworkscm_create_backup.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_create_backup runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_backup immutable: true diff --git a/actions/opsworkscm_create_server.yaml b/actions/opsworkscm_create_server.yaml index 2a82fdd3..551a86f7 100644 --- a/actions/opsworkscm_create_server.yaml +++ b/actions/opsworkscm_create_server.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_create_server runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_server immutable: true diff --git a/actions/opsworkscm_delete_backup.yaml b/actions/opsworkscm_delete_backup.yaml index 0e451f1d..e954d92f 100644 --- a/actions/opsworkscm_delete_backup.yaml +++ b/actions/opsworkscm_delete_backup.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_delete_backup runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_backup immutable: true diff --git a/actions/opsworkscm_delete_server.yaml b/actions/opsworkscm_delete_server.yaml index 0f65229e..b769f491 100644 --- a/actions/opsworkscm_delete_server.yaml +++ b/actions/opsworkscm_delete_server.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_delete_server runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_server immutable: true diff --git a/actions/opsworkscm_describe_account_attributes.yaml b/actions/opsworkscm_describe_account_attributes.yaml index 6a72a60b..cce2a33f 100644 --- a/actions/opsworkscm_describe_account_attributes.yaml +++ b/actions/opsworkscm_describe_account_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_describe_account_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_attributes immutable: true diff --git a/actions/opsworkscm_describe_backups.yaml b/actions/opsworkscm_describe_backups.yaml index 80986f7a..a31daaf5 100644 --- a/actions/opsworkscm_describe_backups.yaml +++ b/actions/opsworkscm_describe_backups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_describe_backups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_backups immutable: true diff --git a/actions/opsworkscm_describe_events.yaml b/actions/opsworkscm_describe_events.yaml index 1f5fc3a8..859079d1 100644 --- a/actions/opsworkscm_describe_events.yaml +++ b/actions/opsworkscm_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/opsworkscm_describe_node_association_status.yaml b/actions/opsworkscm_describe_node_association_status.yaml index 1c1679fc..69293222 100644 --- a/actions/opsworkscm_describe_node_association_status.yaml +++ b/actions/opsworkscm_describe_node_association_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_describe_node_association_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_node_association_status immutable: true diff --git a/actions/opsworkscm_describe_servers.yaml b/actions/opsworkscm_describe_servers.yaml index e932dad6..c9d3afd7 100644 --- a/actions/opsworkscm_describe_servers.yaml +++ b/actions/opsworkscm_describe_servers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_describe_servers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_servers immutable: true diff --git a/actions/opsworkscm_disassociate_node.yaml b/actions/opsworkscm_disassociate_node.yaml index 4d826c6f..c348428e 100644 --- a/actions/opsworkscm_disassociate_node.yaml +++ b/actions/opsworkscm_disassociate_node.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_disassociate_node runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_node immutable: true diff --git a/actions/opsworkscm_restore_server.yaml b/actions/opsworkscm_restore_server.yaml index 07b84a8e..c3412ac7 100644 --- a/actions/opsworkscm_restore_server.yaml +++ b/actions/opsworkscm_restore_server.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_restore_server runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_server immutable: true diff --git a/actions/opsworkscm_start_maintenance.yaml b/actions/opsworkscm_start_maintenance.yaml index 7f44592a..b3bc543c 100644 --- a/actions/opsworkscm_start_maintenance.yaml +++ b/actions/opsworkscm_start_maintenance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_start_maintenance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_maintenance immutable: true diff --git a/actions/opsworkscm_update_server.yaml b/actions/opsworkscm_update_server.yaml index b7e88fa4..8647e874 100644 --- a/actions/opsworkscm_update_server.yaml +++ b/actions/opsworkscm_update_server.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_update_server runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_server immutable: true diff --git a/actions/opsworkscm_update_server_engine_attributes.yaml b/actions/opsworkscm_update_server_engine_attributes.yaml index b140554d..c6925584 100644 --- a/actions/opsworkscm_update_server_engine_attributes.yaml +++ b/actions/opsworkscm_update_server_engine_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: opsworkscm_update_server_engine_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_server_engine_attributes immutable: true diff --git a/actions/organizations_accept_handshake.yaml b/actions/organizations_accept_handshake.yaml index aa5ea33b..e805020f 100644 --- a/actions/organizations_accept_handshake.yaml +++ b/actions/organizations_accept_handshake.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_accept_handshake runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: accept_handshake immutable: true diff --git a/actions/organizations_attach_policy.yaml b/actions/organizations_attach_policy.yaml index 52fb11ec..c91f9aa0 100644 --- a/actions/organizations_attach_policy.yaml +++ b/actions/organizations_attach_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_attach_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: attach_policy immutable: true diff --git a/actions/organizations_cancel_handshake.yaml b/actions/organizations_cancel_handshake.yaml index 4dd32e83..57ca42f2 100644 --- a/actions/organizations_cancel_handshake.yaml +++ b/actions/organizations_cancel_handshake.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_cancel_handshake runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_handshake immutable: true diff --git a/actions/organizations_create_account.yaml b/actions/organizations_create_account.yaml index 65a782f7..6be2a5af 100644 --- a/actions/organizations_create_account.yaml +++ b/actions/organizations_create_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_create_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_account immutable: true diff --git a/actions/organizations_create_organization.yaml b/actions/organizations_create_organization.yaml index 1251c3be..ea2ddcc6 100644 --- a/actions/organizations_create_organization.yaml +++ b/actions/organizations_create_organization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_create_organization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_organization immutable: true diff --git a/actions/organizations_create_organizational_unit.yaml b/actions/organizations_create_organizational_unit.yaml index 275b24ac..eebf12d5 100644 --- a/actions/organizations_create_organizational_unit.yaml +++ b/actions/organizations_create_organizational_unit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_create_organizational_unit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_organizational_unit immutable: true diff --git a/actions/organizations_create_policy.yaml b/actions/organizations_create_policy.yaml index ca63aa79..8d2084c2 100644 --- a/actions/organizations_create_policy.yaml +++ b/actions/organizations_create_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_create_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_policy immutable: true diff --git a/actions/organizations_decline_handshake.yaml b/actions/organizations_decline_handshake.yaml index 10b8195b..6acb6672 100644 --- a/actions/organizations_decline_handshake.yaml +++ b/actions/organizations_decline_handshake.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_decline_handshake runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: decline_handshake immutable: true diff --git a/actions/organizations_delete_organizational_unit.yaml b/actions/organizations_delete_organizational_unit.yaml index b95e0598..f7dbddd0 100644 --- a/actions/organizations_delete_organizational_unit.yaml +++ b/actions/organizations_delete_organizational_unit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_delete_organizational_unit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_organizational_unit immutable: true diff --git a/actions/organizations_delete_policy.yaml b/actions/organizations_delete_policy.yaml index b7724b9a..f22663c1 100644 --- a/actions/organizations_delete_policy.yaml +++ b/actions/organizations_delete_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_delete_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_policy immutable: true diff --git a/actions/organizations_describe_account.yaml b/actions/organizations_describe_account.yaml index 0890dd3b..c5aba31d 100644 --- a/actions/organizations_describe_account.yaml +++ b/actions/organizations_describe_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_describe_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account immutable: true diff --git a/actions/organizations_describe_create_account_status.yaml b/actions/organizations_describe_create_account_status.yaml index fc0d00fc..d96c9e84 100644 --- a/actions/organizations_describe_create_account_status.yaml +++ b/actions/organizations_describe_create_account_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_describe_create_account_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_create_account_status immutable: true diff --git a/actions/organizations_describe_handshake.yaml b/actions/organizations_describe_handshake.yaml index 6609ae50..1c75c6a7 100644 --- a/actions/organizations_describe_handshake.yaml +++ b/actions/organizations_describe_handshake.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_describe_handshake runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_handshake immutable: true diff --git a/actions/organizations_describe_organizational_unit.yaml b/actions/organizations_describe_organizational_unit.yaml index 301a8627..f0f80a48 100644 --- a/actions/organizations_describe_organizational_unit.yaml +++ b/actions/organizations_describe_organizational_unit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_describe_organizational_unit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_organizational_unit immutable: true diff --git a/actions/organizations_describe_policy.yaml b/actions/organizations_describe_policy.yaml index 174e0acb..d8a3bc0b 100644 --- a/actions/organizations_describe_policy.yaml +++ b/actions/organizations_describe_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_describe_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_policy immutable: true diff --git a/actions/organizations_detach_policy.yaml b/actions/organizations_detach_policy.yaml index a368dc4b..81a72bc7 100644 --- a/actions/organizations_detach_policy.yaml +++ b/actions/organizations_detach_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_detach_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detach_policy immutable: true diff --git a/actions/organizations_disable_policy_type.yaml b/actions/organizations_disable_policy_type.yaml index 4889a057..7ce9404b 100644 --- a/actions/organizations_disable_policy_type.yaml +++ b/actions/organizations_disable_policy_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_disable_policy_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_policy_type immutable: true diff --git a/actions/organizations_enable_all_features.yaml b/actions/organizations_enable_all_features.yaml index 42fc2fc7..b12529f6 100644 --- a/actions/organizations_enable_all_features.yaml +++ b/actions/organizations_enable_all_features.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_enable_all_features runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_all_features immutable: true diff --git a/actions/organizations_enable_policy_type.yaml b/actions/organizations_enable_policy_type.yaml index ccff7a77..b0858792 100644 --- a/actions/organizations_enable_policy_type.yaml +++ b/actions/organizations_enable_policy_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_enable_policy_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_policy_type immutable: true diff --git a/actions/organizations_invite_account_to_organization.yaml b/actions/organizations_invite_account_to_organization.yaml index 03958e0c..33dbff25 100644 --- a/actions/organizations_invite_account_to_organization.yaml +++ b/actions/organizations_invite_account_to_organization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_invite_account_to_organization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: invite_account_to_organization immutable: true diff --git a/actions/organizations_list_accounts.yaml b/actions/organizations_list_accounts.yaml index 1d19a919..4ab3350c 100644 --- a/actions/organizations_list_accounts.yaml +++ b/actions/organizations_list_accounts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_accounts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_accounts immutable: true diff --git a/actions/organizations_list_accounts_for_parent.yaml b/actions/organizations_list_accounts_for_parent.yaml index 68aa87ff..58ba8322 100644 --- a/actions/organizations_list_accounts_for_parent.yaml +++ b/actions/organizations_list_accounts_for_parent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_accounts_for_parent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_accounts_for_parent immutable: true diff --git a/actions/organizations_list_children.yaml b/actions/organizations_list_children.yaml index 2d9cc492..6727f572 100644 --- a/actions/organizations_list_children.yaml +++ b/actions/organizations_list_children.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_children runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_children immutable: true diff --git a/actions/organizations_list_create_account_status.yaml b/actions/organizations_list_create_account_status.yaml index eb8eca23..efc7e273 100644 --- a/actions/organizations_list_create_account_status.yaml +++ b/actions/organizations_list_create_account_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_create_account_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_create_account_status immutable: true diff --git a/actions/organizations_list_handshakes_for_account.yaml b/actions/organizations_list_handshakes_for_account.yaml index 9e56d9d2..6a95ccdb 100644 --- a/actions/organizations_list_handshakes_for_account.yaml +++ b/actions/organizations_list_handshakes_for_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_handshakes_for_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_handshakes_for_account immutable: true diff --git a/actions/organizations_list_handshakes_for_organization.yaml b/actions/organizations_list_handshakes_for_organization.yaml index b1818276..c5ec6f04 100644 --- a/actions/organizations_list_handshakes_for_organization.yaml +++ b/actions/organizations_list_handshakes_for_organization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_handshakes_for_organization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_handshakes_for_organization immutable: true diff --git a/actions/organizations_list_organizational_units_for_parent.yaml b/actions/organizations_list_organizational_units_for_parent.yaml index f1052dbc..baeac0d3 100644 --- a/actions/organizations_list_organizational_units_for_parent.yaml +++ b/actions/organizations_list_organizational_units_for_parent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_organizational_units_for_parent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_organizational_units_for_parent immutable: true diff --git a/actions/organizations_list_parents.yaml b/actions/organizations_list_parents.yaml index 14328e8d..f854bf17 100644 --- a/actions/organizations_list_parents.yaml +++ b/actions/organizations_list_parents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_parents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_parents immutable: true diff --git a/actions/organizations_list_policies.yaml b/actions/organizations_list_policies.yaml index 5c0a8e9d..3d316758 100644 --- a/actions/organizations_list_policies.yaml +++ b/actions/organizations_list_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policies immutable: true diff --git a/actions/organizations_list_policies_for_target.yaml b/actions/organizations_list_policies_for_target.yaml index 7d7e1f69..daf38c30 100644 --- a/actions/organizations_list_policies_for_target.yaml +++ b/actions/organizations_list_policies_for_target.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_policies_for_target runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_policies_for_target immutable: true diff --git a/actions/organizations_list_roots.yaml b/actions/organizations_list_roots.yaml index 88863856..31778682 100644 --- a/actions/organizations_list_roots.yaml +++ b/actions/organizations_list_roots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_roots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_roots immutable: true diff --git a/actions/organizations_list_targets_for_policy.yaml b/actions/organizations_list_targets_for_policy.yaml index e3eaf396..3fdd179e 100644 --- a/actions/organizations_list_targets_for_policy.yaml +++ b/actions/organizations_list_targets_for_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_list_targets_for_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_targets_for_policy immutable: true diff --git a/actions/organizations_move_account.yaml b/actions/organizations_move_account.yaml index 24855a0a..8fc5bcc3 100644 --- a/actions/organizations_move_account.yaml +++ b/actions/organizations_move_account.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_move_account runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: move_account immutable: true diff --git a/actions/organizations_remove_account_from_organization.yaml b/actions/organizations_remove_account_from_organization.yaml index 4ee3d0ab..0a53fac6 100644 --- a/actions/organizations_remove_account_from_organization.yaml +++ b/actions/organizations_remove_account_from_organization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_remove_account_from_organization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_account_from_organization immutable: true diff --git a/actions/organizations_update_organizational_unit.yaml b/actions/organizations_update_organizational_unit.yaml index ea0dd14c..10d755ee 100644 --- a/actions/organizations_update_organizational_unit.yaml +++ b/actions/organizations_update_organizational_unit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_update_organizational_unit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_organizational_unit immutable: true diff --git a/actions/organizations_update_policy.yaml b/actions/organizations_update_policy.yaml index ac911b62..67088ef7 100644 --- a/actions/organizations_update_policy.yaml +++ b/actions/organizations_update_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: organizations_update_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_policy immutable: true diff --git a/actions/pinpoint_create_campaign.yaml b/actions/pinpoint_create_campaign.yaml index 6caf8dc4..273854da 100644 --- a/actions/pinpoint_create_campaign.yaml +++ b/actions/pinpoint_create_campaign.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_create_campaign runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_campaign immutable: true diff --git a/actions/pinpoint_create_import_job.yaml b/actions/pinpoint_create_import_job.yaml index 360f4b0f..77f735c0 100644 --- a/actions/pinpoint_create_import_job.yaml +++ b/actions/pinpoint_create_import_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_create_import_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_import_job immutable: true diff --git a/actions/pinpoint_create_segment.yaml b/actions/pinpoint_create_segment.yaml index 7a83c45f..e39f429a 100644 --- a/actions/pinpoint_create_segment.yaml +++ b/actions/pinpoint_create_segment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_create_segment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_segment immutable: true diff --git a/actions/pinpoint_delete_apns_channel.yaml b/actions/pinpoint_delete_apns_channel.yaml index 486b937f..77bc1ccd 100644 --- a/actions/pinpoint_delete_apns_channel.yaml +++ b/actions/pinpoint_delete_apns_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_apns_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_apns_channel immutable: true diff --git a/actions/pinpoint_delete_apns_sandbox_channel.yaml b/actions/pinpoint_delete_apns_sandbox_channel.yaml index aec9526b..feae3007 100644 --- a/actions/pinpoint_delete_apns_sandbox_channel.yaml +++ b/actions/pinpoint_delete_apns_sandbox_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_apns_sandbox_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_apns_sandbox_channel immutable: true diff --git a/actions/pinpoint_delete_campaign.yaml b/actions/pinpoint_delete_campaign.yaml index e2ec5c14..aeede090 100644 --- a/actions/pinpoint_delete_campaign.yaml +++ b/actions/pinpoint_delete_campaign.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_campaign runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_campaign immutable: true diff --git a/actions/pinpoint_delete_email_channel.yaml b/actions/pinpoint_delete_email_channel.yaml index a0957d1a..b8f32916 100644 --- a/actions/pinpoint_delete_email_channel.yaml +++ b/actions/pinpoint_delete_email_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_email_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_email_channel immutable: true diff --git a/actions/pinpoint_delete_event_stream.yaml b/actions/pinpoint_delete_event_stream.yaml index 09637f75..b21bf2cc 100644 --- a/actions/pinpoint_delete_event_stream.yaml +++ b/actions/pinpoint_delete_event_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_event_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_event_stream immutable: true diff --git a/actions/pinpoint_delete_gcm_channel.yaml b/actions/pinpoint_delete_gcm_channel.yaml index b0bd4aad..84f922f9 100644 --- a/actions/pinpoint_delete_gcm_channel.yaml +++ b/actions/pinpoint_delete_gcm_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_gcm_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_gcm_channel immutable: true diff --git a/actions/pinpoint_delete_segment.yaml b/actions/pinpoint_delete_segment.yaml index 5ee84015..67c02931 100644 --- a/actions/pinpoint_delete_segment.yaml +++ b/actions/pinpoint_delete_segment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_segment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_segment immutable: true diff --git a/actions/pinpoint_delete_sms_channel.yaml b/actions/pinpoint_delete_sms_channel.yaml index e7bb5ea5..6c779a7d 100644 --- a/actions/pinpoint_delete_sms_channel.yaml +++ b/actions/pinpoint_delete_sms_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_delete_sms_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_sms_channel immutable: true diff --git a/actions/pinpoint_get_apns_channel.yaml b/actions/pinpoint_get_apns_channel.yaml index 0666e808..2ec13414 100644 --- a/actions/pinpoint_get_apns_channel.yaml +++ b/actions/pinpoint_get_apns_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_apns_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_apns_channel immutable: true diff --git a/actions/pinpoint_get_apns_sandbox_channel.yaml b/actions/pinpoint_get_apns_sandbox_channel.yaml index 709e5cc6..55e08729 100644 --- a/actions/pinpoint_get_apns_sandbox_channel.yaml +++ b/actions/pinpoint_get_apns_sandbox_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_apns_sandbox_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_apns_sandbox_channel immutable: true diff --git a/actions/pinpoint_get_application_settings.yaml b/actions/pinpoint_get_application_settings.yaml index 5049944a..2b368a5c 100644 --- a/actions/pinpoint_get_application_settings.yaml +++ b/actions/pinpoint_get_application_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_application_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_application_settings immutable: true diff --git a/actions/pinpoint_get_campaign.yaml b/actions/pinpoint_get_campaign.yaml index cf5fd956..9bd5960a 100644 --- a/actions/pinpoint_get_campaign.yaml +++ b/actions/pinpoint_get_campaign.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_campaign runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_campaign immutable: true diff --git a/actions/pinpoint_get_campaign_activities.yaml b/actions/pinpoint_get_campaign_activities.yaml index 6faaf9a4..9e9d0770 100644 --- a/actions/pinpoint_get_campaign_activities.yaml +++ b/actions/pinpoint_get_campaign_activities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_campaign_activities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_campaign_activities immutable: true diff --git a/actions/pinpoint_get_campaign_version.yaml b/actions/pinpoint_get_campaign_version.yaml index a9d770aa..f83d58b0 100644 --- a/actions/pinpoint_get_campaign_version.yaml +++ b/actions/pinpoint_get_campaign_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_campaign_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_campaign_version immutable: true diff --git a/actions/pinpoint_get_campaign_versions.yaml b/actions/pinpoint_get_campaign_versions.yaml index 8c9c8e09..d03275a7 100644 --- a/actions/pinpoint_get_campaign_versions.yaml +++ b/actions/pinpoint_get_campaign_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_campaign_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_campaign_versions immutable: true diff --git a/actions/pinpoint_get_campaigns.yaml b/actions/pinpoint_get_campaigns.yaml index 7070eebc..215c58d6 100644 --- a/actions/pinpoint_get_campaigns.yaml +++ b/actions/pinpoint_get_campaigns.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_campaigns runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_campaigns immutable: true diff --git a/actions/pinpoint_get_email_channel.yaml b/actions/pinpoint_get_email_channel.yaml index 684b83ed..412d92e4 100644 --- a/actions/pinpoint_get_email_channel.yaml +++ b/actions/pinpoint_get_email_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_email_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_email_channel immutable: true diff --git a/actions/pinpoint_get_endpoint.yaml b/actions/pinpoint_get_endpoint.yaml index 8f399b41..74ec13ca 100644 --- a/actions/pinpoint_get_endpoint.yaml +++ b/actions/pinpoint_get_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_endpoint immutable: true diff --git a/actions/pinpoint_get_event_stream.yaml b/actions/pinpoint_get_event_stream.yaml index ddb3120a..68cde672 100644 --- a/actions/pinpoint_get_event_stream.yaml +++ b/actions/pinpoint_get_event_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_event_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_event_stream immutable: true diff --git a/actions/pinpoint_get_gcm_channel.yaml b/actions/pinpoint_get_gcm_channel.yaml index 47c0752f..a0ca5f6d 100644 --- a/actions/pinpoint_get_gcm_channel.yaml +++ b/actions/pinpoint_get_gcm_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_gcm_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_gcm_channel immutable: true diff --git a/actions/pinpoint_get_import_job.yaml b/actions/pinpoint_get_import_job.yaml index eacbb09b..0605fa3d 100644 --- a/actions/pinpoint_get_import_job.yaml +++ b/actions/pinpoint_get_import_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_import_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_import_job immutable: true diff --git a/actions/pinpoint_get_import_jobs.yaml b/actions/pinpoint_get_import_jobs.yaml index d5405f57..966e536b 100644 --- a/actions/pinpoint_get_import_jobs.yaml +++ b/actions/pinpoint_get_import_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_import_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_import_jobs immutable: true diff --git a/actions/pinpoint_get_segment.yaml b/actions/pinpoint_get_segment.yaml index 90c77d65..d30643d7 100644 --- a/actions/pinpoint_get_segment.yaml +++ b/actions/pinpoint_get_segment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_segment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_segment immutable: true diff --git a/actions/pinpoint_get_segment_import_jobs.yaml b/actions/pinpoint_get_segment_import_jobs.yaml index 51744b16..93a1310e 100644 --- a/actions/pinpoint_get_segment_import_jobs.yaml +++ b/actions/pinpoint_get_segment_import_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_segment_import_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_segment_import_jobs immutable: true diff --git a/actions/pinpoint_get_segment_version.yaml b/actions/pinpoint_get_segment_version.yaml index 06e110d6..9f75be6a 100644 --- a/actions/pinpoint_get_segment_version.yaml +++ b/actions/pinpoint_get_segment_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_segment_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_segment_version immutable: true diff --git a/actions/pinpoint_get_segment_versions.yaml b/actions/pinpoint_get_segment_versions.yaml index 53733eb6..b595e8f0 100644 --- a/actions/pinpoint_get_segment_versions.yaml +++ b/actions/pinpoint_get_segment_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_segment_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_segment_versions immutable: true diff --git a/actions/pinpoint_get_segments.yaml b/actions/pinpoint_get_segments.yaml index a8970c58..27c9f17a 100644 --- a/actions/pinpoint_get_segments.yaml +++ b/actions/pinpoint_get_segments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_segments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_segments immutable: true diff --git a/actions/pinpoint_get_sms_channel.yaml b/actions/pinpoint_get_sms_channel.yaml index 2c1d5485..907d7dce 100644 --- a/actions/pinpoint_get_sms_channel.yaml +++ b/actions/pinpoint_get_sms_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_get_sms_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sms_channel immutable: true diff --git a/actions/pinpoint_put_event_stream.yaml b/actions/pinpoint_put_event_stream.yaml index 76d2e3a3..20b242af 100644 --- a/actions/pinpoint_put_event_stream.yaml +++ b/actions/pinpoint_put_event_stream.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_put_event_stream runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_event_stream immutable: true diff --git a/actions/pinpoint_send_messages.yaml b/actions/pinpoint_send_messages.yaml index e46082ea..57818ea3 100644 --- a/actions/pinpoint_send_messages.yaml +++ b/actions/pinpoint_send_messages.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_send_messages runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_messages immutable: true diff --git a/actions/pinpoint_update_apns_channel.yaml b/actions/pinpoint_update_apns_channel.yaml index 648c8ac0..fa59c28b 100644 --- a/actions/pinpoint_update_apns_channel.yaml +++ b/actions/pinpoint_update_apns_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_apns_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_apns_channel immutable: true diff --git a/actions/pinpoint_update_apns_sandbox_channel.yaml b/actions/pinpoint_update_apns_sandbox_channel.yaml index e24c9b1a..a4a86ef6 100644 --- a/actions/pinpoint_update_apns_sandbox_channel.yaml +++ b/actions/pinpoint_update_apns_sandbox_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_apns_sandbox_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_apns_sandbox_channel immutable: true diff --git a/actions/pinpoint_update_application_settings.yaml b/actions/pinpoint_update_application_settings.yaml index 49c59bf9..e267457e 100644 --- a/actions/pinpoint_update_application_settings.yaml +++ b/actions/pinpoint_update_application_settings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_application_settings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_application_settings immutable: true diff --git a/actions/pinpoint_update_campaign.yaml b/actions/pinpoint_update_campaign.yaml index 907656f6..ca748452 100644 --- a/actions/pinpoint_update_campaign.yaml +++ b/actions/pinpoint_update_campaign.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_campaign runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_campaign immutable: true diff --git a/actions/pinpoint_update_email_channel.yaml b/actions/pinpoint_update_email_channel.yaml index 6b1cd5c8..f9c212d7 100644 --- a/actions/pinpoint_update_email_channel.yaml +++ b/actions/pinpoint_update_email_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_email_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_email_channel immutable: true diff --git a/actions/pinpoint_update_endpoint.yaml b/actions/pinpoint_update_endpoint.yaml index 6c866af5..731be0f0 100644 --- a/actions/pinpoint_update_endpoint.yaml +++ b/actions/pinpoint_update_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_endpoint immutable: true diff --git a/actions/pinpoint_update_endpoints_batch.yaml b/actions/pinpoint_update_endpoints_batch.yaml index 28f4b192..2a40341d 100644 --- a/actions/pinpoint_update_endpoints_batch.yaml +++ b/actions/pinpoint_update_endpoints_batch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_endpoints_batch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_endpoints_batch immutable: true diff --git a/actions/pinpoint_update_gcm_channel.yaml b/actions/pinpoint_update_gcm_channel.yaml index 7bab57a8..83601436 100644 --- a/actions/pinpoint_update_gcm_channel.yaml +++ b/actions/pinpoint_update_gcm_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_gcm_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_gcm_channel immutable: true diff --git a/actions/pinpoint_update_segment.yaml b/actions/pinpoint_update_segment.yaml index 1d73de55..fd76e188 100644 --- a/actions/pinpoint_update_segment.yaml +++ b/actions/pinpoint_update_segment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_segment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_segment immutable: true diff --git a/actions/pinpoint_update_sms_channel.yaml b/actions/pinpoint_update_sms_channel.yaml index 4e797bb4..99933f38 100644 --- a/actions/pinpoint_update_sms_channel.yaml +++ b/actions/pinpoint_update_sms_channel.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: pinpoint_update_sms_channel runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_sms_channel immutable: true diff --git a/actions/polly_delete_lexicon.yaml b/actions/polly_delete_lexicon.yaml index 6ca51b5c..78034ce0 100644 --- a/actions/polly_delete_lexicon.yaml +++ b/actions/polly_delete_lexicon.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: polly_delete_lexicon runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_lexicon immutable: true diff --git a/actions/polly_describe_voices.yaml b/actions/polly_describe_voices.yaml index b72800b2..e89953f2 100644 --- a/actions/polly_describe_voices.yaml +++ b/actions/polly_describe_voices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: polly_describe_voices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_voices immutable: true diff --git a/actions/polly_get_lexicon.yaml b/actions/polly_get_lexicon.yaml index 2797ea5f..19741929 100644 --- a/actions/polly_get_lexicon.yaml +++ b/actions/polly_get_lexicon.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: polly_get_lexicon runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_lexicon immutable: true diff --git a/actions/polly_list_lexicons.yaml b/actions/polly_list_lexicons.yaml index 73df3460..2636612b 100644 --- a/actions/polly_list_lexicons.yaml +++ b/actions/polly_list_lexicons.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: polly_list_lexicons runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_lexicons immutable: true diff --git a/actions/polly_put_lexicon.yaml b/actions/polly_put_lexicon.yaml index 55171c1b..55af9ab6 100644 --- a/actions/polly_put_lexicon.yaml +++ b/actions/polly_put_lexicon.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: polly_put_lexicon runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_lexicon immutable: true diff --git a/actions/polly_synthesize_speech.yaml b/actions/polly_synthesize_speech.yaml index d21d0672..56af3df7 100644 --- a/actions/polly_synthesize_speech.yaml +++ b/actions/polly_synthesize_speech.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: polly_synthesize_speech runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: synthesize_speech immutable: true diff --git a/actions/r53_build_base_http_request.yaml b/actions/r53_build_base_http_request.yaml index 45d990c3..818c9ae1 100644 --- a/actions/r53_build_base_http_request.yaml +++ b/actions/r53_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/r53_change_rrsets.yaml b/actions/r53_change_rrsets.yaml index 0eb4a664..ec1d9800 100644 --- a/actions/r53_change_rrsets.yaml +++ b/actions/r53_change_rrsets.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_change_rrsets parameters: + account_id: + type: string + region: + type: string action: default: change_rrsets immutable: true diff --git a/actions/r53_close.yaml b/actions/r53_close.yaml index 8d7b44c9..76ac36ea 100644 --- a/actions/r53_close.yaml +++ b/actions/r53_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/r53_create_health_check.yaml b/actions/r53_create_health_check.yaml index f76609d9..6d5044a4 100644 --- a/actions/r53_create_health_check.yaml +++ b/actions/r53_create_health_check.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_create_health_check parameters: + account_id: + type: string + region: + type: string action: default: create_health_check immutable: true diff --git a/actions/r53_create_hosted_zone.yaml b/actions/r53_create_hosted_zone.yaml index b49e7fd8..8e75a838 100644 --- a/actions/r53_create_hosted_zone.yaml +++ b/actions/r53_create_hosted_zone.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_create_hosted_zone parameters: + account_id: + type: string + region: + type: string action: default: create_hosted_zone immutable: true diff --git a/actions/r53_create_zone.yaml b/actions/r53_create_zone.yaml index 4e026ce2..cc894d60 100644 --- a/actions/r53_create_zone.yaml +++ b/actions/r53_create_zone.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_create_zone parameters: + account_id: + type: string + region: + type: string action: default: create_zone immutable: true diff --git a/actions/r53_delete_health_check.yaml b/actions/r53_delete_health_check.yaml index f7670366..26d5f9ca 100644 --- a/actions/r53_delete_health_check.yaml +++ b/actions/r53_delete_health_check.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_delete_health_check parameters: + account_id: + type: string + region: + type: string action: default: delete_health_check immutable: true diff --git a/actions/r53_delete_hosted_zone.yaml b/actions/r53_delete_hosted_zone.yaml index 4018af45..c3fcd2db 100644 --- a/actions/r53_delete_hosted_zone.yaml +++ b/actions/r53_delete_hosted_zone.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_delete_hosted_zone parameters: + account_id: + type: string + region: + type: string action: default: delete_hosted_zone immutable: true diff --git a/actions/r53_get_all_hosted_zones.yaml b/actions/r53_get_all_hosted_zones.yaml index 1f2901b2..df5ad556 100644 --- a/actions/r53_get_all_hosted_zones.yaml +++ b/actions/r53_get_all_hosted_zones.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_all_hosted_zones parameters: + account_id: + type: string + region: + type: string action: default: get_all_hosted_zones immutable: true diff --git a/actions/r53_get_all_rrsets.yaml b/actions/r53_get_all_rrsets.yaml index a4eec482..f133b03c 100644 --- a/actions/r53_get_all_rrsets.yaml +++ b/actions/r53_get_all_rrsets.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_all_rrsets parameters: + account_id: + type: string + region: + type: string action: default: get_all_rrsets immutable: true diff --git a/actions/r53_get_change.yaml b/actions/r53_get_change.yaml index 8a0566bc..cec950e6 100644 --- a/actions/r53_get_change.yaml +++ b/actions/r53_get_change.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_change parameters: + account_id: + type: string + region: + type: string action: default: get_change immutable: true diff --git a/actions/r53_get_checker_ip_ranges.yaml b/actions/r53_get_checker_ip_ranges.yaml index fb397dd2..e49ee0ab 100644 --- a/actions/r53_get_checker_ip_ranges.yaml +++ b/actions/r53_get_checker_ip_ranges.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_checker_ip_ranges parameters: + account_id: + type: string + region: + type: string action: default: get_checker_ip_ranges immutable: true diff --git a/actions/r53_get_hosted_zone.yaml b/actions/r53_get_hosted_zone.yaml index 07282d3d..e9814bd1 100644 --- a/actions/r53_get_hosted_zone.yaml +++ b/actions/r53_get_hosted_zone.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_hosted_zone parameters: + account_id: + type: string + region: + type: string action: default: get_hosted_zone immutable: true diff --git a/actions/r53_get_hosted_zone_by_name.yaml b/actions/r53_get_hosted_zone_by_name.yaml index 848d686c..a5910a74 100644 --- a/actions/r53_get_hosted_zone_by_name.yaml +++ b/actions/r53_get_hosted_zone_by_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_hosted_zone_by_name parameters: + account_id: + type: string + region: + type: string action: default: get_hosted_zone_by_name immutable: true diff --git a/actions/r53_get_http_connection.yaml b/actions/r53_get_http_connection.yaml index d3deed6a..81b4fc49 100644 --- a/actions/r53_get_http_connection.yaml +++ b/actions/r53_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/r53_get_list_health_checks.yaml b/actions/r53_get_list_health_checks.yaml index 756defa2..912c0cef 100644 --- a/actions/r53_get_list_health_checks.yaml +++ b/actions/r53_get_list_health_checks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_list_health_checks parameters: + account_id: + type: string + region: + type: string action: default: get_list_health_checks immutable: true diff --git a/actions/r53_get_path.yaml b/actions/r53_get_path.yaml index 5fd57835..1097c776 100644 --- a/actions/r53_get_path.yaml +++ b/actions/r53_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/r53_get_proxy_auth_header.yaml b/actions/r53_get_proxy_auth_header.yaml index e1b73e69..0da0c962 100644 --- a/actions/r53_get_proxy_auth_header.yaml +++ b/actions/r53_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/r53_get_proxy_url_with_auth.yaml b/actions/r53_get_proxy_url_with_auth.yaml index c425f31e..d0984690 100644 --- a/actions/r53_get_proxy_url_with_auth.yaml +++ b/actions/r53_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/r53_get_zone.yaml b/actions/r53_get_zone.yaml index e1f08e56..1f62b653 100644 --- a/actions/r53_get_zone.yaml +++ b/actions/r53_get_zone.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_zone parameters: + account_id: + type: string + region: + type: string action: default: get_zone immutable: true diff --git a/actions/r53_get_zones.yaml b/actions/r53_get_zones.yaml index 5e681365..3b616818 100644 --- a/actions/r53_get_zones.yaml +++ b/actions/r53_get_zones.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_get_zones parameters: + account_id: + type: string + region: + type: string action: default: get_zones immutable: true diff --git a/actions/r53_handle_proxy.yaml b/actions/r53_handle_proxy.yaml index 0b7f8fbc..bf3803fd 100644 --- a/actions/r53_handle_proxy.yaml +++ b/actions/r53_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/r53_make_request.yaml b/actions/r53_make_request.yaml index a0f6bffc..64ed730e 100644 --- a/actions/r53_make_request.yaml +++ b/actions/r53_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/r53_new_http_connection.yaml b/actions/r53_new_http_connection.yaml index 2ad1b4ed..91c6abfc 100644 --- a/actions/r53_new_http_connection.yaml +++ b/actions/r53_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/r53_prefix_proxy_to_path.yaml b/actions/r53_prefix_proxy_to_path.yaml index ecc46f27..555ddd64 100644 --- a/actions/r53_prefix_proxy_to_path.yaml +++ b/actions/r53_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/r53_proxy_ssl.yaml b/actions/r53_proxy_ssl.yaml index 5016c554..3debd2a4 100644 --- a/actions/r53_proxy_ssl.yaml +++ b/actions/r53_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/r53_put_http_connection.yaml b/actions/r53_put_http_connection.yaml index 48019b12..48451cc4 100644 --- a/actions/r53_put_http_connection.yaml +++ b/actions/r53_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/r53_server_name.yaml b/actions/r53_server_name.yaml index 7e853dd9..9c99161d 100644 --- a/actions/r53_server_name.yaml +++ b/actions/r53_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/r53_set_host_header.yaml b/actions/r53_set_host_header.yaml index da7f5deb..49ad728e 100644 --- a/actions/r53_set_host_header.yaml +++ b/actions/r53_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/r53_set_request_hook.yaml b/actions/r53_set_request_hook.yaml index e834c2de..94573615 100644 --- a/actions/r53_set_request_hook.yaml +++ b/actions/r53_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/r53_skip_proxy.yaml b/actions/r53_skip_proxy.yaml index db39edbe..498ec83a 100644 --- a/actions/r53_skip_proxy.yaml +++ b/actions/r53_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/r53_zone_add_a.yaml b/actions/r53_zone_add_a.yaml index 5cb2540a..de880a27 100644 --- a/actions/r53_zone_add_a.yaml +++ b/actions/r53_zone_add_a.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_add_a parameters: + account_id: + type: string + region: + type: string action: default: add_a immutable: true diff --git a/actions/r53_zone_add_cname.yaml b/actions/r53_zone_add_cname.yaml index 35599b3d..611454a0 100644 --- a/actions/r53_zone_add_cname.yaml +++ b/actions/r53_zone_add_cname.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_add_cname parameters: + account_id: + type: string + region: + type: string action: default: add_cname immutable: true diff --git a/actions/r53_zone_add_mx.yaml b/actions/r53_zone_add_mx.yaml index ad5bfbf5..38dae430 100644 --- a/actions/r53_zone_add_mx.yaml +++ b/actions/r53_zone_add_mx.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_add_mx parameters: + account_id: + type: string + region: + type: string action: default: add_mx immutable: true diff --git a/actions/r53_zone_add_record.yaml b/actions/r53_zone_add_record.yaml index b79b2980..ff0139c7 100644 --- a/actions/r53_zone_add_record.yaml +++ b/actions/r53_zone_add_record.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_add_record parameters: + account_id: + type: string + region: + type: string action: default: add_record immutable: true diff --git a/actions/r53_zone_delete.yaml b/actions/r53_zone_delete.yaml index 4390e3a4..48e22d36 100644 --- a/actions/r53_zone_delete.yaml +++ b/actions/r53_zone_delete.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_delete parameters: + account_id: + type: string + region: + type: string action: default: delete immutable: true diff --git a/actions/r53_zone_delete_a.yaml b/actions/r53_zone_delete_a.yaml index ef7f793f..bd0e2470 100644 --- a/actions/r53_zone_delete_a.yaml +++ b/actions/r53_zone_delete_a.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_delete_a parameters: + account_id: + type: string + region: + type: string action: default: delete_a immutable: true diff --git a/actions/r53_zone_delete_cname.yaml b/actions/r53_zone_delete_cname.yaml index 693f4b2c..85bb4209 100644 --- a/actions/r53_zone_delete_cname.yaml +++ b/actions/r53_zone_delete_cname.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_delete_cname parameters: + account_id: + type: string + region: + type: string action: default: delete_cname immutable: true diff --git a/actions/r53_zone_delete_mx.yaml b/actions/r53_zone_delete_mx.yaml index 0dcfbfba..2436e8d1 100644 --- a/actions/r53_zone_delete_mx.yaml +++ b/actions/r53_zone_delete_mx.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_delete_mx parameters: + account_id: + type: string + region: + type: string action: default: delete_mx immutable: true diff --git a/actions/r53_zone_delete_record.yaml b/actions/r53_zone_delete_record.yaml index 90400c82..d27360d1 100644 --- a/actions/r53_zone_delete_record.yaml +++ b/actions/r53_zone_delete_record.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_delete_record parameters: + account_id: + type: string + region: + type: string action: default: delete_record immutable: true diff --git a/actions/r53_zone_find_records.yaml b/actions/r53_zone_find_records.yaml index 4112c7b3..2c9ae2ec 100644 --- a/actions/r53_zone_find_records.yaml +++ b/actions/r53_zone_find_records.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_find_records parameters: + account_id: + type: string + region: + type: string action: default: find_records immutable: true diff --git a/actions/r53_zone_get_a.yaml b/actions/r53_zone_get_a.yaml index a01eea67..f78d4335 100644 --- a/actions/r53_zone_get_a.yaml +++ b/actions/r53_zone_get_a.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_get_a parameters: + account_id: + type: string + region: + type: string action: default: get_a immutable: true diff --git a/actions/r53_zone_get_cname.yaml b/actions/r53_zone_get_cname.yaml index 6a33df66..c3f21807 100644 --- a/actions/r53_zone_get_cname.yaml +++ b/actions/r53_zone_get_cname.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_get_cname parameters: + account_id: + type: string + region: + type: string action: default: get_cname immutable: true diff --git a/actions/r53_zone_get_mx.yaml b/actions/r53_zone_get_mx.yaml index 96302b37..f8178e41 100644 --- a/actions/r53_zone_get_mx.yaml +++ b/actions/r53_zone_get_mx.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_get_mx parameters: + account_id: + type: string + region: + type: string action: default: get_mx immutable: true diff --git a/actions/r53_zone_get_nameservers.yaml b/actions/r53_zone_get_nameservers.yaml index 44ca3e6f..47efdf37 100644 --- a/actions/r53_zone_get_nameservers.yaml +++ b/actions/r53_zone_get_nameservers.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_get_nameservers parameters: + account_id: + type: string + region: + type: string action: default: get_nameservers immutable: true diff --git a/actions/r53_zone_get_records.yaml b/actions/r53_zone_get_records.yaml index bf6d8a9f..d5476059 100644 --- a/actions/r53_zone_get_records.yaml +++ b/actions/r53_zone_get_records.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_get_records parameters: + account_id: + type: string + region: + type: string action: default: get_records immutable: true diff --git a/actions/r53_zone_update_a.yaml b/actions/r53_zone_update_a.yaml index e15c15aa..fbc768e6 100644 --- a/actions/r53_zone_update_a.yaml +++ b/actions/r53_zone_update_a.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_update_a parameters: + account_id: + type: string + region: + type: string action: default: update_a immutable: true diff --git a/actions/r53_zone_update_cname.yaml b/actions/r53_zone_update_cname.yaml index a3a60944..d5e2e52c 100644 --- a/actions/r53_zone_update_cname.yaml +++ b/actions/r53_zone_update_cname.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_update_cname parameters: + account_id: + type: string + region: + type: string action: default: update_cname immutable: true diff --git a/actions/r53_zone_update_mx.yaml b/actions/r53_zone_update_mx.yaml index a7317e51..0580b510 100644 --- a/actions/r53_zone_update_mx.yaml +++ b/actions/r53_zone_update_mx.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_update_mx parameters: + account_id: + type: string + region: + type: string action: default: update_mx immutable: true diff --git a/actions/r53_zone_update_record.yaml b/actions/r53_zone_update_record.yaml index 3592f0e0..b8599afd 100644 --- a/actions/r53_zone_update_record.yaml +++ b/actions/r53_zone_update_record.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: r53_zone_update_record parameters: + account_id: + type: string + region: + type: string action: default: update_record immutable: true diff --git a/actions/rds_add_role_to_db_cluster.yaml b/actions/rds_add_role_to_db_cluster.yaml index b6bc3b33..84c522f8 100644 --- a/actions/rds_add_role_to_db_cluster.yaml +++ b/actions/rds_add_role_to_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_add_role_to_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_role_to_db_cluster immutable: true diff --git a/actions/rds_add_source_identifier_to_subscription.yaml b/actions/rds_add_source_identifier_to_subscription.yaml index 3d983c50..ea845ef3 100644 --- a/actions/rds_add_source_identifier_to_subscription.yaml +++ b/actions/rds_add_source_identifier_to_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_add_source_identifier_to_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_source_identifier_to_subscription immutable: true diff --git a/actions/rds_add_tags_to_resource.yaml b/actions/rds_add_tags_to_resource.yaml index 70c854dc..044b2157 100644 --- a/actions/rds_add_tags_to_resource.yaml +++ b/actions/rds_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/rds_apply_pending_maintenance_action.yaml b/actions/rds_apply_pending_maintenance_action.yaml index d7f8b312..cc2a0deb 100644 --- a/actions/rds_apply_pending_maintenance_action.yaml +++ b/actions/rds_apply_pending_maintenance_action.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_apply_pending_maintenance_action runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: apply_pending_maintenance_action immutable: true diff --git a/actions/rds_authorize_db_security_group_ingress.yaml b/actions/rds_authorize_db_security_group_ingress.yaml index aedf925d..8b900b62 100644 --- a/actions/rds_authorize_db_security_group_ingress.yaml +++ b/actions/rds_authorize_db_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_authorize_db_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: authorize_db_security_group_ingress immutable: true diff --git a/actions/rds_authorize_dbsecurity_group.yaml b/actions/rds_authorize_dbsecurity_group.yaml index c5b007e3..8d3007fc 100644 --- a/actions/rds_authorize_dbsecurity_group.yaml +++ b/actions/rds_authorize_dbsecurity_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_authorize_dbsecurity_group parameters: + account_id: + type: string + region: + type: string action: default: authorize_dbsecurity_group immutable: true diff --git a/actions/rds_build_base_http_request.yaml b/actions/rds_build_base_http_request.yaml index 3a15b0d0..4fe32398 100644 --- a/actions/rds_build_base_http_request.yaml +++ b/actions/rds_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/rds_build_complex_list_params.yaml b/actions/rds_build_complex_list_params.yaml index b536960a..8fc42607 100644 --- a/actions/rds_build_complex_list_params.yaml +++ b/actions/rds_build_complex_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_build_complex_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_complex_list_params immutable: true diff --git a/actions/rds_build_list_params.yaml b/actions/rds_build_list_params.yaml index d9669c06..4e799e4b 100644 --- a/actions/rds_build_list_params.yaml +++ b/actions/rds_build_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_build_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_list_params immutable: true diff --git a/actions/rds_close.yaml b/actions/rds_close.yaml index 372ee65a..1efe737b 100644 --- a/actions/rds_close.yaml +++ b/actions/rds_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/rds_copy_db_cluster_parameter_group.yaml b/actions/rds_copy_db_cluster_parameter_group.yaml index e50d879a..eb81818f 100644 --- a/actions/rds_copy_db_cluster_parameter_group.yaml +++ b/actions/rds_copy_db_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_copy_db_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_db_cluster_parameter_group immutable: true diff --git a/actions/rds_copy_db_cluster_snapshot.yaml b/actions/rds_copy_db_cluster_snapshot.yaml index bbbb640d..5c3f6d59 100644 --- a/actions/rds_copy_db_cluster_snapshot.yaml +++ b/actions/rds_copy_db_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_copy_db_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_db_cluster_snapshot immutable: true diff --git a/actions/rds_copy_db_parameter_group.yaml b/actions/rds_copy_db_parameter_group.yaml index 4e05102f..367b0750 100644 --- a/actions/rds_copy_db_parameter_group.yaml +++ b/actions/rds_copy_db_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_copy_db_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_db_parameter_group immutable: true diff --git a/actions/rds_copy_db_snapshot.yaml b/actions/rds_copy_db_snapshot.yaml index cd24becc..49e5ff74 100644 --- a/actions/rds_copy_db_snapshot.yaml +++ b/actions/rds_copy_db_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_copy_db_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_db_snapshot immutable: true diff --git a/actions/rds_copy_dbsnapshot.yaml b/actions/rds_copy_dbsnapshot.yaml index 26224720..d0415e41 100644 --- a/actions/rds_copy_dbsnapshot.yaml +++ b/actions/rds_copy_dbsnapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_copy_dbsnapshot parameters: + account_id: + type: string + region: + type: string action: default: copy_dbsnapshot immutable: true diff --git a/actions/rds_copy_option_group.yaml b/actions/rds_copy_option_group.yaml index ecd2a384..0720bf6a 100644 --- a/actions/rds_copy_option_group.yaml +++ b/actions/rds_copy_option_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_copy_option_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_option_group immutable: true diff --git a/actions/rds_create_db_cluster.yaml b/actions/rds_create_db_cluster.yaml index d963a12f..6bfe875b 100644 --- a/actions/rds_create_db_cluster.yaml +++ b/actions/rds_create_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_cluster immutable: true diff --git a/actions/rds_create_db_cluster_parameter_group.yaml b/actions/rds_create_db_cluster_parameter_group.yaml index 357069f7..2575f4fc 100644 --- a/actions/rds_create_db_cluster_parameter_group.yaml +++ b/actions/rds_create_db_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_cluster_parameter_group immutable: true diff --git a/actions/rds_create_db_cluster_snapshot.yaml b/actions/rds_create_db_cluster_snapshot.yaml index 117cac07..fa12a684 100644 --- a/actions/rds_create_db_cluster_snapshot.yaml +++ b/actions/rds_create_db_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_cluster_snapshot immutable: true diff --git a/actions/rds_create_db_instance.yaml b/actions/rds_create_db_instance.yaml index 379fe6e1..79de45af 100644 --- a/actions/rds_create_db_instance.yaml +++ b/actions/rds_create_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_instance immutable: true diff --git a/actions/rds_create_db_instance_read_replica.yaml b/actions/rds_create_db_instance_read_replica.yaml index 964b67f0..a27c2245 100644 --- a/actions/rds_create_db_instance_read_replica.yaml +++ b/actions/rds_create_db_instance_read_replica.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_instance_read_replica runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_instance_read_replica immutable: true diff --git a/actions/rds_create_db_parameter_group.yaml b/actions/rds_create_db_parameter_group.yaml index e7e053df..d194e730 100644 --- a/actions/rds_create_db_parameter_group.yaml +++ b/actions/rds_create_db_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_parameter_group immutable: true diff --git a/actions/rds_create_db_security_group.yaml b/actions/rds_create_db_security_group.yaml index dccdb5ad..a5f77b06 100644 --- a/actions/rds_create_db_security_group.yaml +++ b/actions/rds_create_db_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_security_group immutable: true diff --git a/actions/rds_create_db_snapshot.yaml b/actions/rds_create_db_snapshot.yaml index cb4b3946..06c823e1 100644 --- a/actions/rds_create_db_snapshot.yaml +++ b/actions/rds_create_db_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_snapshot immutable: true diff --git a/actions/rds_create_db_subnet_group.yaml b/actions/rds_create_db_subnet_group.yaml index e7294042..75b98072 100644 --- a/actions/rds_create_db_subnet_group.yaml +++ b/actions/rds_create_db_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_db_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_db_subnet_group immutable: true diff --git a/actions/rds_create_dbinstance.yaml b/actions/rds_create_dbinstance.yaml index 471a58e5..05d8d6eb 100644 --- a/actions/rds_create_dbinstance.yaml +++ b/actions/rds_create_dbinstance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_create_dbinstance parameters: + account_id: + type: string + region: + type: string action: default: create_dbinstance immutable: true diff --git a/actions/rds_create_dbinstance_read_replica.yaml b/actions/rds_create_dbinstance_read_replica.yaml index efed8762..034c0ddd 100644 --- a/actions/rds_create_dbinstance_read_replica.yaml +++ b/actions/rds_create_dbinstance_read_replica.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_create_dbinstance_read_replica parameters: + account_id: + type: string + region: + type: string action: default: create_dbinstance_read_replica immutable: true diff --git a/actions/rds_create_dbsecurity_group.yaml b/actions/rds_create_dbsecurity_group.yaml index 3aebf568..49a2049d 100644 --- a/actions/rds_create_dbsecurity_group.yaml +++ b/actions/rds_create_dbsecurity_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_create_dbsecurity_group parameters: + account_id: + type: string + region: + type: string action: default: create_dbsecurity_group immutable: true diff --git a/actions/rds_create_dbsnapshot.yaml b/actions/rds_create_dbsnapshot.yaml index ed115a83..4c9283d5 100644 --- a/actions/rds_create_dbsnapshot.yaml +++ b/actions/rds_create_dbsnapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_create_dbsnapshot parameters: + account_id: + type: string + region: + type: string action: default: create_dbsnapshot immutable: true diff --git a/actions/rds_create_event_subscription.yaml b/actions/rds_create_event_subscription.yaml index ba09d29b..01539cc5 100644 --- a/actions/rds_create_event_subscription.yaml +++ b/actions/rds_create_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_event_subscription immutable: true diff --git a/actions/rds_create_option_group.yaml b/actions/rds_create_option_group.yaml index b4b55d46..ed3e2b49 100644 --- a/actions/rds_create_option_group.yaml +++ b/actions/rds_create_option_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_create_option_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_option_group immutable: true diff --git a/actions/rds_create_parameter_group.yaml b/actions/rds_create_parameter_group.yaml index 11ede947..9852e5b4 100644 --- a/actions/rds_create_parameter_group.yaml +++ b/actions/rds_create_parameter_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_create_parameter_group parameters: + account_id: + type: string + region: + type: string action: default: create_parameter_group immutable: true diff --git a/actions/rds_delete_db_cluster.yaml b/actions/rds_delete_db_cluster.yaml index c48035e8..098401d1 100644 --- a/actions/rds_delete_db_cluster.yaml +++ b/actions/rds_delete_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_cluster immutable: true diff --git a/actions/rds_delete_db_cluster_parameter_group.yaml b/actions/rds_delete_db_cluster_parameter_group.yaml index edaebee0..a32fb8a5 100644 --- a/actions/rds_delete_db_cluster_parameter_group.yaml +++ b/actions/rds_delete_db_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_cluster_parameter_group immutable: true diff --git a/actions/rds_delete_db_cluster_snapshot.yaml b/actions/rds_delete_db_cluster_snapshot.yaml index 36bb9013..2b2c8195 100644 --- a/actions/rds_delete_db_cluster_snapshot.yaml +++ b/actions/rds_delete_db_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_cluster_snapshot immutable: true diff --git a/actions/rds_delete_db_instance.yaml b/actions/rds_delete_db_instance.yaml index 3f1ee143..3911e45f 100644 --- a/actions/rds_delete_db_instance.yaml +++ b/actions/rds_delete_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_instance immutable: true diff --git a/actions/rds_delete_db_parameter_group.yaml b/actions/rds_delete_db_parameter_group.yaml index c220742a..e344a6af 100644 --- a/actions/rds_delete_db_parameter_group.yaml +++ b/actions/rds_delete_db_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_parameter_group immutable: true diff --git a/actions/rds_delete_db_security_group.yaml b/actions/rds_delete_db_security_group.yaml index 0c659018..f7859c8d 100644 --- a/actions/rds_delete_db_security_group.yaml +++ b/actions/rds_delete_db_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_security_group immutable: true diff --git a/actions/rds_delete_db_snapshot.yaml b/actions/rds_delete_db_snapshot.yaml index 14d6b79a..566fbe96 100644 --- a/actions/rds_delete_db_snapshot.yaml +++ b/actions/rds_delete_db_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_snapshot immutable: true diff --git a/actions/rds_delete_db_subnet_group.yaml b/actions/rds_delete_db_subnet_group.yaml index ca2b7802..d19e5f89 100644 --- a/actions/rds_delete_db_subnet_group.yaml +++ b/actions/rds_delete_db_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_db_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_db_subnet_group immutable: true diff --git a/actions/rds_delete_dbinstance.yaml b/actions/rds_delete_dbinstance.yaml index 95f6b1a4..007f4036 100644 --- a/actions/rds_delete_dbinstance.yaml +++ b/actions/rds_delete_dbinstance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_delete_dbinstance parameters: + account_id: + type: string + region: + type: string action: default: delete_dbinstance immutable: true diff --git a/actions/rds_delete_dbsecurity_group.yaml b/actions/rds_delete_dbsecurity_group.yaml index f52dd883..9c1b102b 100644 --- a/actions/rds_delete_dbsecurity_group.yaml +++ b/actions/rds_delete_dbsecurity_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_delete_dbsecurity_group parameters: + account_id: + type: string + region: + type: string action: default: delete_dbsecurity_group immutable: true diff --git a/actions/rds_delete_dbsnapshot.yaml b/actions/rds_delete_dbsnapshot.yaml index f447ec9f..4aab275c 100644 --- a/actions/rds_delete_dbsnapshot.yaml +++ b/actions/rds_delete_dbsnapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_delete_dbsnapshot parameters: + account_id: + type: string + region: + type: string action: default: delete_dbsnapshot immutable: true diff --git a/actions/rds_delete_event_subscription.yaml b/actions/rds_delete_event_subscription.yaml index 2ee150b9..c8c07c1f 100644 --- a/actions/rds_delete_event_subscription.yaml +++ b/actions/rds_delete_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_event_subscription immutable: true diff --git a/actions/rds_delete_option_group.yaml b/actions/rds_delete_option_group.yaml index 43609a80..1d683783 100644 --- a/actions/rds_delete_option_group.yaml +++ b/actions/rds_delete_option_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_delete_option_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_option_group immutable: true diff --git a/actions/rds_delete_parameter_group.yaml b/actions/rds_delete_parameter_group.yaml index 05da8af0..948299f1 100644 --- a/actions/rds_delete_parameter_group.yaml +++ b/actions/rds_delete_parameter_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_delete_parameter_group parameters: + account_id: + type: string + region: + type: string action: default: delete_parameter_group immutable: true diff --git a/actions/rds_describe_account_attributes.yaml b/actions/rds_describe_account_attributes.yaml index 4d8a09ca..57b5ef69 100644 --- a/actions/rds_describe_account_attributes.yaml +++ b/actions/rds_describe_account_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_account_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_account_attributes immutable: true diff --git a/actions/rds_describe_certificates.yaml b/actions/rds_describe_certificates.yaml index 0e549ac9..180b6d66 100644 --- a/actions/rds_describe_certificates.yaml +++ b/actions/rds_describe_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_certificates immutable: true diff --git a/actions/rds_describe_db_cluster_parameter_groups.yaml b/actions/rds_describe_db_cluster_parameter_groups.yaml index 30022225..b283c45d 100644 --- a/actions/rds_describe_db_cluster_parameter_groups.yaml +++ b/actions/rds_describe_db_cluster_parameter_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_cluster_parameter_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_cluster_parameter_groups immutable: true diff --git a/actions/rds_describe_db_cluster_parameters.yaml b/actions/rds_describe_db_cluster_parameters.yaml index f31a4be7..ce358a5b 100644 --- a/actions/rds_describe_db_cluster_parameters.yaml +++ b/actions/rds_describe_db_cluster_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_cluster_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_cluster_parameters immutable: true diff --git a/actions/rds_describe_db_cluster_snapshot_attributes.yaml b/actions/rds_describe_db_cluster_snapshot_attributes.yaml index 12f8132f..bf60c2cc 100644 --- a/actions/rds_describe_db_cluster_snapshot_attributes.yaml +++ b/actions/rds_describe_db_cluster_snapshot_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_cluster_snapshot_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_cluster_snapshot_attributes immutable: true diff --git a/actions/rds_describe_db_cluster_snapshots.yaml b/actions/rds_describe_db_cluster_snapshots.yaml index 02f50034..a35057fa 100644 --- a/actions/rds_describe_db_cluster_snapshots.yaml +++ b/actions/rds_describe_db_cluster_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_cluster_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_cluster_snapshots immutable: true diff --git a/actions/rds_describe_db_clusters.yaml b/actions/rds_describe_db_clusters.yaml index 69da17da..1ec1165e 100644 --- a/actions/rds_describe_db_clusters.yaml +++ b/actions/rds_describe_db_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_clusters immutable: true diff --git a/actions/rds_describe_db_engine_versions.yaml b/actions/rds_describe_db_engine_versions.yaml index 641a8501..2c591e17 100644 --- a/actions/rds_describe_db_engine_versions.yaml +++ b/actions/rds_describe_db_engine_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_engine_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_engine_versions immutable: true diff --git a/actions/rds_describe_db_instances.yaml b/actions/rds_describe_db_instances.yaml index 908c1ad3..6a0951bd 100644 --- a/actions/rds_describe_db_instances.yaml +++ b/actions/rds_describe_db_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_instances immutable: true diff --git a/actions/rds_describe_db_log_files.yaml b/actions/rds_describe_db_log_files.yaml index d8c2aaa4..9c0c0683 100644 --- a/actions/rds_describe_db_log_files.yaml +++ b/actions/rds_describe_db_log_files.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_log_files runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_log_files immutable: true diff --git a/actions/rds_describe_db_parameter_groups.yaml b/actions/rds_describe_db_parameter_groups.yaml index b3c35283..8477d6f5 100644 --- a/actions/rds_describe_db_parameter_groups.yaml +++ b/actions/rds_describe_db_parameter_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_parameter_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_parameter_groups immutable: true diff --git a/actions/rds_describe_db_parameters.yaml b/actions/rds_describe_db_parameters.yaml index 920e0280..18a6139c 100644 --- a/actions/rds_describe_db_parameters.yaml +++ b/actions/rds_describe_db_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_parameters immutable: true diff --git a/actions/rds_describe_db_security_groups.yaml b/actions/rds_describe_db_security_groups.yaml index b6fa2117..50974d50 100644 --- a/actions/rds_describe_db_security_groups.yaml +++ b/actions/rds_describe_db_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_security_groups immutable: true diff --git a/actions/rds_describe_db_snapshot_attributes.yaml b/actions/rds_describe_db_snapshot_attributes.yaml index d744a403..20aaba4e 100644 --- a/actions/rds_describe_db_snapshot_attributes.yaml +++ b/actions/rds_describe_db_snapshot_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_snapshot_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_snapshot_attributes immutable: true diff --git a/actions/rds_describe_db_snapshots.yaml b/actions/rds_describe_db_snapshots.yaml index 148be4cb..6dd4c498 100644 --- a/actions/rds_describe_db_snapshots.yaml +++ b/actions/rds_describe_db_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_snapshots immutable: true diff --git a/actions/rds_describe_db_subnet_groups.yaml b/actions/rds_describe_db_subnet_groups.yaml index ab8a6cb1..2696c1c0 100644 --- a/actions/rds_describe_db_subnet_groups.yaml +++ b/actions/rds_describe_db_subnet_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_db_subnet_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_db_subnet_groups immutable: true diff --git a/actions/rds_describe_engine_default_cluster_parameters.yaml b/actions/rds_describe_engine_default_cluster_parameters.yaml index 02ee85ee..540c415f 100644 --- a/actions/rds_describe_engine_default_cluster_parameters.yaml +++ b/actions/rds_describe_engine_default_cluster_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_engine_default_cluster_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_engine_default_cluster_parameters immutable: true diff --git a/actions/rds_describe_engine_default_parameters.yaml b/actions/rds_describe_engine_default_parameters.yaml index 99c39c3a..cb721f14 100644 --- a/actions/rds_describe_engine_default_parameters.yaml +++ b/actions/rds_describe_engine_default_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_engine_default_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_engine_default_parameters immutable: true diff --git a/actions/rds_describe_event_categories.yaml b/actions/rds_describe_event_categories.yaml index 86c909b7..dc77c99e 100644 --- a/actions/rds_describe_event_categories.yaml +++ b/actions/rds_describe_event_categories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_event_categories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_categories immutable: true diff --git a/actions/rds_describe_event_subscriptions.yaml b/actions/rds_describe_event_subscriptions.yaml index 2537f5c8..1bb2d798 100644 --- a/actions/rds_describe_event_subscriptions.yaml +++ b/actions/rds_describe_event_subscriptions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_event_subscriptions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_subscriptions immutable: true diff --git a/actions/rds_describe_events.yaml b/actions/rds_describe_events.yaml index 3036e993..d55aa36e 100644 --- a/actions/rds_describe_events.yaml +++ b/actions/rds_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/rds_describe_option_group_options.yaml b/actions/rds_describe_option_group_options.yaml index d8d8c1f0..b36b68b0 100644 --- a/actions/rds_describe_option_group_options.yaml +++ b/actions/rds_describe_option_group_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_option_group_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_option_group_options immutable: true diff --git a/actions/rds_describe_option_groups.yaml b/actions/rds_describe_option_groups.yaml index 1e13229c..72225ff1 100644 --- a/actions/rds_describe_option_groups.yaml +++ b/actions/rds_describe_option_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_option_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_option_groups immutable: true diff --git a/actions/rds_describe_orderable_db_instance_options.yaml b/actions/rds_describe_orderable_db_instance_options.yaml index e8fc18b9..deadd8a2 100644 --- a/actions/rds_describe_orderable_db_instance_options.yaml +++ b/actions/rds_describe_orderable_db_instance_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_orderable_db_instance_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_orderable_db_instance_options immutable: true diff --git a/actions/rds_describe_pending_maintenance_actions.yaml b/actions/rds_describe_pending_maintenance_actions.yaml index d6252f73..0ca87131 100644 --- a/actions/rds_describe_pending_maintenance_actions.yaml +++ b/actions/rds_describe_pending_maintenance_actions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_pending_maintenance_actions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_pending_maintenance_actions immutable: true diff --git a/actions/rds_describe_reserved_db_instances.yaml b/actions/rds_describe_reserved_db_instances.yaml index 69b7a64f..83757179 100644 --- a/actions/rds_describe_reserved_db_instances.yaml +++ b/actions/rds_describe_reserved_db_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_reserved_db_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_db_instances immutable: true diff --git a/actions/rds_describe_reserved_db_instances_offerings.yaml b/actions/rds_describe_reserved_db_instances_offerings.yaml index f46bf526..8d5fa5a9 100644 --- a/actions/rds_describe_reserved_db_instances_offerings.yaml +++ b/actions/rds_describe_reserved_db_instances_offerings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_reserved_db_instances_offerings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_db_instances_offerings immutable: true diff --git a/actions/rds_describe_source_regions.yaml b/actions/rds_describe_source_regions.yaml index 6fd7f3d7..e11a44fe 100644 --- a/actions/rds_describe_source_regions.yaml +++ b/actions/rds_describe_source_regions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_describe_source_regions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_source_regions immutable: true diff --git a/actions/rds_download_db_log_file_portion.yaml b/actions/rds_download_db_log_file_portion.yaml index ad3b4fce..a3996ca3 100644 --- a/actions/rds_download_db_log_file_portion.yaml +++ b/actions/rds_download_db_log_file_portion.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_download_db_log_file_portion runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: download_db_log_file_portion immutable: true diff --git a/actions/rds_failover_db_cluster.yaml b/actions/rds_failover_db_cluster.yaml index 47a94d7e..48b3ff62 100644 --- a/actions/rds_failover_db_cluster.yaml +++ b/actions/rds_failover_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_failover_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: failover_db_cluster immutable: true diff --git a/actions/rds_get_all_db_subnet_groups.yaml b/actions/rds_get_all_db_subnet_groups.yaml index 37cb2eb0..66c09f24 100644 --- a/actions/rds_get_all_db_subnet_groups.yaml +++ b/actions/rds_get_all_db_subnet_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_db_subnet_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_db_subnet_groups immutable: true diff --git a/actions/rds_get_all_dbinstances.yaml b/actions/rds_get_all_dbinstances.yaml index 58935f95..f0137d3e 100644 --- a/actions/rds_get_all_dbinstances.yaml +++ b/actions/rds_get_all_dbinstances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_dbinstances parameters: + account_id: + type: string + region: + type: string action: default: get_all_dbinstances immutable: true diff --git a/actions/rds_get_all_dbparameter_groups.yaml b/actions/rds_get_all_dbparameter_groups.yaml index c2c41d4e..f814b4bf 100644 --- a/actions/rds_get_all_dbparameter_groups.yaml +++ b/actions/rds_get_all_dbparameter_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_dbparameter_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_dbparameter_groups immutable: true diff --git a/actions/rds_get_all_dbparameters.yaml b/actions/rds_get_all_dbparameters.yaml index b2abc582..a5bf48b9 100644 --- a/actions/rds_get_all_dbparameters.yaml +++ b/actions/rds_get_all_dbparameters.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_dbparameters parameters: + account_id: + type: string + region: + type: string action: default: get_all_dbparameters immutable: true diff --git a/actions/rds_get_all_dbsecurity_groups.yaml b/actions/rds_get_all_dbsecurity_groups.yaml index 22a4699b..0ca4a990 100644 --- a/actions/rds_get_all_dbsecurity_groups.yaml +++ b/actions/rds_get_all_dbsecurity_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_dbsecurity_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_dbsecurity_groups immutable: true diff --git a/actions/rds_get_all_dbsnapshots.yaml b/actions/rds_get_all_dbsnapshots.yaml index 490ee7b3..ee9d8a2b 100644 --- a/actions/rds_get_all_dbsnapshots.yaml +++ b/actions/rds_get_all_dbsnapshots.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_dbsnapshots parameters: + account_id: + type: string + region: + type: string action: default: get_all_dbsnapshots immutable: true diff --git a/actions/rds_get_all_events.yaml b/actions/rds_get_all_events.yaml index 54d8fe43..b98893f6 100644 --- a/actions/rds_get_all_events.yaml +++ b/actions/rds_get_all_events.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_events parameters: + account_id: + type: string + region: + type: string action: default: get_all_events immutable: true diff --git a/actions/rds_get_all_logs.yaml b/actions/rds_get_all_logs.yaml index 03dc5fb8..9d7ea920 100644 --- a/actions/rds_get_all_logs.yaml +++ b/actions/rds_get_all_logs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_all_logs parameters: + account_id: + type: string + region: + type: string action: default: get_all_logs immutable: true diff --git a/actions/rds_get_http_connection.yaml b/actions/rds_get_http_connection.yaml index 6f6211d1..351e6f97 100644 --- a/actions/rds_get_http_connection.yaml +++ b/actions/rds_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/rds_get_list.yaml b/actions/rds_get_list.yaml index ea9bffc9..65d0e29e 100644 --- a/actions/rds_get_list.yaml +++ b/actions/rds_get_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_list parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/rds_get_log_file.yaml b/actions/rds_get_log_file.yaml index 6432246c..11fbb6b4 100644 --- a/actions/rds_get_log_file.yaml +++ b/actions/rds_get_log_file.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_log_file parameters: + account_id: + type: string + region: + type: string action: default: get_log_file immutable: true diff --git a/actions/rds_get_object.yaml b/actions/rds_get_object.yaml index 06b2b9ba..bdebfe33 100644 --- a/actions/rds_get_object.yaml +++ b/actions/rds_get_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_object parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/rds_get_path.yaml b/actions/rds_get_path.yaml index 8d24cd87..d405732f 100644 --- a/actions/rds_get_path.yaml +++ b/actions/rds_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/rds_get_proxy_auth_header.yaml b/actions/rds_get_proxy_auth_header.yaml index 468349aa..9eb44642 100644 --- a/actions/rds_get_proxy_auth_header.yaml +++ b/actions/rds_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/rds_get_proxy_url_with_auth.yaml b/actions/rds_get_proxy_url_with_auth.yaml index a32900aa..ae583f4d 100644 --- a/actions/rds_get_proxy_url_with_auth.yaml +++ b/actions/rds_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/rds_get_status.yaml b/actions/rds_get_status.yaml index 0845534a..cbc09035 100644 --- a/actions/rds_get_status.yaml +++ b/actions/rds_get_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_status parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/rds_get_utf8_value.yaml b/actions/rds_get_utf8_value.yaml index 9d42bbea..49b6227d 100644 --- a/actions/rds_get_utf8_value.yaml +++ b/actions/rds_get_utf8_value.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_get_utf8_value parameters: + account_id: + type: string + region: + type: string action: default: get_utf8_value immutable: true diff --git a/actions/rds_handle_proxy.yaml b/actions/rds_handle_proxy.yaml index d9b78410..0fda86a1 100644 --- a/actions/rds_handle_proxy.yaml +++ b/actions/rds_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/rds_list_tags_for_resource.yaml b/actions/rds_list_tags_for_resource.yaml index 51c2a1c6..0f3bc345 100644 --- a/actions/rds_list_tags_for_resource.yaml +++ b/actions/rds_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/rds_make_request.yaml b/actions/rds_make_request.yaml index 7f3a45a5..3e3ab541 100644 --- a/actions/rds_make_request.yaml +++ b/actions/rds_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/rds_modify_db_cluster.yaml b/actions/rds_modify_db_cluster.yaml index a91da25c..21aea115 100644 --- a/actions/rds_modify_db_cluster.yaml +++ b/actions/rds_modify_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_cluster immutable: true diff --git a/actions/rds_modify_db_cluster_parameter_group.yaml b/actions/rds_modify_db_cluster_parameter_group.yaml index 3e2d879a..a3337cbe 100644 --- a/actions/rds_modify_db_cluster_parameter_group.yaml +++ b/actions/rds_modify_db_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_cluster_parameter_group immutable: true diff --git a/actions/rds_modify_db_cluster_snapshot_attribute.yaml b/actions/rds_modify_db_cluster_snapshot_attribute.yaml index cf83f955..df710288 100644 --- a/actions/rds_modify_db_cluster_snapshot_attribute.yaml +++ b/actions/rds_modify_db_cluster_snapshot_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_cluster_snapshot_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_cluster_snapshot_attribute immutable: true diff --git a/actions/rds_modify_db_instance.yaml b/actions/rds_modify_db_instance.yaml index bc68b09b..a3d3140c 100644 --- a/actions/rds_modify_db_instance.yaml +++ b/actions/rds_modify_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_instance immutable: true diff --git a/actions/rds_modify_db_parameter_group.yaml b/actions/rds_modify_db_parameter_group.yaml index 7bedc195..436190ee 100644 --- a/actions/rds_modify_db_parameter_group.yaml +++ b/actions/rds_modify_db_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_parameter_group immutable: true diff --git a/actions/rds_modify_db_snapshot.yaml b/actions/rds_modify_db_snapshot.yaml index 4d151f88..80597304 100644 --- a/actions/rds_modify_db_snapshot.yaml +++ b/actions/rds_modify_db_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_snapshot immutable: true diff --git a/actions/rds_modify_db_snapshot_attribute.yaml b/actions/rds_modify_db_snapshot_attribute.yaml index 29bca0c9..8ef3fb65 100644 --- a/actions/rds_modify_db_snapshot_attribute.yaml +++ b/actions/rds_modify_db_snapshot_attribute.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_snapshot_attribute runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_snapshot_attribute immutable: true diff --git a/actions/rds_modify_db_subnet_group.yaml b/actions/rds_modify_db_subnet_group.yaml index 2f17572f..29d33573 100644 --- a/actions/rds_modify_db_subnet_group.yaml +++ b/actions/rds_modify_db_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_db_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_db_subnet_group immutable: true diff --git a/actions/rds_modify_dbinstance.yaml b/actions/rds_modify_dbinstance.yaml index 957bbf05..4b08536a 100644 --- a/actions/rds_modify_dbinstance.yaml +++ b/actions/rds_modify_dbinstance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_modify_dbinstance parameters: + account_id: + type: string + region: + type: string action: default: modify_dbinstance immutable: true diff --git a/actions/rds_modify_event_subscription.yaml b/actions/rds_modify_event_subscription.yaml index 7f56f069..f32ccd74 100644 --- a/actions/rds_modify_event_subscription.yaml +++ b/actions/rds_modify_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_event_subscription immutable: true diff --git a/actions/rds_modify_option_group.yaml b/actions/rds_modify_option_group.yaml index ec9d6364..3919b38a 100644 --- a/actions/rds_modify_option_group.yaml +++ b/actions/rds_modify_option_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_modify_option_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_option_group immutable: true diff --git a/actions/rds_modify_parameter_group.yaml b/actions/rds_modify_parameter_group.yaml index e17fa463..333bab0d 100644 --- a/actions/rds_modify_parameter_group.yaml +++ b/actions/rds_modify_parameter_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_modify_parameter_group parameters: + account_id: + type: string + region: + type: string action: default: modify_parameter_group immutable: true diff --git a/actions/rds_new_http_connection.yaml b/actions/rds_new_http_connection.yaml index 19345e66..b94490bf 100644 --- a/actions/rds_new_http_connection.yaml +++ b/actions/rds_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/rds_prefix_proxy_to_path.yaml b/actions/rds_prefix_proxy_to_path.yaml index 8a412764..0507938e 100644 --- a/actions/rds_prefix_proxy_to_path.yaml +++ b/actions/rds_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/rds_promote_read_replica.yaml b/actions/rds_promote_read_replica.yaml index cffd36b8..47c526b6 100644 --- a/actions/rds_promote_read_replica.yaml +++ b/actions/rds_promote_read_replica.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_promote_read_replica runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: promote_read_replica immutable: true diff --git a/actions/rds_promote_read_replica_db_cluster.yaml b/actions/rds_promote_read_replica_db_cluster.yaml index f3195bab..a6d04a48 100644 --- a/actions/rds_promote_read_replica_db_cluster.yaml +++ b/actions/rds_promote_read_replica_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_promote_read_replica_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: promote_read_replica_db_cluster immutable: true diff --git a/actions/rds_proxy_ssl.yaml b/actions/rds_proxy_ssl.yaml index d9c03a2d..80bcddfb 100644 --- a/actions/rds_proxy_ssl.yaml +++ b/actions/rds_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/rds_purchase_reserved_db_instances_offering.yaml b/actions/rds_purchase_reserved_db_instances_offering.yaml index 921b98a7..54cb5135 100644 --- a/actions/rds_purchase_reserved_db_instances_offering.yaml +++ b/actions/rds_purchase_reserved_db_instances_offering.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_purchase_reserved_db_instances_offering runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_reserved_db_instances_offering immutable: true diff --git a/actions/rds_put_http_connection.yaml b/actions/rds_put_http_connection.yaml index 197aa83b..5d9ab5cc 100644 --- a/actions/rds_put_http_connection.yaml +++ b/actions/rds_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/rds_reboot_db_instance.yaml b/actions/rds_reboot_db_instance.yaml index bc41113c..fc02f206 100644 --- a/actions/rds_reboot_db_instance.yaml +++ b/actions/rds_reboot_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_reboot_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_db_instance immutable: true diff --git a/actions/rds_reboot_dbinstance.yaml b/actions/rds_reboot_dbinstance.yaml index a4e44509..16535963 100644 --- a/actions/rds_reboot_dbinstance.yaml +++ b/actions/rds_reboot_dbinstance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_reboot_dbinstance parameters: + account_id: + type: string + region: + type: string action: default: reboot_dbinstance immutable: true diff --git a/actions/rds_remove_role_from_db_cluster.yaml b/actions/rds_remove_role_from_db_cluster.yaml index ea280f57..ab10680e 100644 --- a/actions/rds_remove_role_from_db_cluster.yaml +++ b/actions/rds_remove_role_from_db_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_remove_role_from_db_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_role_from_db_cluster immutable: true diff --git a/actions/rds_remove_source_identifier_from_subscription.yaml b/actions/rds_remove_source_identifier_from_subscription.yaml index f77c5248..da177c85 100644 --- a/actions/rds_remove_source_identifier_from_subscription.yaml +++ b/actions/rds_remove_source_identifier_from_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_remove_source_identifier_from_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_source_identifier_from_subscription immutable: true diff --git a/actions/rds_remove_tags_from_resource.yaml b/actions/rds_remove_tags_from_resource.yaml index c8fe8d47..39522486 100644 --- a/actions/rds_remove_tags_from_resource.yaml +++ b/actions/rds_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/rds_reset_db_cluster_parameter_group.yaml b/actions/rds_reset_db_cluster_parameter_group.yaml index 7c4cf7b5..22c54952 100644 --- a/actions/rds_reset_db_cluster_parameter_group.yaml +++ b/actions/rds_reset_db_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_reset_db_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_db_cluster_parameter_group immutable: true diff --git a/actions/rds_reset_db_parameter_group.yaml b/actions/rds_reset_db_parameter_group.yaml index 3ecb0618..999f1191 100644 --- a/actions/rds_reset_db_parameter_group.yaml +++ b/actions/rds_reset_db_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_reset_db_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_db_parameter_group immutable: true diff --git a/actions/rds_reset_parameter_group.yaml b/actions/rds_reset_parameter_group.yaml index e8749394..1cf2499d 100644 --- a/actions/rds_reset_parameter_group.yaml +++ b/actions/rds_reset_parameter_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_reset_parameter_group parameters: + account_id: + type: string + region: + type: string action: default: reset_parameter_group immutable: true diff --git a/actions/rds_restore_db_cluster_from_s3.yaml b/actions/rds_restore_db_cluster_from_s3.yaml index 972218a7..2049dcf8 100644 --- a/actions/rds_restore_db_cluster_from_s3.yaml +++ b/actions/rds_restore_db_cluster_from_s3.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_restore_db_cluster_from_s3 runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_db_cluster_from_s3 immutable: true diff --git a/actions/rds_restore_db_cluster_from_snapshot.yaml b/actions/rds_restore_db_cluster_from_snapshot.yaml index f948beb0..1ce2993b 100644 --- a/actions/rds_restore_db_cluster_from_snapshot.yaml +++ b/actions/rds_restore_db_cluster_from_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_restore_db_cluster_from_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_db_cluster_from_snapshot immutable: true diff --git a/actions/rds_restore_db_cluster_to_point_in_time.yaml b/actions/rds_restore_db_cluster_to_point_in_time.yaml index f684d1a9..8b551979 100644 --- a/actions/rds_restore_db_cluster_to_point_in_time.yaml +++ b/actions/rds_restore_db_cluster_to_point_in_time.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_restore_db_cluster_to_point_in_time runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_db_cluster_to_point_in_time immutable: true diff --git a/actions/rds_restore_db_instance_from_db_snapshot.yaml b/actions/rds_restore_db_instance_from_db_snapshot.yaml index 6f95775d..6f18ca9a 100644 --- a/actions/rds_restore_db_instance_from_db_snapshot.yaml +++ b/actions/rds_restore_db_instance_from_db_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_restore_db_instance_from_db_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_db_instance_from_db_snapshot immutable: true diff --git a/actions/rds_restore_db_instance_to_point_in_time.yaml b/actions/rds_restore_db_instance_to_point_in_time.yaml index e4568ffd..f5dd64c1 100644 --- a/actions/rds_restore_db_instance_to_point_in_time.yaml +++ b/actions/rds_restore_db_instance_to_point_in_time.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_restore_db_instance_to_point_in_time runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_db_instance_to_point_in_time immutable: true diff --git a/actions/rds_restore_dbinstance_from_dbsnapshot.yaml b/actions/rds_restore_dbinstance_from_dbsnapshot.yaml index d8c03cc4..ae140b86 100644 --- a/actions/rds_restore_dbinstance_from_dbsnapshot.yaml +++ b/actions/rds_restore_dbinstance_from_dbsnapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_restore_dbinstance_from_dbsnapshot parameters: + account_id: + type: string + region: + type: string action: default: restore_dbinstance_from_dbsnapshot immutable: true diff --git a/actions/rds_restore_dbinstance_from_point_in_time.yaml b/actions/rds_restore_dbinstance_from_point_in_time.yaml index 71b894a0..661e5f67 100644 --- a/actions/rds_restore_dbinstance_from_point_in_time.yaml +++ b/actions/rds_restore_dbinstance_from_point_in_time.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_restore_dbinstance_from_point_in_time parameters: + account_id: + type: string + region: + type: string action: default: restore_dbinstance_from_point_in_time immutable: true diff --git a/actions/rds_revoke_db_security_group_ingress.yaml b/actions/rds_revoke_db_security_group_ingress.yaml index 2bf6f945..d5a726b2 100644 --- a/actions/rds_revoke_db_security_group_ingress.yaml +++ b/actions/rds_revoke_db_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_revoke_db_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_db_security_group_ingress immutable: true diff --git a/actions/rds_revoke_dbsecurity_group.yaml b/actions/rds_revoke_dbsecurity_group.yaml index 84573db9..bbe7d752 100644 --- a/actions/rds_revoke_dbsecurity_group.yaml +++ b/actions/rds_revoke_dbsecurity_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_revoke_dbsecurity_group parameters: + account_id: + type: string + region: + type: string action: default: revoke_dbsecurity_group immutable: true diff --git a/actions/rds_revoke_security_group.yaml b/actions/rds_revoke_security_group.yaml index d28c35db..29e90293 100644 --- a/actions/rds_revoke_security_group.yaml +++ b/actions/rds_revoke_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_revoke_security_group parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group immutable: true diff --git a/actions/rds_server_name.yaml b/actions/rds_server_name.yaml index 03f1b74d..c9fba1af 100644 --- a/actions/rds_server_name.yaml +++ b/actions/rds_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/rds_set_host_header.yaml b/actions/rds_set_host_header.yaml index b4c8ddbf..263a67c5 100644 --- a/actions/rds_set_host_header.yaml +++ b/actions/rds_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/rds_set_request_hook.yaml b/actions/rds_set_request_hook.yaml index bbdbcb66..86e54c88 100644 --- a/actions/rds_set_request_hook.yaml +++ b/actions/rds_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/rds_skip_proxy.yaml b/actions/rds_skip_proxy.yaml index 44b982c7..b870bf28 100644 --- a/actions/rds_skip_proxy.yaml +++ b/actions/rds_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: rds_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/rds_start_db_instance.yaml b/actions/rds_start_db_instance.yaml index 418132e8..dc0dd98f 100644 --- a/actions/rds_start_db_instance.yaml +++ b/actions/rds_start_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_start_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_db_instance immutable: true diff --git a/actions/rds_stop_db_instance.yaml b/actions/rds_stop_db_instance.yaml index 10cda3d7..8daba24e 100644 --- a/actions/rds_stop_db_instance.yaml +++ b/actions/rds_stop_db_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rds_stop_db_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_db_instance immutable: true diff --git a/actions/redshift_authorize_cluster_security_group_ingress.yaml b/actions/redshift_authorize_cluster_security_group_ingress.yaml index 8702913d..fb9e8a1a 100644 --- a/actions/redshift_authorize_cluster_security_group_ingress.yaml +++ b/actions/redshift_authorize_cluster_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_authorize_cluster_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: authorize_cluster_security_group_ingress immutable: true diff --git a/actions/redshift_authorize_snapshot_access.yaml b/actions/redshift_authorize_snapshot_access.yaml index c794b3ac..b5f03f4c 100644 --- a/actions/redshift_authorize_snapshot_access.yaml +++ b/actions/redshift_authorize_snapshot_access.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_authorize_snapshot_access runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: authorize_snapshot_access immutable: true diff --git a/actions/redshift_copy_cluster_snapshot.yaml b/actions/redshift_copy_cluster_snapshot.yaml index 2ed9f33f..536ac855 100644 --- a/actions/redshift_copy_cluster_snapshot.yaml +++ b/actions/redshift_copy_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_copy_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_cluster_snapshot immutable: true diff --git a/actions/redshift_create_cluster.yaml b/actions/redshift_create_cluster.yaml index 45daee6b..dbf6c7a2 100644 --- a/actions/redshift_create_cluster.yaml +++ b/actions/redshift_create_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster immutable: true diff --git a/actions/redshift_create_cluster_parameter_group.yaml b/actions/redshift_create_cluster_parameter_group.yaml index 27b1e80c..9e86c211 100644 --- a/actions/redshift_create_cluster_parameter_group.yaml +++ b/actions/redshift_create_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster_parameter_group immutable: true diff --git a/actions/redshift_create_cluster_security_group.yaml b/actions/redshift_create_cluster_security_group.yaml index 49df38c6..08ba7806 100644 --- a/actions/redshift_create_cluster_security_group.yaml +++ b/actions/redshift_create_cluster_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_cluster_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster_security_group immutable: true diff --git a/actions/redshift_create_cluster_snapshot.yaml b/actions/redshift_create_cluster_snapshot.yaml index 5298ba11..22159912 100644 --- a/actions/redshift_create_cluster_snapshot.yaml +++ b/actions/redshift_create_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster_snapshot immutable: true diff --git a/actions/redshift_create_cluster_subnet_group.yaml b/actions/redshift_create_cluster_subnet_group.yaml index 94bf2eb1..ba64a120 100644 --- a/actions/redshift_create_cluster_subnet_group.yaml +++ b/actions/redshift_create_cluster_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_cluster_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster_subnet_group immutable: true diff --git a/actions/redshift_create_event_subscription.yaml b/actions/redshift_create_event_subscription.yaml index 9beadaca..f9279ae9 100644 --- a/actions/redshift_create_event_subscription.yaml +++ b/actions/redshift_create_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_event_subscription immutable: true diff --git a/actions/redshift_create_hsm_client_certificate.yaml b/actions/redshift_create_hsm_client_certificate.yaml index 046b65d3..4e7c0a1f 100644 --- a/actions/redshift_create_hsm_client_certificate.yaml +++ b/actions/redshift_create_hsm_client_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_hsm_client_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hsm_client_certificate immutable: true diff --git a/actions/redshift_create_hsm_configuration.yaml b/actions/redshift_create_hsm_configuration.yaml index 376f3423..7e9f34cf 100644 --- a/actions/redshift_create_hsm_configuration.yaml +++ b/actions/redshift_create_hsm_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_hsm_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hsm_configuration immutable: true diff --git a/actions/redshift_create_snapshot_copy_grant.yaml b/actions/redshift_create_snapshot_copy_grant.yaml index 8ec6d2e9..c1b8e707 100644 --- a/actions/redshift_create_snapshot_copy_grant.yaml +++ b/actions/redshift_create_snapshot_copy_grant.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_snapshot_copy_grant runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot_copy_grant immutable: true diff --git a/actions/redshift_create_tags.yaml b/actions/redshift_create_tags.yaml index 701dcf59..e85e436a 100644 --- a/actions/redshift_create_tags.yaml +++ b/actions/redshift_create_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_create_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tags immutable: true diff --git a/actions/redshift_delete_cluster.yaml b/actions/redshift_delete_cluster.yaml index d4feca3f..c4ced3f9 100644 --- a/actions/redshift_delete_cluster.yaml +++ b/actions/redshift_delete_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster immutable: true diff --git a/actions/redshift_delete_cluster_parameter_group.yaml b/actions/redshift_delete_cluster_parameter_group.yaml index cb5ac384..61c11b98 100644 --- a/actions/redshift_delete_cluster_parameter_group.yaml +++ b/actions/redshift_delete_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster_parameter_group immutable: true diff --git a/actions/redshift_delete_cluster_security_group.yaml b/actions/redshift_delete_cluster_security_group.yaml index ace46be8..801e279e 100644 --- a/actions/redshift_delete_cluster_security_group.yaml +++ b/actions/redshift_delete_cluster_security_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_cluster_security_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster_security_group immutable: true diff --git a/actions/redshift_delete_cluster_snapshot.yaml b/actions/redshift_delete_cluster_snapshot.yaml index 9415db69..a14d0e6f 100644 --- a/actions/redshift_delete_cluster_snapshot.yaml +++ b/actions/redshift_delete_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster_snapshot immutable: true diff --git a/actions/redshift_delete_cluster_subnet_group.yaml b/actions/redshift_delete_cluster_subnet_group.yaml index 65309df8..b6933ad2 100644 --- a/actions/redshift_delete_cluster_subnet_group.yaml +++ b/actions/redshift_delete_cluster_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_cluster_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_cluster_subnet_group immutable: true diff --git a/actions/redshift_delete_event_subscription.yaml b/actions/redshift_delete_event_subscription.yaml index 4c210500..0ce7196b 100644 --- a/actions/redshift_delete_event_subscription.yaml +++ b/actions/redshift_delete_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_event_subscription immutable: true diff --git a/actions/redshift_delete_hsm_client_certificate.yaml b/actions/redshift_delete_hsm_client_certificate.yaml index 6b479fc3..de9065f5 100644 --- a/actions/redshift_delete_hsm_client_certificate.yaml +++ b/actions/redshift_delete_hsm_client_certificate.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_hsm_client_certificate runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_hsm_client_certificate immutable: true diff --git a/actions/redshift_delete_hsm_configuration.yaml b/actions/redshift_delete_hsm_configuration.yaml index ad00b072..da05dbcb 100644 --- a/actions/redshift_delete_hsm_configuration.yaml +++ b/actions/redshift_delete_hsm_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_hsm_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_hsm_configuration immutable: true diff --git a/actions/redshift_delete_snapshot_copy_grant.yaml b/actions/redshift_delete_snapshot_copy_grant.yaml index 38ab7f34..83fc5c22 100644 --- a/actions/redshift_delete_snapshot_copy_grant.yaml +++ b/actions/redshift_delete_snapshot_copy_grant.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_snapshot_copy_grant runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_snapshot_copy_grant immutable: true diff --git a/actions/redshift_delete_tags.yaml b/actions/redshift_delete_tags.yaml index b8e1ffed..067d2aa2 100644 --- a/actions/redshift_delete_tags.yaml +++ b/actions/redshift_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/redshift_describe_cluster_parameter_groups.yaml b/actions/redshift_describe_cluster_parameter_groups.yaml index bc3a93db..d399ca0e 100644 --- a/actions/redshift_describe_cluster_parameter_groups.yaml +++ b/actions/redshift_describe_cluster_parameter_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_cluster_parameter_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster_parameter_groups immutable: true diff --git a/actions/redshift_describe_cluster_parameters.yaml b/actions/redshift_describe_cluster_parameters.yaml index 8a8a82cd..7378178b 100644 --- a/actions/redshift_describe_cluster_parameters.yaml +++ b/actions/redshift_describe_cluster_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_cluster_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster_parameters immutable: true diff --git a/actions/redshift_describe_cluster_security_groups.yaml b/actions/redshift_describe_cluster_security_groups.yaml index 3a28c265..fb1782b0 100644 --- a/actions/redshift_describe_cluster_security_groups.yaml +++ b/actions/redshift_describe_cluster_security_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_cluster_security_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster_security_groups immutable: true diff --git a/actions/redshift_describe_cluster_snapshots.yaml b/actions/redshift_describe_cluster_snapshots.yaml index 9c61b379..f08125b5 100644 --- a/actions/redshift_describe_cluster_snapshots.yaml +++ b/actions/redshift_describe_cluster_snapshots.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_cluster_snapshots runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster_snapshots immutable: true diff --git a/actions/redshift_describe_cluster_subnet_groups.yaml b/actions/redshift_describe_cluster_subnet_groups.yaml index c791e5c4..6cd16d05 100644 --- a/actions/redshift_describe_cluster_subnet_groups.yaml +++ b/actions/redshift_describe_cluster_subnet_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_cluster_subnet_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster_subnet_groups immutable: true diff --git a/actions/redshift_describe_cluster_versions.yaml b/actions/redshift_describe_cluster_versions.yaml index 743de0ca..9fb50bb7 100644 --- a/actions/redshift_describe_cluster_versions.yaml +++ b/actions/redshift_describe_cluster_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_cluster_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster_versions immutable: true diff --git a/actions/redshift_describe_clusters.yaml b/actions/redshift_describe_clusters.yaml index 1e7b6a6b..3e01ce4a 100644 --- a/actions/redshift_describe_clusters.yaml +++ b/actions/redshift_describe_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_clusters immutable: true diff --git a/actions/redshift_describe_default_cluster_parameters.yaml b/actions/redshift_describe_default_cluster_parameters.yaml index 3366e38a..6e381c3d 100644 --- a/actions/redshift_describe_default_cluster_parameters.yaml +++ b/actions/redshift_describe_default_cluster_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_default_cluster_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_default_cluster_parameters immutable: true diff --git a/actions/redshift_describe_event_categories.yaml b/actions/redshift_describe_event_categories.yaml index 6b5db2b5..400c29e1 100644 --- a/actions/redshift_describe_event_categories.yaml +++ b/actions/redshift_describe_event_categories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_event_categories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_categories immutable: true diff --git a/actions/redshift_describe_event_subscriptions.yaml b/actions/redshift_describe_event_subscriptions.yaml index d4ae133b..21d8484f 100644 --- a/actions/redshift_describe_event_subscriptions.yaml +++ b/actions/redshift_describe_event_subscriptions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_event_subscriptions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_event_subscriptions immutable: true diff --git a/actions/redshift_describe_events.yaml b/actions/redshift_describe_events.yaml index 815ddb73..7f6a0a29 100644 --- a/actions/redshift_describe_events.yaml +++ b/actions/redshift_describe_events.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_events runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_events immutable: true diff --git a/actions/redshift_describe_hsm_client_certificates.yaml b/actions/redshift_describe_hsm_client_certificates.yaml index 2e9e13a3..820aa665 100644 --- a/actions/redshift_describe_hsm_client_certificates.yaml +++ b/actions/redshift_describe_hsm_client_certificates.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_hsm_client_certificates runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_hsm_client_certificates immutable: true diff --git a/actions/redshift_describe_hsm_configurations.yaml b/actions/redshift_describe_hsm_configurations.yaml index 4abb46a0..ad6b62c6 100644 --- a/actions/redshift_describe_hsm_configurations.yaml +++ b/actions/redshift_describe_hsm_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_hsm_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_hsm_configurations immutable: true diff --git a/actions/redshift_describe_logging_status.yaml b/actions/redshift_describe_logging_status.yaml index a9a7df3c..078800b2 100644 --- a/actions/redshift_describe_logging_status.yaml +++ b/actions/redshift_describe_logging_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_logging_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_logging_status immutable: true diff --git a/actions/redshift_describe_orderable_cluster_options.yaml b/actions/redshift_describe_orderable_cluster_options.yaml index 4a26a466..1e214894 100644 --- a/actions/redshift_describe_orderable_cluster_options.yaml +++ b/actions/redshift_describe_orderable_cluster_options.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_orderable_cluster_options runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_orderable_cluster_options immutable: true diff --git a/actions/redshift_describe_reserved_node_offerings.yaml b/actions/redshift_describe_reserved_node_offerings.yaml index 4910476a..7eef6de2 100644 --- a/actions/redshift_describe_reserved_node_offerings.yaml +++ b/actions/redshift_describe_reserved_node_offerings.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_reserved_node_offerings runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_node_offerings immutable: true diff --git a/actions/redshift_describe_reserved_nodes.yaml b/actions/redshift_describe_reserved_nodes.yaml index 50092a1d..18909c77 100644 --- a/actions/redshift_describe_reserved_nodes.yaml +++ b/actions/redshift_describe_reserved_nodes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_reserved_nodes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_nodes immutable: true diff --git a/actions/redshift_describe_resize.yaml b/actions/redshift_describe_resize.yaml index 7b435d8f..8d6d3f4a 100644 --- a/actions/redshift_describe_resize.yaml +++ b/actions/redshift_describe_resize.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_resize runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_resize immutable: true diff --git a/actions/redshift_describe_snapshot_copy_grants.yaml b/actions/redshift_describe_snapshot_copy_grants.yaml index d3fc9d41..ce30c83d 100644 --- a/actions/redshift_describe_snapshot_copy_grants.yaml +++ b/actions/redshift_describe_snapshot_copy_grants.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_snapshot_copy_grants runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_snapshot_copy_grants immutable: true diff --git a/actions/redshift_describe_table_restore_status.yaml b/actions/redshift_describe_table_restore_status.yaml index 7988b085..bed008c8 100644 --- a/actions/redshift_describe_table_restore_status.yaml +++ b/actions/redshift_describe_table_restore_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_table_restore_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_table_restore_status immutable: true diff --git a/actions/redshift_describe_tags.yaml b/actions/redshift_describe_tags.yaml index 7cb7ac1e..930d42b1 100644 --- a/actions/redshift_describe_tags.yaml +++ b/actions/redshift_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/redshift_disable_logging.yaml b/actions/redshift_disable_logging.yaml index 480876b8..4f5637ac 100644 --- a/actions/redshift_disable_logging.yaml +++ b/actions/redshift_disable_logging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_disable_logging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_logging immutable: true diff --git a/actions/redshift_disable_snapshot_copy.yaml b/actions/redshift_disable_snapshot_copy.yaml index 23d4aed9..1b1c78a3 100644 --- a/actions/redshift_disable_snapshot_copy.yaml +++ b/actions/redshift_disable_snapshot_copy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_disable_snapshot_copy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_snapshot_copy immutable: true diff --git a/actions/redshift_enable_logging.yaml b/actions/redshift_enable_logging.yaml index d1b4441b..1f0fd0ba 100644 --- a/actions/redshift_enable_logging.yaml +++ b/actions/redshift_enable_logging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_enable_logging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_logging immutable: true diff --git a/actions/redshift_enable_snapshot_copy.yaml b/actions/redshift_enable_snapshot_copy.yaml index 69bf6208..442535dd 100644 --- a/actions/redshift_enable_snapshot_copy.yaml +++ b/actions/redshift_enable_snapshot_copy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_enable_snapshot_copy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_snapshot_copy immutable: true diff --git a/actions/redshift_get_cluster_credentials.yaml b/actions/redshift_get_cluster_credentials.yaml index 1112755f..ca6a2769 100644 --- a/actions/redshift_get_cluster_credentials.yaml +++ b/actions/redshift_get_cluster_credentials.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_get_cluster_credentials runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_cluster_credentials immutable: true diff --git a/actions/redshift_modify_cluster.yaml b/actions/redshift_modify_cluster.yaml index eb310656..fc195bfe 100644 --- a/actions/redshift_modify_cluster.yaml +++ b/actions/redshift_modify_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_modify_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cluster immutable: true diff --git a/actions/redshift_modify_cluster_iam_roles.yaml b/actions/redshift_modify_cluster_iam_roles.yaml index 730ba98c..5fe74e00 100644 --- a/actions/redshift_modify_cluster_iam_roles.yaml +++ b/actions/redshift_modify_cluster_iam_roles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_modify_cluster_iam_roles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cluster_iam_roles immutable: true diff --git a/actions/redshift_modify_cluster_parameter_group.yaml b/actions/redshift_modify_cluster_parameter_group.yaml index bc61a336..6ed44856 100644 --- a/actions/redshift_modify_cluster_parameter_group.yaml +++ b/actions/redshift_modify_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_modify_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cluster_parameter_group immutable: true diff --git a/actions/redshift_modify_cluster_subnet_group.yaml b/actions/redshift_modify_cluster_subnet_group.yaml index 6630b9f8..db5d5462 100644 --- a/actions/redshift_modify_cluster_subnet_group.yaml +++ b/actions/redshift_modify_cluster_subnet_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_modify_cluster_subnet_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_cluster_subnet_group immutable: true diff --git a/actions/redshift_modify_event_subscription.yaml b/actions/redshift_modify_event_subscription.yaml index 9f487ed1..e34002e7 100644 --- a/actions/redshift_modify_event_subscription.yaml +++ b/actions/redshift_modify_event_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_modify_event_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_event_subscription immutable: true diff --git a/actions/redshift_modify_snapshot_copy_retention_period.yaml b/actions/redshift_modify_snapshot_copy_retention_period.yaml index 73f62675..8bc5ab7a 100644 --- a/actions/redshift_modify_snapshot_copy_retention_period.yaml +++ b/actions/redshift_modify_snapshot_copy_retention_period.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_modify_snapshot_copy_retention_period runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_snapshot_copy_retention_period immutable: true diff --git a/actions/redshift_purchase_reserved_node_offering.yaml b/actions/redshift_purchase_reserved_node_offering.yaml index 8cfae3f4..85638e65 100644 --- a/actions/redshift_purchase_reserved_node_offering.yaml +++ b/actions/redshift_purchase_reserved_node_offering.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_purchase_reserved_node_offering runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purchase_reserved_node_offering immutable: true diff --git a/actions/redshift_reboot_cluster.yaml b/actions/redshift_reboot_cluster.yaml index 54a8e791..4d90a4e4 100644 --- a/actions/redshift_reboot_cluster.yaml +++ b/actions/redshift_reboot_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_reboot_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_cluster immutable: true diff --git a/actions/redshift_reset_cluster_parameter_group.yaml b/actions/redshift_reset_cluster_parameter_group.yaml index 2dce82f7..eb60d073 100644 --- a/actions/redshift_reset_cluster_parameter_group.yaml +++ b/actions/redshift_reset_cluster_parameter_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_reset_cluster_parameter_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_cluster_parameter_group immutable: true diff --git a/actions/redshift_restore_from_cluster_snapshot.yaml b/actions/redshift_restore_from_cluster_snapshot.yaml index d7fafa8c..1ed9b202 100644 --- a/actions/redshift_restore_from_cluster_snapshot.yaml +++ b/actions/redshift_restore_from_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_restore_from_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_from_cluster_snapshot immutable: true diff --git a/actions/redshift_restore_table_from_cluster_snapshot.yaml b/actions/redshift_restore_table_from_cluster_snapshot.yaml index f833e57e..0943dae7 100644 --- a/actions/redshift_restore_table_from_cluster_snapshot.yaml +++ b/actions/redshift_restore_table_from_cluster_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_restore_table_from_cluster_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_table_from_cluster_snapshot immutable: true diff --git a/actions/redshift_revoke_cluster_security_group_ingress.yaml b/actions/redshift_revoke_cluster_security_group_ingress.yaml index c4e3be1b..bc39c4b5 100644 --- a/actions/redshift_revoke_cluster_security_group_ingress.yaml +++ b/actions/redshift_revoke_cluster_security_group_ingress.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_revoke_cluster_security_group_ingress runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_cluster_security_group_ingress immutable: true diff --git a/actions/redshift_revoke_snapshot_access.yaml b/actions/redshift_revoke_snapshot_access.yaml index 3b99170a..be744392 100644 --- a/actions/redshift_revoke_snapshot_access.yaml +++ b/actions/redshift_revoke_snapshot_access.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_revoke_snapshot_access runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: revoke_snapshot_access immutable: true diff --git a/actions/redshift_rotate_encryption_key.yaml b/actions/redshift_rotate_encryption_key.yaml index 5eec9b41..ee274d12 100644 --- a/actions/redshift_rotate_encryption_key.yaml +++ b/actions/redshift_rotate_encryption_key.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: redshift_rotate_encryption_key runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: rotate_encryption_key immutable: true diff --git a/actions/rekognition_compare_faces.yaml b/actions/rekognition_compare_faces.yaml index 20f4f318..0636ab17 100644 --- a/actions/rekognition_compare_faces.yaml +++ b/actions/rekognition_compare_faces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_compare_faces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: compare_faces immutable: true diff --git a/actions/rekognition_create_collection.yaml b/actions/rekognition_create_collection.yaml index 84e7736c..b88a4d25 100644 --- a/actions/rekognition_create_collection.yaml +++ b/actions/rekognition_create_collection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_create_collection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_collection immutable: true diff --git a/actions/rekognition_delete_collection.yaml b/actions/rekognition_delete_collection.yaml index 1ddf3ab0..a6a73a0c 100644 --- a/actions/rekognition_delete_collection.yaml +++ b/actions/rekognition_delete_collection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_delete_collection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_collection immutable: true diff --git a/actions/rekognition_delete_faces.yaml b/actions/rekognition_delete_faces.yaml index 8678e827..a48ba6e5 100644 --- a/actions/rekognition_delete_faces.yaml +++ b/actions/rekognition_delete_faces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_delete_faces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_faces immutable: true diff --git a/actions/rekognition_detect_faces.yaml b/actions/rekognition_detect_faces.yaml index faa8b3df..ffc6a834 100644 --- a/actions/rekognition_detect_faces.yaml +++ b/actions/rekognition_detect_faces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_detect_faces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detect_faces immutable: true diff --git a/actions/rekognition_detect_labels.yaml b/actions/rekognition_detect_labels.yaml index e0288465..9b2d8785 100644 --- a/actions/rekognition_detect_labels.yaml +++ b/actions/rekognition_detect_labels.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_detect_labels runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detect_labels immutable: true diff --git a/actions/rekognition_detect_moderation_labels.yaml b/actions/rekognition_detect_moderation_labels.yaml index 55268759..5475d1fe 100644 --- a/actions/rekognition_detect_moderation_labels.yaml +++ b/actions/rekognition_detect_moderation_labels.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_detect_moderation_labels runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: detect_moderation_labels immutable: true diff --git a/actions/rekognition_get_celebrity_info.yaml b/actions/rekognition_get_celebrity_info.yaml index 07a8b016..c4602559 100644 --- a/actions/rekognition_get_celebrity_info.yaml +++ b/actions/rekognition_get_celebrity_info.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_get_celebrity_info runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_celebrity_info immutable: true diff --git a/actions/rekognition_index_faces.yaml b/actions/rekognition_index_faces.yaml index 5c23a035..78886ae8 100644 --- a/actions/rekognition_index_faces.yaml +++ b/actions/rekognition_index_faces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_index_faces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: index_faces immutable: true diff --git a/actions/rekognition_list_collections.yaml b/actions/rekognition_list_collections.yaml index f1bce409..4415523d 100644 --- a/actions/rekognition_list_collections.yaml +++ b/actions/rekognition_list_collections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_list_collections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_collections immutable: true diff --git a/actions/rekognition_list_faces.yaml b/actions/rekognition_list_faces.yaml index 0e9aeb68..9e627837 100644 --- a/actions/rekognition_list_faces.yaml +++ b/actions/rekognition_list_faces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_list_faces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_faces immutable: true diff --git a/actions/rekognition_recognize_celebrities.yaml b/actions/rekognition_recognize_celebrities.yaml index b50ad92e..b0464779 100644 --- a/actions/rekognition_recognize_celebrities.yaml +++ b/actions/rekognition_recognize_celebrities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_recognize_celebrities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: recognize_celebrities immutable: true diff --git a/actions/rekognition_search_faces.yaml b/actions/rekognition_search_faces.yaml index 4076d98f..12c644cd 100644 --- a/actions/rekognition_search_faces.yaml +++ b/actions/rekognition_search_faces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_search_faces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: search_faces immutable: true diff --git a/actions/rekognition_search_faces_by_image.yaml b/actions/rekognition_search_faces_by_image.yaml index f6878cd4..dd4a730e 100644 --- a/actions/rekognition_search_faces_by_image.yaml +++ b/actions/rekognition_search_faces_by_image.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: rekognition_search_faces_by_image runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: search_faces_by_image immutable: true diff --git a/actions/resourcegroupstaggingapi_get_resources.yaml b/actions/resourcegroupstaggingapi_get_resources.yaml index 4032137a..978c9ada 100644 --- a/actions/resourcegroupstaggingapi_get_resources.yaml +++ b/actions/resourcegroupstaggingapi_get_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: resourcegroupstaggingapi_get_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_resources immutable: true diff --git a/actions/resourcegroupstaggingapi_get_tag_keys.yaml b/actions/resourcegroupstaggingapi_get_tag_keys.yaml index b12a4b5d..abe1a8c0 100644 --- a/actions/resourcegroupstaggingapi_get_tag_keys.yaml +++ b/actions/resourcegroupstaggingapi_get_tag_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: resourcegroupstaggingapi_get_tag_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_tag_keys immutable: true diff --git a/actions/resourcegroupstaggingapi_get_tag_values.yaml b/actions/resourcegroupstaggingapi_get_tag_values.yaml index ac4c8369..6843514a 100644 --- a/actions/resourcegroupstaggingapi_get_tag_values.yaml +++ b/actions/resourcegroupstaggingapi_get_tag_values.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: resourcegroupstaggingapi_get_tag_values runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_tag_values immutable: true diff --git a/actions/resourcegroupstaggingapi_tag_resources.yaml b/actions/resourcegroupstaggingapi_tag_resources.yaml index 6cf28df5..2a4ee677 100644 --- a/actions/resourcegroupstaggingapi_tag_resources.yaml +++ b/actions/resourcegroupstaggingapi_tag_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: resourcegroupstaggingapi_tag_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: tag_resources immutable: true diff --git a/actions/resourcegroupstaggingapi_untag_resources.yaml b/actions/resourcegroupstaggingapi_untag_resources.yaml index c8e7049a..92e56cf1 100644 --- a/actions/resourcegroupstaggingapi_untag_resources.yaml +++ b/actions/resourcegroupstaggingapi_untag_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: resourcegroupstaggingapi_untag_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: untag_resources immutable: true diff --git a/actions/route53_associate_vpc_with_hosted_zone.yaml b/actions/route53_associate_vpc_with_hosted_zone.yaml index a3d8f4be..231c3f10 100644 --- a/actions/route53_associate_vpc_with_hosted_zone.yaml +++ b/actions/route53_associate_vpc_with_hosted_zone.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_associate_vpc_with_hosted_zone runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_vpc_with_hosted_zone immutable: true diff --git a/actions/route53_change_resource_record_sets.yaml b/actions/route53_change_resource_record_sets.yaml index 1827c85c..0cbd9204 100644 --- a/actions/route53_change_resource_record_sets.yaml +++ b/actions/route53_change_resource_record_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_change_resource_record_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: change_resource_record_sets immutable: true diff --git a/actions/route53_change_tags_for_resource.yaml b/actions/route53_change_tags_for_resource.yaml index a6d44fa1..acb17ef2 100644 --- a/actions/route53_change_tags_for_resource.yaml +++ b/actions/route53_change_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_change_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: change_tags_for_resource immutable: true diff --git a/actions/route53_create_health_check.yaml b/actions/route53_create_health_check.yaml index 8a1ed543..0bffbb21 100644 --- a/actions/route53_create_health_check.yaml +++ b/actions/route53_create_health_check.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_health_check runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_health_check immutable: true diff --git a/actions/route53_create_hosted_zone.yaml b/actions/route53_create_hosted_zone.yaml index bf20bf12..b1f9884a 100644 --- a/actions/route53_create_hosted_zone.yaml +++ b/actions/route53_create_hosted_zone.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_hosted_zone runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_hosted_zone immutable: true diff --git a/actions/route53_create_reusable_delegation_set.yaml b/actions/route53_create_reusable_delegation_set.yaml index aaeed6c5..60556092 100644 --- a/actions/route53_create_reusable_delegation_set.yaml +++ b/actions/route53_create_reusable_delegation_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_reusable_delegation_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_reusable_delegation_set immutable: true diff --git a/actions/route53_create_traffic_policy.yaml b/actions/route53_create_traffic_policy.yaml index 24543507..a24f1cbe 100644 --- a/actions/route53_create_traffic_policy.yaml +++ b/actions/route53_create_traffic_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_traffic_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_traffic_policy immutable: true diff --git a/actions/route53_create_traffic_policy_instance.yaml b/actions/route53_create_traffic_policy_instance.yaml index f125e777..a7e1a228 100644 --- a/actions/route53_create_traffic_policy_instance.yaml +++ b/actions/route53_create_traffic_policy_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_traffic_policy_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_traffic_policy_instance immutable: true diff --git a/actions/route53_create_traffic_policy_version.yaml b/actions/route53_create_traffic_policy_version.yaml index ad3a1c03..4905c48e 100644 --- a/actions/route53_create_traffic_policy_version.yaml +++ b/actions/route53_create_traffic_policy_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_traffic_policy_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_traffic_policy_version immutable: true diff --git a/actions/route53_create_vpc_association_authorization.yaml b/actions/route53_create_vpc_association_authorization.yaml index aecd4aae..bd293996 100644 --- a/actions/route53_create_vpc_association_authorization.yaml +++ b/actions/route53_create_vpc_association_authorization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_create_vpc_association_authorization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_vpc_association_authorization immutable: true diff --git a/actions/route53_delete_health_check.yaml b/actions/route53_delete_health_check.yaml index 73b7b6c9..4f86e485 100644 --- a/actions/route53_delete_health_check.yaml +++ b/actions/route53_delete_health_check.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_delete_health_check runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_health_check immutable: true diff --git a/actions/route53_delete_hosted_zone.yaml b/actions/route53_delete_hosted_zone.yaml index 8e1fe339..88769870 100644 --- a/actions/route53_delete_hosted_zone.yaml +++ b/actions/route53_delete_hosted_zone.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_delete_hosted_zone runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_hosted_zone immutable: true diff --git a/actions/route53_delete_reusable_delegation_set.yaml b/actions/route53_delete_reusable_delegation_set.yaml index 7158923a..00eda3c3 100644 --- a/actions/route53_delete_reusable_delegation_set.yaml +++ b/actions/route53_delete_reusable_delegation_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_delete_reusable_delegation_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_reusable_delegation_set immutable: true diff --git a/actions/route53_delete_traffic_policy.yaml b/actions/route53_delete_traffic_policy.yaml index 78a4ffbf..d638e952 100644 --- a/actions/route53_delete_traffic_policy.yaml +++ b/actions/route53_delete_traffic_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_delete_traffic_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_traffic_policy immutable: true diff --git a/actions/route53_delete_traffic_policy_instance.yaml b/actions/route53_delete_traffic_policy_instance.yaml index 5eccebd7..5bf7d839 100644 --- a/actions/route53_delete_traffic_policy_instance.yaml +++ b/actions/route53_delete_traffic_policy_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_delete_traffic_policy_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_traffic_policy_instance immutable: true diff --git a/actions/route53_delete_vpc_association_authorization.yaml b/actions/route53_delete_vpc_association_authorization.yaml index 2e63bf7c..ffd46d91 100644 --- a/actions/route53_delete_vpc_association_authorization.yaml +++ b/actions/route53_delete_vpc_association_authorization.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_delete_vpc_association_authorization runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_vpc_association_authorization immutable: true diff --git a/actions/route53_disassociate_vpc_from_hosted_zone.yaml b/actions/route53_disassociate_vpc_from_hosted_zone.yaml index 9deb6acc..3c1f2c1c 100644 --- a/actions/route53_disassociate_vpc_from_hosted_zone.yaml +++ b/actions/route53_disassociate_vpc_from_hosted_zone.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_disassociate_vpc_from_hosted_zone runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_vpc_from_hosted_zone immutable: true diff --git a/actions/route53_get_change.yaml b/actions/route53_get_change.yaml index 1fa05e3c..b76b3187 100644 --- a/actions/route53_get_change.yaml +++ b/actions/route53_get_change.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_change runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_change immutable: true diff --git a/actions/route53_get_checker_ip_ranges.yaml b/actions/route53_get_checker_ip_ranges.yaml index 0e57789e..3393e1a1 100644 --- a/actions/route53_get_checker_ip_ranges.yaml +++ b/actions/route53_get_checker_ip_ranges.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_checker_ip_ranges runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_checker_ip_ranges immutable: true diff --git a/actions/route53_get_geo_location.yaml b/actions/route53_get_geo_location.yaml index 6483a742..0231c851 100644 --- a/actions/route53_get_geo_location.yaml +++ b/actions/route53_get_geo_location.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_geo_location runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_geo_location immutable: true diff --git a/actions/route53_get_health_check.yaml b/actions/route53_get_health_check.yaml index 537ef8b9..9a6b535a 100644 --- a/actions/route53_get_health_check.yaml +++ b/actions/route53_get_health_check.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_health_check runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_health_check immutable: true diff --git a/actions/route53_get_health_check_count.yaml b/actions/route53_get_health_check_count.yaml index b9bf19bd..13145036 100644 --- a/actions/route53_get_health_check_count.yaml +++ b/actions/route53_get_health_check_count.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_health_check_count runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_health_check_count immutable: true diff --git a/actions/route53_get_health_check_last_failure_reason.yaml b/actions/route53_get_health_check_last_failure_reason.yaml index 63e79df6..953a7007 100644 --- a/actions/route53_get_health_check_last_failure_reason.yaml +++ b/actions/route53_get_health_check_last_failure_reason.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_health_check_last_failure_reason runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_health_check_last_failure_reason immutable: true diff --git a/actions/route53_get_health_check_status.yaml b/actions/route53_get_health_check_status.yaml index f32c135c..d697bc9e 100644 --- a/actions/route53_get_health_check_status.yaml +++ b/actions/route53_get_health_check_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_health_check_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_health_check_status immutable: true diff --git a/actions/route53_get_hosted_zone.yaml b/actions/route53_get_hosted_zone.yaml index 407ba27d..83534503 100644 --- a/actions/route53_get_hosted_zone.yaml +++ b/actions/route53_get_hosted_zone.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_hosted_zone runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_hosted_zone immutable: true diff --git a/actions/route53_get_hosted_zone_count.yaml b/actions/route53_get_hosted_zone_count.yaml index 43f8a8f0..4cd0b108 100644 --- a/actions/route53_get_hosted_zone_count.yaml +++ b/actions/route53_get_hosted_zone_count.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_hosted_zone_count runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_hosted_zone_count immutable: true diff --git a/actions/route53_get_reusable_delegation_set.yaml b/actions/route53_get_reusable_delegation_set.yaml index 3f8870f4..64c9465f 100644 --- a/actions/route53_get_reusable_delegation_set.yaml +++ b/actions/route53_get_reusable_delegation_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_reusable_delegation_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_reusable_delegation_set immutable: true diff --git a/actions/route53_get_traffic_policy.yaml b/actions/route53_get_traffic_policy.yaml index 6573a7d3..f3f2f020 100644 --- a/actions/route53_get_traffic_policy.yaml +++ b/actions/route53_get_traffic_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_traffic_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_traffic_policy immutable: true diff --git a/actions/route53_get_traffic_policy_instance.yaml b/actions/route53_get_traffic_policy_instance.yaml index c240f709..047ddf3d 100644 --- a/actions/route53_get_traffic_policy_instance.yaml +++ b/actions/route53_get_traffic_policy_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_traffic_policy_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_traffic_policy_instance immutable: true diff --git a/actions/route53_get_traffic_policy_instance_count.yaml b/actions/route53_get_traffic_policy_instance_count.yaml index 4d36a8d2..a8a2777b 100644 --- a/actions/route53_get_traffic_policy_instance_count.yaml +++ b/actions/route53_get_traffic_policy_instance_count.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_get_traffic_policy_instance_count runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_traffic_policy_instance_count immutable: true diff --git a/actions/route53_list_geo_locations.yaml b/actions/route53_list_geo_locations.yaml index 3b97597e..cc1076d0 100644 --- a/actions/route53_list_geo_locations.yaml +++ b/actions/route53_list_geo_locations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_geo_locations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_geo_locations immutable: true diff --git a/actions/route53_list_health_checks.yaml b/actions/route53_list_health_checks.yaml index aa93fc75..cc41830f 100644 --- a/actions/route53_list_health_checks.yaml +++ b/actions/route53_list_health_checks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_health_checks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_health_checks immutable: true diff --git a/actions/route53_list_hosted_zones.yaml b/actions/route53_list_hosted_zones.yaml index 74bf7267..4d18302d 100644 --- a/actions/route53_list_hosted_zones.yaml +++ b/actions/route53_list_hosted_zones.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_hosted_zones runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_hosted_zones immutable: true diff --git a/actions/route53_list_hosted_zones_by_name.yaml b/actions/route53_list_hosted_zones_by_name.yaml index b7b8bee9..b136f419 100644 --- a/actions/route53_list_hosted_zones_by_name.yaml +++ b/actions/route53_list_hosted_zones_by_name.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_hosted_zones_by_name runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_hosted_zones_by_name immutable: true diff --git a/actions/route53_list_resource_record_sets.yaml b/actions/route53_list_resource_record_sets.yaml index 2b88d225..37fc1797 100644 --- a/actions/route53_list_resource_record_sets.yaml +++ b/actions/route53_list_resource_record_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_resource_record_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_resource_record_sets immutable: true diff --git a/actions/route53_list_reusable_delegation_sets.yaml b/actions/route53_list_reusable_delegation_sets.yaml index f9d09296..5ea2f588 100644 --- a/actions/route53_list_reusable_delegation_sets.yaml +++ b/actions/route53_list_reusable_delegation_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_reusable_delegation_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_reusable_delegation_sets immutable: true diff --git a/actions/route53_list_tags_for_resource.yaml b/actions/route53_list_tags_for_resource.yaml index eb223250..46c1c3de 100644 --- a/actions/route53_list_tags_for_resource.yaml +++ b/actions/route53_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/route53_list_tags_for_resources.yaml b/actions/route53_list_tags_for_resources.yaml index 492c12d9..81cf36a5 100644 --- a/actions/route53_list_tags_for_resources.yaml +++ b/actions/route53_list_tags_for_resources.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_tags_for_resources runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resources immutable: true diff --git a/actions/route53_list_traffic_policies.yaml b/actions/route53_list_traffic_policies.yaml index b7f563e2..e1859083 100644 --- a/actions/route53_list_traffic_policies.yaml +++ b/actions/route53_list_traffic_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_traffic_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_traffic_policies immutable: true diff --git a/actions/route53_list_traffic_policy_instances.yaml b/actions/route53_list_traffic_policy_instances.yaml index 118f9f35..cb84e8b0 100644 --- a/actions/route53_list_traffic_policy_instances.yaml +++ b/actions/route53_list_traffic_policy_instances.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_traffic_policy_instances runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_traffic_policy_instances immutable: true diff --git a/actions/route53_list_traffic_policy_instances_by_hosted_zone.yaml b/actions/route53_list_traffic_policy_instances_by_hosted_zone.yaml index 5a0e4511..5b8ad383 100644 --- a/actions/route53_list_traffic_policy_instances_by_hosted_zone.yaml +++ b/actions/route53_list_traffic_policy_instances_by_hosted_zone.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_traffic_policy_instances_by_hosted_zone runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_traffic_policy_instances_by_hosted_zone immutable: true diff --git a/actions/route53_list_traffic_policy_instances_by_policy.yaml b/actions/route53_list_traffic_policy_instances_by_policy.yaml index 98ffbbd9..c3e80498 100644 --- a/actions/route53_list_traffic_policy_instances_by_policy.yaml +++ b/actions/route53_list_traffic_policy_instances_by_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_traffic_policy_instances_by_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_traffic_policy_instances_by_policy immutable: true diff --git a/actions/route53_list_traffic_policy_versions.yaml b/actions/route53_list_traffic_policy_versions.yaml index 36f0b5ec..75fee443 100644 --- a/actions/route53_list_traffic_policy_versions.yaml +++ b/actions/route53_list_traffic_policy_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_traffic_policy_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_traffic_policy_versions immutable: true diff --git a/actions/route53_list_vpc_association_authorizations.yaml b/actions/route53_list_vpc_association_authorizations.yaml index c0795693..f5b861b2 100644 --- a/actions/route53_list_vpc_association_authorizations.yaml +++ b/actions/route53_list_vpc_association_authorizations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_list_vpc_association_authorizations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_vpc_association_authorizations immutable: true diff --git a/actions/route53_test_dns_answer.yaml b/actions/route53_test_dns_answer.yaml index 50cc5375..7ba5ff1c 100644 --- a/actions/route53_test_dns_answer.yaml +++ b/actions/route53_test_dns_answer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_test_dns_answer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: test_dns_answer immutable: true diff --git a/actions/route53_update_health_check.yaml b/actions/route53_update_health_check.yaml index d3c8c1ee..8befc7d4 100644 --- a/actions/route53_update_health_check.yaml +++ b/actions/route53_update_health_check.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_update_health_check runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_health_check immutable: true diff --git a/actions/route53_update_hosted_zone_comment.yaml b/actions/route53_update_hosted_zone_comment.yaml index db9cf907..b2dbd7f8 100644 --- a/actions/route53_update_hosted_zone_comment.yaml +++ b/actions/route53_update_hosted_zone_comment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_update_hosted_zone_comment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_hosted_zone_comment immutable: true diff --git a/actions/route53_update_traffic_policy_comment.yaml b/actions/route53_update_traffic_policy_comment.yaml index 361968df..108732f6 100644 --- a/actions/route53_update_traffic_policy_comment.yaml +++ b/actions/route53_update_traffic_policy_comment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_update_traffic_policy_comment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_traffic_policy_comment immutable: true diff --git a/actions/route53_update_traffic_policy_instance.yaml b/actions/route53_update_traffic_policy_instance.yaml index 83070a96..939e6bb1 100644 --- a/actions/route53_update_traffic_policy_instance.yaml +++ b/actions/route53_update_traffic_policy_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53_update_traffic_policy_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_traffic_policy_instance immutable: true diff --git a/actions/route53domains_check_domain_availability.yaml b/actions/route53domains_check_domain_availability.yaml index 9884511a..074cb037 100644 --- a/actions/route53domains_check_domain_availability.yaml +++ b/actions/route53domains_check_domain_availability.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_check_domain_availability runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: check_domain_availability immutable: true diff --git a/actions/route53domains_delete_tags_for_domain.yaml b/actions/route53domains_delete_tags_for_domain.yaml index d6a3b383..e9b6ba14 100644 --- a/actions/route53domains_delete_tags_for_domain.yaml +++ b/actions/route53domains_delete_tags_for_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_delete_tags_for_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags_for_domain immutable: true diff --git a/actions/route53domains_disable_domain_auto_renew.yaml b/actions/route53domains_disable_domain_auto_renew.yaml index 8eb5db12..f966bb6b 100644 --- a/actions/route53domains_disable_domain_auto_renew.yaml +++ b/actions/route53domains_disable_domain_auto_renew.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_disable_domain_auto_renew runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_domain_auto_renew immutable: true diff --git a/actions/route53domains_disable_domain_transfer_lock.yaml b/actions/route53domains_disable_domain_transfer_lock.yaml index 9349a8b7..d0b72d97 100644 --- a/actions/route53domains_disable_domain_transfer_lock.yaml +++ b/actions/route53domains_disable_domain_transfer_lock.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_disable_domain_transfer_lock runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_domain_transfer_lock immutable: true diff --git a/actions/route53domains_enable_domain_auto_renew.yaml b/actions/route53domains_enable_domain_auto_renew.yaml index 4e3c9a28..a7998303 100644 --- a/actions/route53domains_enable_domain_auto_renew.yaml +++ b/actions/route53domains_enable_domain_auto_renew.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_enable_domain_auto_renew runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_domain_auto_renew immutable: true diff --git a/actions/route53domains_enable_domain_transfer_lock.yaml b/actions/route53domains_enable_domain_transfer_lock.yaml index ef5cc0ab..2acb16c4 100644 --- a/actions/route53domains_enable_domain_transfer_lock.yaml +++ b/actions/route53domains_enable_domain_transfer_lock.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_enable_domain_transfer_lock runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: enable_domain_transfer_lock immutable: true diff --git a/actions/route53domains_get_contact_reachability_status.yaml b/actions/route53domains_get_contact_reachability_status.yaml index 20c2e365..6418b29a 100644 --- a/actions/route53domains_get_contact_reachability_status.yaml +++ b/actions/route53domains_get_contact_reachability_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_get_contact_reachability_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_contact_reachability_status immutable: true diff --git a/actions/route53domains_get_domain_detail.yaml b/actions/route53domains_get_domain_detail.yaml index 7acd029f..970a83b6 100644 --- a/actions/route53domains_get_domain_detail.yaml +++ b/actions/route53domains_get_domain_detail.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_get_domain_detail runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_domain_detail immutable: true diff --git a/actions/route53domains_get_domain_suggestions.yaml b/actions/route53domains_get_domain_suggestions.yaml index a79d94a7..586695f0 100644 --- a/actions/route53domains_get_domain_suggestions.yaml +++ b/actions/route53domains_get_domain_suggestions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_get_domain_suggestions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_domain_suggestions immutable: true diff --git a/actions/route53domains_get_operation_detail.yaml b/actions/route53domains_get_operation_detail.yaml index d92fd730..df0493e7 100644 --- a/actions/route53domains_get_operation_detail.yaml +++ b/actions/route53domains_get_operation_detail.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_get_operation_detail runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_operation_detail immutable: true diff --git a/actions/route53domains_list_domains.yaml b/actions/route53domains_list_domains.yaml index 4b6175fb..ad21d16a 100644 --- a/actions/route53domains_list_domains.yaml +++ b/actions/route53domains_list_domains.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_list_domains runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_domains immutable: true diff --git a/actions/route53domains_list_operations.yaml b/actions/route53domains_list_operations.yaml index b0cdd409..38f1409a 100644 --- a/actions/route53domains_list_operations.yaml +++ b/actions/route53domains_list_operations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_list_operations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_operations immutable: true diff --git a/actions/route53domains_list_tags_for_domain.yaml b/actions/route53domains_list_tags_for_domain.yaml index e198a15b..f48905bc 100644 --- a/actions/route53domains_list_tags_for_domain.yaml +++ b/actions/route53domains_list_tags_for_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_list_tags_for_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_domain immutable: true diff --git a/actions/route53domains_register_domain.yaml b/actions/route53domains_register_domain.yaml index f83cf935..15313fab 100644 --- a/actions/route53domains_register_domain.yaml +++ b/actions/route53domains_register_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_register_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_domain immutable: true diff --git a/actions/route53domains_renew_domain.yaml b/actions/route53domains_renew_domain.yaml index e1f3d74a..a3433ba1 100644 --- a/actions/route53domains_renew_domain.yaml +++ b/actions/route53domains_renew_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_renew_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: renew_domain immutable: true diff --git a/actions/route53domains_resend_contact_reachability_email.yaml b/actions/route53domains_resend_contact_reachability_email.yaml index 90ca5c9d..ebe7ad8a 100644 --- a/actions/route53domains_resend_contact_reachability_email.yaml +++ b/actions/route53domains_resend_contact_reachability_email.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_resend_contact_reachability_email runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resend_contact_reachability_email immutable: true diff --git a/actions/route53domains_retrieve_domain_auth_code.yaml b/actions/route53domains_retrieve_domain_auth_code.yaml index 257e53a3..f94842b8 100644 --- a/actions/route53domains_retrieve_domain_auth_code.yaml +++ b/actions/route53domains_retrieve_domain_auth_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_retrieve_domain_auth_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: retrieve_domain_auth_code immutable: true diff --git a/actions/route53domains_transfer_domain.yaml b/actions/route53domains_transfer_domain.yaml index 155872ab..555accbe 100644 --- a/actions/route53domains_transfer_domain.yaml +++ b/actions/route53domains_transfer_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_transfer_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: transfer_domain immutable: true diff --git a/actions/route53domains_update_domain_contact.yaml b/actions/route53domains_update_domain_contact.yaml index 0f900981..a4acd14e 100644 --- a/actions/route53domains_update_domain_contact.yaml +++ b/actions/route53domains_update_domain_contact.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_update_domain_contact runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_domain_contact immutable: true diff --git a/actions/route53domains_update_domain_contact_privacy.yaml b/actions/route53domains_update_domain_contact_privacy.yaml index 3940bae0..d8d132d1 100644 --- a/actions/route53domains_update_domain_contact_privacy.yaml +++ b/actions/route53domains_update_domain_contact_privacy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_update_domain_contact_privacy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_domain_contact_privacy immutable: true diff --git a/actions/route53domains_update_domain_nameservers.yaml b/actions/route53domains_update_domain_nameservers.yaml index 4d7ee1a2..1f7022b5 100644 --- a/actions/route53domains_update_domain_nameservers.yaml +++ b/actions/route53domains_update_domain_nameservers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_update_domain_nameservers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_domain_nameservers immutable: true diff --git a/actions/route53domains_update_tags_for_domain.yaml b/actions/route53domains_update_tags_for_domain.yaml index 5245d05d..efba3833 100644 --- a/actions/route53domains_update_tags_for_domain.yaml +++ b/actions/route53domains_update_tags_for_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_update_tags_for_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_tags_for_domain immutable: true diff --git a/actions/route53domains_view_billing.yaml b/actions/route53domains_view_billing.yaml index e5d5d238..8ce0e4de 100644 --- a/actions/route53domains_view_billing.yaml +++ b/actions/route53domains_view_billing.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: route53domains_view_billing runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: view_billing immutable: true diff --git a/actions/s3_abort_multipart_upload.yaml b/actions/s3_abort_multipart_upload.yaml index 61b2b1ca..046e7a76 100644 --- a/actions/s3_abort_multipart_upload.yaml +++ b/actions/s3_abort_multipart_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_abort_multipart_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: abort_multipart_upload immutable: true diff --git a/actions/s3_build_base_http_request.yaml b/actions/s3_build_base_http_request.yaml index 547e2d07..f6f20196 100644 --- a/actions/s3_build_base_http_request.yaml +++ b/actions/s3_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/s3_build_post_form_args.yaml b/actions/s3_build_post_form_args.yaml index de5c3c2d..0c598f34 100644 --- a/actions/s3_build_post_form_args.yaml +++ b/actions/s3_build_post_form_args.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_build_post_form_args parameters: + account_id: + type: string + region: + type: string acl: type: string action: diff --git a/actions/s3_build_post_policy.yaml b/actions/s3_build_post_policy.yaml index c443150b..4d118a3e 100644 --- a/actions/s3_build_post_policy.yaml +++ b/actions/s3_build_post_policy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_build_post_policy parameters: + account_id: + type: string + region: + type: string action: default: build_post_policy immutable: true diff --git a/actions/s3_close.yaml b/actions/s3_close.yaml index 8286597c..b2cefac1 100644 --- a/actions/s3_close.yaml +++ b/actions/s3_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/s3_complete_multipart_upload.yaml b/actions/s3_complete_multipart_upload.yaml index c8013ba1..c09c6c74 100644 --- a/actions/s3_complete_multipart_upload.yaml +++ b/actions/s3_complete_multipart_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_complete_multipart_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: complete_multipart_upload immutable: true diff --git a/actions/s3_copy_object.yaml b/actions/s3_copy_object.yaml index 89b53229..6380e4d3 100644 --- a/actions/s3_copy_object.yaml +++ b/actions/s3_copy_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_copy_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: copy_object immutable: true diff --git a/actions/s3_create_bucket.yaml b/actions/s3_create_bucket.yaml index 54728b82..b0ccab6a 100644 --- a/actions/s3_create_bucket.yaml +++ b/actions/s3_create_bucket.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_create_bucket runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_bucket immutable: true diff --git a/actions/s3_create_multipart_upload.yaml b/actions/s3_create_multipart_upload.yaml index 0b762fc4..826df9b2 100644 --- a/actions/s3_create_multipart_upload.yaml +++ b/actions/s3_create_multipart_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_create_multipart_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_multipart_upload immutable: true diff --git a/actions/s3_delete_bucket.yaml b/actions/s3_delete_bucket.yaml index a67fef95..70fe2bfa 100644 --- a/actions/s3_delete_bucket.yaml +++ b/actions/s3_delete_bucket.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket immutable: true diff --git a/actions/s3_delete_bucket_analytics_configuration.yaml b/actions/s3_delete_bucket_analytics_configuration.yaml index 0b6d447f..c81eedf1 100644 --- a/actions/s3_delete_bucket_analytics_configuration.yaml +++ b/actions/s3_delete_bucket_analytics_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_analytics_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_analytics_configuration immutable: true diff --git a/actions/s3_delete_bucket_cors.yaml b/actions/s3_delete_bucket_cors.yaml index 89e4088a..2020629a 100644 --- a/actions/s3_delete_bucket_cors.yaml +++ b/actions/s3_delete_bucket_cors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_cors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_cors immutable: true diff --git a/actions/s3_delete_bucket_inventory_configuration.yaml b/actions/s3_delete_bucket_inventory_configuration.yaml index 377d338f..2524547d 100644 --- a/actions/s3_delete_bucket_inventory_configuration.yaml +++ b/actions/s3_delete_bucket_inventory_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_inventory_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_inventory_configuration immutable: true diff --git a/actions/s3_delete_bucket_lifecycle.yaml b/actions/s3_delete_bucket_lifecycle.yaml index 2979c1d5..cc0c675e 100644 --- a/actions/s3_delete_bucket_lifecycle.yaml +++ b/actions/s3_delete_bucket_lifecycle.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_lifecycle runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_lifecycle immutable: true diff --git a/actions/s3_delete_bucket_metrics_configuration.yaml b/actions/s3_delete_bucket_metrics_configuration.yaml index 6e8e3edd..ddb0629e 100644 --- a/actions/s3_delete_bucket_metrics_configuration.yaml +++ b/actions/s3_delete_bucket_metrics_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_metrics_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_metrics_configuration immutable: true diff --git a/actions/s3_delete_bucket_policy.yaml b/actions/s3_delete_bucket_policy.yaml index 44f00742..9befeb50 100644 --- a/actions/s3_delete_bucket_policy.yaml +++ b/actions/s3_delete_bucket_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_policy immutable: true diff --git a/actions/s3_delete_bucket_replication.yaml b/actions/s3_delete_bucket_replication.yaml index 55058373..4bce6236 100644 --- a/actions/s3_delete_bucket_replication.yaml +++ b/actions/s3_delete_bucket_replication.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_replication runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_replication immutable: true diff --git a/actions/s3_delete_bucket_tagging.yaml b/actions/s3_delete_bucket_tagging.yaml index 2a2a8bd2..8a6044e0 100644 --- a/actions/s3_delete_bucket_tagging.yaml +++ b/actions/s3_delete_bucket_tagging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_tagging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_tagging immutable: true diff --git a/actions/s3_delete_bucket_website.yaml b/actions/s3_delete_bucket_website.yaml index ca98602e..05fb6565 100644 --- a/actions/s3_delete_bucket_website.yaml +++ b/actions/s3_delete_bucket_website.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_bucket_website runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bucket_website immutable: true diff --git a/actions/s3_delete_object.yaml b/actions/s3_delete_object.yaml index 1b325359..6361519b 100644 --- a/actions/s3_delete_object.yaml +++ b/actions/s3_delete_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_object immutable: true diff --git a/actions/s3_delete_object_tagging.yaml b/actions/s3_delete_object_tagging.yaml index 9b3efded..c6c74bc6 100644 --- a/actions/s3_delete_object_tagging.yaml +++ b/actions/s3_delete_object_tagging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_object_tagging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_object_tagging immutable: true diff --git a/actions/s3_delete_objects.yaml b/actions/s3_delete_objects.yaml index f4bd6cc6..5a8334b6 100644 --- a/actions/s3_delete_objects.yaml +++ b/actions/s3_delete_objects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_delete_objects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_objects immutable: true diff --git a/actions/s3_download_file.yaml b/actions/s3_download_file.yaml index 8a94dc43..a85d4bf2 100644 --- a/actions/s3_download_file.yaml +++ b/actions/s3_download_file.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_download_file parameters: + account_id: + type: string + region: + type: string action: default: download_file immutable: true diff --git a/actions/s3_generate_url.yaml b/actions/s3_generate_url.yaml index 23f08f77..19f21539 100644 --- a/actions/s3_generate_url.yaml +++ b/actions/s3_generate_url.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_generate_url parameters: + account_id: + type: string + region: + type: string action: default: generate_url immutable: true diff --git a/actions/s3_generate_url_sigv4.yaml b/actions/s3_generate_url_sigv4.yaml index e872195b..a251278a 100644 --- a/actions/s3_generate_url_sigv4.yaml +++ b/actions/s3_generate_url_sigv4.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_generate_url_sigv4 parameters: + account_id: + type: string + region: + type: string action: default: generate_url_sigv4 immutable: true diff --git a/actions/s3_get_all_buckets.yaml b/actions/s3_get_all_buckets.yaml index 58672b0e..3a07af01 100644 --- a/actions/s3_get_all_buckets.yaml +++ b/actions/s3_get_all_buckets.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_all_buckets parameters: + account_id: + type: string + region: + type: string action: default: get_all_buckets immutable: true diff --git a/actions/s3_get_bucket.yaml b/actions/s3_get_bucket.yaml index 76a2e115..3abb73f2 100644 --- a/actions/s3_get_bucket.yaml +++ b/actions/s3_get_bucket.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_bucket parameters: + account_id: + type: string + region: + type: string action: default: get_bucket immutable: true diff --git a/actions/s3_get_bucket_accelerate_configuration.yaml b/actions/s3_get_bucket_accelerate_configuration.yaml index dd9b492c..25a1f1cc 100644 --- a/actions/s3_get_bucket_accelerate_configuration.yaml +++ b/actions/s3_get_bucket_accelerate_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_accelerate_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_accelerate_configuration immutable: true diff --git a/actions/s3_get_bucket_acl.yaml b/actions/s3_get_bucket_acl.yaml index a7e34447..2bf93350 100644 --- a/actions/s3_get_bucket_acl.yaml +++ b/actions/s3_get_bucket_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_acl immutable: true diff --git a/actions/s3_get_bucket_analytics_configuration.yaml b/actions/s3_get_bucket_analytics_configuration.yaml index e423c275..691c5a10 100644 --- a/actions/s3_get_bucket_analytics_configuration.yaml +++ b/actions/s3_get_bucket_analytics_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_analytics_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_analytics_configuration immutable: true diff --git a/actions/s3_get_bucket_cors.yaml b/actions/s3_get_bucket_cors.yaml index 5b6ad5d1..0fa9ce71 100644 --- a/actions/s3_get_bucket_cors.yaml +++ b/actions/s3_get_bucket_cors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_cors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_cors immutable: true diff --git a/actions/s3_get_bucket_inventory_configuration.yaml b/actions/s3_get_bucket_inventory_configuration.yaml index 1275114d..7ef86d9c 100644 --- a/actions/s3_get_bucket_inventory_configuration.yaml +++ b/actions/s3_get_bucket_inventory_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_inventory_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_inventory_configuration immutable: true diff --git a/actions/s3_get_bucket_lifecycle.yaml b/actions/s3_get_bucket_lifecycle.yaml index 5896f2e1..a4e712b0 100644 --- a/actions/s3_get_bucket_lifecycle.yaml +++ b/actions/s3_get_bucket_lifecycle.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_lifecycle runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_lifecycle immutable: true diff --git a/actions/s3_get_bucket_lifecycle_configuration.yaml b/actions/s3_get_bucket_lifecycle_configuration.yaml index 4651413d..351f3b46 100644 --- a/actions/s3_get_bucket_lifecycle_configuration.yaml +++ b/actions/s3_get_bucket_lifecycle_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_lifecycle_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_lifecycle_configuration immutable: true diff --git a/actions/s3_get_bucket_location.yaml b/actions/s3_get_bucket_location.yaml index e3cffb54..58363709 100644 --- a/actions/s3_get_bucket_location.yaml +++ b/actions/s3_get_bucket_location.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_location runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_location immutable: true diff --git a/actions/s3_get_bucket_logging.yaml b/actions/s3_get_bucket_logging.yaml index b66fd1ee..de3baae3 100644 --- a/actions/s3_get_bucket_logging.yaml +++ b/actions/s3_get_bucket_logging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_logging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_logging immutable: true diff --git a/actions/s3_get_bucket_metrics_configuration.yaml b/actions/s3_get_bucket_metrics_configuration.yaml index db64c3eb..f66cc857 100644 --- a/actions/s3_get_bucket_metrics_configuration.yaml +++ b/actions/s3_get_bucket_metrics_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_metrics_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_metrics_configuration immutable: true diff --git a/actions/s3_get_bucket_notification.yaml b/actions/s3_get_bucket_notification.yaml index beb21b4e..96bc383c 100644 --- a/actions/s3_get_bucket_notification.yaml +++ b/actions/s3_get_bucket_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_notification immutable: true diff --git a/actions/s3_get_bucket_notification_configuration.yaml b/actions/s3_get_bucket_notification_configuration.yaml index aca7fec6..c0868ce1 100644 --- a/actions/s3_get_bucket_notification_configuration.yaml +++ b/actions/s3_get_bucket_notification_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_notification_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_notification_configuration immutable: true diff --git a/actions/s3_get_bucket_policy.yaml b/actions/s3_get_bucket_policy.yaml index 9e239949..91ba5a38 100644 --- a/actions/s3_get_bucket_policy.yaml +++ b/actions/s3_get_bucket_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_policy immutable: true diff --git a/actions/s3_get_bucket_replication.yaml b/actions/s3_get_bucket_replication.yaml index f542ce15..d11d0e6e 100644 --- a/actions/s3_get_bucket_replication.yaml +++ b/actions/s3_get_bucket_replication.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_replication runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_replication immutable: true diff --git a/actions/s3_get_bucket_request_payment.yaml b/actions/s3_get_bucket_request_payment.yaml index 92d81695..22b465ea 100644 --- a/actions/s3_get_bucket_request_payment.yaml +++ b/actions/s3_get_bucket_request_payment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_request_payment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_request_payment immutable: true diff --git a/actions/s3_get_bucket_tagging.yaml b/actions/s3_get_bucket_tagging.yaml index f102d60f..b5fee2bf 100644 --- a/actions/s3_get_bucket_tagging.yaml +++ b/actions/s3_get_bucket_tagging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_tagging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_tagging immutable: true diff --git a/actions/s3_get_bucket_versioning.yaml b/actions/s3_get_bucket_versioning.yaml index 95723e14..7a1b9e7d 100644 --- a/actions/s3_get_bucket_versioning.yaml +++ b/actions/s3_get_bucket_versioning.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_versioning runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_versioning immutable: true diff --git a/actions/s3_get_bucket_website.yaml b/actions/s3_get_bucket_website.yaml index b2108295..a5271566 100644 --- a/actions/s3_get_bucket_website.yaml +++ b/actions/s3_get_bucket_website.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_bucket_website runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_bucket_website immutable: true diff --git a/actions/s3_get_canonical_user_id.yaml b/actions/s3_get_canonical_user_id.yaml index bf8edc32..690f1b0f 100644 --- a/actions/s3_get_canonical_user_id.yaml +++ b/actions/s3_get_canonical_user_id.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_canonical_user_id parameters: + account_id: + type: string + region: + type: string action: default: get_canonical_user_id immutable: true diff --git a/actions/s3_get_http_connection.yaml b/actions/s3_get_http_connection.yaml index 9ae3c8a5..f0140ad4 100644 --- a/actions/s3_get_http_connection.yaml +++ b/actions/s3_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/s3_get_object.yaml b/actions/s3_get_object.yaml index 55f6b178..19cc6793 100644 --- a/actions/s3_get_object.yaml +++ b/actions/s3_get_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_object immutable: true diff --git a/actions/s3_get_object_acl.yaml b/actions/s3_get_object_acl.yaml index 52d10109..35dd2bd9 100644 --- a/actions/s3_get_object_acl.yaml +++ b/actions/s3_get_object_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_object_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_object_acl immutable: true diff --git a/actions/s3_get_object_tagging.yaml b/actions/s3_get_object_tagging.yaml index b39a71c4..8923c9c1 100644 --- a/actions/s3_get_object_tagging.yaml +++ b/actions/s3_get_object_tagging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_object_tagging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_object_tagging immutable: true diff --git a/actions/s3_get_object_torrent.yaml b/actions/s3_get_object_torrent.yaml index 3bf16ddd..2803bd0c 100644 --- a/actions/s3_get_object_torrent.yaml +++ b/actions/s3_get_object_torrent.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_get_object_torrent runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_object_torrent immutable: true diff --git a/actions/s3_get_path.yaml b/actions/s3_get_path.yaml index 16c5b6fc..2ce3012e 100644 --- a/actions/s3_get_path.yaml +++ b/actions/s3_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/s3_get_proxy_auth_header.yaml b/actions/s3_get_proxy_auth_header.yaml index 04db7fe6..a9407fcc 100644 --- a/actions/s3_get_proxy_auth_header.yaml +++ b/actions/s3_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/s3_get_proxy_url_with_auth.yaml b/actions/s3_get_proxy_url_with_auth.yaml index 02ab9fa2..495babca 100644 --- a/actions/s3_get_proxy_url_with_auth.yaml +++ b/actions/s3_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/s3_handle_proxy.yaml b/actions/s3_handle_proxy.yaml index 38eb77a2..4e591d1b 100644 --- a/actions/s3_handle_proxy.yaml +++ b/actions/s3_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/s3_head_bucket.yaml b/actions/s3_head_bucket.yaml index 58148dcc..bf9cbec3 100644 --- a/actions/s3_head_bucket.yaml +++ b/actions/s3_head_bucket.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_head_bucket runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: head_bucket immutable: true diff --git a/actions/s3_head_object.yaml b/actions/s3_head_object.yaml index d97a281e..e1e4ca5f 100644 --- a/actions/s3_head_object.yaml +++ b/actions/s3_head_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_head_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: head_object immutable: true diff --git a/actions/s3_list_bucket_analytics_configurations.yaml b/actions/s3_list_bucket_analytics_configurations.yaml index 29b54903..915ee827 100644 --- a/actions/s3_list_bucket_analytics_configurations.yaml +++ b/actions/s3_list_bucket_analytics_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_bucket_analytics_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_bucket_analytics_configurations immutable: true diff --git a/actions/s3_list_bucket_inventory_configurations.yaml b/actions/s3_list_bucket_inventory_configurations.yaml index 472da9e8..1225b2e5 100644 --- a/actions/s3_list_bucket_inventory_configurations.yaml +++ b/actions/s3_list_bucket_inventory_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_bucket_inventory_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_bucket_inventory_configurations immutable: true diff --git a/actions/s3_list_bucket_metrics_configurations.yaml b/actions/s3_list_bucket_metrics_configurations.yaml index 24c10ca1..2304b347 100644 --- a/actions/s3_list_bucket_metrics_configurations.yaml +++ b/actions/s3_list_bucket_metrics_configurations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_bucket_metrics_configurations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_bucket_metrics_configurations immutable: true diff --git a/actions/s3_list_multipart_uploads.yaml b/actions/s3_list_multipart_uploads.yaml index ed3f6630..e33ae597 100644 --- a/actions/s3_list_multipart_uploads.yaml +++ b/actions/s3_list_multipart_uploads.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_multipart_uploads runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_multipart_uploads immutable: true diff --git a/actions/s3_list_object_versions.yaml b/actions/s3_list_object_versions.yaml index c4d54ebb..201487e8 100644 --- a/actions/s3_list_object_versions.yaml +++ b/actions/s3_list_object_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_object_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_object_versions immutable: true diff --git a/actions/s3_list_objects.yaml b/actions/s3_list_objects.yaml index cc79570a..5a22d1a8 100644 --- a/actions/s3_list_objects.yaml +++ b/actions/s3_list_objects.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_objects runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_objects immutable: true diff --git a/actions/s3_list_objects_v2.yaml b/actions/s3_list_objects_v2.yaml index b84e602d..3f5b1bb9 100644 --- a/actions/s3_list_objects_v2.yaml +++ b/actions/s3_list_objects_v2.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_objects_v2 runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_objects_v2 immutable: true diff --git a/actions/s3_list_parts.yaml b/actions/s3_list_parts.yaml index e88ed4cc..cfa4c352 100644 --- a/actions/s3_list_parts.yaml +++ b/actions/s3_list_parts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_list_parts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_parts immutable: true diff --git a/actions/s3_lookup.yaml b/actions/s3_lookup.yaml index b57e44be..c9eed781 100644 --- a/actions/s3_lookup.yaml +++ b/actions/s3_lookup.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_lookup parameters: + account_id: + type: string + region: + type: string action: default: lookup immutable: true diff --git a/actions/s3_make_request.yaml b/actions/s3_make_request.yaml index f097f4e5..30a375fa 100644 --- a/actions/s3_make_request.yaml +++ b/actions/s3_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_make_request parameters: + account_id: + type: string + region: + type: string action: default: make_request immutable: true diff --git a/actions/s3_new_http_connection.yaml b/actions/s3_new_http_connection.yaml index d4349e3a..0255bddd 100644 --- a/actions/s3_new_http_connection.yaml +++ b/actions/s3_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/s3_prefix_proxy_to_path.yaml b/actions/s3_prefix_proxy_to_path.yaml index b099cfd3..b67d1ec3 100644 --- a/actions/s3_prefix_proxy_to_path.yaml +++ b/actions/s3_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/s3_proxy_ssl.yaml b/actions/s3_proxy_ssl.yaml index 0c7335e6..ce6877a8 100644 --- a/actions/s3_proxy_ssl.yaml +++ b/actions/s3_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/s3_put_bucket_accelerate_configuration.yaml b/actions/s3_put_bucket_accelerate_configuration.yaml index bd08a655..b80a80ed 100644 --- a/actions/s3_put_bucket_accelerate_configuration.yaml +++ b/actions/s3_put_bucket_accelerate_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_accelerate_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_accelerate_configuration immutable: true diff --git a/actions/s3_put_bucket_acl.yaml b/actions/s3_put_bucket_acl.yaml index 0e80c33b..089c36c8 100644 --- a/actions/s3_put_bucket_acl.yaml +++ b/actions/s3_put_bucket_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_acl immutable: true diff --git a/actions/s3_put_bucket_analytics_configuration.yaml b/actions/s3_put_bucket_analytics_configuration.yaml index 86e8cd57..0215ba91 100644 --- a/actions/s3_put_bucket_analytics_configuration.yaml +++ b/actions/s3_put_bucket_analytics_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_analytics_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_analytics_configuration immutable: true diff --git a/actions/s3_put_bucket_cors.yaml b/actions/s3_put_bucket_cors.yaml index da725b38..25684bdc 100644 --- a/actions/s3_put_bucket_cors.yaml +++ b/actions/s3_put_bucket_cors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_cors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_cors immutable: true diff --git a/actions/s3_put_bucket_inventory_configuration.yaml b/actions/s3_put_bucket_inventory_configuration.yaml index 6a0f9ba7..4862001c 100644 --- a/actions/s3_put_bucket_inventory_configuration.yaml +++ b/actions/s3_put_bucket_inventory_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_inventory_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_inventory_configuration immutable: true diff --git a/actions/s3_put_bucket_lifecycle.yaml b/actions/s3_put_bucket_lifecycle.yaml index 9d937f9d..2ba04f68 100644 --- a/actions/s3_put_bucket_lifecycle.yaml +++ b/actions/s3_put_bucket_lifecycle.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_lifecycle runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_lifecycle immutable: true diff --git a/actions/s3_put_bucket_lifecycle_configuration.yaml b/actions/s3_put_bucket_lifecycle_configuration.yaml index 0299e821..3fac67cc 100644 --- a/actions/s3_put_bucket_lifecycle_configuration.yaml +++ b/actions/s3_put_bucket_lifecycle_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_lifecycle_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_lifecycle_configuration immutable: true diff --git a/actions/s3_put_bucket_logging.yaml b/actions/s3_put_bucket_logging.yaml index 354b8b89..30be3b61 100644 --- a/actions/s3_put_bucket_logging.yaml +++ b/actions/s3_put_bucket_logging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_logging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_logging immutable: true diff --git a/actions/s3_put_bucket_metrics_configuration.yaml b/actions/s3_put_bucket_metrics_configuration.yaml index f3402efa..b7460050 100644 --- a/actions/s3_put_bucket_metrics_configuration.yaml +++ b/actions/s3_put_bucket_metrics_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_metrics_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_metrics_configuration immutable: true diff --git a/actions/s3_put_bucket_notification.yaml b/actions/s3_put_bucket_notification.yaml index 09876589..d71de21b 100644 --- a/actions/s3_put_bucket_notification.yaml +++ b/actions/s3_put_bucket_notification.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_notification runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_notification immutable: true diff --git a/actions/s3_put_bucket_notification_configuration.yaml b/actions/s3_put_bucket_notification_configuration.yaml index 279cb027..9252ea86 100644 --- a/actions/s3_put_bucket_notification_configuration.yaml +++ b/actions/s3_put_bucket_notification_configuration.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_notification_configuration runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_notification_configuration immutable: true diff --git a/actions/s3_put_bucket_policy.yaml b/actions/s3_put_bucket_policy.yaml index 4eadbe7d..0f5ba5aa 100644 --- a/actions/s3_put_bucket_policy.yaml +++ b/actions/s3_put_bucket_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_policy immutable: true diff --git a/actions/s3_put_bucket_replication.yaml b/actions/s3_put_bucket_replication.yaml index 63646856..add6c756 100644 --- a/actions/s3_put_bucket_replication.yaml +++ b/actions/s3_put_bucket_replication.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_replication runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_replication immutable: true diff --git a/actions/s3_put_bucket_request_payment.yaml b/actions/s3_put_bucket_request_payment.yaml index 4739a859..3d0e8b92 100644 --- a/actions/s3_put_bucket_request_payment.yaml +++ b/actions/s3_put_bucket_request_payment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_request_payment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_request_payment immutable: true diff --git a/actions/s3_put_bucket_tagging.yaml b/actions/s3_put_bucket_tagging.yaml index dc7e8cd3..1e4b6d4b 100644 --- a/actions/s3_put_bucket_tagging.yaml +++ b/actions/s3_put_bucket_tagging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_tagging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_tagging immutable: true diff --git a/actions/s3_put_bucket_versioning.yaml b/actions/s3_put_bucket_versioning.yaml index ed3ec76b..c9b2c4cb 100644 --- a/actions/s3_put_bucket_versioning.yaml +++ b/actions/s3_put_bucket_versioning.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_versioning runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_versioning immutable: true diff --git a/actions/s3_put_bucket_website.yaml b/actions/s3_put_bucket_website.yaml index 7f237eae..42a0631d 100644 --- a/actions/s3_put_bucket_website.yaml +++ b/actions/s3_put_bucket_website.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_bucket_website runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_bucket_website immutable: true diff --git a/actions/s3_put_http_connection.yaml b/actions/s3_put_http_connection.yaml index 2774fa0d..c7d39a76 100644 --- a/actions/s3_put_http_connection.yaml +++ b/actions/s3_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/s3_put_object.yaml b/actions/s3_put_object.yaml index 7f8df332..66d63c28 100644 --- a/actions/s3_put_object.yaml +++ b/actions/s3_put_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_object immutable: true diff --git a/actions/s3_put_object_acl.yaml b/actions/s3_put_object_acl.yaml index 4d272a81..2ce6d684 100644 --- a/actions/s3_put_object_acl.yaml +++ b/actions/s3_put_object_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_object_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_object_acl immutable: true diff --git a/actions/s3_put_object_tagging.yaml b/actions/s3_put_object_tagging.yaml index a15017d1..30e5d22b 100644 --- a/actions/s3_put_object_tagging.yaml +++ b/actions/s3_put_object_tagging.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_put_object_tagging runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_object_tagging immutable: true diff --git a/actions/s3_restore_object.yaml b/actions/s3_restore_object.yaml index 9ffe0515..6b5f4b3f 100644 --- a/actions/s3_restore_object.yaml +++ b/actions/s3_restore_object.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_restore_object runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: restore_object immutable: true diff --git a/actions/s3_server_name.yaml b/actions/s3_server_name.yaml index 817cef4b..83a27b5d 100644 --- a/actions/s3_server_name.yaml +++ b/actions/s3_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/s3_set_bucket_class.yaml b/actions/s3_set_bucket_class.yaml index 143ff34e..ba11e9cb 100644 --- a/actions/s3_set_bucket_class.yaml +++ b/actions/s3_set_bucket_class.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_set_bucket_class parameters: + account_id: + type: string + region: + type: string action: default: set_bucket_class immutable: true diff --git a/actions/s3_set_host_header.yaml b/actions/s3_set_host_header.yaml index 58789b95..df26642d 100644 --- a/actions/s3_set_host_header.yaml +++ b/actions/s3_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/s3_set_request_hook.yaml b/actions/s3_set_request_hook.yaml index 1c82d708..0a824d68 100644 --- a/actions/s3_set_request_hook.yaml +++ b/actions/s3_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/s3_skip_proxy.yaml b/actions/s3_skip_proxy.yaml index 57936f67..4c31c7e3 100644 --- a/actions/s3_skip_proxy.yaml +++ b/actions/s3_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/s3_upload_file.yaml b/actions/s3_upload_file.yaml index 1ad5bf80..0e9397d8 100644 --- a/actions/s3_upload_file.yaml +++ b/actions/s3_upload_file.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: s3_upload_file parameters: + account_id: + type: string + region: + type: string action: default: upload_file immutable: true diff --git a/actions/s3_upload_part.yaml b/actions/s3_upload_part.yaml index 29f5d89b..77a0db0f 100644 --- a/actions/s3_upload_part.yaml +++ b/actions/s3_upload_part.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_upload_part runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_part immutable: true diff --git a/actions/s3_upload_part_copy.yaml b/actions/s3_upload_part_copy.yaml index a658de0e..add6f0df 100644 --- a/actions/s3_upload_part_copy.yaml +++ b/actions/s3_upload_part_copy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: s3_upload_part_copy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: upload_part_copy immutable: true diff --git a/actions/sdb_batch_delete_attributes.yaml b/actions/sdb_batch_delete_attributes.yaml index 5f017faa..62e30740 100644 --- a/actions/sdb_batch_delete_attributes.yaml +++ b/actions/sdb_batch_delete_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_batch_delete_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_delete_attributes immutable: true diff --git a/actions/sdb_batch_put_attributes.yaml b/actions/sdb_batch_put_attributes.yaml index 49ac4a66..ddc054c1 100644 --- a/actions/sdb_batch_put_attributes.yaml +++ b/actions/sdb_batch_put_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_batch_put_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_put_attributes immutable: true diff --git a/actions/sdb_create_domain.yaml b/actions/sdb_create_domain.yaml index c8b8f5ae..c71ad5aa 100644 --- a/actions/sdb_create_domain.yaml +++ b/actions/sdb_create_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_create_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_domain immutable: true diff --git a/actions/sdb_delete_attributes.yaml b/actions/sdb_delete_attributes.yaml index 99318aa1..ca1917a9 100644 --- a/actions/sdb_delete_attributes.yaml +++ b/actions/sdb_delete_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_delete_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_attributes immutable: true diff --git a/actions/sdb_delete_domain.yaml b/actions/sdb_delete_domain.yaml index 37eab674..d23fde3a 100644 --- a/actions/sdb_delete_domain.yaml +++ b/actions/sdb_delete_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_delete_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_domain immutable: true diff --git a/actions/sdb_domain_metadata.yaml b/actions/sdb_domain_metadata.yaml index c91000e7..90356bfd 100644 --- a/actions/sdb_domain_metadata.yaml +++ b/actions/sdb_domain_metadata.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_domain_metadata runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: domain_metadata immutable: true diff --git a/actions/sdb_get_attributes.yaml b/actions/sdb_get_attributes.yaml index 8b060c61..effba01f 100644 --- a/actions/sdb_get_attributes.yaml +++ b/actions/sdb_get_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_get_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_attributes immutable: true diff --git a/actions/sdb_list_domains.yaml b/actions/sdb_list_domains.yaml index 88b18e03..13fe3734 100644 --- a/actions/sdb_list_domains.yaml +++ b/actions/sdb_list_domains.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_list_domains runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_domains immutable: true diff --git a/actions/sdb_put_attributes.yaml b/actions/sdb_put_attributes.yaml index 08a1d3a3..650deb09 100644 --- a/actions/sdb_put_attributes.yaml +++ b/actions/sdb_put_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_put_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_attributes immutable: true diff --git a/actions/sdb_select.yaml b/actions/sdb_select.yaml index ec1ba21a..81005794 100644 --- a/actions/sdb_select.yaml +++ b/actions/sdb_select.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sdb_select runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: select immutable: true diff --git a/actions/servicecatalog_accept_portfolio_share.yaml b/actions/servicecatalog_accept_portfolio_share.yaml index c4732182..97846064 100644 --- a/actions/servicecatalog_accept_portfolio_share.yaml +++ b/actions/servicecatalog_accept_portfolio_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_accept_portfolio_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: accept_portfolio_share immutable: true diff --git a/actions/servicecatalog_associate_principal_with_portfolio.yaml b/actions/servicecatalog_associate_principal_with_portfolio.yaml index 56726676..319add89 100644 --- a/actions/servicecatalog_associate_principal_with_portfolio.yaml +++ b/actions/servicecatalog_associate_principal_with_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_associate_principal_with_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_principal_with_portfolio immutable: true diff --git a/actions/servicecatalog_associate_product_with_portfolio.yaml b/actions/servicecatalog_associate_product_with_portfolio.yaml index 0bac3571..2681f735 100644 --- a/actions/servicecatalog_associate_product_with_portfolio.yaml +++ b/actions/servicecatalog_associate_product_with_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_associate_product_with_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_product_with_portfolio immutable: true diff --git a/actions/servicecatalog_create_constraint.yaml b/actions/servicecatalog_create_constraint.yaml index 04304bc1..6f8a3700 100644 --- a/actions/servicecatalog_create_constraint.yaml +++ b/actions/servicecatalog_create_constraint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_create_constraint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_constraint immutable: true diff --git a/actions/servicecatalog_create_portfolio.yaml b/actions/servicecatalog_create_portfolio.yaml index 0cfed17a..2e48bfbe 100644 --- a/actions/servicecatalog_create_portfolio.yaml +++ b/actions/servicecatalog_create_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_create_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_portfolio immutable: true diff --git a/actions/servicecatalog_create_portfolio_share.yaml b/actions/servicecatalog_create_portfolio_share.yaml index 1e2382ab..8655e930 100644 --- a/actions/servicecatalog_create_portfolio_share.yaml +++ b/actions/servicecatalog_create_portfolio_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_create_portfolio_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_portfolio_share immutable: true diff --git a/actions/servicecatalog_create_product.yaml b/actions/servicecatalog_create_product.yaml index dc3dd301..215cdde7 100644 --- a/actions/servicecatalog_create_product.yaml +++ b/actions/servicecatalog_create_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_create_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_product immutable: true diff --git a/actions/servicecatalog_create_provisioning_artifact.yaml b/actions/servicecatalog_create_provisioning_artifact.yaml index 28116a79..7500ff74 100644 --- a/actions/servicecatalog_create_provisioning_artifact.yaml +++ b/actions/servicecatalog_create_provisioning_artifact.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_create_provisioning_artifact runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_provisioning_artifact immutable: true diff --git a/actions/servicecatalog_delete_constraint.yaml b/actions/servicecatalog_delete_constraint.yaml index 64cc6dc1..4515f803 100644 --- a/actions/servicecatalog_delete_constraint.yaml +++ b/actions/servicecatalog_delete_constraint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_delete_constraint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_constraint immutable: true diff --git a/actions/servicecatalog_delete_portfolio.yaml b/actions/servicecatalog_delete_portfolio.yaml index 2af01c0c..ce89b35d 100644 --- a/actions/servicecatalog_delete_portfolio.yaml +++ b/actions/servicecatalog_delete_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_delete_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_portfolio immutable: true diff --git a/actions/servicecatalog_delete_portfolio_share.yaml b/actions/servicecatalog_delete_portfolio_share.yaml index 6339138f..b85a9c42 100644 --- a/actions/servicecatalog_delete_portfolio_share.yaml +++ b/actions/servicecatalog_delete_portfolio_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_delete_portfolio_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_portfolio_share immutable: true diff --git a/actions/servicecatalog_delete_product.yaml b/actions/servicecatalog_delete_product.yaml index 6de4ab1b..e7d09d4f 100644 --- a/actions/servicecatalog_delete_product.yaml +++ b/actions/servicecatalog_delete_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_delete_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_product immutable: true diff --git a/actions/servicecatalog_delete_provisioning_artifact.yaml b/actions/servicecatalog_delete_provisioning_artifact.yaml index 6e3a08df..5c22f315 100644 --- a/actions/servicecatalog_delete_provisioning_artifact.yaml +++ b/actions/servicecatalog_delete_provisioning_artifact.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_delete_provisioning_artifact runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_provisioning_artifact immutable: true diff --git a/actions/servicecatalog_describe_constraint.yaml b/actions/servicecatalog_describe_constraint.yaml index cb1ae3d4..de4d398b 100644 --- a/actions/servicecatalog_describe_constraint.yaml +++ b/actions/servicecatalog_describe_constraint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_constraint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_constraint immutable: true diff --git a/actions/servicecatalog_describe_portfolio.yaml b/actions/servicecatalog_describe_portfolio.yaml index 435a8ba1..447be420 100644 --- a/actions/servicecatalog_describe_portfolio.yaml +++ b/actions/servicecatalog_describe_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_portfolio immutable: true diff --git a/actions/servicecatalog_describe_product.yaml b/actions/servicecatalog_describe_product.yaml index de3d6402..53582fce 100644 --- a/actions/servicecatalog_describe_product.yaml +++ b/actions/servicecatalog_describe_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_product immutable: true diff --git a/actions/servicecatalog_describe_product_as_admin.yaml b/actions/servicecatalog_describe_product_as_admin.yaml index 66547368..3746e071 100644 --- a/actions/servicecatalog_describe_product_as_admin.yaml +++ b/actions/servicecatalog_describe_product_as_admin.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_product_as_admin runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_product_as_admin immutable: true diff --git a/actions/servicecatalog_describe_product_view.yaml b/actions/servicecatalog_describe_product_view.yaml index 70114fb1..118f4bce 100644 --- a/actions/servicecatalog_describe_product_view.yaml +++ b/actions/servicecatalog_describe_product_view.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_product_view runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_product_view immutable: true diff --git a/actions/servicecatalog_describe_provisioned_product.yaml b/actions/servicecatalog_describe_provisioned_product.yaml index c304b7e1..3594e7b6 100644 --- a/actions/servicecatalog_describe_provisioned_product.yaml +++ b/actions/servicecatalog_describe_provisioned_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_provisioned_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_provisioned_product immutable: true diff --git a/actions/servicecatalog_describe_provisioning_artifact.yaml b/actions/servicecatalog_describe_provisioning_artifact.yaml index c2e9008d..5d1728ee 100644 --- a/actions/servicecatalog_describe_provisioning_artifact.yaml +++ b/actions/servicecatalog_describe_provisioning_artifact.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_provisioning_artifact runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_provisioning_artifact immutable: true diff --git a/actions/servicecatalog_describe_provisioning_parameters.yaml b/actions/servicecatalog_describe_provisioning_parameters.yaml index 503c5fb3..28373c38 100644 --- a/actions/servicecatalog_describe_provisioning_parameters.yaml +++ b/actions/servicecatalog_describe_provisioning_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_provisioning_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_provisioning_parameters immutable: true diff --git a/actions/servicecatalog_describe_record.yaml b/actions/servicecatalog_describe_record.yaml index 81fe9929..b79ffdb8 100644 --- a/actions/servicecatalog_describe_record.yaml +++ b/actions/servicecatalog_describe_record.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_describe_record runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_record immutable: true diff --git a/actions/servicecatalog_disassociate_principal_from_portfolio.yaml b/actions/servicecatalog_disassociate_principal_from_portfolio.yaml index 8e9715c7..6aa6eb93 100644 --- a/actions/servicecatalog_disassociate_principal_from_portfolio.yaml +++ b/actions/servicecatalog_disassociate_principal_from_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_disassociate_principal_from_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_principal_from_portfolio immutable: true diff --git a/actions/servicecatalog_disassociate_product_from_portfolio.yaml b/actions/servicecatalog_disassociate_product_from_portfolio.yaml index 13c61960..6475b8bf 100644 --- a/actions/servicecatalog_disassociate_product_from_portfolio.yaml +++ b/actions/servicecatalog_disassociate_product_from_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_disassociate_product_from_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_product_from_portfolio immutable: true diff --git a/actions/servicecatalog_list_accepted_portfolio_shares.yaml b/actions/servicecatalog_list_accepted_portfolio_shares.yaml index 07ff4b28..13adc0f9 100644 --- a/actions/servicecatalog_list_accepted_portfolio_shares.yaml +++ b/actions/servicecatalog_list_accepted_portfolio_shares.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_accepted_portfolio_shares runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_accepted_portfolio_shares immutable: true diff --git a/actions/servicecatalog_list_constraints_for_portfolio.yaml b/actions/servicecatalog_list_constraints_for_portfolio.yaml index 3eec25ff..42286f7c 100644 --- a/actions/servicecatalog_list_constraints_for_portfolio.yaml +++ b/actions/servicecatalog_list_constraints_for_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_constraints_for_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_constraints_for_portfolio immutable: true diff --git a/actions/servicecatalog_list_launch_paths.yaml b/actions/servicecatalog_list_launch_paths.yaml index 6d1b6d88..5cc31777 100644 --- a/actions/servicecatalog_list_launch_paths.yaml +++ b/actions/servicecatalog_list_launch_paths.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_launch_paths runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_launch_paths immutable: true diff --git a/actions/servicecatalog_list_portfolio_access.yaml b/actions/servicecatalog_list_portfolio_access.yaml index 2ec4f950..c02dd6ac 100644 --- a/actions/servicecatalog_list_portfolio_access.yaml +++ b/actions/servicecatalog_list_portfolio_access.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_portfolio_access runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_portfolio_access immutable: true diff --git a/actions/servicecatalog_list_portfolios.yaml b/actions/servicecatalog_list_portfolios.yaml index 2f72fd3b..a505e001 100644 --- a/actions/servicecatalog_list_portfolios.yaml +++ b/actions/servicecatalog_list_portfolios.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_portfolios runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_portfolios immutable: true diff --git a/actions/servicecatalog_list_portfolios_for_product.yaml b/actions/servicecatalog_list_portfolios_for_product.yaml index 89901309..fdba6a9a 100644 --- a/actions/servicecatalog_list_portfolios_for_product.yaml +++ b/actions/servicecatalog_list_portfolios_for_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_portfolios_for_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_portfolios_for_product immutable: true diff --git a/actions/servicecatalog_list_principals_for_portfolio.yaml b/actions/servicecatalog_list_principals_for_portfolio.yaml index d95a8486..b735d1d3 100644 --- a/actions/servicecatalog_list_principals_for_portfolio.yaml +++ b/actions/servicecatalog_list_principals_for_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_principals_for_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_principals_for_portfolio immutable: true diff --git a/actions/servicecatalog_list_provisioning_artifacts.yaml b/actions/servicecatalog_list_provisioning_artifacts.yaml index 3419d1ce..148100e6 100644 --- a/actions/servicecatalog_list_provisioning_artifacts.yaml +++ b/actions/servicecatalog_list_provisioning_artifacts.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_provisioning_artifacts runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_provisioning_artifacts immutable: true diff --git a/actions/servicecatalog_list_record_history.yaml b/actions/servicecatalog_list_record_history.yaml index 4f4f5713..a4254f1e 100644 --- a/actions/servicecatalog_list_record_history.yaml +++ b/actions/servicecatalog_list_record_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_list_record_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_record_history immutable: true diff --git a/actions/servicecatalog_provision_product.yaml b/actions/servicecatalog_provision_product.yaml index bb6d030e..b25d84a9 100644 --- a/actions/servicecatalog_provision_product.yaml +++ b/actions/servicecatalog_provision_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_provision_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: provision_product immutable: true diff --git a/actions/servicecatalog_reject_portfolio_share.yaml b/actions/servicecatalog_reject_portfolio_share.yaml index 8bb20787..3a27fd12 100644 --- a/actions/servicecatalog_reject_portfolio_share.yaml +++ b/actions/servicecatalog_reject_portfolio_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_reject_portfolio_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reject_portfolio_share immutable: true diff --git a/actions/servicecatalog_scan_provisioned_products.yaml b/actions/servicecatalog_scan_provisioned_products.yaml index 77435700..dc176168 100644 --- a/actions/servicecatalog_scan_provisioned_products.yaml +++ b/actions/servicecatalog_scan_provisioned_products.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_scan_provisioned_products runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: scan_provisioned_products immutable: true diff --git a/actions/servicecatalog_search_products.yaml b/actions/servicecatalog_search_products.yaml index d4a3f593..86cfb817 100644 --- a/actions/servicecatalog_search_products.yaml +++ b/actions/servicecatalog_search_products.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_search_products runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: search_products immutable: true diff --git a/actions/servicecatalog_search_products_as_admin.yaml b/actions/servicecatalog_search_products_as_admin.yaml index 855e5f5f..d176ba84 100644 --- a/actions/servicecatalog_search_products_as_admin.yaml +++ b/actions/servicecatalog_search_products_as_admin.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_search_products_as_admin runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: search_products_as_admin immutable: true diff --git a/actions/servicecatalog_terminate_provisioned_product.yaml b/actions/servicecatalog_terminate_provisioned_product.yaml index e1a20d18..f05850df 100644 --- a/actions/servicecatalog_terminate_provisioned_product.yaml +++ b/actions/servicecatalog_terminate_provisioned_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_terminate_provisioned_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_provisioned_product immutable: true diff --git a/actions/servicecatalog_update_constraint.yaml b/actions/servicecatalog_update_constraint.yaml index d7703648..6f180319 100644 --- a/actions/servicecatalog_update_constraint.yaml +++ b/actions/servicecatalog_update_constraint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_update_constraint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_constraint immutable: true diff --git a/actions/servicecatalog_update_portfolio.yaml b/actions/servicecatalog_update_portfolio.yaml index cc51d2d2..736b3041 100644 --- a/actions/servicecatalog_update_portfolio.yaml +++ b/actions/servicecatalog_update_portfolio.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_update_portfolio runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_portfolio immutable: true diff --git a/actions/servicecatalog_update_product.yaml b/actions/servicecatalog_update_product.yaml index 03a5c438..3e151b6e 100644 --- a/actions/servicecatalog_update_product.yaml +++ b/actions/servicecatalog_update_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_update_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_product immutable: true diff --git a/actions/servicecatalog_update_provisioned_product.yaml b/actions/servicecatalog_update_provisioned_product.yaml index 8a1f2450..dad39669 100644 --- a/actions/servicecatalog_update_provisioned_product.yaml +++ b/actions/servicecatalog_update_provisioned_product.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_update_provisioned_product runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_provisioned_product immutable: true diff --git a/actions/servicecatalog_update_provisioning_artifact.yaml b/actions/servicecatalog_update_provisioning_artifact.yaml index da0523c8..b63eb77a 100644 --- a/actions/servicecatalog_update_provisioning_artifact.yaml +++ b/actions/servicecatalog_update_provisioning_artifact.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: servicecatalog_update_provisioning_artifact runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_provisioning_artifact immutable: true diff --git a/actions/ses_clone_receipt_rule_set.yaml b/actions/ses_clone_receipt_rule_set.yaml index 92856723..fe502230 100644 --- a/actions/ses_clone_receipt_rule_set.yaml +++ b/actions/ses_clone_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_clone_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: clone_receipt_rule_set immutable: true diff --git a/actions/ses_create_configuration_set.yaml b/actions/ses_create_configuration_set.yaml index b4667664..fb24e617 100644 --- a/actions/ses_create_configuration_set.yaml +++ b/actions/ses_create_configuration_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_create_configuration_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_configuration_set immutable: true diff --git a/actions/ses_create_configuration_set_event_destination.yaml b/actions/ses_create_configuration_set_event_destination.yaml index a673d7c3..b7db39db 100644 --- a/actions/ses_create_configuration_set_event_destination.yaml +++ b/actions/ses_create_configuration_set_event_destination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_create_configuration_set_event_destination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_configuration_set_event_destination immutable: true diff --git a/actions/ses_create_receipt_filter.yaml b/actions/ses_create_receipt_filter.yaml index 78ad76d7..bf429292 100644 --- a/actions/ses_create_receipt_filter.yaml +++ b/actions/ses_create_receipt_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_create_receipt_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_receipt_filter immutable: true diff --git a/actions/ses_create_receipt_rule.yaml b/actions/ses_create_receipt_rule.yaml index 924a956f..42159093 100644 --- a/actions/ses_create_receipt_rule.yaml +++ b/actions/ses_create_receipt_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_create_receipt_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_receipt_rule immutable: true diff --git a/actions/ses_create_receipt_rule_set.yaml b/actions/ses_create_receipt_rule_set.yaml index 62e2cdb4..0588b175 100644 --- a/actions/ses_create_receipt_rule_set.yaml +++ b/actions/ses_create_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_create_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_receipt_rule_set immutable: true diff --git a/actions/ses_delete_configuration_set.yaml b/actions/ses_delete_configuration_set.yaml index f7172abc..96404b00 100644 --- a/actions/ses_delete_configuration_set.yaml +++ b/actions/ses_delete_configuration_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_configuration_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_configuration_set immutable: true diff --git a/actions/ses_delete_configuration_set_event_destination.yaml b/actions/ses_delete_configuration_set_event_destination.yaml index 64a13e56..fb6420a8 100644 --- a/actions/ses_delete_configuration_set_event_destination.yaml +++ b/actions/ses_delete_configuration_set_event_destination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_configuration_set_event_destination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_configuration_set_event_destination immutable: true diff --git a/actions/ses_delete_identity.yaml b/actions/ses_delete_identity.yaml index 6248c3d4..1cd6bd04 100644 --- a/actions/ses_delete_identity.yaml +++ b/actions/ses_delete_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_identity immutable: true diff --git a/actions/ses_delete_identity_policy.yaml b/actions/ses_delete_identity_policy.yaml index 41738e19..0a340dc7 100644 --- a/actions/ses_delete_identity_policy.yaml +++ b/actions/ses_delete_identity_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_identity_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_identity_policy immutable: true diff --git a/actions/ses_delete_receipt_filter.yaml b/actions/ses_delete_receipt_filter.yaml index 975181d6..5f61a408 100644 --- a/actions/ses_delete_receipt_filter.yaml +++ b/actions/ses_delete_receipt_filter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_receipt_filter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_receipt_filter immutable: true diff --git a/actions/ses_delete_receipt_rule.yaml b/actions/ses_delete_receipt_rule.yaml index 5ccab3ab..91a07af0 100644 --- a/actions/ses_delete_receipt_rule.yaml +++ b/actions/ses_delete_receipt_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_receipt_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_receipt_rule immutable: true diff --git a/actions/ses_delete_receipt_rule_set.yaml b/actions/ses_delete_receipt_rule_set.yaml index 13c170ad..550f230c 100644 --- a/actions/ses_delete_receipt_rule_set.yaml +++ b/actions/ses_delete_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_receipt_rule_set immutable: true diff --git a/actions/ses_delete_verified_email_address.yaml b/actions/ses_delete_verified_email_address.yaml index ccad3560..63546a54 100644 --- a/actions/ses_delete_verified_email_address.yaml +++ b/actions/ses_delete_verified_email_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_delete_verified_email_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_verified_email_address immutable: true diff --git a/actions/ses_describe_active_receipt_rule_set.yaml b/actions/ses_describe_active_receipt_rule_set.yaml index dc39f9e9..359b5dda 100644 --- a/actions/ses_describe_active_receipt_rule_set.yaml +++ b/actions/ses_describe_active_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_describe_active_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_active_receipt_rule_set immutable: true diff --git a/actions/ses_describe_configuration_set.yaml b/actions/ses_describe_configuration_set.yaml index d46e4c11..f9349990 100644 --- a/actions/ses_describe_configuration_set.yaml +++ b/actions/ses_describe_configuration_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_describe_configuration_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_configuration_set immutable: true diff --git a/actions/ses_describe_receipt_rule.yaml b/actions/ses_describe_receipt_rule.yaml index 1a990368..adee0a6b 100644 --- a/actions/ses_describe_receipt_rule.yaml +++ b/actions/ses_describe_receipt_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_describe_receipt_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_receipt_rule immutable: true diff --git a/actions/ses_describe_receipt_rule_set.yaml b/actions/ses_describe_receipt_rule_set.yaml index e7f362d6..ccfdfdc7 100644 --- a/actions/ses_describe_receipt_rule_set.yaml +++ b/actions/ses_describe_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_describe_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_receipt_rule_set immutable: true diff --git a/actions/ses_get_identity_dkim_attributes.yaml b/actions/ses_get_identity_dkim_attributes.yaml index 2335754b..55f3e0a2 100644 --- a/actions/ses_get_identity_dkim_attributes.yaml +++ b/actions/ses_get_identity_dkim_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_get_identity_dkim_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_dkim_attributes immutable: true diff --git a/actions/ses_get_identity_mail_from_domain_attributes.yaml b/actions/ses_get_identity_mail_from_domain_attributes.yaml index fafd25e7..63bb21c8 100644 --- a/actions/ses_get_identity_mail_from_domain_attributes.yaml +++ b/actions/ses_get_identity_mail_from_domain_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_get_identity_mail_from_domain_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_mail_from_domain_attributes immutable: true diff --git a/actions/ses_get_identity_notification_attributes.yaml b/actions/ses_get_identity_notification_attributes.yaml index 52a7e05b..62ce3107 100644 --- a/actions/ses_get_identity_notification_attributes.yaml +++ b/actions/ses_get_identity_notification_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_get_identity_notification_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_notification_attributes immutable: true diff --git a/actions/ses_get_identity_policies.yaml b/actions/ses_get_identity_policies.yaml index 40b17274..c9b5de9a 100644 --- a/actions/ses_get_identity_policies.yaml +++ b/actions/ses_get_identity_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_get_identity_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_policies immutable: true diff --git a/actions/ses_get_identity_verification_attributes.yaml b/actions/ses_get_identity_verification_attributes.yaml index cdef4b46..808ccfca 100644 --- a/actions/ses_get_identity_verification_attributes.yaml +++ b/actions/ses_get_identity_verification_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_get_identity_verification_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_identity_verification_attributes immutable: true diff --git a/actions/ses_list_configuration_sets.yaml b/actions/ses_list_configuration_sets.yaml index c0fe40eb..5e7bcac0 100644 --- a/actions/ses_list_configuration_sets.yaml +++ b/actions/ses_list_configuration_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_list_configuration_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_configuration_sets immutable: true diff --git a/actions/ses_list_identities.yaml b/actions/ses_list_identities.yaml index af4f9102..89abcd59 100644 --- a/actions/ses_list_identities.yaml +++ b/actions/ses_list_identities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_list_identities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_identities immutable: true diff --git a/actions/ses_list_identity_policies.yaml b/actions/ses_list_identity_policies.yaml index d03fd11b..689c2f21 100644 --- a/actions/ses_list_identity_policies.yaml +++ b/actions/ses_list_identity_policies.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_list_identity_policies runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_identity_policies immutable: true diff --git a/actions/ses_list_receipt_filters.yaml b/actions/ses_list_receipt_filters.yaml index 5ef30cb7..0d422d83 100644 --- a/actions/ses_list_receipt_filters.yaml +++ b/actions/ses_list_receipt_filters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_list_receipt_filters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_receipt_filters immutable: true diff --git a/actions/ses_list_receipt_rule_sets.yaml b/actions/ses_list_receipt_rule_sets.yaml index 4196ceb6..5f481a9a 100644 --- a/actions/ses_list_receipt_rule_sets.yaml +++ b/actions/ses_list_receipt_rule_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_list_receipt_rule_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_receipt_rule_sets immutable: true diff --git a/actions/ses_put_identity_policy.yaml b/actions/ses_put_identity_policy.yaml index aba96957..76ef8de9 100644 --- a/actions/ses_put_identity_policy.yaml +++ b/actions/ses_put_identity_policy.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_put_identity_policy runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_identity_policy immutable: true diff --git a/actions/ses_reorder_receipt_rule_set.yaml b/actions/ses_reorder_receipt_rule_set.yaml index d5653145..a8fab356 100644 --- a/actions/ses_reorder_receipt_rule_set.yaml +++ b/actions/ses_reorder_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_reorder_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reorder_receipt_rule_set immutable: true diff --git a/actions/ses_send_bounce.yaml b/actions/ses_send_bounce.yaml index 96ef34e2..03e4ec17 100644 --- a/actions/ses_send_bounce.yaml +++ b/actions/ses_send_bounce.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_send_bounce runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_bounce immutable: true diff --git a/actions/ses_send_email.yaml b/actions/ses_send_email.yaml index 2f03e615..a0bb115e 100644 --- a/actions/ses_send_email.yaml +++ b/actions/ses_send_email.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_send_email runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_email immutable: true diff --git a/actions/ses_send_raw_email.yaml b/actions/ses_send_raw_email.yaml index 60063cd6..b2484ca6 100644 --- a/actions/ses_send_raw_email.yaml +++ b/actions/ses_send_raw_email.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_send_raw_email runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_raw_email immutable: true diff --git a/actions/ses_set_active_receipt_rule_set.yaml b/actions/ses_set_active_receipt_rule_set.yaml index 7634bee4..3b3ac966 100644 --- a/actions/ses_set_active_receipt_rule_set.yaml +++ b/actions/ses_set_active_receipt_rule_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_active_receipt_rule_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_active_receipt_rule_set immutable: true diff --git a/actions/ses_set_identity_dkim_enabled.yaml b/actions/ses_set_identity_dkim_enabled.yaml index 0ffa5e93..aec5f343 100644 --- a/actions/ses_set_identity_dkim_enabled.yaml +++ b/actions/ses_set_identity_dkim_enabled.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_identity_dkim_enabled runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_dkim_enabled immutable: true diff --git a/actions/ses_set_identity_feedback_forwarding_enabled.yaml b/actions/ses_set_identity_feedback_forwarding_enabled.yaml index 70a829f3..f8e7b80f 100644 --- a/actions/ses_set_identity_feedback_forwarding_enabled.yaml +++ b/actions/ses_set_identity_feedback_forwarding_enabled.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_identity_feedback_forwarding_enabled runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_feedback_forwarding_enabled immutable: true diff --git a/actions/ses_set_identity_headers_in_notifications_enabled.yaml b/actions/ses_set_identity_headers_in_notifications_enabled.yaml index e58c49c3..40318771 100644 --- a/actions/ses_set_identity_headers_in_notifications_enabled.yaml +++ b/actions/ses_set_identity_headers_in_notifications_enabled.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_identity_headers_in_notifications_enabled runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_headers_in_notifications_enabled immutable: true diff --git a/actions/ses_set_identity_mail_from_domain.yaml b/actions/ses_set_identity_mail_from_domain.yaml index 617760c1..c01e249e 100644 --- a/actions/ses_set_identity_mail_from_domain.yaml +++ b/actions/ses_set_identity_mail_from_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_identity_mail_from_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_mail_from_domain immutable: true diff --git a/actions/ses_set_identity_notification_topic.yaml b/actions/ses_set_identity_notification_topic.yaml index 18609dcc..1bf2f2c6 100644 --- a/actions/ses_set_identity_notification_topic.yaml +++ b/actions/ses_set_identity_notification_topic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_identity_notification_topic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_identity_notification_topic immutable: true diff --git a/actions/ses_set_receipt_rule_position.yaml b/actions/ses_set_receipt_rule_position.yaml index 2f3a11fb..2f6deb0b 100644 --- a/actions/ses_set_receipt_rule_position.yaml +++ b/actions/ses_set_receipt_rule_position.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_set_receipt_rule_position runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_receipt_rule_position immutable: true diff --git a/actions/ses_update_configuration_set_event_destination.yaml b/actions/ses_update_configuration_set_event_destination.yaml index bc074c16..422977db 100644 --- a/actions/ses_update_configuration_set_event_destination.yaml +++ b/actions/ses_update_configuration_set_event_destination.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_update_configuration_set_event_destination runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_configuration_set_event_destination immutable: true diff --git a/actions/ses_update_receipt_rule.yaml b/actions/ses_update_receipt_rule.yaml index 01d8de92..f5eb82d1 100644 --- a/actions/ses_update_receipt_rule.yaml +++ b/actions/ses_update_receipt_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_update_receipt_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_receipt_rule immutable: true diff --git a/actions/ses_verify_domain_dkim.yaml b/actions/ses_verify_domain_dkim.yaml index 74145a25..6d0601f5 100644 --- a/actions/ses_verify_domain_dkim.yaml +++ b/actions/ses_verify_domain_dkim.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_verify_domain_dkim runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: verify_domain_dkim immutable: true diff --git a/actions/ses_verify_domain_identity.yaml b/actions/ses_verify_domain_identity.yaml index c7e69973..128ad59f 100644 --- a/actions/ses_verify_domain_identity.yaml +++ b/actions/ses_verify_domain_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_verify_domain_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: verify_domain_identity immutable: true diff --git a/actions/ses_verify_email_address.yaml b/actions/ses_verify_email_address.yaml index f1bf3782..d3e5e28e 100644 --- a/actions/ses_verify_email_address.yaml +++ b/actions/ses_verify_email_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_verify_email_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: verify_email_address immutable: true diff --git a/actions/ses_verify_email_identity.yaml b/actions/ses_verify_email_identity.yaml index 98e23d7e..d7bfb810 100644 --- a/actions/ses_verify_email_identity.yaml +++ b/actions/ses_verify_email_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ses_verify_email_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: verify_email_identity immutable: true diff --git a/actions/set_hostname_cloud.yaml b/actions/set_hostname_cloud.yaml index 1c62f941..786c351f 100644 --- a/actions/set_hostname_cloud.yaml +++ b/actions/set_hostname_cloud.yaml @@ -4,7 +4,11 @@ description: "Set the hostname on a VM and update cloud.cfg" enabled: true entry_point: "" - parameters: + parameters: + account_id: + type: string + region: + type: string hostname: type: "string" description: "The hostname to set" diff --git a/actions/shield_create_protection.yaml b/actions/shield_create_protection.yaml index 343bc46c..f0f27ac0 100644 --- a/actions/shield_create_protection.yaml +++ b/actions/shield_create_protection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_create_protection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_protection immutable: true diff --git a/actions/shield_create_subscription.yaml b/actions/shield_create_subscription.yaml index 0cda0cda..20d3bbf5 100644 --- a/actions/shield_create_subscription.yaml +++ b/actions/shield_create_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_create_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_subscription immutable: true diff --git a/actions/shield_delete_protection.yaml b/actions/shield_delete_protection.yaml index b0fffb90..fe281378 100644 --- a/actions/shield_delete_protection.yaml +++ b/actions/shield_delete_protection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_delete_protection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_protection immutable: true diff --git a/actions/shield_delete_subscription.yaml b/actions/shield_delete_subscription.yaml index 4dc65a3f..02e703a0 100644 --- a/actions/shield_delete_subscription.yaml +++ b/actions/shield_delete_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_delete_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_subscription immutable: true diff --git a/actions/shield_describe_attack.yaml b/actions/shield_describe_attack.yaml index 982609a3..14922340 100644 --- a/actions/shield_describe_attack.yaml +++ b/actions/shield_describe_attack.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_describe_attack runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_attack immutable: true diff --git a/actions/shield_describe_protection.yaml b/actions/shield_describe_protection.yaml index f500926f..04a6463e 100644 --- a/actions/shield_describe_protection.yaml +++ b/actions/shield_describe_protection.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_describe_protection runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_protection immutable: true diff --git a/actions/shield_describe_subscription.yaml b/actions/shield_describe_subscription.yaml index 5ef34409..1bf94477 100644 --- a/actions/shield_describe_subscription.yaml +++ b/actions/shield_describe_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_describe_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_subscription immutable: true diff --git a/actions/shield_list_attacks.yaml b/actions/shield_list_attacks.yaml index 614650c7..b543ee13 100644 --- a/actions/shield_list_attacks.yaml +++ b/actions/shield_list_attacks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_list_attacks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_attacks immutable: true diff --git a/actions/shield_list_protections.yaml b/actions/shield_list_protections.yaml index 366922d1..22a90cf2 100644 --- a/actions/shield_list_protections.yaml +++ b/actions/shield_list_protections.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: shield_list_protections runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_protections immutable: true diff --git a/actions/sms_create_replication_job.yaml b/actions/sms_create_replication_job.yaml index 34fca05a..e90a3975 100644 --- a/actions/sms_create_replication_job.yaml +++ b/actions/sms_create_replication_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_create_replication_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_replication_job immutable: true diff --git a/actions/sms_delete_replication_job.yaml b/actions/sms_delete_replication_job.yaml index 84f1f508..ff7be26f 100644 --- a/actions/sms_delete_replication_job.yaml +++ b/actions/sms_delete_replication_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_delete_replication_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_replication_job immutable: true diff --git a/actions/sms_delete_server_catalog.yaml b/actions/sms_delete_server_catalog.yaml index 3ad17eb4..f96c0069 100644 --- a/actions/sms_delete_server_catalog.yaml +++ b/actions/sms_delete_server_catalog.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_delete_server_catalog runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_server_catalog immutable: true diff --git a/actions/sms_disassociate_connector.yaml b/actions/sms_disassociate_connector.yaml index 539e649a..157de3e5 100644 --- a/actions/sms_disassociate_connector.yaml +++ b/actions/sms_disassociate_connector.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_disassociate_connector runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_connector immutable: true diff --git a/actions/sms_get_connectors.yaml b/actions/sms_get_connectors.yaml index 34c93d6b..9a35dd3f 100644 --- a/actions/sms_get_connectors.yaml +++ b/actions/sms_get_connectors.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_get_connectors runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_connectors immutable: true diff --git a/actions/sms_get_replication_jobs.yaml b/actions/sms_get_replication_jobs.yaml index 699b6fe3..63d4e577 100644 --- a/actions/sms_get_replication_jobs.yaml +++ b/actions/sms_get_replication_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_get_replication_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_replication_jobs immutable: true diff --git a/actions/sms_get_replication_runs.yaml b/actions/sms_get_replication_runs.yaml index 6506a9bb..9ed6f097 100644 --- a/actions/sms_get_replication_runs.yaml +++ b/actions/sms_get_replication_runs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_get_replication_runs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_replication_runs immutable: true diff --git a/actions/sms_get_servers.yaml b/actions/sms_get_servers.yaml index dd370fb9..8f1f77e4 100644 --- a/actions/sms_get_servers.yaml +++ b/actions/sms_get_servers.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_get_servers runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_servers immutable: true diff --git a/actions/sms_import_server_catalog.yaml b/actions/sms_import_server_catalog.yaml index 8ded4c35..58423dc5 100644 --- a/actions/sms_import_server_catalog.yaml +++ b/actions/sms_import_server_catalog.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_import_server_catalog runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: import_server_catalog immutable: true diff --git a/actions/sms_start_on_demand_replication_run.yaml b/actions/sms_start_on_demand_replication_run.yaml index cd23d370..0b86b0ae 100644 --- a/actions/sms_start_on_demand_replication_run.yaml +++ b/actions/sms_start_on_demand_replication_run.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_start_on_demand_replication_run runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_on_demand_replication_run immutable: true diff --git a/actions/sms_update_replication_job.yaml b/actions/sms_update_replication_job.yaml index 299377ea..e5db1898 100644 --- a/actions/sms_update_replication_job.yaml +++ b/actions/sms_update_replication_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sms_update_replication_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_replication_job immutable: true diff --git a/actions/snowball_cancel_cluster.yaml b/actions/snowball_cancel_cluster.yaml index f8fb761f..21036466 100644 --- a/actions/snowball_cancel_cluster.yaml +++ b/actions/snowball_cancel_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_cancel_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_cluster immutable: true diff --git a/actions/snowball_cancel_job.yaml b/actions/snowball_cancel_job.yaml index f93e2565..5827d3a3 100644 --- a/actions/snowball_cancel_job.yaml +++ b/actions/snowball_cancel_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_cancel_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_job immutable: true diff --git a/actions/snowball_create_address.yaml b/actions/snowball_create_address.yaml index e0c5576d..f6804b80 100644 --- a/actions/snowball_create_address.yaml +++ b/actions/snowball_create_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_create_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_address immutable: true diff --git a/actions/snowball_create_cluster.yaml b/actions/snowball_create_cluster.yaml index 45d2b70a..80e3d175 100644 --- a/actions/snowball_create_cluster.yaml +++ b/actions/snowball_create_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_create_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cluster immutable: true diff --git a/actions/snowball_create_job.yaml b/actions/snowball_create_job.yaml index c2956611..7d1e3ca3 100644 --- a/actions/snowball_create_job.yaml +++ b/actions/snowball_create_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_create_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_job immutable: true diff --git a/actions/snowball_describe_address.yaml b/actions/snowball_describe_address.yaml index 1b95c0d7..d96f7451 100644 --- a/actions/snowball_describe_address.yaml +++ b/actions/snowball_describe_address.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_describe_address runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_address immutable: true diff --git a/actions/snowball_describe_addresses.yaml b/actions/snowball_describe_addresses.yaml index 5db6fd1f..48577bee 100644 --- a/actions/snowball_describe_addresses.yaml +++ b/actions/snowball_describe_addresses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_describe_addresses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_addresses immutable: true diff --git a/actions/snowball_describe_cluster.yaml b/actions/snowball_describe_cluster.yaml index a995760c..d96c9856 100644 --- a/actions/snowball_describe_cluster.yaml +++ b/actions/snowball_describe_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_describe_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cluster immutable: true diff --git a/actions/snowball_describe_job.yaml b/actions/snowball_describe_job.yaml index 10074cfe..253c9f87 100644 --- a/actions/snowball_describe_job.yaml +++ b/actions/snowball_describe_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_describe_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_job immutable: true diff --git a/actions/snowball_get_job_manifest.yaml b/actions/snowball_get_job_manifest.yaml index b26e3260..7b0ab819 100644 --- a/actions/snowball_get_job_manifest.yaml +++ b/actions/snowball_get_job_manifest.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_get_job_manifest runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_job_manifest immutable: true diff --git a/actions/snowball_get_job_unlock_code.yaml b/actions/snowball_get_job_unlock_code.yaml index 7b292fde..7bab2598 100644 --- a/actions/snowball_get_job_unlock_code.yaml +++ b/actions/snowball_get_job_unlock_code.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_get_job_unlock_code runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_job_unlock_code immutable: true diff --git a/actions/snowball_get_snowball_usage.yaml b/actions/snowball_get_snowball_usage.yaml index 1691cd7b..2768cc5f 100644 --- a/actions/snowball_get_snowball_usage.yaml +++ b/actions/snowball_get_snowball_usage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_get_snowball_usage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_snowball_usage immutable: true diff --git a/actions/snowball_list_cluster_jobs.yaml b/actions/snowball_list_cluster_jobs.yaml index be61eec7..ef17524a 100644 --- a/actions/snowball_list_cluster_jobs.yaml +++ b/actions/snowball_list_cluster_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_list_cluster_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_cluster_jobs immutable: true diff --git a/actions/snowball_list_clusters.yaml b/actions/snowball_list_clusters.yaml index a7af9bfe..ed94eb72 100644 --- a/actions/snowball_list_clusters.yaml +++ b/actions/snowball_list_clusters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_list_clusters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_clusters immutable: true diff --git a/actions/snowball_list_jobs.yaml b/actions/snowball_list_jobs.yaml index fe4f740c..3449b4d7 100644 --- a/actions/snowball_list_jobs.yaml +++ b/actions/snowball_list_jobs.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_list_jobs runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_jobs immutable: true diff --git a/actions/snowball_update_cluster.yaml b/actions/snowball_update_cluster.yaml index 21a94693..467c68a8 100644 --- a/actions/snowball_update_cluster.yaml +++ b/actions/snowball_update_cluster.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_update_cluster runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_cluster immutable: true diff --git a/actions/snowball_update_job.yaml b/actions/snowball_update_job.yaml index dc9bd160..92c42254 100644 --- a/actions/snowball_update_job.yaml +++ b/actions/snowball_update_job.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: snowball_update_job runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_job immutable: true diff --git a/actions/sns_add_permission.yaml b/actions/sns_add_permission.yaml index c24330e2..9f49d687 100644 --- a/actions/sns_add_permission.yaml +++ b/actions/sns_add_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_add_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_permission immutable: true diff --git a/actions/sns_check_if_phone_number_is_opted_out.yaml b/actions/sns_check_if_phone_number_is_opted_out.yaml index 0ffe9270..10de429c 100644 --- a/actions/sns_check_if_phone_number_is_opted_out.yaml +++ b/actions/sns_check_if_phone_number_is_opted_out.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_check_if_phone_number_is_opted_out runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: check_if_phone_number_is_opted_out immutable: true diff --git a/actions/sns_confirm_subscription.yaml b/actions/sns_confirm_subscription.yaml index e0c37a5e..f28fcada 100644 --- a/actions/sns_confirm_subscription.yaml +++ b/actions/sns_confirm_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_confirm_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: confirm_subscription immutable: true diff --git a/actions/sns_create_platform_application.yaml b/actions/sns_create_platform_application.yaml index bf950580..8e67ab8a 100644 --- a/actions/sns_create_platform_application.yaml +++ b/actions/sns_create_platform_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_create_platform_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_platform_application immutable: true diff --git a/actions/sns_create_platform_endpoint.yaml b/actions/sns_create_platform_endpoint.yaml index 37ef9adc..08bee39d 100644 --- a/actions/sns_create_platform_endpoint.yaml +++ b/actions/sns_create_platform_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_create_platform_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_platform_endpoint immutable: true diff --git a/actions/sns_create_topic.yaml b/actions/sns_create_topic.yaml index f68523a6..23481f6f 100644 --- a/actions/sns_create_topic.yaml +++ b/actions/sns_create_topic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_create_topic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_topic immutable: true diff --git a/actions/sns_delete_endpoint.yaml b/actions/sns_delete_endpoint.yaml index a1f0c4db..f87d5623 100644 --- a/actions/sns_delete_endpoint.yaml +++ b/actions/sns_delete_endpoint.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_delete_endpoint runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_endpoint immutable: true diff --git a/actions/sns_delete_platform_application.yaml b/actions/sns_delete_platform_application.yaml index d8c4a350..0f9f61e7 100644 --- a/actions/sns_delete_platform_application.yaml +++ b/actions/sns_delete_platform_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_delete_platform_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_platform_application immutable: true diff --git a/actions/sns_delete_topic.yaml b/actions/sns_delete_topic.yaml index 27079bcb..5a32c375 100644 --- a/actions/sns_delete_topic.yaml +++ b/actions/sns_delete_topic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_delete_topic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_topic immutable: true diff --git a/actions/sns_get_endpoint_attributes.yaml b/actions/sns_get_endpoint_attributes.yaml index 9f316e0a..7c7acbb3 100644 --- a/actions/sns_get_endpoint_attributes.yaml +++ b/actions/sns_get_endpoint_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_get_endpoint_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_endpoint_attributes immutable: true diff --git a/actions/sns_get_platform_application_attributes.yaml b/actions/sns_get_platform_application_attributes.yaml index 452db603..e1179d63 100644 --- a/actions/sns_get_platform_application_attributes.yaml +++ b/actions/sns_get_platform_application_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_get_platform_application_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_platform_application_attributes immutable: true diff --git a/actions/sns_get_sms_attributes.yaml b/actions/sns_get_sms_attributes.yaml index aeb6927e..c2b1e75a 100644 --- a/actions/sns_get_sms_attributes.yaml +++ b/actions/sns_get_sms_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_get_sms_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sms_attributes immutable: true diff --git a/actions/sns_get_subscription_attributes.yaml b/actions/sns_get_subscription_attributes.yaml index a7ec6a17..cca7eef7 100644 --- a/actions/sns_get_subscription_attributes.yaml +++ b/actions/sns_get_subscription_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_get_subscription_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_subscription_attributes immutable: true diff --git a/actions/sns_get_topic_attributes.yaml b/actions/sns_get_topic_attributes.yaml index 2520aca1..ef8dbee2 100644 --- a/actions/sns_get_topic_attributes.yaml +++ b/actions/sns_get_topic_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_get_topic_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_topic_attributes immutable: true diff --git a/actions/sns_list_endpoints_by_platform_application.yaml b/actions/sns_list_endpoints_by_platform_application.yaml index f84d7355..50e8c7e0 100644 --- a/actions/sns_list_endpoints_by_platform_application.yaml +++ b/actions/sns_list_endpoints_by_platform_application.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_list_endpoints_by_platform_application runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_endpoints_by_platform_application immutable: true diff --git a/actions/sns_list_phone_numbers_opted_out.yaml b/actions/sns_list_phone_numbers_opted_out.yaml index 5c9b1874..11b7566a 100644 --- a/actions/sns_list_phone_numbers_opted_out.yaml +++ b/actions/sns_list_phone_numbers_opted_out.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_list_phone_numbers_opted_out runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_phone_numbers_opted_out immutable: true diff --git a/actions/sns_list_platform_applications.yaml b/actions/sns_list_platform_applications.yaml index d262447e..f34594b5 100644 --- a/actions/sns_list_platform_applications.yaml +++ b/actions/sns_list_platform_applications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_list_platform_applications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_platform_applications immutable: true diff --git a/actions/sns_list_subscriptions.yaml b/actions/sns_list_subscriptions.yaml index 8d4211c6..ef3479c0 100644 --- a/actions/sns_list_subscriptions.yaml +++ b/actions/sns_list_subscriptions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_list_subscriptions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_subscriptions immutable: true diff --git a/actions/sns_list_subscriptions_by_topic.yaml b/actions/sns_list_subscriptions_by_topic.yaml index be553caf..03dde407 100644 --- a/actions/sns_list_subscriptions_by_topic.yaml +++ b/actions/sns_list_subscriptions_by_topic.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_list_subscriptions_by_topic runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_subscriptions_by_topic immutable: true diff --git a/actions/sns_list_topics.yaml b/actions/sns_list_topics.yaml index a0cc7c7e..78d0aedb 100644 --- a/actions/sns_list_topics.yaml +++ b/actions/sns_list_topics.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_list_topics runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_topics immutable: true diff --git a/actions/sns_opt_in_phone_number.yaml b/actions/sns_opt_in_phone_number.yaml index 6b7cc4b7..c49d1185 100644 --- a/actions/sns_opt_in_phone_number.yaml +++ b/actions/sns_opt_in_phone_number.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_opt_in_phone_number runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: opt_in_phone_number immutable: true diff --git a/actions/sns_publish.yaml b/actions/sns_publish.yaml index 1ab6bd62..66bcadbf 100644 --- a/actions/sns_publish.yaml +++ b/actions/sns_publish.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_publish runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: publish immutable: true diff --git a/actions/sns_remove_permission.yaml b/actions/sns_remove_permission.yaml index 603fa7fe..c0156e15 100644 --- a/actions/sns_remove_permission.yaml +++ b/actions/sns_remove_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_remove_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_permission immutable: true diff --git a/actions/sns_set_endpoint_attributes.yaml b/actions/sns_set_endpoint_attributes.yaml index b3230148..ccdd1370 100644 --- a/actions/sns_set_endpoint_attributes.yaml +++ b/actions/sns_set_endpoint_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_set_endpoint_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_endpoint_attributes immutable: true diff --git a/actions/sns_set_platform_application_attributes.yaml b/actions/sns_set_platform_application_attributes.yaml index 2855b874..aa1f2a64 100644 --- a/actions/sns_set_platform_application_attributes.yaml +++ b/actions/sns_set_platform_application_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_set_platform_application_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_platform_application_attributes immutable: true diff --git a/actions/sns_set_sms_attributes.yaml b/actions/sns_set_sms_attributes.yaml index 752945eb..f28ab14d 100644 --- a/actions/sns_set_sms_attributes.yaml +++ b/actions/sns_set_sms_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_set_sms_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_sms_attributes immutable: true diff --git a/actions/sns_set_subscription_attributes.yaml b/actions/sns_set_subscription_attributes.yaml index 9aaa8a4e..60759375 100644 --- a/actions/sns_set_subscription_attributes.yaml +++ b/actions/sns_set_subscription_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_set_subscription_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_subscription_attributes immutable: true diff --git a/actions/sns_set_topic_attributes.yaml b/actions/sns_set_topic_attributes.yaml index 57af894f..912bda4e 100644 --- a/actions/sns_set_topic_attributes.yaml +++ b/actions/sns_set_topic_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_set_topic_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_topic_attributes immutable: true diff --git a/actions/sns_subscribe.yaml b/actions/sns_subscribe.yaml index ab361472..1bc9b769 100644 --- a/actions/sns_subscribe.yaml +++ b/actions/sns_subscribe.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_subscribe runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: subscribe immutable: true diff --git a/actions/sns_unsubscribe.yaml b/actions/sns_unsubscribe.yaml index f1b2fac7..a57a597c 100644 --- a/actions/sns_unsubscribe.yaml +++ b/actions/sns_unsubscribe.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sns_unsubscribe runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: unsubscribe immutable: true diff --git a/actions/sqs_add_permission.yaml b/actions/sqs_add_permission.yaml index 1381b06b..72720b02 100644 --- a/actions/sqs_add_permission.yaml +++ b/actions/sqs_add_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_add_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_permission immutable: true diff --git a/actions/sqs_build_base_http_request.yaml b/actions/sqs_build_base_http_request.yaml index c63fc37c..2b7d0206 100644 --- a/actions/sqs_build_base_http_request.yaml +++ b/actions/sqs_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/sqs_build_complex_list_params.yaml b/actions/sqs_build_complex_list_params.yaml index 7798592d..39d12272 100644 --- a/actions/sqs_build_complex_list_params.yaml +++ b/actions/sqs_build_complex_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_build_complex_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_complex_list_params immutable: true diff --git a/actions/sqs_build_list_params.yaml b/actions/sqs_build_list_params.yaml index 4e77003f..c61f9a95 100644 --- a/actions/sqs_build_list_params.yaml +++ b/actions/sqs_build_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_build_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_list_params immutable: true diff --git a/actions/sqs_change_message_visibility.yaml b/actions/sqs_change_message_visibility.yaml index 8e7662f8..d1085b50 100644 --- a/actions/sqs_change_message_visibility.yaml +++ b/actions/sqs_change_message_visibility.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_change_message_visibility runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: change_message_visibility immutable: true diff --git a/actions/sqs_change_message_visibility_batch.yaml b/actions/sqs_change_message_visibility_batch.yaml index 7505b0ae..ba950df7 100644 --- a/actions/sqs_change_message_visibility_batch.yaml +++ b/actions/sqs_change_message_visibility_batch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_change_message_visibility_batch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: change_message_visibility_batch immutable: true diff --git a/actions/sqs_close.yaml b/actions/sqs_close.yaml index 8774f8c3..ee76aec0 100644 --- a/actions/sqs_close.yaml +++ b/actions/sqs_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/sqs_create_queue.yaml b/actions/sqs_create_queue.yaml index 381bffcb..f7b5b9ec 100644 --- a/actions/sqs_create_queue.yaml +++ b/actions/sqs_create_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_create_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_queue immutable: true diff --git a/actions/sqs_delete_message.yaml b/actions/sqs_delete_message.yaml index 4e2b9834..809edbcc 100644 --- a/actions/sqs_delete_message.yaml +++ b/actions/sqs_delete_message.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_delete_message runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_message immutable: true diff --git a/actions/sqs_delete_message_batch.yaml b/actions/sqs_delete_message_batch.yaml index a91fabba..4a4d1704 100644 --- a/actions/sqs_delete_message_batch.yaml +++ b/actions/sqs_delete_message_batch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_delete_message_batch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_message_batch immutable: true diff --git a/actions/sqs_delete_message_from_handle.yaml b/actions/sqs_delete_message_from_handle.yaml index 7bd67fde..4daa06c9 100644 --- a/actions/sqs_delete_message_from_handle.yaml +++ b/actions/sqs_delete_message_from_handle.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_delete_message_from_handle parameters: + account_id: + type: string + region: + type: string action: default: delete_message_from_handle immutable: true diff --git a/actions/sqs_delete_queue.yaml b/actions/sqs_delete_queue.yaml index b321d0bc..b2a3ab78 100644 --- a/actions/sqs_delete_queue.yaml +++ b/actions/sqs_delete_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_delete_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_queue immutable: true diff --git a/actions/sqs_get_all_queues.yaml b/actions/sqs_get_all_queues.yaml index 8375bff4..40f82edc 100644 --- a/actions/sqs_get_all_queues.yaml +++ b/actions/sqs_get_all_queues.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_all_queues parameters: + account_id: + type: string + region: + type: string action: default: get_all_queues immutable: true diff --git a/actions/sqs_get_dead_letter_source_queues.yaml b/actions/sqs_get_dead_letter_source_queues.yaml index 91e60d40..ff604e37 100644 --- a/actions/sqs_get_dead_letter_source_queues.yaml +++ b/actions/sqs_get_dead_letter_source_queues.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_dead_letter_source_queues parameters: + account_id: + type: string + region: + type: string action: default: get_dead_letter_source_queues immutable: true diff --git a/actions/sqs_get_http_connection.yaml b/actions/sqs_get_http_connection.yaml index f5b7e7ca..7db9ae28 100644 --- a/actions/sqs_get_http_connection.yaml +++ b/actions/sqs_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/sqs_get_list.yaml b/actions/sqs_get_list.yaml index 1e19d213..3246b7ec 100644 --- a/actions/sqs_get_list.yaml +++ b/actions/sqs_get_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_list parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/sqs_get_object.yaml b/actions/sqs_get_object.yaml index cc5de534..83eee047 100644 --- a/actions/sqs_get_object.yaml +++ b/actions/sqs_get_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_object parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/sqs_get_path.yaml b/actions/sqs_get_path.yaml index bd6320b4..39f78624 100644 --- a/actions/sqs_get_path.yaml +++ b/actions/sqs_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/sqs_get_proxy_auth_header.yaml b/actions/sqs_get_proxy_auth_header.yaml index d9b99320..8a86331c 100644 --- a/actions/sqs_get_proxy_auth_header.yaml +++ b/actions/sqs_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/sqs_get_proxy_url_with_auth.yaml b/actions/sqs_get_proxy_url_with_auth.yaml index 885017d4..8c276234 100644 --- a/actions/sqs_get_proxy_url_with_auth.yaml +++ b/actions/sqs_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/sqs_get_queue.yaml b/actions/sqs_get_queue.yaml index d6548506..cdaf39f2 100644 --- a/actions/sqs_get_queue.yaml +++ b/actions/sqs_get_queue.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_queue parameters: + account_id: + type: string + region: + type: string action: default: get_queue immutable: true diff --git a/actions/sqs_get_queue_attributes.yaml b/actions/sqs_get_queue_attributes.yaml index d2ff399b..2bfc7fbb 100644 --- a/actions/sqs_get_queue_attributes.yaml +++ b/actions/sqs_get_queue_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_get_queue_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_queue_attributes immutable: true diff --git a/actions/sqs_get_queue_url.yaml b/actions/sqs_get_queue_url.yaml index 54997521..c586b8ea 100644 --- a/actions/sqs_get_queue_url.yaml +++ b/actions/sqs_get_queue_url.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_get_queue_url runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_queue_url immutable: true diff --git a/actions/sqs_get_status.yaml b/actions/sqs_get_status.yaml index f172dd96..d7393cbd 100644 --- a/actions/sqs_get_status.yaml +++ b/actions/sqs_get_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_status parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/sqs_get_utf8_value.yaml b/actions/sqs_get_utf8_value.yaml index fd0ca501..eb81e5a0 100644 --- a/actions/sqs_get_utf8_value.yaml +++ b/actions/sqs_get_utf8_value.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_get_utf8_value parameters: + account_id: + type: string + region: + type: string action: default: get_utf8_value immutable: true diff --git a/actions/sqs_handle_proxy.yaml b/actions/sqs_handle_proxy.yaml index 2d7a2882..130844db 100644 --- a/actions/sqs_handle_proxy.yaml +++ b/actions/sqs_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/sqs_list_dead_letter_source_queues.yaml b/actions/sqs_list_dead_letter_source_queues.yaml index f2e972d8..51614cfc 100644 --- a/actions/sqs_list_dead_letter_source_queues.yaml +++ b/actions/sqs_list_dead_letter_source_queues.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_list_dead_letter_source_queues runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_dead_letter_source_queues immutable: true diff --git a/actions/sqs_list_queues.yaml b/actions/sqs_list_queues.yaml index fbc6d2aa..61f6d36c 100644 --- a/actions/sqs_list_queues.yaml +++ b/actions/sqs_list_queues.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_list_queues runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_queues immutable: true diff --git a/actions/sqs_lookup.yaml b/actions/sqs_lookup.yaml index bf668002..e864169b 100644 --- a/actions/sqs_lookup.yaml +++ b/actions/sqs_lookup.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_lookup parameters: + account_id: + type: string + region: + type: string action: default: lookup immutable: true diff --git a/actions/sqs_make_request.yaml b/actions/sqs_make_request.yaml index abf44622..5edda28d 100644 --- a/actions/sqs_make_request.yaml +++ b/actions/sqs_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/sqs_new_http_connection.yaml b/actions/sqs_new_http_connection.yaml index ee30f74e..56c66196 100644 --- a/actions/sqs_new_http_connection.yaml +++ b/actions/sqs_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/sqs_prefix_proxy_to_path.yaml b/actions/sqs_prefix_proxy_to_path.yaml index e29f24e5..51055333 100644 --- a/actions/sqs_prefix_proxy_to_path.yaml +++ b/actions/sqs_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/sqs_proxy_ssl.yaml b/actions/sqs_proxy_ssl.yaml index f9e75db1..0d559512 100644 --- a/actions/sqs_proxy_ssl.yaml +++ b/actions/sqs_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/sqs_purge_queue.yaml b/actions/sqs_purge_queue.yaml index 7268edc3..4689bda1 100644 --- a/actions/sqs_purge_queue.yaml +++ b/actions/sqs_purge_queue.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_purge_queue runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: purge_queue immutable: true diff --git a/actions/sqs_put_http_connection.yaml b/actions/sqs_put_http_connection.yaml index 31bab6a2..c6a35704 100644 --- a/actions/sqs_put_http_connection.yaml +++ b/actions/sqs_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/sqs_receive_message.yaml b/actions/sqs_receive_message.yaml index cc4b4de3..f6cda316 100644 --- a/actions/sqs_receive_message.yaml +++ b/actions/sqs_receive_message.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_receive_message runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: receive_message immutable: true diff --git a/actions/sqs_remove_permission.yaml b/actions/sqs_remove_permission.yaml index cc15368f..387e72bd 100644 --- a/actions/sqs_remove_permission.yaml +++ b/actions/sqs_remove_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_remove_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_permission immutable: true diff --git a/actions/sqs_send_message.yaml b/actions/sqs_send_message.yaml index 797abba8..f694a590 100644 --- a/actions/sqs_send_message.yaml +++ b/actions/sqs_send_message.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_send_message runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_message immutable: true diff --git a/actions/sqs_send_message_batch.yaml b/actions/sqs_send_message_batch.yaml index ab162529..3a7dd9b3 100644 --- a/actions/sqs_send_message_batch.yaml +++ b/actions/sqs_send_message_batch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_send_message_batch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_message_batch immutable: true diff --git a/actions/sqs_server_name.yaml b/actions/sqs_server_name.yaml index d4f75fa4..81782040 100644 --- a/actions/sqs_server_name.yaml +++ b/actions/sqs_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/sqs_set_host_header.yaml b/actions/sqs_set_host_header.yaml index d492f477..bde8d336 100644 --- a/actions/sqs_set_host_header.yaml +++ b/actions/sqs_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/sqs_set_queue_attribute.yaml b/actions/sqs_set_queue_attribute.yaml index 869e3da5..a15160fb 100644 --- a/actions/sqs_set_queue_attribute.yaml +++ b/actions/sqs_set_queue_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_set_queue_attribute parameters: + account_id: + type: string + region: + type: string action: default: set_queue_attribute immutable: true diff --git a/actions/sqs_set_queue_attributes.yaml b/actions/sqs_set_queue_attributes.yaml index add20062..634a829f 100644 --- a/actions/sqs_set_queue_attributes.yaml +++ b/actions/sqs_set_queue_attributes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sqs_set_queue_attributes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_queue_attributes immutable: true diff --git a/actions/sqs_set_request_hook.yaml b/actions/sqs_set_request_hook.yaml index f6f31a58..35c32286 100644 --- a/actions/sqs_set_request_hook.yaml +++ b/actions/sqs_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/sqs_skip_proxy.yaml b/actions/sqs_skip_proxy.yaml index 0e583811..722ac29d 100644 --- a/actions/sqs_skip_proxy.yaml +++ b/actions/sqs_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: sqs_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/ssm_add_tags_to_resource.yaml b/actions/ssm_add_tags_to_resource.yaml index a9c3901e..f4327801 100644 --- a/actions/ssm_add_tags_to_resource.yaml +++ b/actions/ssm_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/ssm_cancel_command.yaml b/actions/ssm_cancel_command.yaml index 7992de01..e496d4df 100644 --- a/actions/ssm_cancel_command.yaml +++ b/actions/ssm_cancel_command.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_cancel_command runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_command immutable: true diff --git a/actions/ssm_create_activation.yaml b/actions/ssm_create_activation.yaml index e71b77fd..0f79f2ee 100644 --- a/actions/ssm_create_activation.yaml +++ b/actions/ssm_create_activation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_create_activation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_activation immutable: true diff --git a/actions/ssm_create_association.yaml b/actions/ssm_create_association.yaml index eaf94943..ea86b0bf 100644 --- a/actions/ssm_create_association.yaml +++ b/actions/ssm_create_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_create_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_association immutable: true diff --git a/actions/ssm_create_association_batch.yaml b/actions/ssm_create_association_batch.yaml index 5aa40f8b..fe7ce1d0 100644 --- a/actions/ssm_create_association_batch.yaml +++ b/actions/ssm_create_association_batch.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_create_association_batch runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_association_batch immutable: true diff --git a/actions/ssm_create_document.yaml b/actions/ssm_create_document.yaml index ebf6d20e..3e988699 100644 --- a/actions/ssm_create_document.yaml +++ b/actions/ssm_create_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_create_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_document immutable: true diff --git a/actions/ssm_create_maintenance_window.yaml b/actions/ssm_create_maintenance_window.yaml index 526a9aba..ff1429ff 100644 --- a/actions/ssm_create_maintenance_window.yaml +++ b/actions/ssm_create_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_create_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_maintenance_window immutable: true diff --git a/actions/ssm_create_patch_baseline.yaml b/actions/ssm_create_patch_baseline.yaml index 59a9c69d..2851670c 100644 --- a/actions/ssm_create_patch_baseline.yaml +++ b/actions/ssm_create_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_create_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_patch_baseline immutable: true diff --git a/actions/ssm_delete_activation.yaml b/actions/ssm_delete_activation.yaml index f6840488..1bdff9c9 100644 --- a/actions/ssm_delete_activation.yaml +++ b/actions/ssm_delete_activation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_activation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_activation immutable: true diff --git a/actions/ssm_delete_association.yaml b/actions/ssm_delete_association.yaml index a29e22bf..bcf3a3f1 100644 --- a/actions/ssm_delete_association.yaml +++ b/actions/ssm_delete_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_association immutable: true diff --git a/actions/ssm_delete_document.yaml b/actions/ssm_delete_document.yaml index 39206dc4..d0abe701 100644 --- a/actions/ssm_delete_document.yaml +++ b/actions/ssm_delete_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_document immutable: true diff --git a/actions/ssm_delete_maintenance_window.yaml b/actions/ssm_delete_maintenance_window.yaml index dbae9033..d0a92347 100644 --- a/actions/ssm_delete_maintenance_window.yaml +++ b/actions/ssm_delete_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_maintenance_window immutable: true diff --git a/actions/ssm_delete_parameter.yaml b/actions/ssm_delete_parameter.yaml index 6a948933..936219d2 100644 --- a/actions/ssm_delete_parameter.yaml +++ b/actions/ssm_delete_parameter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_parameter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_parameter immutable: true diff --git a/actions/ssm_delete_parameters.yaml b/actions/ssm_delete_parameters.yaml index 243714de..bf1e0c0f 100644 --- a/actions/ssm_delete_parameters.yaml +++ b/actions/ssm_delete_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_parameters immutable: true diff --git a/actions/ssm_delete_patch_baseline.yaml b/actions/ssm_delete_patch_baseline.yaml index 72f37e81..63870c02 100644 --- a/actions/ssm_delete_patch_baseline.yaml +++ b/actions/ssm_delete_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_delete_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_patch_baseline immutable: true diff --git a/actions/ssm_deregister_managed_instance.yaml b/actions/ssm_deregister_managed_instance.yaml index 9a689c1c..9390263d 100644 --- a/actions/ssm_deregister_managed_instance.yaml +++ b/actions/ssm_deregister_managed_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_deregister_managed_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_managed_instance immutable: true diff --git a/actions/ssm_deregister_patch_baseline_for_patch_group.yaml b/actions/ssm_deregister_patch_baseline_for_patch_group.yaml index d8f8c66e..7a1cf482 100644 --- a/actions/ssm_deregister_patch_baseline_for_patch_group.yaml +++ b/actions/ssm_deregister_patch_baseline_for_patch_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_deregister_patch_baseline_for_patch_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_patch_baseline_for_patch_group immutable: true diff --git a/actions/ssm_deregister_target_from_maintenance_window.yaml b/actions/ssm_deregister_target_from_maintenance_window.yaml index 8917fe59..0584d56f 100644 --- a/actions/ssm_deregister_target_from_maintenance_window.yaml +++ b/actions/ssm_deregister_target_from_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_deregister_target_from_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_target_from_maintenance_window immutable: true diff --git a/actions/ssm_deregister_task_from_maintenance_window.yaml b/actions/ssm_deregister_task_from_maintenance_window.yaml index bc295d8d..531e7457 100644 --- a/actions/ssm_deregister_task_from_maintenance_window.yaml +++ b/actions/ssm_deregister_task_from_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_deregister_task_from_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deregister_task_from_maintenance_window immutable: true diff --git a/actions/ssm_describe_activations.yaml b/actions/ssm_describe_activations.yaml index d50354c5..1531c873 100644 --- a/actions/ssm_describe_activations.yaml +++ b/actions/ssm_describe_activations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_activations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_activations immutable: true diff --git a/actions/ssm_describe_association.yaml b/actions/ssm_describe_association.yaml index cee3750c..7e902d2c 100644 --- a/actions/ssm_describe_association.yaml +++ b/actions/ssm_describe_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_association immutable: true diff --git a/actions/ssm_describe_automation_executions.yaml b/actions/ssm_describe_automation_executions.yaml index 2f6b739c..e7cd5957 100644 --- a/actions/ssm_describe_automation_executions.yaml +++ b/actions/ssm_describe_automation_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_automation_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_automation_executions immutable: true diff --git a/actions/ssm_describe_available_patches.yaml b/actions/ssm_describe_available_patches.yaml index 20cea33e..c5af116a 100644 --- a/actions/ssm_describe_available_patches.yaml +++ b/actions/ssm_describe_available_patches.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_available_patches runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_available_patches immutable: true diff --git a/actions/ssm_describe_document.yaml b/actions/ssm_describe_document.yaml index 1b9f7a24..6e48566e 100644 --- a/actions/ssm_describe_document.yaml +++ b/actions/ssm_describe_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_document immutable: true diff --git a/actions/ssm_describe_document_permission.yaml b/actions/ssm_describe_document_permission.yaml index 83f81cd7..c5a52c4b 100644 --- a/actions/ssm_describe_document_permission.yaml +++ b/actions/ssm_describe_document_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_document_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_document_permission immutable: true diff --git a/actions/ssm_describe_effective_instance_associations.yaml b/actions/ssm_describe_effective_instance_associations.yaml index 71d5d42a..a864446b 100644 --- a/actions/ssm_describe_effective_instance_associations.yaml +++ b/actions/ssm_describe_effective_instance_associations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_effective_instance_associations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_effective_instance_associations immutable: true diff --git a/actions/ssm_describe_effective_patches_for_patch_baseline.yaml b/actions/ssm_describe_effective_patches_for_patch_baseline.yaml index fb2491c4..a38dc50c 100644 --- a/actions/ssm_describe_effective_patches_for_patch_baseline.yaml +++ b/actions/ssm_describe_effective_patches_for_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_effective_patches_for_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_effective_patches_for_patch_baseline immutable: true diff --git a/actions/ssm_describe_instance_associations_status.yaml b/actions/ssm_describe_instance_associations_status.yaml index ecde4bfa..610c7a51 100644 --- a/actions/ssm_describe_instance_associations_status.yaml +++ b/actions/ssm_describe_instance_associations_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_instance_associations_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_associations_status immutable: true diff --git a/actions/ssm_describe_instance_information.yaml b/actions/ssm_describe_instance_information.yaml index 41e5402e..6d94b92c 100644 --- a/actions/ssm_describe_instance_information.yaml +++ b/actions/ssm_describe_instance_information.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_instance_information runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_information immutable: true diff --git a/actions/ssm_describe_instance_patch_states.yaml b/actions/ssm_describe_instance_patch_states.yaml index 266817f6..8f098a06 100644 --- a/actions/ssm_describe_instance_patch_states.yaml +++ b/actions/ssm_describe_instance_patch_states.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_instance_patch_states runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_patch_states immutable: true diff --git a/actions/ssm_describe_instance_patch_states_for_patch_group.yaml b/actions/ssm_describe_instance_patch_states_for_patch_group.yaml index 989359b4..61b8963e 100644 --- a/actions/ssm_describe_instance_patch_states_for_patch_group.yaml +++ b/actions/ssm_describe_instance_patch_states_for_patch_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_instance_patch_states_for_patch_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_patch_states_for_patch_group immutable: true diff --git a/actions/ssm_describe_instance_patches.yaml b/actions/ssm_describe_instance_patches.yaml index a91db352..7b54ff3c 100644 --- a/actions/ssm_describe_instance_patches.yaml +++ b/actions/ssm_describe_instance_patches.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_instance_patches runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_instance_patches immutable: true diff --git a/actions/ssm_describe_maintenance_window_execution_task_invocations.yaml b/actions/ssm_describe_maintenance_window_execution_task_invocations.yaml index 80e650fc..c30bc949 100644 --- a/actions/ssm_describe_maintenance_window_execution_task_invocations.yaml +++ b/actions/ssm_describe_maintenance_window_execution_task_invocations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_maintenance_window_execution_task_invocations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_window_execution_task_invocations immutable: true diff --git a/actions/ssm_describe_maintenance_window_execution_tasks.yaml b/actions/ssm_describe_maintenance_window_execution_tasks.yaml index 3527d0ac..6165c582 100644 --- a/actions/ssm_describe_maintenance_window_execution_tasks.yaml +++ b/actions/ssm_describe_maintenance_window_execution_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_maintenance_window_execution_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_window_execution_tasks immutable: true diff --git a/actions/ssm_describe_maintenance_window_executions.yaml b/actions/ssm_describe_maintenance_window_executions.yaml index 4ce1ba2d..62a74e3a 100644 --- a/actions/ssm_describe_maintenance_window_executions.yaml +++ b/actions/ssm_describe_maintenance_window_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_maintenance_window_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_window_executions immutable: true diff --git a/actions/ssm_describe_maintenance_window_targets.yaml b/actions/ssm_describe_maintenance_window_targets.yaml index ccfb51af..131a023b 100644 --- a/actions/ssm_describe_maintenance_window_targets.yaml +++ b/actions/ssm_describe_maintenance_window_targets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_maintenance_window_targets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_window_targets immutable: true diff --git a/actions/ssm_describe_maintenance_window_tasks.yaml b/actions/ssm_describe_maintenance_window_tasks.yaml index be979517..28cf4f95 100644 --- a/actions/ssm_describe_maintenance_window_tasks.yaml +++ b/actions/ssm_describe_maintenance_window_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_maintenance_window_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_window_tasks immutable: true diff --git a/actions/ssm_describe_maintenance_windows.yaml b/actions/ssm_describe_maintenance_windows.yaml index af3f4917..fe60059b 100644 --- a/actions/ssm_describe_maintenance_windows.yaml +++ b/actions/ssm_describe_maintenance_windows.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_maintenance_windows runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_windows immutable: true diff --git a/actions/ssm_describe_parameters.yaml b/actions/ssm_describe_parameters.yaml index 73b63057..4b3317c3 100644 --- a/actions/ssm_describe_parameters.yaml +++ b/actions/ssm_describe_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_parameters immutable: true diff --git a/actions/ssm_describe_patch_baselines.yaml b/actions/ssm_describe_patch_baselines.yaml index c989dcc9..b6afbc9d 100644 --- a/actions/ssm_describe_patch_baselines.yaml +++ b/actions/ssm_describe_patch_baselines.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_patch_baselines runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_patch_baselines immutable: true diff --git a/actions/ssm_describe_patch_group_state.yaml b/actions/ssm_describe_patch_group_state.yaml index 0fff2807..3f8a785c 100644 --- a/actions/ssm_describe_patch_group_state.yaml +++ b/actions/ssm_describe_patch_group_state.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_patch_group_state runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_patch_group_state immutable: true diff --git a/actions/ssm_describe_patch_groups.yaml b/actions/ssm_describe_patch_groups.yaml index e815638b..a2b64019 100644 --- a/actions/ssm_describe_patch_groups.yaml +++ b/actions/ssm_describe_patch_groups.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_describe_patch_groups runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_patch_groups immutable: true diff --git a/actions/ssm_get_automation_execution.yaml b/actions/ssm_get_automation_execution.yaml index b9bbc647..51bb6624 100644 --- a/actions/ssm_get_automation_execution.yaml +++ b/actions/ssm_get_automation_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_automation_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_automation_execution immutable: true diff --git a/actions/ssm_get_command_invocation.yaml b/actions/ssm_get_command_invocation.yaml index 3c888a3c..898817c0 100644 --- a/actions/ssm_get_command_invocation.yaml +++ b/actions/ssm_get_command_invocation.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_command_invocation runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_command_invocation immutable: true diff --git a/actions/ssm_get_default_patch_baseline.yaml b/actions/ssm_get_default_patch_baseline.yaml index 3781ebbe..9bed1a80 100644 --- a/actions/ssm_get_default_patch_baseline.yaml +++ b/actions/ssm_get_default_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_default_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_default_patch_baseline immutable: true diff --git a/actions/ssm_get_deployable_patch_snapshot_for_instance.yaml b/actions/ssm_get_deployable_patch_snapshot_for_instance.yaml index 0fd1f65d..c2ef2a65 100644 --- a/actions/ssm_get_deployable_patch_snapshot_for_instance.yaml +++ b/actions/ssm_get_deployable_patch_snapshot_for_instance.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_deployable_patch_snapshot_for_instance runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_deployable_patch_snapshot_for_instance immutable: true diff --git a/actions/ssm_get_document.yaml b/actions/ssm_get_document.yaml index 2ff00749..2ef2c2ec 100644 --- a/actions/ssm_get_document.yaml +++ b/actions/ssm_get_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_document immutable: true diff --git a/actions/ssm_get_inventory.yaml b/actions/ssm_get_inventory.yaml index 48ab0f33..3758f93d 100644 --- a/actions/ssm_get_inventory.yaml +++ b/actions/ssm_get_inventory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_inventory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_inventory immutable: true diff --git a/actions/ssm_get_inventory_schema.yaml b/actions/ssm_get_inventory_schema.yaml index d00827a5..5772a16a 100644 --- a/actions/ssm_get_inventory_schema.yaml +++ b/actions/ssm_get_inventory_schema.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_inventory_schema runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_inventory_schema immutable: true diff --git a/actions/ssm_get_maintenance_window.yaml b/actions/ssm_get_maintenance_window.yaml index 1159dbe3..2013c1a1 100644 --- a/actions/ssm_get_maintenance_window.yaml +++ b/actions/ssm_get_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_maintenance_window immutable: true diff --git a/actions/ssm_get_maintenance_window_execution.yaml b/actions/ssm_get_maintenance_window_execution.yaml index 5025a743..9916654a 100644 --- a/actions/ssm_get_maintenance_window_execution.yaml +++ b/actions/ssm_get_maintenance_window_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_maintenance_window_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_maintenance_window_execution immutable: true diff --git a/actions/ssm_get_maintenance_window_execution_task.yaml b/actions/ssm_get_maintenance_window_execution_task.yaml index fb6a8b1b..1e460782 100644 --- a/actions/ssm_get_maintenance_window_execution_task.yaml +++ b/actions/ssm_get_maintenance_window_execution_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_maintenance_window_execution_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_maintenance_window_execution_task immutable: true diff --git a/actions/ssm_get_parameter.yaml b/actions/ssm_get_parameter.yaml index 15dae7d8..79f4b607 100644 --- a/actions/ssm_get_parameter.yaml +++ b/actions/ssm_get_parameter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_parameter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_parameter immutable: true diff --git a/actions/ssm_get_parameter_history.yaml b/actions/ssm_get_parameter_history.yaml index f2c1b57d..08cc854f 100644 --- a/actions/ssm_get_parameter_history.yaml +++ b/actions/ssm_get_parameter_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_parameter_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_parameter_history immutable: true diff --git a/actions/ssm_get_parameters.yaml b/actions/ssm_get_parameters.yaml index 70668c29..64a37770 100644 --- a/actions/ssm_get_parameters.yaml +++ b/actions/ssm_get_parameters.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_parameters runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_parameters immutable: true diff --git a/actions/ssm_get_parameters_by_path.yaml b/actions/ssm_get_parameters_by_path.yaml index af20d711..1c9e0b8b 100644 --- a/actions/ssm_get_parameters_by_path.yaml +++ b/actions/ssm_get_parameters_by_path.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_parameters_by_path runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_parameters_by_path immutable: true diff --git a/actions/ssm_get_patch_baseline.yaml b/actions/ssm_get_patch_baseline.yaml index a15bc44c..d6724ec6 100644 --- a/actions/ssm_get_patch_baseline.yaml +++ b/actions/ssm_get_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_patch_baseline immutable: true diff --git a/actions/ssm_get_patch_baseline_for_patch_group.yaml b/actions/ssm_get_patch_baseline_for_patch_group.yaml index dcc87e77..51db5c8f 100644 --- a/actions/ssm_get_patch_baseline_for_patch_group.yaml +++ b/actions/ssm_get_patch_baseline_for_patch_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_get_patch_baseline_for_patch_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_patch_baseline_for_patch_group immutable: true diff --git a/actions/ssm_list_associations.yaml b/actions/ssm_list_associations.yaml index 6c95d27f..f871f30f 100644 --- a/actions/ssm_list_associations.yaml +++ b/actions/ssm_list_associations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_associations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_associations immutable: true diff --git a/actions/ssm_list_command_invocations.yaml b/actions/ssm_list_command_invocations.yaml index 2d3b2d2c..deaa0be1 100644 --- a/actions/ssm_list_command_invocations.yaml +++ b/actions/ssm_list_command_invocations.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_command_invocations runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_command_invocations immutable: true diff --git a/actions/ssm_list_commands.yaml b/actions/ssm_list_commands.yaml index a5c47643..3ff7da19 100644 --- a/actions/ssm_list_commands.yaml +++ b/actions/ssm_list_commands.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_commands runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_commands immutable: true diff --git a/actions/ssm_list_document_versions.yaml b/actions/ssm_list_document_versions.yaml index a4240b26..29a41033 100644 --- a/actions/ssm_list_document_versions.yaml +++ b/actions/ssm_list_document_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_document_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_document_versions immutable: true diff --git a/actions/ssm_list_documents.yaml b/actions/ssm_list_documents.yaml index 930996b2..d825725f 100644 --- a/actions/ssm_list_documents.yaml +++ b/actions/ssm_list_documents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_documents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_documents immutable: true diff --git a/actions/ssm_list_inventory_entries.yaml b/actions/ssm_list_inventory_entries.yaml index 1e2ba591..badd09ab 100644 --- a/actions/ssm_list_inventory_entries.yaml +++ b/actions/ssm_list_inventory_entries.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_inventory_entries runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_inventory_entries immutable: true diff --git a/actions/ssm_list_tags_for_resource.yaml b/actions/ssm_list_tags_for_resource.yaml index 2932c4eb..e89999ca 100644 --- a/actions/ssm_list_tags_for_resource.yaml +++ b/actions/ssm_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/ssm_modify_document_permission.yaml b/actions/ssm_modify_document_permission.yaml index e80969a7..9578982c 100644 --- a/actions/ssm_modify_document_permission.yaml +++ b/actions/ssm_modify_document_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_modify_document_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_document_permission immutable: true diff --git a/actions/ssm_put_inventory.yaml b/actions/ssm_put_inventory.yaml index ab71f319..d29f3f7b 100644 --- a/actions/ssm_put_inventory.yaml +++ b/actions/ssm_put_inventory.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_put_inventory runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_inventory immutable: true diff --git a/actions/ssm_put_parameter.yaml b/actions/ssm_put_parameter.yaml index b0daa3ee..341a1f8f 100644 --- a/actions/ssm_put_parameter.yaml +++ b/actions/ssm_put_parameter.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_put_parameter runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_parameter immutable: true diff --git a/actions/ssm_register_default_patch_baseline.yaml b/actions/ssm_register_default_patch_baseline.yaml index 58367e57..135041de 100644 --- a/actions/ssm_register_default_patch_baseline.yaml +++ b/actions/ssm_register_default_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_register_default_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_default_patch_baseline immutable: true diff --git a/actions/ssm_register_patch_baseline_for_patch_group.yaml b/actions/ssm_register_patch_baseline_for_patch_group.yaml index 50d2d7e8..a2445009 100644 --- a/actions/ssm_register_patch_baseline_for_patch_group.yaml +++ b/actions/ssm_register_patch_baseline_for_patch_group.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_register_patch_baseline_for_patch_group runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_patch_baseline_for_patch_group immutable: true diff --git a/actions/ssm_register_target_with_maintenance_window.yaml b/actions/ssm_register_target_with_maintenance_window.yaml index 75302f98..7a4d969e 100644 --- a/actions/ssm_register_target_with_maintenance_window.yaml +++ b/actions/ssm_register_target_with_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_register_target_with_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_target_with_maintenance_window immutable: true diff --git a/actions/ssm_register_task_with_maintenance_window.yaml b/actions/ssm_register_task_with_maintenance_window.yaml index 999b9a5d..a73e36df 100644 --- a/actions/ssm_register_task_with_maintenance_window.yaml +++ b/actions/ssm_register_task_with_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_register_task_with_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_task_with_maintenance_window immutable: true diff --git a/actions/ssm_remove_tags_from_resource.yaml b/actions/ssm_remove_tags_from_resource.yaml index e9b2c87d..ed6aef39 100644 --- a/actions/ssm_remove_tags_from_resource.yaml +++ b/actions/ssm_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/ssm_send_command.yaml b/actions/ssm_send_command.yaml index d52aebd0..a0360570 100644 --- a/actions/ssm_send_command.yaml +++ b/actions/ssm_send_command.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_send_command runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_command immutable: true diff --git a/actions/ssm_start_automation_execution.yaml b/actions/ssm_start_automation_execution.yaml index 3d291593..9a685796 100644 --- a/actions/ssm_start_automation_execution.yaml +++ b/actions/ssm_start_automation_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_start_automation_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_automation_execution immutable: true diff --git a/actions/ssm_stop_automation_execution.yaml b/actions/ssm_stop_automation_execution.yaml index 5d1cb0dd..75c67550 100644 --- a/actions/ssm_stop_automation_execution.yaml +++ b/actions/ssm_stop_automation_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_stop_automation_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_automation_execution immutable: true diff --git a/actions/ssm_update_association.yaml b/actions/ssm_update_association.yaml index dd052ec2..75066845 100644 --- a/actions/ssm_update_association.yaml +++ b/actions/ssm_update_association.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_association runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_association immutable: true diff --git a/actions/ssm_update_association_status.yaml b/actions/ssm_update_association_status.yaml index 6849e755..e3242661 100644 --- a/actions/ssm_update_association_status.yaml +++ b/actions/ssm_update_association_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_association_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_association_status immutable: true diff --git a/actions/ssm_update_document.yaml b/actions/ssm_update_document.yaml index 3fd7b91f..6f65ed27 100644 --- a/actions/ssm_update_document.yaml +++ b/actions/ssm_update_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_document immutable: true diff --git a/actions/ssm_update_document_default_version.yaml b/actions/ssm_update_document_default_version.yaml index 77c49bc9..7fd777e7 100644 --- a/actions/ssm_update_document_default_version.yaml +++ b/actions/ssm_update_document_default_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_document_default_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_document_default_version immutable: true diff --git a/actions/ssm_update_maintenance_window.yaml b/actions/ssm_update_maintenance_window.yaml index bea0061d..78048a15 100644 --- a/actions/ssm_update_maintenance_window.yaml +++ b/actions/ssm_update_maintenance_window.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_maintenance_window runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_maintenance_window immutable: true diff --git a/actions/ssm_update_managed_instance_role.yaml b/actions/ssm_update_managed_instance_role.yaml index 31961ba0..fbdaf343 100644 --- a/actions/ssm_update_managed_instance_role.yaml +++ b/actions/ssm_update_managed_instance_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_managed_instance_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_managed_instance_role immutable: true diff --git a/actions/ssm_update_patch_baseline.yaml b/actions/ssm_update_patch_baseline.yaml index f6d7d00e..0fe14f7d 100644 --- a/actions/ssm_update_patch_baseline.yaml +++ b/actions/ssm_update_patch_baseline.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: ssm_update_patch_baseline runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_patch_baseline immutable: true diff --git a/actions/stepfunctions_create_activity.yaml b/actions/stepfunctions_create_activity.yaml index 6f095be9..0a3e64be 100644 --- a/actions/stepfunctions_create_activity.yaml +++ b/actions/stepfunctions_create_activity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_create_activity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_activity immutable: true diff --git a/actions/stepfunctions_create_state_machine.yaml b/actions/stepfunctions_create_state_machine.yaml index 733f2dc1..54497670 100644 --- a/actions/stepfunctions_create_state_machine.yaml +++ b/actions/stepfunctions_create_state_machine.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_create_state_machine runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_state_machine immutable: true diff --git a/actions/stepfunctions_delete_activity.yaml b/actions/stepfunctions_delete_activity.yaml index e7d7e966..b338cf97 100644 --- a/actions/stepfunctions_delete_activity.yaml +++ b/actions/stepfunctions_delete_activity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_delete_activity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_activity immutable: true diff --git a/actions/stepfunctions_delete_state_machine.yaml b/actions/stepfunctions_delete_state_machine.yaml index c82041c6..e4abca54 100644 --- a/actions/stepfunctions_delete_state_machine.yaml +++ b/actions/stepfunctions_delete_state_machine.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_delete_state_machine runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_state_machine immutable: true diff --git a/actions/stepfunctions_describe_activity.yaml b/actions/stepfunctions_describe_activity.yaml index cda99c31..6f2c34b1 100644 --- a/actions/stepfunctions_describe_activity.yaml +++ b/actions/stepfunctions_describe_activity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_describe_activity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_activity immutable: true diff --git a/actions/stepfunctions_describe_execution.yaml b/actions/stepfunctions_describe_execution.yaml index 6d5eebfd..f97deffe 100644 --- a/actions/stepfunctions_describe_execution.yaml +++ b/actions/stepfunctions_describe_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_describe_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_execution immutable: true diff --git a/actions/stepfunctions_describe_state_machine.yaml b/actions/stepfunctions_describe_state_machine.yaml index 2078785f..6fbf66a8 100644 --- a/actions/stepfunctions_describe_state_machine.yaml +++ b/actions/stepfunctions_describe_state_machine.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_describe_state_machine runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_state_machine immutable: true diff --git a/actions/stepfunctions_get_activity_task.yaml b/actions/stepfunctions_get_activity_task.yaml index 4d93e484..02e1a441 100644 --- a/actions/stepfunctions_get_activity_task.yaml +++ b/actions/stepfunctions_get_activity_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_get_activity_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_activity_task immutable: true diff --git a/actions/stepfunctions_get_execution_history.yaml b/actions/stepfunctions_get_execution_history.yaml index 4d08f368..dd853e40 100644 --- a/actions/stepfunctions_get_execution_history.yaml +++ b/actions/stepfunctions_get_execution_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_get_execution_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_execution_history immutable: true diff --git a/actions/stepfunctions_list_activities.yaml b/actions/stepfunctions_list_activities.yaml index 9dcec298..965083f0 100644 --- a/actions/stepfunctions_list_activities.yaml +++ b/actions/stepfunctions_list_activities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_list_activities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_activities immutable: true diff --git a/actions/stepfunctions_list_executions.yaml b/actions/stepfunctions_list_executions.yaml index e49a90e0..97ec3369 100644 --- a/actions/stepfunctions_list_executions.yaml +++ b/actions/stepfunctions_list_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_list_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_executions immutable: true diff --git a/actions/stepfunctions_list_state_machines.yaml b/actions/stepfunctions_list_state_machines.yaml index 867468a7..0c8e53df 100644 --- a/actions/stepfunctions_list_state_machines.yaml +++ b/actions/stepfunctions_list_state_machines.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_list_state_machines runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_state_machines immutable: true diff --git a/actions/stepfunctions_send_task_failure.yaml b/actions/stepfunctions_send_task_failure.yaml index 012fd5ba..29cddce6 100644 --- a/actions/stepfunctions_send_task_failure.yaml +++ b/actions/stepfunctions_send_task_failure.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_send_task_failure runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_task_failure immutable: true diff --git a/actions/stepfunctions_send_task_heartbeat.yaml b/actions/stepfunctions_send_task_heartbeat.yaml index bdde814a..cfc8e8b1 100644 --- a/actions/stepfunctions_send_task_heartbeat.yaml +++ b/actions/stepfunctions_send_task_heartbeat.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_send_task_heartbeat runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_task_heartbeat immutable: true diff --git a/actions/stepfunctions_send_task_success.yaml b/actions/stepfunctions_send_task_success.yaml index 6ce40ea1..24966e87 100644 --- a/actions/stepfunctions_send_task_success.yaml +++ b/actions/stepfunctions_send_task_success.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_send_task_success runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: send_task_success immutable: true diff --git a/actions/stepfunctions_start_execution.yaml b/actions/stepfunctions_start_execution.yaml index 92343b46..b4811b61 100644 --- a/actions/stepfunctions_start_execution.yaml +++ b/actions/stepfunctions_start_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_start_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_execution immutable: true diff --git a/actions/stepfunctions_stop_execution.yaml b/actions/stepfunctions_stop_execution.yaml index 79c2085a..39b92af5 100644 --- a/actions/stepfunctions_stop_execution.yaml +++ b/actions/stepfunctions_stop_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: stepfunctions_stop_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_execution immutable: true diff --git a/actions/storagegateway_activate_gateway.yaml b/actions/storagegateway_activate_gateway.yaml index 55b7ecaf..82264f50 100644 --- a/actions/storagegateway_activate_gateway.yaml +++ b/actions/storagegateway_activate_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_activate_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: activate_gateway immutable: true diff --git a/actions/storagegateway_add_cache.yaml b/actions/storagegateway_add_cache.yaml index e6accc1a..c97d4ed1 100644 --- a/actions/storagegateway_add_cache.yaml +++ b/actions/storagegateway_add_cache.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_add_cache runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_cache immutable: true diff --git a/actions/storagegateway_add_tags_to_resource.yaml b/actions/storagegateway_add_tags_to_resource.yaml index 38d66b1d..c5fc7107 100644 --- a/actions/storagegateway_add_tags_to_resource.yaml +++ b/actions/storagegateway_add_tags_to_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_add_tags_to_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_tags_to_resource immutable: true diff --git a/actions/storagegateway_add_upload_buffer.yaml b/actions/storagegateway_add_upload_buffer.yaml index 03b27cf5..9a2b4c40 100644 --- a/actions/storagegateway_add_upload_buffer.yaml +++ b/actions/storagegateway_add_upload_buffer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_add_upload_buffer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_upload_buffer immutable: true diff --git a/actions/storagegateway_add_working_storage.yaml b/actions/storagegateway_add_working_storage.yaml index 3b6ec764..01307616 100644 --- a/actions/storagegateway_add_working_storage.yaml +++ b/actions/storagegateway_add_working_storage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_add_working_storage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_working_storage immutable: true diff --git a/actions/storagegateway_cancel_archival.yaml b/actions/storagegateway_cancel_archival.yaml index 9407c0ae..2a62b8ac 100644 --- a/actions/storagegateway_cancel_archival.yaml +++ b/actions/storagegateway_cancel_archival.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_cancel_archival runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_archival immutable: true diff --git a/actions/storagegateway_cancel_retrieval.yaml b/actions/storagegateway_cancel_retrieval.yaml index 9b21697a..33fb9cba 100644 --- a/actions/storagegateway_cancel_retrieval.yaml +++ b/actions/storagegateway_cancel_retrieval.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_cancel_retrieval runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: cancel_retrieval immutable: true diff --git a/actions/storagegateway_create_cachedi_scsi_volume.yaml b/actions/storagegateway_create_cachedi_scsi_volume.yaml index 6d386e93..e40e3326 100644 --- a/actions/storagegateway_create_cachedi_scsi_volume.yaml +++ b/actions/storagegateway_create_cachedi_scsi_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_cachedi_scsi_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_cachedi_scsi_volume immutable: true diff --git a/actions/storagegateway_create_nfs_file_share.yaml b/actions/storagegateway_create_nfs_file_share.yaml index 37bf1735..f4831c40 100644 --- a/actions/storagegateway_create_nfs_file_share.yaml +++ b/actions/storagegateway_create_nfs_file_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_nfs_file_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_nfs_file_share immutable: true diff --git a/actions/storagegateway_create_snapshot.yaml b/actions/storagegateway_create_snapshot.yaml index 7357c87f..63e4e53a 100644 --- a/actions/storagegateway_create_snapshot.yaml +++ b/actions/storagegateway_create_snapshot.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_snapshot runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot immutable: true diff --git a/actions/storagegateway_create_snapshot_from_volume_recovery_point.yaml b/actions/storagegateway_create_snapshot_from_volume_recovery_point.yaml index 9cf7dba9..a4389be9 100644 --- a/actions/storagegateway_create_snapshot_from_volume_recovery_point.yaml +++ b/actions/storagegateway_create_snapshot_from_volume_recovery_point.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_snapshot_from_volume_recovery_point runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot_from_volume_recovery_point immutable: true diff --git a/actions/storagegateway_create_storedi_scsi_volume.yaml b/actions/storagegateway_create_storedi_scsi_volume.yaml index 1076d802..edaf4eb4 100644 --- a/actions/storagegateway_create_storedi_scsi_volume.yaml +++ b/actions/storagegateway_create_storedi_scsi_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_storedi_scsi_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_storedi_scsi_volume immutable: true diff --git a/actions/storagegateway_create_tape_with_barcode.yaml b/actions/storagegateway_create_tape_with_barcode.yaml index 131bd4f9..2fefdcd9 100644 --- a/actions/storagegateway_create_tape_with_barcode.yaml +++ b/actions/storagegateway_create_tape_with_barcode.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_tape_with_barcode runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tape_with_barcode immutable: true diff --git a/actions/storagegateway_create_tapes.yaml b/actions/storagegateway_create_tapes.yaml index 798a5eb7..b05f96d9 100644 --- a/actions/storagegateway_create_tapes.yaml +++ b/actions/storagegateway_create_tapes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_create_tapes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tapes immutable: true diff --git a/actions/storagegateway_delete_bandwidth_rate_limit.yaml b/actions/storagegateway_delete_bandwidth_rate_limit.yaml index 7df99f72..76158c56 100644 --- a/actions/storagegateway_delete_bandwidth_rate_limit.yaml +++ b/actions/storagegateway_delete_bandwidth_rate_limit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_bandwidth_rate_limit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_bandwidth_rate_limit immutable: true diff --git a/actions/storagegateway_delete_chap_credentials.yaml b/actions/storagegateway_delete_chap_credentials.yaml index 4fdbac21..3c03e239 100644 --- a/actions/storagegateway_delete_chap_credentials.yaml +++ b/actions/storagegateway_delete_chap_credentials.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_chap_credentials runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_chap_credentials immutable: true diff --git a/actions/storagegateway_delete_file_share.yaml b/actions/storagegateway_delete_file_share.yaml index d3623878..b860d6f8 100644 --- a/actions/storagegateway_delete_file_share.yaml +++ b/actions/storagegateway_delete_file_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_file_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_file_share immutable: true diff --git a/actions/storagegateway_delete_gateway.yaml b/actions/storagegateway_delete_gateway.yaml index 101b7d8e..3a61f43f 100644 --- a/actions/storagegateway_delete_gateway.yaml +++ b/actions/storagegateway_delete_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_gateway immutable: true diff --git a/actions/storagegateway_delete_snapshot_schedule.yaml b/actions/storagegateway_delete_snapshot_schedule.yaml index fa9dac6d..da2a7fc0 100644 --- a/actions/storagegateway_delete_snapshot_schedule.yaml +++ b/actions/storagegateway_delete_snapshot_schedule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_snapshot_schedule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_snapshot_schedule immutable: true diff --git a/actions/storagegateway_delete_tape.yaml b/actions/storagegateway_delete_tape.yaml index a01c8e70..bd2d8284 100644 --- a/actions/storagegateway_delete_tape.yaml +++ b/actions/storagegateway_delete_tape.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_tape runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tape immutable: true diff --git a/actions/storagegateway_delete_tape_archive.yaml b/actions/storagegateway_delete_tape_archive.yaml index 2624c7a7..79ec3077 100644 --- a/actions/storagegateway_delete_tape_archive.yaml +++ b/actions/storagegateway_delete_tape_archive.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_tape_archive runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tape_archive immutable: true diff --git a/actions/storagegateway_delete_volume.yaml b/actions/storagegateway_delete_volume.yaml index 315220c3..55bb8f36 100644 --- a/actions/storagegateway_delete_volume.yaml +++ b/actions/storagegateway_delete_volume.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_delete_volume runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_volume immutable: true diff --git a/actions/storagegateway_describe_bandwidth_rate_limit.yaml b/actions/storagegateway_describe_bandwidth_rate_limit.yaml index ef31e971..f3aae62e 100644 --- a/actions/storagegateway_describe_bandwidth_rate_limit.yaml +++ b/actions/storagegateway_describe_bandwidth_rate_limit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_bandwidth_rate_limit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_bandwidth_rate_limit immutable: true diff --git a/actions/storagegateway_describe_cache.yaml b/actions/storagegateway_describe_cache.yaml index c2f37e32..36cc8ca4 100644 --- a/actions/storagegateway_describe_cache.yaml +++ b/actions/storagegateway_describe_cache.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_cache runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cache immutable: true diff --git a/actions/storagegateway_describe_cachedi_scsi_volumes.yaml b/actions/storagegateway_describe_cachedi_scsi_volumes.yaml index 9ba450b4..5e4da3d9 100644 --- a/actions/storagegateway_describe_cachedi_scsi_volumes.yaml +++ b/actions/storagegateway_describe_cachedi_scsi_volumes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_cachedi_scsi_volumes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cachedi_scsi_volumes immutable: true diff --git a/actions/storagegateway_describe_chap_credentials.yaml b/actions/storagegateway_describe_chap_credentials.yaml index 47f416de..4faf4d49 100644 --- a/actions/storagegateway_describe_chap_credentials.yaml +++ b/actions/storagegateway_describe_chap_credentials.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_chap_credentials runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_chap_credentials immutable: true diff --git a/actions/storagegateway_describe_gateway_information.yaml b/actions/storagegateway_describe_gateway_information.yaml index ff67dc3e..d087b6d0 100644 --- a/actions/storagegateway_describe_gateway_information.yaml +++ b/actions/storagegateway_describe_gateway_information.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_gateway_information runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_gateway_information immutable: true diff --git a/actions/storagegateway_describe_maintenance_start_time.yaml b/actions/storagegateway_describe_maintenance_start_time.yaml index 663926c5..30e0ec9b 100644 --- a/actions/storagegateway_describe_maintenance_start_time.yaml +++ b/actions/storagegateway_describe_maintenance_start_time.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_maintenance_start_time runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_maintenance_start_time immutable: true diff --git a/actions/storagegateway_describe_nfs_file_shares.yaml b/actions/storagegateway_describe_nfs_file_shares.yaml index a60ebd57..68a5da18 100644 --- a/actions/storagegateway_describe_nfs_file_shares.yaml +++ b/actions/storagegateway_describe_nfs_file_shares.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_nfs_file_shares runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_nfs_file_shares immutable: true diff --git a/actions/storagegateway_describe_snapshot_schedule.yaml b/actions/storagegateway_describe_snapshot_schedule.yaml index 4d296c71..dd40df4a 100644 --- a/actions/storagegateway_describe_snapshot_schedule.yaml +++ b/actions/storagegateway_describe_snapshot_schedule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_snapshot_schedule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_snapshot_schedule immutable: true diff --git a/actions/storagegateway_describe_storedi_scsi_volumes.yaml b/actions/storagegateway_describe_storedi_scsi_volumes.yaml index 2fa3baf3..0b5889be 100644 --- a/actions/storagegateway_describe_storedi_scsi_volumes.yaml +++ b/actions/storagegateway_describe_storedi_scsi_volumes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_storedi_scsi_volumes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_storedi_scsi_volumes immutable: true diff --git a/actions/storagegateway_describe_tape_archives.yaml b/actions/storagegateway_describe_tape_archives.yaml index c67f6eba..11786b9d 100644 --- a/actions/storagegateway_describe_tape_archives.yaml +++ b/actions/storagegateway_describe_tape_archives.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_tape_archives runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tape_archives immutable: true diff --git a/actions/storagegateway_describe_tape_recovery_points.yaml b/actions/storagegateway_describe_tape_recovery_points.yaml index 7efbf14e..e678221a 100644 --- a/actions/storagegateway_describe_tape_recovery_points.yaml +++ b/actions/storagegateway_describe_tape_recovery_points.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_tape_recovery_points runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tape_recovery_points immutable: true diff --git a/actions/storagegateway_describe_tapes.yaml b/actions/storagegateway_describe_tapes.yaml index ec770b6e..41486184 100644 --- a/actions/storagegateway_describe_tapes.yaml +++ b/actions/storagegateway_describe_tapes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_tapes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tapes immutable: true diff --git a/actions/storagegateway_describe_upload_buffer.yaml b/actions/storagegateway_describe_upload_buffer.yaml index 7798e486..2741175f 100644 --- a/actions/storagegateway_describe_upload_buffer.yaml +++ b/actions/storagegateway_describe_upload_buffer.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_upload_buffer runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_upload_buffer immutable: true diff --git a/actions/storagegateway_describe_vtl_devices.yaml b/actions/storagegateway_describe_vtl_devices.yaml index 38674804..4e8e8528 100644 --- a/actions/storagegateway_describe_vtl_devices.yaml +++ b/actions/storagegateway_describe_vtl_devices.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_vtl_devices runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_vtl_devices immutable: true diff --git a/actions/storagegateway_describe_working_storage.yaml b/actions/storagegateway_describe_working_storage.yaml index 81a54f00..2109292e 100644 --- a/actions/storagegateway_describe_working_storage.yaml +++ b/actions/storagegateway_describe_working_storage.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_describe_working_storage runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_working_storage immutable: true diff --git a/actions/storagegateway_disable_gateway.yaml b/actions/storagegateway_disable_gateway.yaml index 7163edc2..3ee2f918 100644 --- a/actions/storagegateway_disable_gateway.yaml +++ b/actions/storagegateway_disable_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_disable_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disable_gateway immutable: true diff --git a/actions/storagegateway_list_file_shares.yaml b/actions/storagegateway_list_file_shares.yaml index a56f8d7b..338411b9 100644 --- a/actions/storagegateway_list_file_shares.yaml +++ b/actions/storagegateway_list_file_shares.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_file_shares runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_file_shares immutable: true diff --git a/actions/storagegateway_list_gateways.yaml b/actions/storagegateway_list_gateways.yaml index f50e4daf..220c20b7 100644 --- a/actions/storagegateway_list_gateways.yaml +++ b/actions/storagegateway_list_gateways.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_gateways runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_gateways immutable: true diff --git a/actions/storagegateway_list_local_disks.yaml b/actions/storagegateway_list_local_disks.yaml index ea229e14..49ffca40 100644 --- a/actions/storagegateway_list_local_disks.yaml +++ b/actions/storagegateway_list_local_disks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_local_disks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_local_disks immutable: true diff --git a/actions/storagegateway_list_tags_for_resource.yaml b/actions/storagegateway_list_tags_for_resource.yaml index 60504e69..d8b2ad9e 100644 --- a/actions/storagegateway_list_tags_for_resource.yaml +++ b/actions/storagegateway_list_tags_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_tags_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tags_for_resource immutable: true diff --git a/actions/storagegateway_list_tapes.yaml b/actions/storagegateway_list_tapes.yaml index c1c5c78b..9fff6822 100644 --- a/actions/storagegateway_list_tapes.yaml +++ b/actions/storagegateway_list_tapes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_tapes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_tapes immutable: true diff --git a/actions/storagegateway_list_volume_initiators.yaml b/actions/storagegateway_list_volume_initiators.yaml index 2a9b0090..d47b81b2 100644 --- a/actions/storagegateway_list_volume_initiators.yaml +++ b/actions/storagegateway_list_volume_initiators.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_volume_initiators runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_volume_initiators immutable: true diff --git a/actions/storagegateway_list_volume_recovery_points.yaml b/actions/storagegateway_list_volume_recovery_points.yaml index a573a848..8c847b63 100644 --- a/actions/storagegateway_list_volume_recovery_points.yaml +++ b/actions/storagegateway_list_volume_recovery_points.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_volume_recovery_points runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_volume_recovery_points immutable: true diff --git a/actions/storagegateway_list_volumes.yaml b/actions/storagegateway_list_volumes.yaml index be30afe3..be5218e4 100644 --- a/actions/storagegateway_list_volumes.yaml +++ b/actions/storagegateway_list_volumes.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_list_volumes runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_volumes immutable: true diff --git a/actions/storagegateway_refresh_cache.yaml b/actions/storagegateway_refresh_cache.yaml index 48bf6eb2..3a7b765a 100644 --- a/actions/storagegateway_refresh_cache.yaml +++ b/actions/storagegateway_refresh_cache.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_refresh_cache runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: refresh_cache immutable: true diff --git a/actions/storagegateway_remove_tags_from_resource.yaml b/actions/storagegateway_remove_tags_from_resource.yaml index 3a32bd89..f9bbd331 100644 --- a/actions/storagegateway_remove_tags_from_resource.yaml +++ b/actions/storagegateway_remove_tags_from_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_remove_tags_from_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_tags_from_resource immutable: true diff --git a/actions/storagegateway_reset_cache.yaml b/actions/storagegateway_reset_cache.yaml index 270140df..70c1b8e3 100644 --- a/actions/storagegateway_reset_cache.yaml +++ b/actions/storagegateway_reset_cache.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_reset_cache runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reset_cache immutable: true diff --git a/actions/storagegateway_retrieve_tape_archive.yaml b/actions/storagegateway_retrieve_tape_archive.yaml index ae612287..17fc7b84 100644 --- a/actions/storagegateway_retrieve_tape_archive.yaml +++ b/actions/storagegateway_retrieve_tape_archive.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_retrieve_tape_archive runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: retrieve_tape_archive immutable: true diff --git a/actions/storagegateway_retrieve_tape_recovery_point.yaml b/actions/storagegateway_retrieve_tape_recovery_point.yaml index 9ce1c2a6..9e9056fc 100644 --- a/actions/storagegateway_retrieve_tape_recovery_point.yaml +++ b/actions/storagegateway_retrieve_tape_recovery_point.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_retrieve_tape_recovery_point runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: retrieve_tape_recovery_point immutable: true diff --git a/actions/storagegateway_set_local_console_password.yaml b/actions/storagegateway_set_local_console_password.yaml index a775f24a..799c2231 100644 --- a/actions/storagegateway_set_local_console_password.yaml +++ b/actions/storagegateway_set_local_console_password.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_set_local_console_password runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: set_local_console_password immutable: true diff --git a/actions/storagegateway_shutdown_gateway.yaml b/actions/storagegateway_shutdown_gateway.yaml index 56361991..f5a26a73 100644 --- a/actions/storagegateway_shutdown_gateway.yaml +++ b/actions/storagegateway_shutdown_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_shutdown_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: shutdown_gateway immutable: true diff --git a/actions/storagegateway_start_gateway.yaml b/actions/storagegateway_start_gateway.yaml index 64f0f3d3..0027832d 100644 --- a/actions/storagegateway_start_gateway.yaml +++ b/actions/storagegateway_start_gateway.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_start_gateway runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_gateway immutable: true diff --git a/actions/storagegateway_update_bandwidth_rate_limit.yaml b/actions/storagegateway_update_bandwidth_rate_limit.yaml index c9d1a33f..d221c906 100644 --- a/actions/storagegateway_update_bandwidth_rate_limit.yaml +++ b/actions/storagegateway_update_bandwidth_rate_limit.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_bandwidth_rate_limit runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_bandwidth_rate_limit immutable: true diff --git a/actions/storagegateway_update_chap_credentials.yaml b/actions/storagegateway_update_chap_credentials.yaml index 25e2addd..afa750fc 100644 --- a/actions/storagegateway_update_chap_credentials.yaml +++ b/actions/storagegateway_update_chap_credentials.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_chap_credentials runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_chap_credentials immutable: true diff --git a/actions/storagegateway_update_gateway_information.yaml b/actions/storagegateway_update_gateway_information.yaml index 657df812..ddd94b16 100644 --- a/actions/storagegateway_update_gateway_information.yaml +++ b/actions/storagegateway_update_gateway_information.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_gateway_information runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_gateway_information immutable: true diff --git a/actions/storagegateway_update_gateway_software_now.yaml b/actions/storagegateway_update_gateway_software_now.yaml index fa71ba7a..daca2758 100644 --- a/actions/storagegateway_update_gateway_software_now.yaml +++ b/actions/storagegateway_update_gateway_software_now.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_gateway_software_now runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_gateway_software_now immutable: true diff --git a/actions/storagegateway_update_maintenance_start_time.yaml b/actions/storagegateway_update_maintenance_start_time.yaml index 6f5c8e02..8db239ca 100644 --- a/actions/storagegateway_update_maintenance_start_time.yaml +++ b/actions/storagegateway_update_maintenance_start_time.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_maintenance_start_time runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_maintenance_start_time immutable: true diff --git a/actions/storagegateway_update_nfs_file_share.yaml b/actions/storagegateway_update_nfs_file_share.yaml index e2ec3c75..852507a5 100644 --- a/actions/storagegateway_update_nfs_file_share.yaml +++ b/actions/storagegateway_update_nfs_file_share.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_nfs_file_share runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_nfs_file_share immutable: true diff --git a/actions/storagegateway_update_snapshot_schedule.yaml b/actions/storagegateway_update_snapshot_schedule.yaml index 4afc5b24..3ba600ca 100644 --- a/actions/storagegateway_update_snapshot_schedule.yaml +++ b/actions/storagegateway_update_snapshot_schedule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_snapshot_schedule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_snapshot_schedule immutable: true diff --git a/actions/storagegateway_update_vtl_device_type.yaml b/actions/storagegateway_update_vtl_device_type.yaml index 1d19fa8a..78e153a1 100644 --- a/actions/storagegateway_update_vtl_device_type.yaml +++ b/actions/storagegateway_update_vtl_device_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: storagegateway_update_vtl_device_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_vtl_device_type immutable: true diff --git a/actions/sts_assume_role.yaml b/actions/sts_assume_role.yaml index c9d902e7..f659add8 100644 --- a/actions/sts_assume_role.yaml +++ b/actions/sts_assume_role.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_assume_role runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assume_role immutable: true diff --git a/actions/sts_assume_role_with_saml.yaml b/actions/sts_assume_role_with_saml.yaml index 911d8ffe..5482d946 100644 --- a/actions/sts_assume_role_with_saml.yaml +++ b/actions/sts_assume_role_with_saml.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_assume_role_with_saml runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assume_role_with_saml immutable: true diff --git a/actions/sts_assume_role_with_web_identity.yaml b/actions/sts_assume_role_with_web_identity.yaml index 09f4beff..3384bcff 100644 --- a/actions/sts_assume_role_with_web_identity.yaml +++ b/actions/sts_assume_role_with_web_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_assume_role_with_web_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: assume_role_with_web_identity immutable: true diff --git a/actions/sts_decode_authorization_message.yaml b/actions/sts_decode_authorization_message.yaml index dfa6bbf0..dffe3e33 100644 --- a/actions/sts_decode_authorization_message.yaml +++ b/actions/sts_decode_authorization_message.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_decode_authorization_message runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: decode_authorization_message immutable: true diff --git a/actions/sts_get_caller_identity.yaml b/actions/sts_get_caller_identity.yaml index ae95fea8..7352deef 100644 --- a/actions/sts_get_caller_identity.yaml +++ b/actions/sts_get_caller_identity.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_get_caller_identity runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_caller_identity immutable: true diff --git a/actions/sts_get_federation_token.yaml b/actions/sts_get_federation_token.yaml index 17a4f3e9..bfc8c426 100644 --- a/actions/sts_get_federation_token.yaml +++ b/actions/sts_get_federation_token.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_get_federation_token runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_federation_token immutable: true diff --git a/actions/sts_get_session_token.yaml b/actions/sts_get_session_token.yaml index 7cd9dc4e..99f4b99f 100644 --- a/actions/sts_get_session_token.yaml +++ b/actions/sts_get_session_token.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: sts_get_session_token runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_session_token immutable: true diff --git a/actions/support_add_attachments_to_set.yaml b/actions/support_add_attachments_to_set.yaml index 9a525ec8..1d9a22c5 100644 --- a/actions/support_add_attachments_to_set.yaml +++ b/actions/support_add_attachments_to_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_add_attachments_to_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_attachments_to_set immutable: true diff --git a/actions/support_add_communication_to_case.yaml b/actions/support_add_communication_to_case.yaml index 5643cdbe..a4f4cc4a 100644 --- a/actions/support_add_communication_to_case.yaml +++ b/actions/support_add_communication_to_case.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_add_communication_to_case runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_communication_to_case immutable: true diff --git a/actions/support_create_case.yaml b/actions/support_create_case.yaml index 39a96ca9..b99b9a07 100644 --- a/actions/support_create_case.yaml +++ b/actions/support_create_case.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_create_case runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_case immutable: true diff --git a/actions/support_describe_attachment.yaml b/actions/support_describe_attachment.yaml index 7251047e..1b17ddbc 100644 --- a/actions/support_describe_attachment.yaml +++ b/actions/support_describe_attachment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_attachment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_attachment immutable: true diff --git a/actions/support_describe_cases.yaml b/actions/support_describe_cases.yaml index 266faf18..e3dd21cd 100644 --- a/actions/support_describe_cases.yaml +++ b/actions/support_describe_cases.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_cases runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_cases immutable: true diff --git a/actions/support_describe_communications.yaml b/actions/support_describe_communications.yaml index c4f81467..f4040295 100644 --- a/actions/support_describe_communications.yaml +++ b/actions/support_describe_communications.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_communications runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_communications immutable: true diff --git a/actions/support_describe_services.yaml b/actions/support_describe_services.yaml index a3ad86b8..c8d5474d 100644 --- a/actions/support_describe_services.yaml +++ b/actions/support_describe_services.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_services runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_services immutable: true diff --git a/actions/support_describe_severity_levels.yaml b/actions/support_describe_severity_levels.yaml index 61efa1f9..df646dc0 100644 --- a/actions/support_describe_severity_levels.yaml +++ b/actions/support_describe_severity_levels.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_severity_levels runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_severity_levels immutable: true diff --git a/actions/support_describe_trusted_advisor_check_refresh_statuses.yaml b/actions/support_describe_trusted_advisor_check_refresh_statuses.yaml index 4e8b476e..5a280e31 100644 --- a/actions/support_describe_trusted_advisor_check_refresh_statuses.yaml +++ b/actions/support_describe_trusted_advisor_check_refresh_statuses.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_trusted_advisor_check_refresh_statuses runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_trusted_advisor_check_refresh_statuses immutable: true diff --git a/actions/support_describe_trusted_advisor_check_result.yaml b/actions/support_describe_trusted_advisor_check_result.yaml index 77e95205..7c7afd95 100644 --- a/actions/support_describe_trusted_advisor_check_result.yaml +++ b/actions/support_describe_trusted_advisor_check_result.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_trusted_advisor_check_result runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_trusted_advisor_check_result immutable: true diff --git a/actions/support_describe_trusted_advisor_check_summaries.yaml b/actions/support_describe_trusted_advisor_check_summaries.yaml index 2912af03..00de03e2 100644 --- a/actions/support_describe_trusted_advisor_check_summaries.yaml +++ b/actions/support_describe_trusted_advisor_check_summaries.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_trusted_advisor_check_summaries runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_trusted_advisor_check_summaries immutable: true diff --git a/actions/support_describe_trusted_advisor_checks.yaml b/actions/support_describe_trusted_advisor_checks.yaml index aa181b39..c604b989 100644 --- a/actions/support_describe_trusted_advisor_checks.yaml +++ b/actions/support_describe_trusted_advisor_checks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_describe_trusted_advisor_checks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_trusted_advisor_checks immutable: true diff --git a/actions/support_refresh_trusted_advisor_check.yaml b/actions/support_refresh_trusted_advisor_check.yaml index 1d9ae478..69c0a281 100644 --- a/actions/support_refresh_trusted_advisor_check.yaml +++ b/actions/support_refresh_trusted_advisor_check.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_refresh_trusted_advisor_check runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: refresh_trusted_advisor_check immutable: true diff --git a/actions/support_resolve_case.yaml b/actions/support_resolve_case.yaml index bb9c1d65..59b81b53 100644 --- a/actions/support_resolve_case.yaml +++ b/actions/support_resolve_case.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: support_resolve_case runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: resolve_case immutable: true diff --git a/actions/swf_count_closed_workflow_executions.yaml b/actions/swf_count_closed_workflow_executions.yaml index dc3a2649..96366992 100644 --- a/actions/swf_count_closed_workflow_executions.yaml +++ b/actions/swf_count_closed_workflow_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_count_closed_workflow_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: count_closed_workflow_executions immutable: true diff --git a/actions/swf_count_open_workflow_executions.yaml b/actions/swf_count_open_workflow_executions.yaml index 6d944d98..d31bc05f 100644 --- a/actions/swf_count_open_workflow_executions.yaml +++ b/actions/swf_count_open_workflow_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_count_open_workflow_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: count_open_workflow_executions immutable: true diff --git a/actions/swf_count_pending_activity_tasks.yaml b/actions/swf_count_pending_activity_tasks.yaml index de0e21e4..899ae6b0 100644 --- a/actions/swf_count_pending_activity_tasks.yaml +++ b/actions/swf_count_pending_activity_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_count_pending_activity_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: count_pending_activity_tasks immutable: true diff --git a/actions/swf_count_pending_decision_tasks.yaml b/actions/swf_count_pending_decision_tasks.yaml index 22d744fd..9dc4935f 100644 --- a/actions/swf_count_pending_decision_tasks.yaml +++ b/actions/swf_count_pending_decision_tasks.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_count_pending_decision_tasks runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: count_pending_decision_tasks immutable: true diff --git a/actions/swf_deprecate_activity_type.yaml b/actions/swf_deprecate_activity_type.yaml index 8bbe6266..c6425560 100644 --- a/actions/swf_deprecate_activity_type.yaml +++ b/actions/swf_deprecate_activity_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_deprecate_activity_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deprecate_activity_type immutable: true diff --git a/actions/swf_deprecate_domain.yaml b/actions/swf_deprecate_domain.yaml index 54588105..f5c833c0 100644 --- a/actions/swf_deprecate_domain.yaml +++ b/actions/swf_deprecate_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_deprecate_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deprecate_domain immutable: true diff --git a/actions/swf_deprecate_workflow_type.yaml b/actions/swf_deprecate_workflow_type.yaml index f9ad85dd..03579ee1 100644 --- a/actions/swf_deprecate_workflow_type.yaml +++ b/actions/swf_deprecate_workflow_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_deprecate_workflow_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deprecate_workflow_type immutable: true diff --git a/actions/swf_describe_activity_type.yaml b/actions/swf_describe_activity_type.yaml index 9bfceb89..19c174a6 100644 --- a/actions/swf_describe_activity_type.yaml +++ b/actions/swf_describe_activity_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_describe_activity_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_activity_type immutable: true diff --git a/actions/swf_describe_domain.yaml b/actions/swf_describe_domain.yaml index b9b39d0a..90eb7097 100644 --- a/actions/swf_describe_domain.yaml +++ b/actions/swf_describe_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_describe_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_domain immutable: true diff --git a/actions/swf_describe_workflow_execution.yaml b/actions/swf_describe_workflow_execution.yaml index 05489d50..a73a519c 100644 --- a/actions/swf_describe_workflow_execution.yaml +++ b/actions/swf_describe_workflow_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_describe_workflow_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_workflow_execution immutable: true diff --git a/actions/swf_describe_workflow_type.yaml b/actions/swf_describe_workflow_type.yaml index d6d133ee..63ec399a 100644 --- a/actions/swf_describe_workflow_type.yaml +++ b/actions/swf_describe_workflow_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_describe_workflow_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_workflow_type immutable: true diff --git a/actions/swf_get_workflow_execution_history.yaml b/actions/swf_get_workflow_execution_history.yaml index 8f264d2d..231859ba 100644 --- a/actions/swf_get_workflow_execution_history.yaml +++ b/actions/swf_get_workflow_execution_history.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_get_workflow_execution_history runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_workflow_execution_history immutable: true diff --git a/actions/swf_list_activity_types.yaml b/actions/swf_list_activity_types.yaml index 93fd8b4d..2c39df18 100644 --- a/actions/swf_list_activity_types.yaml +++ b/actions/swf_list_activity_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_list_activity_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_activity_types immutable: true diff --git a/actions/swf_list_closed_workflow_executions.yaml b/actions/swf_list_closed_workflow_executions.yaml index 918d539c..e88b283a 100644 --- a/actions/swf_list_closed_workflow_executions.yaml +++ b/actions/swf_list_closed_workflow_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_list_closed_workflow_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_closed_workflow_executions immutable: true diff --git a/actions/swf_list_domains.yaml b/actions/swf_list_domains.yaml index 234899c8..0d77d2c2 100644 --- a/actions/swf_list_domains.yaml +++ b/actions/swf_list_domains.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_list_domains runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_domains immutable: true diff --git a/actions/swf_list_open_workflow_executions.yaml b/actions/swf_list_open_workflow_executions.yaml index fb20319a..ba3a3489 100644 --- a/actions/swf_list_open_workflow_executions.yaml +++ b/actions/swf_list_open_workflow_executions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_list_open_workflow_executions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_open_workflow_executions immutable: true diff --git a/actions/swf_list_workflow_types.yaml b/actions/swf_list_workflow_types.yaml index 6b1673df..32232e0d 100644 --- a/actions/swf_list_workflow_types.yaml +++ b/actions/swf_list_workflow_types.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_list_workflow_types runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_workflow_types immutable: true diff --git a/actions/swf_poll_for_activity_task.yaml b/actions/swf_poll_for_activity_task.yaml index 55f3255b..dad4dda1 100644 --- a/actions/swf_poll_for_activity_task.yaml +++ b/actions/swf_poll_for_activity_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_poll_for_activity_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: poll_for_activity_task immutable: true diff --git a/actions/swf_poll_for_decision_task.yaml b/actions/swf_poll_for_decision_task.yaml index 645944b4..06ba2d6a 100644 --- a/actions/swf_poll_for_decision_task.yaml +++ b/actions/swf_poll_for_decision_task.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_poll_for_decision_task runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: poll_for_decision_task immutable: true diff --git a/actions/swf_record_activity_task_heartbeat.yaml b/actions/swf_record_activity_task_heartbeat.yaml index ee952453..ea5f81f7 100644 --- a/actions/swf_record_activity_task_heartbeat.yaml +++ b/actions/swf_record_activity_task_heartbeat.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_record_activity_task_heartbeat runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: record_activity_task_heartbeat immutable: true diff --git a/actions/swf_register_activity_type.yaml b/actions/swf_register_activity_type.yaml index 530a2f7c..35734135 100644 --- a/actions/swf_register_activity_type.yaml +++ b/actions/swf_register_activity_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_register_activity_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_activity_type immutable: true diff --git a/actions/swf_register_domain.yaml b/actions/swf_register_domain.yaml index 18f07a81..344c052a 100644 --- a/actions/swf_register_domain.yaml +++ b/actions/swf_register_domain.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_register_domain runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_domain immutable: true diff --git a/actions/swf_register_workflow_type.yaml b/actions/swf_register_workflow_type.yaml index 705bfb6c..f9d6372a 100644 --- a/actions/swf_register_workflow_type.yaml +++ b/actions/swf_register_workflow_type.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_register_workflow_type runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: register_workflow_type immutable: true diff --git a/actions/swf_request_cancel_workflow_execution.yaml b/actions/swf_request_cancel_workflow_execution.yaml index d12cb736..a46fe36d 100644 --- a/actions/swf_request_cancel_workflow_execution.yaml +++ b/actions/swf_request_cancel_workflow_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_request_cancel_workflow_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: request_cancel_workflow_execution immutable: true diff --git a/actions/swf_respond_activity_task_canceled.yaml b/actions/swf_respond_activity_task_canceled.yaml index 36af3f01..6e6a684c 100644 --- a/actions/swf_respond_activity_task_canceled.yaml +++ b/actions/swf_respond_activity_task_canceled.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_respond_activity_task_canceled runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: respond_activity_task_canceled immutable: true diff --git a/actions/swf_respond_activity_task_completed.yaml b/actions/swf_respond_activity_task_completed.yaml index ef8bdce1..8f3f6a69 100644 --- a/actions/swf_respond_activity_task_completed.yaml +++ b/actions/swf_respond_activity_task_completed.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_respond_activity_task_completed runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: respond_activity_task_completed immutable: true diff --git a/actions/swf_respond_activity_task_failed.yaml b/actions/swf_respond_activity_task_failed.yaml index 2f23db18..9bf021d7 100644 --- a/actions/swf_respond_activity_task_failed.yaml +++ b/actions/swf_respond_activity_task_failed.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_respond_activity_task_failed runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: respond_activity_task_failed immutable: true diff --git a/actions/swf_respond_decision_task_completed.yaml b/actions/swf_respond_decision_task_completed.yaml index 97b8e264..90fd24fb 100644 --- a/actions/swf_respond_decision_task_completed.yaml +++ b/actions/swf_respond_decision_task_completed.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_respond_decision_task_completed runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: respond_decision_task_completed immutable: true diff --git a/actions/swf_signal_workflow_execution.yaml b/actions/swf_signal_workflow_execution.yaml index 5e791ece..f5db068f 100644 --- a/actions/swf_signal_workflow_execution.yaml +++ b/actions/swf_signal_workflow_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_signal_workflow_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: signal_workflow_execution immutable: true diff --git a/actions/swf_start_workflow_execution.yaml b/actions/swf_start_workflow_execution.yaml index da8e405e..bf46cc44 100644 --- a/actions/swf_start_workflow_execution.yaml +++ b/actions/swf_start_workflow_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_start_workflow_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_workflow_execution immutable: true diff --git a/actions/swf_terminate_workflow_execution.yaml b/actions/swf_terminate_workflow_execution.yaml index ceeca19a..2c37c73d 100644 --- a/actions/swf_terminate_workflow_execution.yaml +++ b/actions/swf_terminate_workflow_execution.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: swf_terminate_workflow_execution runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_workflow_execution immutable: true diff --git a/actions/vpc_accept_vpc_peering_connection.yaml b/actions/vpc_accept_vpc_peering_connection.yaml index 79307b79..77addd50 100644 --- a/actions/vpc_accept_vpc_peering_connection.yaml +++ b/actions/vpc_accept_vpc_peering_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_accept_vpc_peering_connection parameters: + account_id: + type: string + region: + type: string action: default: accept_vpc_peering_connection immutable: true diff --git a/actions/vpc_allocate_address.yaml b/actions/vpc_allocate_address.yaml index 61f29e40..cb9ecd7e 100644 --- a/actions/vpc_allocate_address.yaml +++ b/actions/vpc_allocate_address.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_allocate_address parameters: + account_id: + type: string + region: + type: string action: default: allocate_address immutable: true diff --git a/actions/vpc_assign_private_ip_addresses.yaml b/actions/vpc_assign_private_ip_addresses.yaml index 7ac562b3..1d5af45b 100644 --- a/actions/vpc_assign_private_ip_addresses.yaml +++ b/actions/vpc_assign_private_ip_addresses.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_assign_private_ip_addresses parameters: + account_id: + type: string + region: + type: string action: default: assign_private_ip_addresses immutable: true diff --git a/actions/vpc_associate_address.yaml b/actions/vpc_associate_address.yaml index a5eb2593..172ea2bd 100644 --- a/actions/vpc_associate_address.yaml +++ b/actions/vpc_associate_address.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_associate_address parameters: + account_id: + type: string + region: + type: string action: default: associate_address immutable: true diff --git a/actions/vpc_associate_address_object.yaml b/actions/vpc_associate_address_object.yaml index 73b98621..249bf400 100644 --- a/actions/vpc_associate_address_object.yaml +++ b/actions/vpc_associate_address_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_associate_address_object parameters: + account_id: + type: string + region: + type: string action: default: associate_address_object immutable: true diff --git a/actions/vpc_associate_dhcp_options.yaml b/actions/vpc_associate_dhcp_options.yaml index b6719c13..c713a002 100644 --- a/actions/vpc_associate_dhcp_options.yaml +++ b/actions/vpc_associate_dhcp_options.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_associate_dhcp_options parameters: + account_id: + type: string + region: + type: string action: default: associate_dhcp_options immutable: true diff --git a/actions/vpc_associate_network_acl.yaml b/actions/vpc_associate_network_acl.yaml index 446a9d3d..06ca9f73 100644 --- a/actions/vpc_associate_network_acl.yaml +++ b/actions/vpc_associate_network_acl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_associate_network_acl parameters: + account_id: + type: string + region: + type: string action: default: associate_network_acl immutable: true diff --git a/actions/vpc_associate_route_table.yaml b/actions/vpc_associate_route_table.yaml index 0af2fd57..90be9c51 100644 --- a/actions/vpc_associate_route_table.yaml +++ b/actions/vpc_associate_route_table.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_associate_route_table parameters: + account_id: + type: string + region: + type: string action: default: associate_route_table immutable: true diff --git a/actions/vpc_attach_classic_link_vpc.yaml b/actions/vpc_attach_classic_link_vpc.yaml index c34e46c6..a225ed7e 100644 --- a/actions/vpc_attach_classic_link_vpc.yaml +++ b/actions/vpc_attach_classic_link_vpc.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_attach_classic_link_vpc parameters: + account_id: + type: string + region: + type: string action: default: attach_classic_link_vpc immutable: true diff --git a/actions/vpc_attach_internet_gateway.yaml b/actions/vpc_attach_internet_gateway.yaml index db9606bb..dc5be537 100644 --- a/actions/vpc_attach_internet_gateway.yaml +++ b/actions/vpc_attach_internet_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_attach_internet_gateway parameters: + account_id: + type: string + region: + type: string action: default: attach_internet_gateway immutable: true diff --git a/actions/vpc_attach_network_interface.yaml b/actions/vpc_attach_network_interface.yaml index 8dfa8242..e2aa580c 100644 --- a/actions/vpc_attach_network_interface.yaml +++ b/actions/vpc_attach_network_interface.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_attach_network_interface parameters: + account_id: + type: string + region: + type: string action: default: attach_network_interface immutable: true diff --git a/actions/vpc_attach_volume.yaml b/actions/vpc_attach_volume.yaml index 4e285cd7..96485c58 100644 --- a/actions/vpc_attach_volume.yaml +++ b/actions/vpc_attach_volume.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_attach_volume parameters: + account_id: + type: string + region: + type: string action: default: attach_volume immutable: true diff --git a/actions/vpc_attach_vpn_gateway.yaml b/actions/vpc_attach_vpn_gateway.yaml index 6215f718..9aa99f82 100644 --- a/actions/vpc_attach_vpn_gateway.yaml +++ b/actions/vpc_attach_vpn_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_attach_vpn_gateway parameters: + account_id: + type: string + region: + type: string action: default: attach_vpn_gateway immutable: true diff --git a/actions/vpc_authorize_security_group.yaml b/actions/vpc_authorize_security_group.yaml index 29951db8..4e9fc741 100644 --- a/actions/vpc_authorize_security_group.yaml +++ b/actions/vpc_authorize_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_authorize_security_group parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group immutable: true diff --git a/actions/vpc_authorize_security_group_deprecated.yaml b/actions/vpc_authorize_security_group_deprecated.yaml index b0a0f967..03594a19 100644 --- a/actions/vpc_authorize_security_group_deprecated.yaml +++ b/actions/vpc_authorize_security_group_deprecated.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_authorize_security_group_deprecated parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group_deprecated immutable: true diff --git a/actions/vpc_authorize_security_group_egress.yaml b/actions/vpc_authorize_security_group_egress.yaml index a356fd63..9f5767c8 100644 --- a/actions/vpc_authorize_security_group_egress.yaml +++ b/actions/vpc_authorize_security_group_egress.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_authorize_security_group_egress parameters: + account_id: + type: string + region: + type: string action: default: authorize_security_group_egress immutable: true diff --git a/actions/vpc_build_base_http_request.yaml b/actions/vpc_build_base_http_request.yaml index 5002ef2c..c47788a7 100644 --- a/actions/vpc_build_base_http_request.yaml +++ b/actions/vpc_build_base_http_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_build_base_http_request parameters: + account_id: + type: string + region: + type: string action: default: build_base_http_request immutable: true diff --git a/actions/vpc_build_complex_list_params.yaml b/actions/vpc_build_complex_list_params.yaml index f391744e..cdf9fef3 100644 --- a/actions/vpc_build_complex_list_params.yaml +++ b/actions/vpc_build_complex_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_build_complex_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_complex_list_params immutable: true diff --git a/actions/vpc_build_configurations_param_list.yaml b/actions/vpc_build_configurations_param_list.yaml index 15427708..ead9d5df 100644 --- a/actions/vpc_build_configurations_param_list.yaml +++ b/actions/vpc_build_configurations_param_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_build_configurations_param_list parameters: + account_id: + type: string + region: + type: string action: default: build_configurations_param_list immutable: true diff --git a/actions/vpc_build_filter_params.yaml b/actions/vpc_build_filter_params.yaml index 6096d422..a3947643 100644 --- a/actions/vpc_build_filter_params.yaml +++ b/actions/vpc_build_filter_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_build_filter_params parameters: + account_id: + type: string + region: + type: string action: default: build_filter_params immutable: true diff --git a/actions/vpc_build_list_params.yaml b/actions/vpc_build_list_params.yaml index 61c2c432..8176a72c 100644 --- a/actions/vpc_build_list_params.yaml +++ b/actions/vpc_build_list_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_build_list_params parameters: + account_id: + type: string + region: + type: string action: default: build_list_params immutable: true diff --git a/actions/vpc_build_tag_param_list.yaml b/actions/vpc_build_tag_param_list.yaml index 3c9343cb..2b1e41e9 100644 --- a/actions/vpc_build_tag_param_list.yaml +++ b/actions/vpc_build_tag_param_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_build_tag_param_list parameters: + account_id: + type: string + region: + type: string action: default: build_tag_param_list immutable: true diff --git a/actions/vpc_bundle_instance.yaml b/actions/vpc_bundle_instance.yaml index 8c948bc2..f85aa249 100644 --- a/actions/vpc_bundle_instance.yaml +++ b/actions/vpc_bundle_instance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_bundle_instance parameters: + account_id: + type: string + region: + type: string action: default: bundle_instance immutable: true diff --git a/actions/vpc_cancel_bundle_task.yaml b/actions/vpc_cancel_bundle_task.yaml index 49c178ef..37e886d5 100644 --- a/actions/vpc_cancel_bundle_task.yaml +++ b/actions/vpc_cancel_bundle_task.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_cancel_bundle_task parameters: + account_id: + type: string + region: + type: string action: default: cancel_bundle_task immutable: true diff --git a/actions/vpc_cancel_reserved_instances_listing.yaml b/actions/vpc_cancel_reserved_instances_listing.yaml index dac2e65c..9e9386b3 100644 --- a/actions/vpc_cancel_reserved_instances_listing.yaml +++ b/actions/vpc_cancel_reserved_instances_listing.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_cancel_reserved_instances_listing parameters: + account_id: + type: string + region: + type: string action: default: cancel_reserved_instances_listing immutable: true diff --git a/actions/vpc_cancel_spot_instance_requests.yaml b/actions/vpc_cancel_spot_instance_requests.yaml index 3fe3860b..72593ace 100644 --- a/actions/vpc_cancel_spot_instance_requests.yaml +++ b/actions/vpc_cancel_spot_instance_requests.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_cancel_spot_instance_requests parameters: + account_id: + type: string + region: + type: string action: default: cancel_spot_instance_requests immutable: true diff --git a/actions/vpc_close.yaml b/actions/vpc_close.yaml index eaa0ac95..56775907 100644 --- a/actions/vpc_close.yaml +++ b/actions/vpc_close.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_close parameters: + account_id: + type: string + region: + type: string action: default: close immutable: true diff --git a/actions/vpc_confirm_product_instance.yaml b/actions/vpc_confirm_product_instance.yaml index 5d71371b..617e784d 100644 --- a/actions/vpc_confirm_product_instance.yaml +++ b/actions/vpc_confirm_product_instance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_confirm_product_instance parameters: + account_id: + type: string + region: + type: string action: default: confirm_product_instance immutable: true diff --git a/actions/vpc_copy_image.yaml b/actions/vpc_copy_image.yaml index c43b34c1..1e2c04df 100644 --- a/actions/vpc_copy_image.yaml +++ b/actions/vpc_copy_image.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_copy_image parameters: + account_id: + type: string + region: + type: string action: default: copy_image immutable: true diff --git a/actions/vpc_copy_snapshot.yaml b/actions/vpc_copy_snapshot.yaml index f78ee90a..e7b257d0 100644 --- a/actions/vpc_copy_snapshot.yaml +++ b/actions/vpc_copy_snapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_copy_snapshot parameters: + account_id: + type: string + region: + type: string action: default: copy_snapshot immutable: true diff --git a/actions/vpc_create_customer_gateway.yaml b/actions/vpc_create_customer_gateway.yaml index a69f7e24..037aace3 100644 --- a/actions/vpc_create_customer_gateway.yaml +++ b/actions/vpc_create_customer_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_customer_gateway parameters: + account_id: + type: string + region: + type: string action: default: create_customer_gateway immutable: true diff --git a/actions/vpc_create_dhcp_options.yaml b/actions/vpc_create_dhcp_options.yaml index 6fd38cdc..22866a15 100644 --- a/actions/vpc_create_dhcp_options.yaml +++ b/actions/vpc_create_dhcp_options.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_dhcp_options parameters: + account_id: + type: string + region: + type: string action: default: create_dhcp_options immutable: true diff --git a/actions/vpc_create_image.yaml b/actions/vpc_create_image.yaml index 94c4487c..de6c1ec1 100644 --- a/actions/vpc_create_image.yaml +++ b/actions/vpc_create_image.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_image parameters: + account_id: + type: string + region: + type: string action: default: create_image immutable: true diff --git a/actions/vpc_create_internet_gateway.yaml b/actions/vpc_create_internet_gateway.yaml index 40e4115a..67dc5477 100644 --- a/actions/vpc_create_internet_gateway.yaml +++ b/actions/vpc_create_internet_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_internet_gateway parameters: + account_id: + type: string + region: + type: string action: default: create_internet_gateway immutable: true diff --git a/actions/vpc_create_key_pair.yaml b/actions/vpc_create_key_pair.yaml index 2d06e6c2..634dbdd6 100644 --- a/actions/vpc_create_key_pair.yaml +++ b/actions/vpc_create_key_pair.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_key_pair parameters: + account_id: + type: string + region: + type: string action: default: create_key_pair immutable: true diff --git a/actions/vpc_create_network_acl.yaml b/actions/vpc_create_network_acl.yaml index 84dd4c5f..f1d0c7fa 100644 --- a/actions/vpc_create_network_acl.yaml +++ b/actions/vpc_create_network_acl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_network_acl parameters: + account_id: + type: string + region: + type: string action: default: create_network_acl immutable: true diff --git a/actions/vpc_create_network_acl_entry.yaml b/actions/vpc_create_network_acl_entry.yaml index 6fd23ffd..2e3a8af2 100644 --- a/actions/vpc_create_network_acl_entry.yaml +++ b/actions/vpc_create_network_acl_entry.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_network_acl_entry parameters: + account_id: + type: string + region: + type: string action: default: create_network_acl_entry immutable: true diff --git a/actions/vpc_create_network_interface.yaml b/actions/vpc_create_network_interface.yaml index 3b27636a..379d287f 100644 --- a/actions/vpc_create_network_interface.yaml +++ b/actions/vpc_create_network_interface.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_network_interface parameters: + account_id: + type: string + region: + type: string action: default: create_network_interface immutable: true diff --git a/actions/vpc_create_placement_group.yaml b/actions/vpc_create_placement_group.yaml index 963fe11e..dd1dc963 100644 --- a/actions/vpc_create_placement_group.yaml +++ b/actions/vpc_create_placement_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_placement_group parameters: + account_id: + type: string + region: + type: string action: default: create_placement_group immutable: true diff --git a/actions/vpc_create_reserved_instances_listing.yaml b/actions/vpc_create_reserved_instances_listing.yaml index 7ea6d8fc..da2c82bc 100644 --- a/actions/vpc_create_reserved_instances_listing.yaml +++ b/actions/vpc_create_reserved_instances_listing.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_reserved_instances_listing parameters: + account_id: + type: string + region: + type: string action: default: create_reserved_instances_listing immutable: true diff --git a/actions/vpc_create_route.yaml b/actions/vpc_create_route.yaml index b0f75629..bd206250 100644 --- a/actions/vpc_create_route.yaml +++ b/actions/vpc_create_route.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_route parameters: + account_id: + type: string + region: + type: string action: default: create_route immutable: true diff --git a/actions/vpc_create_route_table.yaml b/actions/vpc_create_route_table.yaml index 03f462fc..979a17ce 100644 --- a/actions/vpc_create_route_table.yaml +++ b/actions/vpc_create_route_table.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_route_table parameters: + account_id: + type: string + region: + type: string action: default: create_route_table immutable: true diff --git a/actions/vpc_create_security_group.yaml b/actions/vpc_create_security_group.yaml index db3966b3..17780e76 100644 --- a/actions/vpc_create_security_group.yaml +++ b/actions/vpc_create_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_security_group parameters: + account_id: + type: string + region: + type: string action: default: create_security_group immutable: true diff --git a/actions/vpc_create_snapshot.yaml b/actions/vpc_create_snapshot.yaml index 059fbf8c..8f02bdbd 100644 --- a/actions/vpc_create_snapshot.yaml +++ b/actions/vpc_create_snapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_snapshot parameters: + account_id: + type: string + region: + type: string action: default: create_snapshot immutable: true diff --git a/actions/vpc_create_spot_datafeed_subscription.yaml b/actions/vpc_create_spot_datafeed_subscription.yaml index 24cff2bd..81d3a136 100644 --- a/actions/vpc_create_spot_datafeed_subscription.yaml +++ b/actions/vpc_create_spot_datafeed_subscription.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_spot_datafeed_subscription parameters: + account_id: + type: string + region: + type: string action: default: create_spot_datafeed_subscription immutable: true diff --git a/actions/vpc_create_subnet.yaml b/actions/vpc_create_subnet.yaml index 14969a7a..20f17d46 100644 --- a/actions/vpc_create_subnet.yaml +++ b/actions/vpc_create_subnet.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_subnet parameters: + account_id: + type: string + region: + type: string action: default: create_subnet immutable: true diff --git a/actions/vpc_create_tags.yaml b/actions/vpc_create_tags.yaml index 92329efa..5b6979ea 100644 --- a/actions/vpc_create_tags.yaml +++ b/actions/vpc_create_tags.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_tags parameters: + account_id: + type: string + region: + type: string action: default: create_tags immutable: true diff --git a/actions/vpc_create_volume.yaml b/actions/vpc_create_volume.yaml index 26bd55b6..40c8f599 100644 --- a/actions/vpc_create_volume.yaml +++ b/actions/vpc_create_volume.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_volume parameters: + account_id: + type: string + region: + type: string action: default: create_volume immutable: true diff --git a/actions/vpc_create_vpc.yaml b/actions/vpc_create_vpc.yaml index 7773afc5..6dc78e50 100644 --- a/actions/vpc_create_vpc.yaml +++ b/actions/vpc_create_vpc.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_vpc parameters: + account_id: + type: string + region: + type: string action: default: create_vpc immutable: true diff --git a/actions/vpc_create_vpc_peering_connection.yaml b/actions/vpc_create_vpc_peering_connection.yaml index 2f5ef9a4..c1d3d1cc 100644 --- a/actions/vpc_create_vpc_peering_connection.yaml +++ b/actions/vpc_create_vpc_peering_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_vpc_peering_connection parameters: + account_id: + type: string + region: + type: string action: default: create_vpc_peering_connection immutable: true diff --git a/actions/vpc_create_vpn_connection.yaml b/actions/vpc_create_vpn_connection.yaml index 1a80804f..7c4d275f 100644 --- a/actions/vpc_create_vpn_connection.yaml +++ b/actions/vpc_create_vpn_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_vpn_connection parameters: + account_id: + type: string + region: + type: string action: default: create_vpn_connection immutable: true diff --git a/actions/vpc_create_vpn_connection_route.yaml b/actions/vpc_create_vpn_connection_route.yaml index 7ea95be1..7dcc1a2d 100644 --- a/actions/vpc_create_vpn_connection_route.yaml +++ b/actions/vpc_create_vpn_connection_route.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_vpn_connection_route parameters: + account_id: + type: string + region: + type: string action: default: create_vpn_connection_route immutable: true diff --git a/actions/vpc_create_vpn_gateway.yaml b/actions/vpc_create_vpn_gateway.yaml index 1e94a6d7..21747934 100644 --- a/actions/vpc_create_vpn_gateway.yaml +++ b/actions/vpc_create_vpn_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_create_vpn_gateway parameters: + account_id: + type: string + region: + type: string action: default: create_vpn_gateway immutable: true diff --git a/actions/vpc_delete_customer_gateway.yaml b/actions/vpc_delete_customer_gateway.yaml index 12716c33..fc52f14c 100644 --- a/actions/vpc_delete_customer_gateway.yaml +++ b/actions/vpc_delete_customer_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_customer_gateway parameters: + account_id: + type: string + region: + type: string action: default: delete_customer_gateway immutable: true diff --git a/actions/vpc_delete_dhcp_options.yaml b/actions/vpc_delete_dhcp_options.yaml index 44bbfc0b..22888afe 100644 --- a/actions/vpc_delete_dhcp_options.yaml +++ b/actions/vpc_delete_dhcp_options.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_dhcp_options parameters: + account_id: + type: string + region: + type: string action: default: delete_dhcp_options immutable: true diff --git a/actions/vpc_delete_internet_gateway.yaml b/actions/vpc_delete_internet_gateway.yaml index 25f262a6..3ba8b22d 100644 --- a/actions/vpc_delete_internet_gateway.yaml +++ b/actions/vpc_delete_internet_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_internet_gateway parameters: + account_id: + type: string + region: + type: string action: default: delete_internet_gateway immutable: true diff --git a/actions/vpc_delete_key_pair.yaml b/actions/vpc_delete_key_pair.yaml index 29bdec18..8468c000 100644 --- a/actions/vpc_delete_key_pair.yaml +++ b/actions/vpc_delete_key_pair.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_key_pair parameters: + account_id: + type: string + region: + type: string action: default: delete_key_pair immutable: true diff --git a/actions/vpc_delete_network_acl.yaml b/actions/vpc_delete_network_acl.yaml index 83816493..2db3ff81 100644 --- a/actions/vpc_delete_network_acl.yaml +++ b/actions/vpc_delete_network_acl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_network_acl parameters: + account_id: + type: string + region: + type: string action: default: delete_network_acl immutable: true diff --git a/actions/vpc_delete_network_acl_entry.yaml b/actions/vpc_delete_network_acl_entry.yaml index 16e32146..e1d5d963 100644 --- a/actions/vpc_delete_network_acl_entry.yaml +++ b/actions/vpc_delete_network_acl_entry.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_network_acl_entry parameters: + account_id: + type: string + region: + type: string action: default: delete_network_acl_entry immutable: true diff --git a/actions/vpc_delete_network_interface.yaml b/actions/vpc_delete_network_interface.yaml index ac36ddb4..952f2369 100644 --- a/actions/vpc_delete_network_interface.yaml +++ b/actions/vpc_delete_network_interface.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_network_interface parameters: + account_id: + type: string + region: + type: string action: default: delete_network_interface immutable: true diff --git a/actions/vpc_delete_placement_group.yaml b/actions/vpc_delete_placement_group.yaml index 4e2fde4d..4978a6a0 100644 --- a/actions/vpc_delete_placement_group.yaml +++ b/actions/vpc_delete_placement_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_placement_group parameters: + account_id: + type: string + region: + type: string action: default: delete_placement_group immutable: true diff --git a/actions/vpc_delete_route.yaml b/actions/vpc_delete_route.yaml index 51cf87b6..83b6e65c 100644 --- a/actions/vpc_delete_route.yaml +++ b/actions/vpc_delete_route.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_route parameters: + account_id: + type: string + region: + type: string action: default: delete_route immutable: true diff --git a/actions/vpc_delete_route_table.yaml b/actions/vpc_delete_route_table.yaml index 064d0c28..9b536d7d 100644 --- a/actions/vpc_delete_route_table.yaml +++ b/actions/vpc_delete_route_table.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_route_table parameters: + account_id: + type: string + region: + type: string action: default: delete_route_table immutable: true diff --git a/actions/vpc_delete_security_group.yaml b/actions/vpc_delete_security_group.yaml index c3eabe78..5ffe3832 100644 --- a/actions/vpc_delete_security_group.yaml +++ b/actions/vpc_delete_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_security_group parameters: + account_id: + type: string + region: + type: string action: default: delete_security_group immutable: true diff --git a/actions/vpc_delete_snapshot.yaml b/actions/vpc_delete_snapshot.yaml index 8088ee5b..c98be221 100644 --- a/actions/vpc_delete_snapshot.yaml +++ b/actions/vpc_delete_snapshot.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_snapshot parameters: + account_id: + type: string + region: + type: string action: default: delete_snapshot immutable: true diff --git a/actions/vpc_delete_spot_datafeed_subscription.yaml b/actions/vpc_delete_spot_datafeed_subscription.yaml index 1e415925..8aba55c9 100644 --- a/actions/vpc_delete_spot_datafeed_subscription.yaml +++ b/actions/vpc_delete_spot_datafeed_subscription.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_spot_datafeed_subscription parameters: + account_id: + type: string + region: + type: string action: default: delete_spot_datafeed_subscription immutable: true diff --git a/actions/vpc_delete_subnet.yaml b/actions/vpc_delete_subnet.yaml index 27fb330a..c451da77 100644 --- a/actions/vpc_delete_subnet.yaml +++ b/actions/vpc_delete_subnet.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_subnet parameters: + account_id: + type: string + region: + type: string action: default: delete_subnet immutable: true diff --git a/actions/vpc_delete_tags.yaml b/actions/vpc_delete_tags.yaml index 45d7fcab..51755700 100644 --- a/actions/vpc_delete_tags.yaml +++ b/actions/vpc_delete_tags.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_tags parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/vpc_delete_volume.yaml b/actions/vpc_delete_volume.yaml index 25bc2033..3637763c 100644 --- a/actions/vpc_delete_volume.yaml +++ b/actions/vpc_delete_volume.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_volume parameters: + account_id: + type: string + region: + type: string action: default: delete_volume immutable: true diff --git a/actions/vpc_delete_vpc.yaml b/actions/vpc_delete_vpc.yaml index e007f765..bdbe37e2 100644 --- a/actions/vpc_delete_vpc.yaml +++ b/actions/vpc_delete_vpc.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_vpc parameters: + account_id: + type: string + region: + type: string action: default: delete_vpc immutable: true diff --git a/actions/vpc_delete_vpc_peering_connection.yaml b/actions/vpc_delete_vpc_peering_connection.yaml index 4ccb2793..595f23a7 100644 --- a/actions/vpc_delete_vpc_peering_connection.yaml +++ b/actions/vpc_delete_vpc_peering_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_vpc_peering_connection parameters: + account_id: + type: string + region: + type: string action: default: delete_vpc_peering_connection immutable: true diff --git a/actions/vpc_delete_vpn_connection.yaml b/actions/vpc_delete_vpn_connection.yaml index a72c20f6..1e7c9fa2 100644 --- a/actions/vpc_delete_vpn_connection.yaml +++ b/actions/vpc_delete_vpn_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_vpn_connection parameters: + account_id: + type: string + region: + type: string action: default: delete_vpn_connection immutable: true diff --git a/actions/vpc_delete_vpn_connection_route.yaml b/actions/vpc_delete_vpn_connection_route.yaml index b2c771c8..10fc1d69 100644 --- a/actions/vpc_delete_vpn_connection_route.yaml +++ b/actions/vpc_delete_vpn_connection_route.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_vpn_connection_route parameters: + account_id: + type: string + region: + type: string action: default: delete_vpn_connection_route immutable: true diff --git a/actions/vpc_delete_vpn_gateway.yaml b/actions/vpc_delete_vpn_gateway.yaml index 490f76a9..ed3c7c0d 100644 --- a/actions/vpc_delete_vpn_gateway.yaml +++ b/actions/vpc_delete_vpn_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_delete_vpn_gateway parameters: + account_id: + type: string + region: + type: string action: default: delete_vpn_gateway immutable: true diff --git a/actions/vpc_deregister_image.yaml b/actions/vpc_deregister_image.yaml index 0cca6a84..646dbab7 100644 --- a/actions/vpc_deregister_image.yaml +++ b/actions/vpc_deregister_image.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_deregister_image parameters: + account_id: + type: string + region: + type: string action: default: deregister_image immutable: true diff --git a/actions/vpc_describe_account_attributes.yaml b/actions/vpc_describe_account_attributes.yaml index 38f72c75..ee4834c7 100644 --- a/actions/vpc_describe_account_attributes.yaml +++ b/actions/vpc_describe_account_attributes.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_describe_account_attributes parameters: + account_id: + type: string + region: + type: string action: default: describe_account_attributes immutable: true diff --git a/actions/vpc_describe_reserved_instances_modifications.yaml b/actions/vpc_describe_reserved_instances_modifications.yaml index fc9e7a11..6e58a22d 100644 --- a/actions/vpc_describe_reserved_instances_modifications.yaml +++ b/actions/vpc_describe_reserved_instances_modifications.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_describe_reserved_instances_modifications parameters: + account_id: + type: string + region: + type: string action: default: describe_reserved_instances_modifications immutable: true diff --git a/actions/vpc_describe_vpc_attribute.yaml b/actions/vpc_describe_vpc_attribute.yaml index 1e28ea13..df0c497c 100644 --- a/actions/vpc_describe_vpc_attribute.yaml +++ b/actions/vpc_describe_vpc_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_describe_vpc_attribute parameters: + account_id: + type: string + region: + type: string action: default: describe_vpc_attribute immutable: true diff --git a/actions/vpc_detach_classic_link_vpc.yaml b/actions/vpc_detach_classic_link_vpc.yaml index 27b3462f..589ee328 100644 --- a/actions/vpc_detach_classic_link_vpc.yaml +++ b/actions/vpc_detach_classic_link_vpc.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_detach_classic_link_vpc parameters: + account_id: + type: string + region: + type: string action: default: detach_classic_link_vpc immutable: true diff --git a/actions/vpc_detach_internet_gateway.yaml b/actions/vpc_detach_internet_gateway.yaml index f02190dd..e6e80d8f 100644 --- a/actions/vpc_detach_internet_gateway.yaml +++ b/actions/vpc_detach_internet_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_detach_internet_gateway parameters: + account_id: + type: string + region: + type: string action: default: detach_internet_gateway immutable: true diff --git a/actions/vpc_detach_network_interface.yaml b/actions/vpc_detach_network_interface.yaml index ed57c1bb..c658e455 100644 --- a/actions/vpc_detach_network_interface.yaml +++ b/actions/vpc_detach_network_interface.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_detach_network_interface parameters: + account_id: + type: string + region: + type: string action: default: detach_network_interface immutable: true diff --git a/actions/vpc_detach_volume.yaml b/actions/vpc_detach_volume.yaml index 636ce79f..1644893a 100644 --- a/actions/vpc_detach_volume.yaml +++ b/actions/vpc_detach_volume.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_detach_volume parameters: + account_id: + type: string + region: + type: string action: default: detach_volume immutable: true diff --git a/actions/vpc_detach_vpn_gateway.yaml b/actions/vpc_detach_vpn_gateway.yaml index 7cfb4e6b..8792f55b 100644 --- a/actions/vpc_detach_vpn_gateway.yaml +++ b/actions/vpc_detach_vpn_gateway.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_detach_vpn_gateway parameters: + account_id: + type: string + region: + type: string action: default: detach_vpn_gateway immutable: true diff --git a/actions/vpc_disable_vgw_route_propagation.yaml b/actions/vpc_disable_vgw_route_propagation.yaml index a798e5a2..847d3140 100644 --- a/actions/vpc_disable_vgw_route_propagation.yaml +++ b/actions/vpc_disable_vgw_route_propagation.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_disable_vgw_route_propagation parameters: + account_id: + type: string + region: + type: string action: default: disable_vgw_route_propagation immutable: true diff --git a/actions/vpc_disable_vpc_classic_link.yaml b/actions/vpc_disable_vpc_classic_link.yaml index a624a083..bbc18035 100644 --- a/actions/vpc_disable_vpc_classic_link.yaml +++ b/actions/vpc_disable_vpc_classic_link.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_disable_vpc_classic_link parameters: + account_id: + type: string + region: + type: string action: default: disable_vpc_classic_link immutable: true diff --git a/actions/vpc_disassociate_address.yaml b/actions/vpc_disassociate_address.yaml index 1be9baf4..e89fb4fb 100644 --- a/actions/vpc_disassociate_address.yaml +++ b/actions/vpc_disassociate_address.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_disassociate_address parameters: + account_id: + type: string + region: + type: string action: default: disassociate_address immutable: true diff --git a/actions/vpc_disassociate_network_acl.yaml b/actions/vpc_disassociate_network_acl.yaml index b57118be..5222376b 100644 --- a/actions/vpc_disassociate_network_acl.yaml +++ b/actions/vpc_disassociate_network_acl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_disassociate_network_acl parameters: + account_id: + type: string + region: + type: string action: default: disassociate_network_acl immutable: true diff --git a/actions/vpc_disassociate_route_table.yaml b/actions/vpc_disassociate_route_table.yaml index dbb11192..a0341006 100644 --- a/actions/vpc_disassociate_route_table.yaml +++ b/actions/vpc_disassociate_route_table.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_disassociate_route_table parameters: + account_id: + type: string + region: + type: string action: default: disassociate_route_table immutable: true diff --git a/actions/vpc_enable_vgw_route_propagation.yaml b/actions/vpc_enable_vgw_route_propagation.yaml index 4e8fa4a4..a92fde6a 100644 --- a/actions/vpc_enable_vgw_route_propagation.yaml +++ b/actions/vpc_enable_vgw_route_propagation.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_enable_vgw_route_propagation parameters: + account_id: + type: string + region: + type: string action: default: enable_vgw_route_propagation immutable: true diff --git a/actions/vpc_enable_volume_io.yaml b/actions/vpc_enable_volume_io.yaml index 41d91395..5cb3be60 100644 --- a/actions/vpc_enable_volume_io.yaml +++ b/actions/vpc_enable_volume_io.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_enable_volume_io parameters: + account_id: + type: string + region: + type: string action: default: enable_volume_io immutable: true diff --git a/actions/vpc_enable_vpc_classic_link.yaml b/actions/vpc_enable_vpc_classic_link.yaml index 2482f0d5..35ee3446 100644 --- a/actions/vpc_enable_vpc_classic_link.yaml +++ b/actions/vpc_enable_vpc_classic_link.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_enable_vpc_classic_link parameters: + account_id: + type: string + region: + type: string action: default: enable_vpc_classic_link immutable: true diff --git a/actions/vpc_get_all_addresses.yaml b/actions/vpc_get_all_addresses.yaml index d2d4f547..e2a0c355 100644 --- a/actions/vpc_get_all_addresses.yaml +++ b/actions/vpc_get_all_addresses.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_addresses parameters: + account_id: + type: string + region: + type: string action: default: get_all_addresses immutable: true diff --git a/actions/vpc_get_all_bundle_tasks.yaml b/actions/vpc_get_all_bundle_tasks.yaml index ec61a35f..1e912509 100644 --- a/actions/vpc_get_all_bundle_tasks.yaml +++ b/actions/vpc_get_all_bundle_tasks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_bundle_tasks parameters: + account_id: + type: string + region: + type: string action: default: get_all_bundle_tasks immutable: true diff --git a/actions/vpc_get_all_classic_link_instances.yaml b/actions/vpc_get_all_classic_link_instances.yaml index 7f00536e..341a59b9 100644 --- a/actions/vpc_get_all_classic_link_instances.yaml +++ b/actions/vpc_get_all_classic_link_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_classic_link_instances parameters: + account_id: + type: string + region: + type: string action: default: get_all_classic_link_instances immutable: true diff --git a/actions/vpc_get_all_classic_link_vpcs.yaml b/actions/vpc_get_all_classic_link_vpcs.yaml index 81930dce..2356cbfe 100644 --- a/actions/vpc_get_all_classic_link_vpcs.yaml +++ b/actions/vpc_get_all_classic_link_vpcs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_classic_link_vpcs parameters: + account_id: + type: string + region: + type: string action: default: get_all_classic_link_vpcs immutable: true diff --git a/actions/vpc_get_all_customer_gateways.yaml b/actions/vpc_get_all_customer_gateways.yaml index 9c8e87a1..9d14e5c7 100644 --- a/actions/vpc_get_all_customer_gateways.yaml +++ b/actions/vpc_get_all_customer_gateways.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_customer_gateways parameters: + account_id: + type: string + region: + type: string action: default: get_all_customer_gateways immutable: true diff --git a/actions/vpc_get_all_dhcp_options.yaml b/actions/vpc_get_all_dhcp_options.yaml index f286306f..7ec3ae8d 100644 --- a/actions/vpc_get_all_dhcp_options.yaml +++ b/actions/vpc_get_all_dhcp_options.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_dhcp_options parameters: + account_id: + type: string + region: + type: string action: default: get_all_dhcp_options immutable: true diff --git a/actions/vpc_get_all_images.yaml b/actions/vpc_get_all_images.yaml index 111e0cec..85ee2425 100644 --- a/actions/vpc_get_all_images.yaml +++ b/actions/vpc_get_all_images.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_images parameters: + account_id: + type: string + region: + type: string action: default: get_all_images immutable: true diff --git a/actions/vpc_get_all_instance_status.yaml b/actions/vpc_get_all_instance_status.yaml index a4a6920c..f9c118da 100644 --- a/actions/vpc_get_all_instance_status.yaml +++ b/actions/vpc_get_all_instance_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_instance_status parameters: + account_id: + type: string + region: + type: string action: default: get_all_instance_status immutable: true diff --git a/actions/vpc_get_all_instance_types.yaml b/actions/vpc_get_all_instance_types.yaml index 3dbd82e1..81d71166 100644 --- a/actions/vpc_get_all_instance_types.yaml +++ b/actions/vpc_get_all_instance_types.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_instance_types parameters: + account_id: + type: string + region: + type: string action: default: get_all_instance_types immutable: true diff --git a/actions/vpc_get_all_instances.yaml b/actions/vpc_get_all_instances.yaml index f82206aa..2f2d6e5d 100644 --- a/actions/vpc_get_all_instances.yaml +++ b/actions/vpc_get_all_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_instances parameters: + account_id: + type: string + region: + type: string action: default: get_all_instances immutable: true diff --git a/actions/vpc_get_all_internet_gateways.yaml b/actions/vpc_get_all_internet_gateways.yaml index 675b99d2..bd082abd 100644 --- a/actions/vpc_get_all_internet_gateways.yaml +++ b/actions/vpc_get_all_internet_gateways.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_internet_gateways parameters: + account_id: + type: string + region: + type: string action: default: get_all_internet_gateways immutable: true diff --git a/actions/vpc_get_all_kernels.yaml b/actions/vpc_get_all_kernels.yaml index 0d484c9b..80dca71a 100644 --- a/actions/vpc_get_all_kernels.yaml +++ b/actions/vpc_get_all_kernels.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_kernels parameters: + account_id: + type: string + region: + type: string action: default: get_all_kernels immutable: true diff --git a/actions/vpc_get_all_key_pairs.yaml b/actions/vpc_get_all_key_pairs.yaml index 4d7a7a91..aeb18b22 100644 --- a/actions/vpc_get_all_key_pairs.yaml +++ b/actions/vpc_get_all_key_pairs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_key_pairs parameters: + account_id: + type: string + region: + type: string action: default: get_all_key_pairs immutable: true diff --git a/actions/vpc_get_all_network_acls.yaml b/actions/vpc_get_all_network_acls.yaml index 770347cb..3af0ebe5 100644 --- a/actions/vpc_get_all_network_acls.yaml +++ b/actions/vpc_get_all_network_acls.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_network_acls parameters: + account_id: + type: string + region: + type: string action: default: get_all_network_acls immutable: true diff --git a/actions/vpc_get_all_network_interfaces.yaml b/actions/vpc_get_all_network_interfaces.yaml index 1a946334..eceaa3db 100644 --- a/actions/vpc_get_all_network_interfaces.yaml +++ b/actions/vpc_get_all_network_interfaces.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_network_interfaces parameters: + account_id: + type: string + region: + type: string action: default: get_all_network_interfaces immutable: true diff --git a/actions/vpc_get_all_placement_groups.yaml b/actions/vpc_get_all_placement_groups.yaml index 9b74e282..b1b14393 100644 --- a/actions/vpc_get_all_placement_groups.yaml +++ b/actions/vpc_get_all_placement_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_placement_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_placement_groups immutable: true diff --git a/actions/vpc_get_all_ramdisks.yaml b/actions/vpc_get_all_ramdisks.yaml index 4215a337..6cd95cf1 100644 --- a/actions/vpc_get_all_ramdisks.yaml +++ b/actions/vpc_get_all_ramdisks.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_ramdisks parameters: + account_id: + type: string + region: + type: string action: default: get_all_ramdisks immutable: true diff --git a/actions/vpc_get_all_regions.yaml b/actions/vpc_get_all_regions.yaml index a7633c99..d1b723f4 100644 --- a/actions/vpc_get_all_regions.yaml +++ b/actions/vpc_get_all_regions.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_regions parameters: + account_id: + type: string + region: + type: string action: default: get_all_regions immutable: true diff --git a/actions/vpc_get_all_reservations.yaml b/actions/vpc_get_all_reservations.yaml index 731d1c3a..1ab88049 100644 --- a/actions/vpc_get_all_reservations.yaml +++ b/actions/vpc_get_all_reservations.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_reservations parameters: + account_id: + type: string + region: + type: string action: default: get_all_reservations immutable: true diff --git a/actions/vpc_get_all_reserved_instances.yaml b/actions/vpc_get_all_reserved_instances.yaml index ba6a64a4..08bf9e02 100644 --- a/actions/vpc_get_all_reserved_instances.yaml +++ b/actions/vpc_get_all_reserved_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_reserved_instances parameters: + account_id: + type: string + region: + type: string action: default: get_all_reserved_instances immutable: true diff --git a/actions/vpc_get_all_reserved_instances_offerings.yaml b/actions/vpc_get_all_reserved_instances_offerings.yaml index 7062d2a5..6ff1394e 100644 --- a/actions/vpc_get_all_reserved_instances_offerings.yaml +++ b/actions/vpc_get_all_reserved_instances_offerings.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_reserved_instances_offerings parameters: + account_id: + type: string + region: + type: string action: default: get_all_reserved_instances_offerings immutable: true diff --git a/actions/vpc_get_all_route_tables.yaml b/actions/vpc_get_all_route_tables.yaml index c3689f28..97048ac5 100644 --- a/actions/vpc_get_all_route_tables.yaml +++ b/actions/vpc_get_all_route_tables.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_route_tables parameters: + account_id: + type: string + region: + type: string action: default: get_all_route_tables immutable: true diff --git a/actions/vpc_get_all_security_groups.yaml b/actions/vpc_get_all_security_groups.yaml index a0e02c18..1084e183 100644 --- a/actions/vpc_get_all_security_groups.yaml +++ b/actions/vpc_get_all_security_groups.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_security_groups parameters: + account_id: + type: string + region: + type: string action: default: get_all_security_groups immutable: true diff --git a/actions/vpc_get_all_snapshots.yaml b/actions/vpc_get_all_snapshots.yaml index 9ba31267..f917e0c5 100644 --- a/actions/vpc_get_all_snapshots.yaml +++ b/actions/vpc_get_all_snapshots.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_snapshots parameters: + account_id: + type: string + region: + type: string action: default: get_all_snapshots immutable: true diff --git a/actions/vpc_get_all_spot_instance_requests.yaml b/actions/vpc_get_all_spot_instance_requests.yaml index 7ffc561d..4c055042 100644 --- a/actions/vpc_get_all_spot_instance_requests.yaml +++ b/actions/vpc_get_all_spot_instance_requests.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_spot_instance_requests parameters: + account_id: + type: string + region: + type: string action: default: get_all_spot_instance_requests immutable: true diff --git a/actions/vpc_get_all_subnets.yaml b/actions/vpc_get_all_subnets.yaml index 9cbdc06c..6130c246 100644 --- a/actions/vpc_get_all_subnets.yaml +++ b/actions/vpc_get_all_subnets.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_subnets parameters: + account_id: + type: string + region: + type: string action: default: get_all_subnets immutable: true diff --git a/actions/vpc_get_all_tags.yaml b/actions/vpc_get_all_tags.yaml index 6b7984ca..e5566f9d 100644 --- a/actions/vpc_get_all_tags.yaml +++ b/actions/vpc_get_all_tags.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_tags parameters: + account_id: + type: string + region: + type: string action: default: get_all_tags immutable: true diff --git a/actions/vpc_get_all_volume_status.yaml b/actions/vpc_get_all_volume_status.yaml index 121cd307..b35e6e47 100644 --- a/actions/vpc_get_all_volume_status.yaml +++ b/actions/vpc_get_all_volume_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_volume_status parameters: + account_id: + type: string + region: + type: string action: default: get_all_volume_status immutable: true diff --git a/actions/vpc_get_all_volumes.yaml b/actions/vpc_get_all_volumes.yaml index 6d6306ad..1fe06d07 100644 --- a/actions/vpc_get_all_volumes.yaml +++ b/actions/vpc_get_all_volumes.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_volumes parameters: + account_id: + type: string + region: + type: string action: default: get_all_volumes immutable: true diff --git a/actions/vpc_get_all_vpc_peering_connections.yaml b/actions/vpc_get_all_vpc_peering_connections.yaml index e93232b5..be50fcd8 100644 --- a/actions/vpc_get_all_vpc_peering_connections.yaml +++ b/actions/vpc_get_all_vpc_peering_connections.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_vpc_peering_connections parameters: + account_id: + type: string + region: + type: string action: default: get_all_vpc_peering_connections immutable: true diff --git a/actions/vpc_get_all_vpcs.yaml b/actions/vpc_get_all_vpcs.yaml index 47984c51..bde7f0de 100644 --- a/actions/vpc_get_all_vpcs.yaml +++ b/actions/vpc_get_all_vpcs.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_vpcs parameters: + account_id: + type: string + region: + type: string action: default: get_all_vpcs immutable: true diff --git a/actions/vpc_get_all_vpn_connections.yaml b/actions/vpc_get_all_vpn_connections.yaml index f4fd1c76..2ea13249 100644 --- a/actions/vpc_get_all_vpn_connections.yaml +++ b/actions/vpc_get_all_vpn_connections.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_vpn_connections parameters: + account_id: + type: string + region: + type: string action: default: get_all_vpn_connections immutable: true diff --git a/actions/vpc_get_all_vpn_gateways.yaml b/actions/vpc_get_all_vpn_gateways.yaml index f2a77748..be1d1050 100644 --- a/actions/vpc_get_all_vpn_gateways.yaml +++ b/actions/vpc_get_all_vpn_gateways.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_vpn_gateways parameters: + account_id: + type: string + region: + type: string action: default: get_all_vpn_gateways immutable: true diff --git a/actions/vpc_get_all_zones.yaml b/actions/vpc_get_all_zones.yaml index 3bb0d9f3..80198d1e 100644 --- a/actions/vpc_get_all_zones.yaml +++ b/actions/vpc_get_all_zones.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_all_zones parameters: + account_id: + type: string + region: + type: string action: default: get_all_zones immutable: true diff --git a/actions/vpc_get_console_output.yaml b/actions/vpc_get_console_output.yaml index 429d07c7..5d57e73e 100644 --- a/actions/vpc_get_console_output.yaml +++ b/actions/vpc_get_console_output.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_console_output parameters: + account_id: + type: string + region: + type: string action: default: get_console_output immutable: true diff --git a/actions/vpc_get_http_connection.yaml b/actions/vpc_get_http_connection.yaml index bcc37bf6..c5ac7aba 100644 --- a/actions/vpc_get_http_connection.yaml +++ b/actions/vpc_get_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_http_connection parameters: + account_id: + type: string + region: + type: string action: default: get_http_connection immutable: true diff --git a/actions/vpc_get_image.yaml b/actions/vpc_get_image.yaml index 345350a9..5e22fc0a 100644 --- a/actions/vpc_get_image.yaml +++ b/actions/vpc_get_image.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_image parameters: + account_id: + type: string + region: + type: string action: default: get_image immutable: true diff --git a/actions/vpc_get_image_attribute.yaml b/actions/vpc_get_image_attribute.yaml index a3149218..b5280800 100644 --- a/actions/vpc_get_image_attribute.yaml +++ b/actions/vpc_get_image_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_image_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_image_attribute immutable: true diff --git a/actions/vpc_get_instance_attribute.yaml b/actions/vpc_get_instance_attribute.yaml index 2b3a93b4..00d5180f 100644 --- a/actions/vpc_get_instance_attribute.yaml +++ b/actions/vpc_get_instance_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_instance_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_instance_attribute immutable: true diff --git a/actions/vpc_get_key_pair.yaml b/actions/vpc_get_key_pair.yaml index 8935b7e8..8c01f2d0 100644 --- a/actions/vpc_get_key_pair.yaml +++ b/actions/vpc_get_key_pair.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_key_pair parameters: + account_id: + type: string + region: + type: string action: default: get_key_pair immutable: true diff --git a/actions/vpc_get_list.yaml b/actions/vpc_get_list.yaml index a2065791..e979ea1f 100644 --- a/actions/vpc_get_list.yaml +++ b/actions/vpc_get_list.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_list parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/vpc_get_object.yaml b/actions/vpc_get_object.yaml index 2a2cf136..d1a1e017 100644 --- a/actions/vpc_get_object.yaml +++ b/actions/vpc_get_object.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_object parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/vpc_get_only_instances.yaml b/actions/vpc_get_only_instances.yaml index c173db54..63945acb 100644 --- a/actions/vpc_get_only_instances.yaml +++ b/actions/vpc_get_only_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_only_instances parameters: + account_id: + type: string + region: + type: string action: default: get_only_instances immutable: true diff --git a/actions/vpc_get_params.yaml b/actions/vpc_get_params.yaml index 53527b81..6559610a 100644 --- a/actions/vpc_get_params.yaml +++ b/actions/vpc_get_params.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_params parameters: + account_id: + type: string + region: + type: string action: default: get_params immutable: true diff --git a/actions/vpc_get_password_data.yaml b/actions/vpc_get_password_data.yaml index 5a1dd2ef..ff27241d 100644 --- a/actions/vpc_get_password_data.yaml +++ b/actions/vpc_get_password_data.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_password_data parameters: + account_id: + type: string + region: + type: string action: default: get_password_data immutable: true diff --git a/actions/vpc_get_path.yaml b/actions/vpc_get_path.yaml index cc1883dc..2aa551e6 100644 --- a/actions/vpc_get_path.yaml +++ b/actions/vpc_get_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_path parameters: + account_id: + type: string + region: + type: string action: default: get_path immutable: true diff --git a/actions/vpc_get_proxy_auth_header.yaml b/actions/vpc_get_proxy_auth_header.yaml index 3e0484ee..bd8b873a 100644 --- a/actions/vpc_get_proxy_auth_header.yaml +++ b/actions/vpc_get_proxy_auth_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_proxy_auth_header parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_auth_header immutable: true diff --git a/actions/vpc_get_proxy_url_with_auth.yaml b/actions/vpc_get_proxy_url_with_auth.yaml index 32530176..0c1feef4 100644 --- a/actions/vpc_get_proxy_url_with_auth.yaml +++ b/actions/vpc_get_proxy_url_with_auth.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_proxy_url_with_auth parameters: + account_id: + type: string + region: + type: string action: default: get_proxy_url_with_auth immutable: true diff --git a/actions/vpc_get_snapshot_attribute.yaml b/actions/vpc_get_snapshot_attribute.yaml index 48884551..7fd402cb 100644 --- a/actions/vpc_get_snapshot_attribute.yaml +++ b/actions/vpc_get_snapshot_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_snapshot_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_snapshot_attribute immutable: true diff --git a/actions/vpc_get_spot_datafeed_subscription.yaml b/actions/vpc_get_spot_datafeed_subscription.yaml index 66831cd2..4702c50f 100644 --- a/actions/vpc_get_spot_datafeed_subscription.yaml +++ b/actions/vpc_get_spot_datafeed_subscription.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_spot_datafeed_subscription parameters: + account_id: + type: string + region: + type: string action: default: get_spot_datafeed_subscription immutable: true diff --git a/actions/vpc_get_spot_price_history.yaml b/actions/vpc_get_spot_price_history.yaml index bea13cbe..6f38123e 100644 --- a/actions/vpc_get_spot_price_history.yaml +++ b/actions/vpc_get_spot_price_history.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_spot_price_history parameters: + account_id: + type: string + region: + type: string action: default: get_spot_price_history immutable: true diff --git a/actions/vpc_get_status.yaml b/actions/vpc_get_status.yaml index 494269bc..63638c70 100644 --- a/actions/vpc_get_status.yaml +++ b/actions/vpc_get_status.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_status parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/vpc_get_utf8_value.yaml b/actions/vpc_get_utf8_value.yaml index 3df0df74..f2850e06 100644 --- a/actions/vpc_get_utf8_value.yaml +++ b/actions/vpc_get_utf8_value.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_utf8_value parameters: + account_id: + type: string + region: + type: string action: default: get_utf8_value immutable: true diff --git a/actions/vpc_get_volume_attribute.yaml b/actions/vpc_get_volume_attribute.yaml index ef11ef2e..13c7ba1a 100644 --- a/actions/vpc_get_volume_attribute.yaml +++ b/actions/vpc_get_volume_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_get_volume_attribute parameters: + account_id: + type: string + region: + type: string action: default: get_volume_attribute immutable: true diff --git a/actions/vpc_handle_proxy.yaml b/actions/vpc_handle_proxy.yaml index 0899d739..c2b8ca7f 100644 --- a/actions/vpc_handle_proxy.yaml +++ b/actions/vpc_handle_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_handle_proxy parameters: + account_id: + type: string + region: + type: string action: default: handle_proxy immutable: true diff --git a/actions/vpc_import_key_pair.yaml b/actions/vpc_import_key_pair.yaml index 5dbb532a..ff3c3feb 100644 --- a/actions/vpc_import_key_pair.yaml +++ b/actions/vpc_import_key_pair.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_import_key_pair parameters: + account_id: + type: string + region: + type: string action: default: import_key_pair immutable: true diff --git a/actions/vpc_make_request.yaml b/actions/vpc_make_request.yaml index 21003822..6c043966 100644 --- a/actions/vpc_make_request.yaml +++ b/actions/vpc_make_request.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_make_request parameters: + account_id: + type: string + region: + type: string action: required: true type: string diff --git a/actions/vpc_modify_image_attribute.yaml b/actions/vpc_modify_image_attribute.yaml index a76dba36..63f58ff1 100644 --- a/actions/vpc_modify_image_attribute.yaml +++ b/actions/vpc_modify_image_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_image_attribute parameters: + account_id: + type: string + region: + type: string action: default: modify_image_attribute immutable: true diff --git a/actions/vpc_modify_instance_attribute.yaml b/actions/vpc_modify_instance_attribute.yaml index 9201b0e2..e80e31b9 100644 --- a/actions/vpc_modify_instance_attribute.yaml +++ b/actions/vpc_modify_instance_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_instance_attribute parameters: + account_id: + type: string + region: + type: string action: default: modify_instance_attribute immutable: true diff --git a/actions/vpc_modify_network_interface_attribute.yaml b/actions/vpc_modify_network_interface_attribute.yaml index 96897ca1..12197293 100644 --- a/actions/vpc_modify_network_interface_attribute.yaml +++ b/actions/vpc_modify_network_interface_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_network_interface_attribute parameters: + account_id: + type: string + region: + type: string action: default: modify_network_interface_attribute immutable: true diff --git a/actions/vpc_modify_reserved_instances.yaml b/actions/vpc_modify_reserved_instances.yaml index a0645433..bd778449 100644 --- a/actions/vpc_modify_reserved_instances.yaml +++ b/actions/vpc_modify_reserved_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_reserved_instances parameters: + account_id: + type: string + region: + type: string action: default: modify_reserved_instances immutable: true diff --git a/actions/vpc_modify_snapshot_attribute.yaml b/actions/vpc_modify_snapshot_attribute.yaml index 0b362ab0..064e6101 100644 --- a/actions/vpc_modify_snapshot_attribute.yaml +++ b/actions/vpc_modify_snapshot_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_snapshot_attribute parameters: + account_id: + type: string + region: + type: string action: default: modify_snapshot_attribute immutable: true diff --git a/actions/vpc_modify_volume_attribute.yaml b/actions/vpc_modify_volume_attribute.yaml index 071c9e15..dbf67f47 100644 --- a/actions/vpc_modify_volume_attribute.yaml +++ b/actions/vpc_modify_volume_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_volume_attribute parameters: + account_id: + type: string + region: + type: string action: default: modify_volume_attribute immutable: true diff --git a/actions/vpc_modify_vpc_attribute.yaml b/actions/vpc_modify_vpc_attribute.yaml index ed22957a..70dfab54 100644 --- a/actions/vpc_modify_vpc_attribute.yaml +++ b/actions/vpc_modify_vpc_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_modify_vpc_attribute parameters: + account_id: + type: string + region: + type: string action: default: modify_vpc_attribute immutable: true diff --git a/actions/vpc_monitor_instance.yaml b/actions/vpc_monitor_instance.yaml index ec7d8f2a..973ec803 100644 --- a/actions/vpc_monitor_instance.yaml +++ b/actions/vpc_monitor_instance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_monitor_instance parameters: + account_id: + type: string + region: + type: string action: default: monitor_instance immutable: true diff --git a/actions/vpc_monitor_instances.yaml b/actions/vpc_monitor_instances.yaml index 9e896cc9..05f92f3a 100644 --- a/actions/vpc_monitor_instances.yaml +++ b/actions/vpc_monitor_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_monitor_instances parameters: + account_id: + type: string + region: + type: string action: default: monitor_instances immutable: true diff --git a/actions/vpc_new_http_connection.yaml b/actions/vpc_new_http_connection.yaml index 17208968..fbeae402 100644 --- a/actions/vpc_new_http_connection.yaml +++ b/actions/vpc_new_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_new_http_connection parameters: + account_id: + type: string + region: + type: string action: default: new_http_connection immutable: true diff --git a/actions/vpc_prefix_proxy_to_path.yaml b/actions/vpc_prefix_proxy_to_path.yaml index ed176520..1ab0ba12 100644 --- a/actions/vpc_prefix_proxy_to_path.yaml +++ b/actions/vpc_prefix_proxy_to_path.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_prefix_proxy_to_path parameters: + account_id: + type: string + region: + type: string action: default: prefix_proxy_to_path immutable: true diff --git a/actions/vpc_proxy_ssl.yaml b/actions/vpc_proxy_ssl.yaml index 7e4e57ae..e91f9332 100644 --- a/actions/vpc_proxy_ssl.yaml +++ b/actions/vpc_proxy_ssl.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_proxy_ssl parameters: + account_id: + type: string + region: + type: string action: default: proxy_ssl immutable: true diff --git a/actions/vpc_purchase_reserved_instance_offering.yaml b/actions/vpc_purchase_reserved_instance_offering.yaml index 067edf37..bfe0f8eb 100644 --- a/actions/vpc_purchase_reserved_instance_offering.yaml +++ b/actions/vpc_purchase_reserved_instance_offering.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_purchase_reserved_instance_offering parameters: + account_id: + type: string + region: + type: string action: default: purchase_reserved_instance_offering immutable: true diff --git a/actions/vpc_put_http_connection.yaml b/actions/vpc_put_http_connection.yaml index f20813c3..d49a1ad5 100644 --- a/actions/vpc_put_http_connection.yaml +++ b/actions/vpc_put_http_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_put_http_connection parameters: + account_id: + type: string + region: + type: string action: default: put_http_connection immutable: true diff --git a/actions/vpc_reboot_instances.yaml b/actions/vpc_reboot_instances.yaml index 964a7099..720a6750 100644 --- a/actions/vpc_reboot_instances.yaml +++ b/actions/vpc_reboot_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_reboot_instances parameters: + account_id: + type: string + region: + type: string action: default: reboot_instances immutable: true diff --git a/actions/vpc_register_image.yaml b/actions/vpc_register_image.yaml index f762307f..4d8ca1a7 100644 --- a/actions/vpc_register_image.yaml +++ b/actions/vpc_register_image.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_register_image parameters: + account_id: + type: string + region: + type: string action: default: register_image immutable: true diff --git a/actions/vpc_reject_vpc_peering_connection.yaml b/actions/vpc_reject_vpc_peering_connection.yaml index 20355e20..e4ad4016 100644 --- a/actions/vpc_reject_vpc_peering_connection.yaml +++ b/actions/vpc_reject_vpc_peering_connection.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_reject_vpc_peering_connection parameters: + account_id: + type: string + region: + type: string action: default: reject_vpc_peering_connection immutable: true diff --git a/actions/vpc_release_address.yaml b/actions/vpc_release_address.yaml index 763e267a..e480885d 100644 --- a/actions/vpc_release_address.yaml +++ b/actions/vpc_release_address.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_release_address parameters: + account_id: + type: string + region: + type: string action: default: release_address immutable: true diff --git a/actions/vpc_replace_network_acl_entry.yaml b/actions/vpc_replace_network_acl_entry.yaml index 38c68d3e..15aa680d 100644 --- a/actions/vpc_replace_network_acl_entry.yaml +++ b/actions/vpc_replace_network_acl_entry.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_replace_network_acl_entry parameters: + account_id: + type: string + region: + type: string action: default: replace_network_acl_entry immutable: true diff --git a/actions/vpc_replace_route.yaml b/actions/vpc_replace_route.yaml index 86ee05ba..e11028dd 100644 --- a/actions/vpc_replace_route.yaml +++ b/actions/vpc_replace_route.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_replace_route parameters: + account_id: + type: string + region: + type: string action: default: replace_route immutable: true diff --git a/actions/vpc_replace_route_table_assocation.yaml b/actions/vpc_replace_route_table_assocation.yaml index 005cec64..199f9b99 100644 --- a/actions/vpc_replace_route_table_assocation.yaml +++ b/actions/vpc_replace_route_table_assocation.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_replace_route_table_assocation parameters: + account_id: + type: string + region: + type: string action: default: replace_route_table_assocation immutable: true diff --git a/actions/vpc_replace_route_table_association_with_assoc.yaml b/actions/vpc_replace_route_table_association_with_assoc.yaml index 4ce2858c..d28c1846 100644 --- a/actions/vpc_replace_route_table_association_with_assoc.yaml +++ b/actions/vpc_replace_route_table_association_with_assoc.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_replace_route_table_association_with_assoc parameters: + account_id: + type: string + region: + type: string action: default: replace_route_table_association_with_assoc immutable: true diff --git a/actions/vpc_request_spot_instances.yaml b/actions/vpc_request_spot_instances.yaml index 6c46d05b..7d67ff38 100644 --- a/actions/vpc_request_spot_instances.yaml +++ b/actions/vpc_request_spot_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_request_spot_instances parameters: + account_id: + type: string + region: + type: string action: default: request_spot_instances immutable: true diff --git a/actions/vpc_reset_image_attribute.yaml b/actions/vpc_reset_image_attribute.yaml index 4752ca51..2a9e7b82 100644 --- a/actions/vpc_reset_image_attribute.yaml +++ b/actions/vpc_reset_image_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_reset_image_attribute parameters: + account_id: + type: string + region: + type: string action: default: reset_image_attribute immutable: true diff --git a/actions/vpc_reset_instance_attribute.yaml b/actions/vpc_reset_instance_attribute.yaml index 68066d70..6edd11ef 100644 --- a/actions/vpc_reset_instance_attribute.yaml +++ b/actions/vpc_reset_instance_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_reset_instance_attribute parameters: + account_id: + type: string + region: + type: string action: default: reset_instance_attribute immutable: true diff --git a/actions/vpc_reset_snapshot_attribute.yaml b/actions/vpc_reset_snapshot_attribute.yaml index 5172e07f..8f4613c0 100644 --- a/actions/vpc_reset_snapshot_attribute.yaml +++ b/actions/vpc_reset_snapshot_attribute.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_reset_snapshot_attribute parameters: + account_id: + type: string + region: + type: string action: default: reset_snapshot_attribute immutable: true diff --git a/actions/vpc_revoke_security_group.yaml b/actions/vpc_revoke_security_group.yaml index 795be515..56159dba 100644 --- a/actions/vpc_revoke_security_group.yaml +++ b/actions/vpc_revoke_security_group.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_revoke_security_group parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group immutable: true diff --git a/actions/vpc_revoke_security_group_deprecated.yaml b/actions/vpc_revoke_security_group_deprecated.yaml index 553e7313..2bca8077 100644 --- a/actions/vpc_revoke_security_group_deprecated.yaml +++ b/actions/vpc_revoke_security_group_deprecated.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_revoke_security_group_deprecated parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group_deprecated immutable: true diff --git a/actions/vpc_revoke_security_group_egress.yaml b/actions/vpc_revoke_security_group_egress.yaml index cc80bd02..875602e7 100644 --- a/actions/vpc_revoke_security_group_egress.yaml +++ b/actions/vpc_revoke_security_group_egress.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_revoke_security_group_egress parameters: + account_id: + type: string + region: + type: string action: default: revoke_security_group_egress immutable: true diff --git a/actions/vpc_run_instances.yaml b/actions/vpc_run_instances.yaml index 2e3587bd..f4d816f8 100644 --- a/actions/vpc_run_instances.yaml +++ b/actions/vpc_run_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_run_instances parameters: + account_id: + type: string + region: + type: string action: default: run_instances immutable: true diff --git a/actions/vpc_server_name.yaml b/actions/vpc_server_name.yaml index d45a2edb..14ce428a 100644 --- a/actions/vpc_server_name.yaml +++ b/actions/vpc_server_name.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_server_name parameters: + account_id: + type: string + region: + type: string action: default: server_name immutable: true diff --git a/actions/vpc_set_host_header.yaml b/actions/vpc_set_host_header.yaml index 7aac0e5f..4455b319 100644 --- a/actions/vpc_set_host_header.yaml +++ b/actions/vpc_set_host_header.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_set_host_header parameters: + account_id: + type: string + region: + type: string action: default: set_host_header immutable: true diff --git a/actions/vpc_set_request_hook.yaml b/actions/vpc_set_request_hook.yaml index e3b5d697..c4abe2f6 100644 --- a/actions/vpc_set_request_hook.yaml +++ b/actions/vpc_set_request_hook.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_set_request_hook parameters: + account_id: + type: string + region: + type: string action: default: set_request_hook immutable: true diff --git a/actions/vpc_skip_proxy.yaml b/actions/vpc_skip_proxy.yaml index 0340ecc7..6fd358cf 100644 --- a/actions/vpc_skip_proxy.yaml +++ b/actions/vpc_skip_proxy.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_skip_proxy parameters: + account_id: + type: string + region: + type: string action: default: skip_proxy immutable: true diff --git a/actions/vpc_start_instances.yaml b/actions/vpc_start_instances.yaml index fbaebfd8..e7e3f165 100644 --- a/actions/vpc_start_instances.yaml +++ b/actions/vpc_start_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_start_instances parameters: + account_id: + type: string + region: + type: string action: default: start_instances immutable: true diff --git a/actions/vpc_stop_instances.yaml b/actions/vpc_stop_instances.yaml index ceb8794c..c093e785 100644 --- a/actions/vpc_stop_instances.yaml +++ b/actions/vpc_stop_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_stop_instances parameters: + account_id: + type: string + region: + type: string action: default: stop_instances immutable: true diff --git a/actions/vpc_terminate_instances.yaml b/actions/vpc_terminate_instances.yaml index 67ee1f56..03d9e722 100644 --- a/actions/vpc_terminate_instances.yaml +++ b/actions/vpc_terminate_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_terminate_instances parameters: + account_id: + type: string + region: + type: string action: default: terminate_instances immutable: true diff --git a/actions/vpc_trim_snapshots.yaml b/actions/vpc_trim_snapshots.yaml index faffcf04..9aaf8dbc 100644 --- a/actions/vpc_trim_snapshots.yaml +++ b/actions/vpc_trim_snapshots.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_trim_snapshots parameters: + account_id: + type: string + region: + type: string action: default: trim_snapshots immutable: true diff --git a/actions/vpc_unassign_private_ip_addresses.yaml b/actions/vpc_unassign_private_ip_addresses.yaml index 61d46fc4..fab6c43f 100644 --- a/actions/vpc_unassign_private_ip_addresses.yaml +++ b/actions/vpc_unassign_private_ip_addresses.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_unassign_private_ip_addresses parameters: + account_id: + type: string + region: + type: string action: default: unassign_private_ip_addresses immutable: true diff --git a/actions/vpc_unmonitor_instance.yaml b/actions/vpc_unmonitor_instance.yaml index e635c680..1362be9b 100644 --- a/actions/vpc_unmonitor_instance.yaml +++ b/actions/vpc_unmonitor_instance.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_unmonitor_instance parameters: + account_id: + type: string + region: + type: string action: default: unmonitor_instance immutable: true diff --git a/actions/vpc_unmonitor_instances.yaml b/actions/vpc_unmonitor_instances.yaml index 18fc979f..0a1301a8 100644 --- a/actions/vpc_unmonitor_instances.yaml +++ b/actions/vpc_unmonitor_instances.yaml @@ -3,6 +3,10 @@ enabled: true entry_point: run.py name: vpc_unmonitor_instances parameters: + account_id: + type: string + region: + type: string action: default: unmonitor_instances immutable: true diff --git a/actions/waf-regional_associate_web_acl.yaml b/actions/waf-regional_associate_web_acl.yaml index 6ff2a491..7d9d0f4f 100644 --- a/actions/waf-regional_associate_web_acl.yaml +++ b/actions/waf-regional_associate_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_associate_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: associate_web_acl immutable: true diff --git a/actions/waf-regional_create_byte_match_set.yaml b/actions/waf-regional_create_byte_match_set.yaml index 51402649..b739f5e0 100644 --- a/actions/waf-regional_create_byte_match_set.yaml +++ b/actions/waf-regional_create_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_byte_match_set immutable: true diff --git a/actions/waf-regional_create_ip_set.yaml b/actions/waf-regional_create_ip_set.yaml index f2e1f150..86c84fa0 100644 --- a/actions/waf-regional_create_ip_set.yaml +++ b/actions/waf-regional_create_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_ip_set immutable: true diff --git a/actions/waf-regional_create_rate_based_rule.yaml b/actions/waf-regional_create_rate_based_rule.yaml index ee48a653..9d4b97fb 100644 --- a/actions/waf-regional_create_rate_based_rule.yaml +++ b/actions/waf-regional_create_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_rate_based_rule immutable: true diff --git a/actions/waf-regional_create_rule.yaml b/actions/waf-regional_create_rule.yaml index 157a60c1..7869da11 100644 --- a/actions/waf-regional_create_rule.yaml +++ b/actions/waf-regional_create_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_rule immutable: true diff --git a/actions/waf-regional_create_size_constraint_set.yaml b/actions/waf-regional_create_size_constraint_set.yaml index 7a86cfd3..b74098ee 100644 --- a/actions/waf-regional_create_size_constraint_set.yaml +++ b/actions/waf-regional_create_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_size_constraint_set immutable: true diff --git a/actions/waf-regional_create_sql_injection_match_set.yaml b/actions/waf-regional_create_sql_injection_match_set.yaml index 12ed1a2c..c21fb72a 100644 --- a/actions/waf-regional_create_sql_injection_match_set.yaml +++ b/actions/waf-regional_create_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_sql_injection_match_set immutable: true diff --git a/actions/waf-regional_create_web_acl.yaml b/actions/waf-regional_create_web_acl.yaml index b49a1ecf..2b6e02ee 100644 --- a/actions/waf-regional_create_web_acl.yaml +++ b/actions/waf-regional_create_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_web_acl immutable: true diff --git a/actions/waf-regional_create_xss_match_set.yaml b/actions/waf-regional_create_xss_match_set.yaml index 9d63357c..082cc63f 100644 --- a/actions/waf-regional_create_xss_match_set.yaml +++ b/actions/waf-regional_create_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_create_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_xss_match_set immutable: true diff --git a/actions/waf-regional_delete_byte_match_set.yaml b/actions/waf-regional_delete_byte_match_set.yaml index 259de12d..42f448f8 100644 --- a/actions/waf-regional_delete_byte_match_set.yaml +++ b/actions/waf-regional_delete_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_byte_match_set immutable: true diff --git a/actions/waf-regional_delete_ip_set.yaml b/actions/waf-regional_delete_ip_set.yaml index a182b6e4..1c718a53 100644 --- a/actions/waf-regional_delete_ip_set.yaml +++ b/actions/waf-regional_delete_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_ip_set immutable: true diff --git a/actions/waf-regional_delete_rate_based_rule.yaml b/actions/waf-regional_delete_rate_based_rule.yaml index 7b8dc062..3be940ee 100644 --- a/actions/waf-regional_delete_rate_based_rule.yaml +++ b/actions/waf-regional_delete_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rate_based_rule immutable: true diff --git a/actions/waf-regional_delete_rule.yaml b/actions/waf-regional_delete_rule.yaml index 801a9a22..034a92a4 100644 --- a/actions/waf-regional_delete_rule.yaml +++ b/actions/waf-regional_delete_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rule immutable: true diff --git a/actions/waf-regional_delete_size_constraint_set.yaml b/actions/waf-regional_delete_size_constraint_set.yaml index 07f1f053..9690f9e1 100644 --- a/actions/waf-regional_delete_size_constraint_set.yaml +++ b/actions/waf-regional_delete_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_size_constraint_set immutable: true diff --git a/actions/waf-regional_delete_sql_injection_match_set.yaml b/actions/waf-regional_delete_sql_injection_match_set.yaml index 378dafa6..a6978513 100644 --- a/actions/waf-regional_delete_sql_injection_match_set.yaml +++ b/actions/waf-regional_delete_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_sql_injection_match_set immutable: true diff --git a/actions/waf-regional_delete_web_acl.yaml b/actions/waf-regional_delete_web_acl.yaml index d8e43ebf..6914a7f7 100644 --- a/actions/waf-regional_delete_web_acl.yaml +++ b/actions/waf-regional_delete_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_web_acl immutable: true diff --git a/actions/waf-regional_delete_xss_match_set.yaml b/actions/waf-regional_delete_xss_match_set.yaml index 5178dfc8..c12c516d 100644 --- a/actions/waf-regional_delete_xss_match_set.yaml +++ b/actions/waf-regional_delete_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_delete_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_xss_match_set immutable: true diff --git a/actions/waf-regional_disassociate_web_acl.yaml b/actions/waf-regional_disassociate_web_acl.yaml index 0b119b0b..8d761668 100644 --- a/actions/waf-regional_disassociate_web_acl.yaml +++ b/actions/waf-regional_disassociate_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_disassociate_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: disassociate_web_acl immutable: true diff --git a/actions/waf-regional_get_byte_match_set.yaml b/actions/waf-regional_get_byte_match_set.yaml index 11aa6ec2..17ca1ee4 100644 --- a/actions/waf-regional_get_byte_match_set.yaml +++ b/actions/waf-regional_get_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_byte_match_set immutable: true diff --git a/actions/waf-regional_get_change_token.yaml b/actions/waf-regional_get_change_token.yaml index f4a202d3..ac86e1d7 100644 --- a/actions/waf-regional_get_change_token.yaml +++ b/actions/waf-regional_get_change_token.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_change_token runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_change_token immutable: true diff --git a/actions/waf-regional_get_change_token_status.yaml b/actions/waf-regional_get_change_token_status.yaml index 271093eb..05ebde57 100644 --- a/actions/waf-regional_get_change_token_status.yaml +++ b/actions/waf-regional_get_change_token_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_change_token_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_change_token_status immutable: true diff --git a/actions/waf-regional_get_ip_set.yaml b/actions/waf-regional_get_ip_set.yaml index a15039f0..873a82eb 100644 --- a/actions/waf-regional_get_ip_set.yaml +++ b/actions/waf-regional_get_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_ip_set immutable: true diff --git a/actions/waf-regional_get_rate_based_rule.yaml b/actions/waf-regional_get_rate_based_rule.yaml index 65668b03..ed69081a 100644 --- a/actions/waf-regional_get_rate_based_rule.yaml +++ b/actions/waf-regional_get_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rate_based_rule immutable: true diff --git a/actions/waf-regional_get_rate_based_rule_managed_keys.yaml b/actions/waf-regional_get_rate_based_rule_managed_keys.yaml index eb23a931..5b705f1e 100644 --- a/actions/waf-regional_get_rate_based_rule_managed_keys.yaml +++ b/actions/waf-regional_get_rate_based_rule_managed_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_rate_based_rule_managed_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rate_based_rule_managed_keys immutable: true diff --git a/actions/waf-regional_get_rule.yaml b/actions/waf-regional_get_rule.yaml index 8870a92d..a276108b 100644 --- a/actions/waf-regional_get_rule.yaml +++ b/actions/waf-regional_get_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rule immutable: true diff --git a/actions/waf-regional_get_sampled_requests.yaml b/actions/waf-regional_get_sampled_requests.yaml index 20dedc84..08908108 100644 --- a/actions/waf-regional_get_sampled_requests.yaml +++ b/actions/waf-regional_get_sampled_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_sampled_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sampled_requests immutable: true diff --git a/actions/waf-regional_get_size_constraint_set.yaml b/actions/waf-regional_get_size_constraint_set.yaml index 967bc3d0..d710f9e7 100644 --- a/actions/waf-regional_get_size_constraint_set.yaml +++ b/actions/waf-regional_get_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_size_constraint_set immutable: true diff --git a/actions/waf-regional_get_sql_injection_match_set.yaml b/actions/waf-regional_get_sql_injection_match_set.yaml index 03d17e7c..29358650 100644 --- a/actions/waf-regional_get_sql_injection_match_set.yaml +++ b/actions/waf-regional_get_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sql_injection_match_set immutable: true diff --git a/actions/waf-regional_get_web_acl.yaml b/actions/waf-regional_get_web_acl.yaml index 3998fe1d..50d5db27 100644 --- a/actions/waf-regional_get_web_acl.yaml +++ b/actions/waf-regional_get_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_web_acl immutable: true diff --git a/actions/waf-regional_get_web_acl_for_resource.yaml b/actions/waf-regional_get_web_acl_for_resource.yaml index aa24dab9..8a60f46a 100644 --- a/actions/waf-regional_get_web_acl_for_resource.yaml +++ b/actions/waf-regional_get_web_acl_for_resource.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_web_acl_for_resource runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_web_acl_for_resource immutable: true diff --git a/actions/waf-regional_get_xss_match_set.yaml b/actions/waf-regional_get_xss_match_set.yaml index 1ba162a6..98e692b1 100644 --- a/actions/waf-regional_get_xss_match_set.yaml +++ b/actions/waf-regional_get_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_get_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_xss_match_set immutable: true diff --git a/actions/waf-regional_list_byte_match_sets.yaml b/actions/waf-regional_list_byte_match_sets.yaml index 4a7c7bba..db4a90d8 100644 --- a/actions/waf-regional_list_byte_match_sets.yaml +++ b/actions/waf-regional_list_byte_match_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_byte_match_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_byte_match_sets immutable: true diff --git a/actions/waf-regional_list_ip_sets.yaml b/actions/waf-regional_list_ip_sets.yaml index 04c2fe22..6972f7c1 100644 --- a/actions/waf-regional_list_ip_sets.yaml +++ b/actions/waf-regional_list_ip_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_ip_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_ip_sets immutable: true diff --git a/actions/waf-regional_list_rate_based_rules.yaml b/actions/waf-regional_list_rate_based_rules.yaml index 493611e1..f08dcee5 100644 --- a/actions/waf-regional_list_rate_based_rules.yaml +++ b/actions/waf-regional_list_rate_based_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_rate_based_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rate_based_rules immutable: true diff --git a/actions/waf-regional_list_resources_for_web_acl.yaml b/actions/waf-regional_list_resources_for_web_acl.yaml index d786ad16..0f76debd 100644 --- a/actions/waf-regional_list_resources_for_web_acl.yaml +++ b/actions/waf-regional_list_resources_for_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_resources_for_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_resources_for_web_acl immutable: true diff --git a/actions/waf-regional_list_rules.yaml b/actions/waf-regional_list_rules.yaml index 4d5da10e..a95d6b37 100644 --- a/actions/waf-regional_list_rules.yaml +++ b/actions/waf-regional_list_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rules immutable: true diff --git a/actions/waf-regional_list_size_constraint_sets.yaml b/actions/waf-regional_list_size_constraint_sets.yaml index 3f89b881..d04a89e6 100644 --- a/actions/waf-regional_list_size_constraint_sets.yaml +++ b/actions/waf-regional_list_size_constraint_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_size_constraint_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_size_constraint_sets immutable: true diff --git a/actions/waf-regional_list_sql_injection_match_sets.yaml b/actions/waf-regional_list_sql_injection_match_sets.yaml index c44d3b09..f7113f0e 100644 --- a/actions/waf-regional_list_sql_injection_match_sets.yaml +++ b/actions/waf-regional_list_sql_injection_match_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_sql_injection_match_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_sql_injection_match_sets immutable: true diff --git a/actions/waf-regional_list_web_ac_ls.yaml b/actions/waf-regional_list_web_ac_ls.yaml index f295e154..13d217bc 100644 --- a/actions/waf-regional_list_web_ac_ls.yaml +++ b/actions/waf-regional_list_web_ac_ls.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_web_ac_ls runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_web_ac_ls immutable: true diff --git a/actions/waf-regional_list_xss_match_sets.yaml b/actions/waf-regional_list_xss_match_sets.yaml index 35f0f806..28ac46c9 100644 --- a/actions/waf-regional_list_xss_match_sets.yaml +++ b/actions/waf-regional_list_xss_match_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_list_xss_match_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_xss_match_sets immutable: true diff --git a/actions/waf-regional_update_byte_match_set.yaml b/actions/waf-regional_update_byte_match_set.yaml index e980ff3d..dbac7378 100644 --- a/actions/waf-regional_update_byte_match_set.yaml +++ b/actions/waf-regional_update_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_byte_match_set immutable: true diff --git a/actions/waf-regional_update_ip_set.yaml b/actions/waf-regional_update_ip_set.yaml index 0bb7f535..24746ed3 100644 --- a/actions/waf-regional_update_ip_set.yaml +++ b/actions/waf-regional_update_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_ip_set immutable: true diff --git a/actions/waf-regional_update_rate_based_rule.yaml b/actions/waf-regional_update_rate_based_rule.yaml index ee03ab5d..a1eec2c7 100644 --- a/actions/waf-regional_update_rate_based_rule.yaml +++ b/actions/waf-regional_update_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_rate_based_rule immutable: true diff --git a/actions/waf-regional_update_rule.yaml b/actions/waf-regional_update_rule.yaml index 44d80147..1e95f164 100644 --- a/actions/waf-regional_update_rule.yaml +++ b/actions/waf-regional_update_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_rule immutable: true diff --git a/actions/waf-regional_update_size_constraint_set.yaml b/actions/waf-regional_update_size_constraint_set.yaml index 985fba50..e1ffd4a3 100644 --- a/actions/waf-regional_update_size_constraint_set.yaml +++ b/actions/waf-regional_update_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_size_constraint_set immutable: true diff --git a/actions/waf-regional_update_sql_injection_match_set.yaml b/actions/waf-regional_update_sql_injection_match_set.yaml index c4d49c62..3948e9d6 100644 --- a/actions/waf-regional_update_sql_injection_match_set.yaml +++ b/actions/waf-regional_update_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_sql_injection_match_set immutable: true diff --git a/actions/waf-regional_update_web_acl.yaml b/actions/waf-regional_update_web_acl.yaml index 8b8f36f1..2af05b1c 100644 --- a/actions/waf-regional_update_web_acl.yaml +++ b/actions/waf-regional_update_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_web_acl immutable: true diff --git a/actions/waf-regional_update_xss_match_set.yaml b/actions/waf-regional_update_xss_match_set.yaml index b0d743e7..b1931331 100644 --- a/actions/waf-regional_update_xss_match_set.yaml +++ b/actions/waf-regional_update_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf-regional_update_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_xss_match_set immutable: true diff --git a/actions/waf_create_byte_match_set.yaml b/actions/waf_create_byte_match_set.yaml index 9c7a6c25..302f3c74 100644 --- a/actions/waf_create_byte_match_set.yaml +++ b/actions/waf_create_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_byte_match_set immutable: true diff --git a/actions/waf_create_ip_set.yaml b/actions/waf_create_ip_set.yaml index 15ea0ccc..b98c4179 100644 --- a/actions/waf_create_ip_set.yaml +++ b/actions/waf_create_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_ip_set immutable: true diff --git a/actions/waf_create_rate_based_rule.yaml b/actions/waf_create_rate_based_rule.yaml index d6934333..d1cc26fd 100644 --- a/actions/waf_create_rate_based_rule.yaml +++ b/actions/waf_create_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_rate_based_rule immutable: true diff --git a/actions/waf_create_rule.yaml b/actions/waf_create_rule.yaml index 6422b08a..6e2e4585 100644 --- a/actions/waf_create_rule.yaml +++ b/actions/waf_create_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_rule immutable: true diff --git a/actions/waf_create_size_constraint_set.yaml b/actions/waf_create_size_constraint_set.yaml index e8fe1d21..f039f3b8 100644 --- a/actions/waf_create_size_constraint_set.yaml +++ b/actions/waf_create_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_size_constraint_set immutable: true diff --git a/actions/waf_create_sql_injection_match_set.yaml b/actions/waf_create_sql_injection_match_set.yaml index 53319765..7b935205 100644 --- a/actions/waf_create_sql_injection_match_set.yaml +++ b/actions/waf_create_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_sql_injection_match_set immutable: true diff --git a/actions/waf_create_web_acl.yaml b/actions/waf_create_web_acl.yaml index ffe27739..7c5e0d89 100644 --- a/actions/waf_create_web_acl.yaml +++ b/actions/waf_create_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_web_acl immutable: true diff --git a/actions/waf_create_xss_match_set.yaml b/actions/waf_create_xss_match_set.yaml index a73db54b..4e5cc7e6 100644 --- a/actions/waf_create_xss_match_set.yaml +++ b/actions/waf_create_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_create_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_xss_match_set immutable: true diff --git a/actions/waf_delete_byte_match_set.yaml b/actions/waf_delete_byte_match_set.yaml index 839b602c..c4554c92 100644 --- a/actions/waf_delete_byte_match_set.yaml +++ b/actions/waf_delete_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_byte_match_set immutable: true diff --git a/actions/waf_delete_ip_set.yaml b/actions/waf_delete_ip_set.yaml index 335ef16c..f099189c 100644 --- a/actions/waf_delete_ip_set.yaml +++ b/actions/waf_delete_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_ip_set immutable: true diff --git a/actions/waf_delete_rate_based_rule.yaml b/actions/waf_delete_rate_based_rule.yaml index ef1f2a6c..42a210b8 100644 --- a/actions/waf_delete_rate_based_rule.yaml +++ b/actions/waf_delete_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rate_based_rule immutable: true diff --git a/actions/waf_delete_rule.yaml b/actions/waf_delete_rule.yaml index fdbfc9fd..8a6d63cd 100644 --- a/actions/waf_delete_rule.yaml +++ b/actions/waf_delete_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_rule immutable: true diff --git a/actions/waf_delete_size_constraint_set.yaml b/actions/waf_delete_size_constraint_set.yaml index 9205233f..6e312dfc 100644 --- a/actions/waf_delete_size_constraint_set.yaml +++ b/actions/waf_delete_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_size_constraint_set immutable: true diff --git a/actions/waf_delete_sql_injection_match_set.yaml b/actions/waf_delete_sql_injection_match_set.yaml index 2ff10186..cb259895 100644 --- a/actions/waf_delete_sql_injection_match_set.yaml +++ b/actions/waf_delete_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_sql_injection_match_set immutable: true diff --git a/actions/waf_delete_web_acl.yaml b/actions/waf_delete_web_acl.yaml index f77bd79a..61d24994 100644 --- a/actions/waf_delete_web_acl.yaml +++ b/actions/waf_delete_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_web_acl immutable: true diff --git a/actions/waf_delete_xss_match_set.yaml b/actions/waf_delete_xss_match_set.yaml index 59a8b64d..445f1b69 100644 --- a/actions/waf_delete_xss_match_set.yaml +++ b/actions/waf_delete_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_delete_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_xss_match_set immutable: true diff --git a/actions/waf_get_byte_match_set.yaml b/actions/waf_get_byte_match_set.yaml index fc5e8eb2..a8971fb3 100644 --- a/actions/waf_get_byte_match_set.yaml +++ b/actions/waf_get_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_byte_match_set immutable: true diff --git a/actions/waf_get_change_token.yaml b/actions/waf_get_change_token.yaml index ca390aa1..77e71916 100644 --- a/actions/waf_get_change_token.yaml +++ b/actions/waf_get_change_token.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_change_token runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_change_token immutable: true diff --git a/actions/waf_get_change_token_status.yaml b/actions/waf_get_change_token_status.yaml index 31e840ec..73801eff 100644 --- a/actions/waf_get_change_token_status.yaml +++ b/actions/waf_get_change_token_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_change_token_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_change_token_status immutable: true diff --git a/actions/waf_get_ip_set.yaml b/actions/waf_get_ip_set.yaml index ebf324ec..039380c3 100644 --- a/actions/waf_get_ip_set.yaml +++ b/actions/waf_get_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_ip_set immutable: true diff --git a/actions/waf_get_rate_based_rule.yaml b/actions/waf_get_rate_based_rule.yaml index aef98fb7..63fc89c3 100644 --- a/actions/waf_get_rate_based_rule.yaml +++ b/actions/waf_get_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rate_based_rule immutable: true diff --git a/actions/waf_get_rate_based_rule_managed_keys.yaml b/actions/waf_get_rate_based_rule_managed_keys.yaml index 2f0756b4..005f6126 100644 --- a/actions/waf_get_rate_based_rule_managed_keys.yaml +++ b/actions/waf_get_rate_based_rule_managed_keys.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_rate_based_rule_managed_keys runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rate_based_rule_managed_keys immutable: true diff --git a/actions/waf_get_rule.yaml b/actions/waf_get_rule.yaml index 39ae15d6..4130b500 100644 --- a/actions/waf_get_rule.yaml +++ b/actions/waf_get_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_rule immutable: true diff --git a/actions/waf_get_sampled_requests.yaml b/actions/waf_get_sampled_requests.yaml index 227f108f..af60c59d 100644 --- a/actions/waf_get_sampled_requests.yaml +++ b/actions/waf_get_sampled_requests.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_sampled_requests runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sampled_requests immutable: true diff --git a/actions/waf_get_size_constraint_set.yaml b/actions/waf_get_size_constraint_set.yaml index cd448625..052cd3f4 100644 --- a/actions/waf_get_size_constraint_set.yaml +++ b/actions/waf_get_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_size_constraint_set immutable: true diff --git a/actions/waf_get_sql_injection_match_set.yaml b/actions/waf_get_sql_injection_match_set.yaml index ea55f686..57a31382 100644 --- a/actions/waf_get_sql_injection_match_set.yaml +++ b/actions/waf_get_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_sql_injection_match_set immutable: true diff --git a/actions/waf_get_web_acl.yaml b/actions/waf_get_web_acl.yaml index b4f584fa..fda0c5ab 100644 --- a/actions/waf_get_web_acl.yaml +++ b/actions/waf_get_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_web_acl immutable: true diff --git a/actions/waf_get_xss_match_set.yaml b/actions/waf_get_xss_match_set.yaml index 3bd0def3..edd3aa98 100644 --- a/actions/waf_get_xss_match_set.yaml +++ b/actions/waf_get_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_get_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_xss_match_set immutable: true diff --git a/actions/waf_list_byte_match_sets.yaml b/actions/waf_list_byte_match_sets.yaml index 1f43fef9..2b73c506 100644 --- a/actions/waf_list_byte_match_sets.yaml +++ b/actions/waf_list_byte_match_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_byte_match_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_byte_match_sets immutable: true diff --git a/actions/waf_list_ip_sets.yaml b/actions/waf_list_ip_sets.yaml index cf9d0051..62a0ff6d 100644 --- a/actions/waf_list_ip_sets.yaml +++ b/actions/waf_list_ip_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_ip_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_ip_sets immutable: true diff --git a/actions/waf_list_rate_based_rules.yaml b/actions/waf_list_rate_based_rules.yaml index 7fbfebe5..19047be0 100644 --- a/actions/waf_list_rate_based_rules.yaml +++ b/actions/waf_list_rate_based_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_rate_based_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rate_based_rules immutable: true diff --git a/actions/waf_list_rules.yaml b/actions/waf_list_rules.yaml index e81280a8..ffa2c467 100644 --- a/actions/waf_list_rules.yaml +++ b/actions/waf_list_rules.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_rules runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_rules immutable: true diff --git a/actions/waf_list_size_constraint_sets.yaml b/actions/waf_list_size_constraint_sets.yaml index 302abe5b..74dd311b 100644 --- a/actions/waf_list_size_constraint_sets.yaml +++ b/actions/waf_list_size_constraint_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_size_constraint_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_size_constraint_sets immutable: true diff --git a/actions/waf_list_sql_injection_match_sets.yaml b/actions/waf_list_sql_injection_match_sets.yaml index afd035a1..f3668830 100644 --- a/actions/waf_list_sql_injection_match_sets.yaml +++ b/actions/waf_list_sql_injection_match_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_sql_injection_match_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_sql_injection_match_sets immutable: true diff --git a/actions/waf_list_web_ac_ls.yaml b/actions/waf_list_web_ac_ls.yaml index c7078f38..fcd6f7fb 100644 --- a/actions/waf_list_web_ac_ls.yaml +++ b/actions/waf_list_web_ac_ls.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_web_ac_ls runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_web_ac_ls immutable: true diff --git a/actions/waf_list_xss_match_sets.yaml b/actions/waf_list_xss_match_sets.yaml index 9cbe03fe..1e503287 100644 --- a/actions/waf_list_xss_match_sets.yaml +++ b/actions/waf_list_xss_match_sets.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_list_xss_match_sets runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: list_xss_match_sets immutable: true diff --git a/actions/waf_update_byte_match_set.yaml b/actions/waf_update_byte_match_set.yaml index edea2c16..f530ac63 100644 --- a/actions/waf_update_byte_match_set.yaml +++ b/actions/waf_update_byte_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_byte_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_byte_match_set immutable: true diff --git a/actions/waf_update_ip_set.yaml b/actions/waf_update_ip_set.yaml index 7b947c18..0e3caa67 100644 --- a/actions/waf_update_ip_set.yaml +++ b/actions/waf_update_ip_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_ip_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_ip_set immutable: true diff --git a/actions/waf_update_rate_based_rule.yaml b/actions/waf_update_rate_based_rule.yaml index 6e3beb75..ea5442fb 100644 --- a/actions/waf_update_rate_based_rule.yaml +++ b/actions/waf_update_rate_based_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_rate_based_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_rate_based_rule immutable: true diff --git a/actions/waf_update_rule.yaml b/actions/waf_update_rule.yaml index a11e77fd..1774c56c 100644 --- a/actions/waf_update_rule.yaml +++ b/actions/waf_update_rule.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_rule runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_rule immutable: true diff --git a/actions/waf_update_size_constraint_set.yaml b/actions/waf_update_size_constraint_set.yaml index d076a111..7355a0aa 100644 --- a/actions/waf_update_size_constraint_set.yaml +++ b/actions/waf_update_size_constraint_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_size_constraint_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_size_constraint_set immutable: true diff --git a/actions/waf_update_sql_injection_match_set.yaml b/actions/waf_update_sql_injection_match_set.yaml index c5bb0ed3..9921c2fd 100644 --- a/actions/waf_update_sql_injection_match_set.yaml +++ b/actions/waf_update_sql_injection_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_sql_injection_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_sql_injection_match_set immutable: true diff --git a/actions/waf_update_web_acl.yaml b/actions/waf_update_web_acl.yaml index 2bc345ec..21a7c753 100644 --- a/actions/waf_update_web_acl.yaml +++ b/actions/waf_update_web_acl.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_web_acl runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_web_acl immutable: true diff --git a/actions/waf_update_xss_match_set.yaml b/actions/waf_update_xss_match_set.yaml index b9bfd241..debf5a49 100644 --- a/actions/waf_update_xss_match_set.yaml +++ b/actions/waf_update_xss_match_set.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: waf_update_xss_match_set runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_xss_match_set immutable: true diff --git a/actions/workdocs_abort_document_version_upload.yaml b/actions/workdocs_abort_document_version_upload.yaml index acf13481..f11175c8 100644 --- a/actions/workdocs_abort_document_version_upload.yaml +++ b/actions/workdocs_abort_document_version_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_abort_document_version_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: abort_document_version_upload immutable: true diff --git a/actions/workdocs_activate_user.yaml b/actions/workdocs_activate_user.yaml index 4b5f6305..e95b690f 100644 --- a/actions/workdocs_activate_user.yaml +++ b/actions/workdocs_activate_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_activate_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: activate_user immutable: true diff --git a/actions/workdocs_add_resource_permissions.yaml b/actions/workdocs_add_resource_permissions.yaml index e41c334b..454758ff 100644 --- a/actions/workdocs_add_resource_permissions.yaml +++ b/actions/workdocs_add_resource_permissions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_add_resource_permissions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: add_resource_permissions immutable: true diff --git a/actions/workdocs_create_comment.yaml b/actions/workdocs_create_comment.yaml index f5d7b463..e107e767 100644 --- a/actions/workdocs_create_comment.yaml +++ b/actions/workdocs_create_comment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_create_comment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_comment immutable: true diff --git a/actions/workdocs_create_custom_metadata.yaml b/actions/workdocs_create_custom_metadata.yaml index fc46ab04..16aa8aa0 100644 --- a/actions/workdocs_create_custom_metadata.yaml +++ b/actions/workdocs_create_custom_metadata.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_create_custom_metadata runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_custom_metadata immutable: true diff --git a/actions/workdocs_create_folder.yaml b/actions/workdocs_create_folder.yaml index 9800549d..04424430 100644 --- a/actions/workdocs_create_folder.yaml +++ b/actions/workdocs_create_folder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_create_folder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_folder immutable: true diff --git a/actions/workdocs_create_labels.yaml b/actions/workdocs_create_labels.yaml index 57f39bb7..fd2098e9 100644 --- a/actions/workdocs_create_labels.yaml +++ b/actions/workdocs_create_labels.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_create_labels runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_labels immutable: true diff --git a/actions/workdocs_create_notification_subscription.yaml b/actions/workdocs_create_notification_subscription.yaml index 2c93f865..c326f955 100644 --- a/actions/workdocs_create_notification_subscription.yaml +++ b/actions/workdocs_create_notification_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_create_notification_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_notification_subscription immutable: true diff --git a/actions/workdocs_create_user.yaml b/actions/workdocs_create_user.yaml index 5ed41551..0fa61c11 100644 --- a/actions/workdocs_create_user.yaml +++ b/actions/workdocs_create_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_create_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_user immutable: true diff --git a/actions/workdocs_deactivate_user.yaml b/actions/workdocs_deactivate_user.yaml index d0d9e76e..fde369a5 100644 --- a/actions/workdocs_deactivate_user.yaml +++ b/actions/workdocs_deactivate_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_deactivate_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: deactivate_user immutable: true diff --git a/actions/workdocs_delete_comment.yaml b/actions/workdocs_delete_comment.yaml index 0d7e8281..0fff3aff 100644 --- a/actions/workdocs_delete_comment.yaml +++ b/actions/workdocs_delete_comment.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_comment runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_comment immutable: true diff --git a/actions/workdocs_delete_custom_metadata.yaml b/actions/workdocs_delete_custom_metadata.yaml index 61570e37..a764af1b 100644 --- a/actions/workdocs_delete_custom_metadata.yaml +++ b/actions/workdocs_delete_custom_metadata.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_custom_metadata runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_custom_metadata immutable: true diff --git a/actions/workdocs_delete_document.yaml b/actions/workdocs_delete_document.yaml index c9c319c3..4f677d62 100644 --- a/actions/workdocs_delete_document.yaml +++ b/actions/workdocs_delete_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_document immutable: true diff --git a/actions/workdocs_delete_folder.yaml b/actions/workdocs_delete_folder.yaml index 748a9b03..78653e68 100644 --- a/actions/workdocs_delete_folder.yaml +++ b/actions/workdocs_delete_folder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_folder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_folder immutable: true diff --git a/actions/workdocs_delete_folder_contents.yaml b/actions/workdocs_delete_folder_contents.yaml index 3a8b2219..f37dbff4 100644 --- a/actions/workdocs_delete_folder_contents.yaml +++ b/actions/workdocs_delete_folder_contents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_folder_contents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_folder_contents immutable: true diff --git a/actions/workdocs_delete_labels.yaml b/actions/workdocs_delete_labels.yaml index afb4f58f..b8c90379 100644 --- a/actions/workdocs_delete_labels.yaml +++ b/actions/workdocs_delete_labels.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_labels runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_labels immutable: true diff --git a/actions/workdocs_delete_notification_subscription.yaml b/actions/workdocs_delete_notification_subscription.yaml index 7420b330..a0c9cc40 100644 --- a/actions/workdocs_delete_notification_subscription.yaml +++ b/actions/workdocs_delete_notification_subscription.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_notification_subscription runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_notification_subscription immutable: true diff --git a/actions/workdocs_delete_user.yaml b/actions/workdocs_delete_user.yaml index 674b1a3b..146af366 100644 --- a/actions/workdocs_delete_user.yaml +++ b/actions/workdocs_delete_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_delete_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_user immutable: true diff --git a/actions/workdocs_describe_activities.yaml b/actions/workdocs_describe_activities.yaml index 1025f7e4..de2978aa 100644 --- a/actions/workdocs_describe_activities.yaml +++ b/actions/workdocs_describe_activities.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_activities runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_activities immutable: true diff --git a/actions/workdocs_describe_comments.yaml b/actions/workdocs_describe_comments.yaml index 0b90b2db..b0b3b33a 100644 --- a/actions/workdocs_describe_comments.yaml +++ b/actions/workdocs_describe_comments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_comments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_comments immutable: true diff --git a/actions/workdocs_describe_document_versions.yaml b/actions/workdocs_describe_document_versions.yaml index 8c9feea3..bdc10aa6 100644 --- a/actions/workdocs_describe_document_versions.yaml +++ b/actions/workdocs_describe_document_versions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_document_versions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_document_versions immutable: true diff --git a/actions/workdocs_describe_folder_contents.yaml b/actions/workdocs_describe_folder_contents.yaml index 67f2220d..ee98dbe3 100644 --- a/actions/workdocs_describe_folder_contents.yaml +++ b/actions/workdocs_describe_folder_contents.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_folder_contents runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_folder_contents immutable: true diff --git a/actions/workdocs_describe_notification_subscriptions.yaml b/actions/workdocs_describe_notification_subscriptions.yaml index 7e67fdd9..68da4a9e 100644 --- a/actions/workdocs_describe_notification_subscriptions.yaml +++ b/actions/workdocs_describe_notification_subscriptions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_notification_subscriptions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_notification_subscriptions immutable: true diff --git a/actions/workdocs_describe_resource_permissions.yaml b/actions/workdocs_describe_resource_permissions.yaml index a4b52649..7e6d4d49 100644 --- a/actions/workdocs_describe_resource_permissions.yaml +++ b/actions/workdocs_describe_resource_permissions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_resource_permissions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_resource_permissions immutable: true diff --git a/actions/workdocs_describe_root_folders.yaml b/actions/workdocs_describe_root_folders.yaml index 8c3732f4..3fd2f443 100644 --- a/actions/workdocs_describe_root_folders.yaml +++ b/actions/workdocs_describe_root_folders.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_root_folders runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_root_folders immutable: true diff --git a/actions/workdocs_describe_users.yaml b/actions/workdocs_describe_users.yaml index f7d3ab0d..16634b20 100644 --- a/actions/workdocs_describe_users.yaml +++ b/actions/workdocs_describe_users.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_describe_users runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_users immutable: true diff --git a/actions/workdocs_get_current_user.yaml b/actions/workdocs_get_current_user.yaml index 1e188672..8898490c 100644 --- a/actions/workdocs_get_current_user.yaml +++ b/actions/workdocs_get_current_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_get_current_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_current_user immutable: true diff --git a/actions/workdocs_get_document.yaml b/actions/workdocs_get_document.yaml index c5819386..d37a3f64 100644 --- a/actions/workdocs_get_document.yaml +++ b/actions/workdocs_get_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_get_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_document immutable: true diff --git a/actions/workdocs_get_document_path.yaml b/actions/workdocs_get_document_path.yaml index 8a6b44b9..697f82f2 100644 --- a/actions/workdocs_get_document_path.yaml +++ b/actions/workdocs_get_document_path.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_get_document_path runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_document_path immutable: true diff --git a/actions/workdocs_get_document_version.yaml b/actions/workdocs_get_document_version.yaml index d8ceb2af..88d74714 100644 --- a/actions/workdocs_get_document_version.yaml +++ b/actions/workdocs_get_document_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_get_document_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_document_version immutable: true diff --git a/actions/workdocs_get_folder.yaml b/actions/workdocs_get_folder.yaml index bc5ff561..2a755617 100644 --- a/actions/workdocs_get_folder.yaml +++ b/actions/workdocs_get_folder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_get_folder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_folder immutable: true diff --git a/actions/workdocs_get_folder_path.yaml b/actions/workdocs_get_folder_path.yaml index cfb766d8..18f3b0bc 100644 --- a/actions/workdocs_get_folder_path.yaml +++ b/actions/workdocs_get_folder_path.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_get_folder_path runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_folder_path immutable: true diff --git a/actions/workdocs_initiate_document_version_upload.yaml b/actions/workdocs_initiate_document_version_upload.yaml index 9a380045..6eb829ea 100644 --- a/actions/workdocs_initiate_document_version_upload.yaml +++ b/actions/workdocs_initiate_document_version_upload.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_initiate_document_version_upload runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: initiate_document_version_upload immutable: true diff --git a/actions/workdocs_remove_all_resource_permissions.yaml b/actions/workdocs_remove_all_resource_permissions.yaml index 9e0453b3..d047cbf6 100644 --- a/actions/workdocs_remove_all_resource_permissions.yaml +++ b/actions/workdocs_remove_all_resource_permissions.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_remove_all_resource_permissions runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_all_resource_permissions immutable: true diff --git a/actions/workdocs_remove_resource_permission.yaml b/actions/workdocs_remove_resource_permission.yaml index a49c6e4d..fe25b958 100644 --- a/actions/workdocs_remove_resource_permission.yaml +++ b/actions/workdocs_remove_resource_permission.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_remove_resource_permission runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: remove_resource_permission immutable: true diff --git a/actions/workdocs_update_document.yaml b/actions/workdocs_update_document.yaml index d83be067..07b930ae 100644 --- a/actions/workdocs_update_document.yaml +++ b/actions/workdocs_update_document.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_update_document runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_document immutable: true diff --git a/actions/workdocs_update_document_version.yaml b/actions/workdocs_update_document_version.yaml index c8b24b93..5bbb938e 100644 --- a/actions/workdocs_update_document_version.yaml +++ b/actions/workdocs_update_document_version.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_update_document_version runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_document_version immutable: true diff --git a/actions/workdocs_update_folder.yaml b/actions/workdocs_update_folder.yaml index cec777b4..729114eb 100644 --- a/actions/workdocs_update_folder.yaml +++ b/actions/workdocs_update_folder.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_update_folder runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_folder immutable: true diff --git a/actions/workdocs_update_user.yaml b/actions/workdocs_update_user.yaml index 088d6833..24c92b23 100644 --- a/actions/workdocs_update_user.yaml +++ b/actions/workdocs_update_user.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workdocs_update_user runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: update_user immutable: true diff --git a/actions/workspaces_create_tags.yaml b/actions/workspaces_create_tags.yaml index 8f9f1321..3330da3a 100644 --- a/actions/workspaces_create_tags.yaml +++ b/actions/workspaces_create_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_create_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_tags immutable: true diff --git a/actions/workspaces_create_workspaces.yaml b/actions/workspaces_create_workspaces.yaml index 971b66dd..ee1ee136 100644 --- a/actions/workspaces_create_workspaces.yaml +++ b/actions/workspaces_create_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_create_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: create_workspaces immutable: true diff --git a/actions/workspaces_delete_tags.yaml b/actions/workspaces_delete_tags.yaml index 350ec190..8776b575 100644 --- a/actions/workspaces_delete_tags.yaml +++ b/actions/workspaces_delete_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_delete_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: delete_tags immutable: true diff --git a/actions/workspaces_describe_tags.yaml b/actions/workspaces_describe_tags.yaml index 63e636e3..4e90ea8d 100644 --- a/actions/workspaces_describe_tags.yaml +++ b/actions/workspaces_describe_tags.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_describe_tags runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_tags immutable: true diff --git a/actions/workspaces_describe_workspace_bundles.yaml b/actions/workspaces_describe_workspace_bundles.yaml index d34c80c5..8328232f 100644 --- a/actions/workspaces_describe_workspace_bundles.yaml +++ b/actions/workspaces_describe_workspace_bundles.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_describe_workspace_bundles runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_workspace_bundles immutable: true diff --git a/actions/workspaces_describe_workspace_directories.yaml b/actions/workspaces_describe_workspace_directories.yaml index 392928f3..0d13d16d 100644 --- a/actions/workspaces_describe_workspace_directories.yaml +++ b/actions/workspaces_describe_workspace_directories.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_describe_workspace_directories runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_workspace_directories immutable: true diff --git a/actions/workspaces_describe_workspaces.yaml b/actions/workspaces_describe_workspaces.yaml index 999ec519..1cefa2bf 100644 --- a/actions/workspaces_describe_workspaces.yaml +++ b/actions/workspaces_describe_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_describe_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_workspaces immutable: true diff --git a/actions/workspaces_describe_workspaces_connection_status.yaml b/actions/workspaces_describe_workspaces_connection_status.yaml index 929d7aad..5e0760ea 100644 --- a/actions/workspaces_describe_workspaces_connection_status.yaml +++ b/actions/workspaces_describe_workspaces_connection_status.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_describe_workspaces_connection_status runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: describe_workspaces_connection_status immutable: true diff --git a/actions/workspaces_modify_workspace_properties.yaml b/actions/workspaces_modify_workspace_properties.yaml index 947375b0..15888fc6 100644 --- a/actions/workspaces_modify_workspace_properties.yaml +++ b/actions/workspaces_modify_workspace_properties.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_modify_workspace_properties runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: modify_workspace_properties immutable: true diff --git a/actions/workspaces_reboot_workspaces.yaml b/actions/workspaces_reboot_workspaces.yaml index 4e0fb70b..c2cf2f8b 100644 --- a/actions/workspaces_reboot_workspaces.yaml +++ b/actions/workspaces_reboot_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_reboot_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: reboot_workspaces immutable: true diff --git a/actions/workspaces_rebuild_workspaces.yaml b/actions/workspaces_rebuild_workspaces.yaml index ae0a233a..8a1da7f2 100644 --- a/actions/workspaces_rebuild_workspaces.yaml +++ b/actions/workspaces_rebuild_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_rebuild_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: rebuild_workspaces immutable: true diff --git a/actions/workspaces_start_workspaces.yaml b/actions/workspaces_start_workspaces.yaml index 7c662649..f4d8b802 100644 --- a/actions/workspaces_start_workspaces.yaml +++ b/actions/workspaces_start_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_start_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: start_workspaces immutable: true diff --git a/actions/workspaces_stop_workspaces.yaml b/actions/workspaces_stop_workspaces.yaml index 892c6df1..92f1b2cc 100644 --- a/actions/workspaces_stop_workspaces.yaml +++ b/actions/workspaces_stop_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_stop_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: stop_workspaces immutable: true diff --git a/actions/workspaces_terminate_workspaces.yaml b/actions/workspaces_terminate_workspaces.yaml index 524bc679..d7de85ca 100644 --- a/actions/workspaces_terminate_workspaces.yaml +++ b/actions/workspaces_terminate_workspaces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: workspaces_terminate_workspaces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: terminate_workspaces immutable: true diff --git a/actions/xray_batch_get_traces.yaml b/actions/xray_batch_get_traces.yaml index 1a9b6837..f552f4a1 100644 --- a/actions/xray_batch_get_traces.yaml +++ b/actions/xray_batch_get_traces.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: xray_batch_get_traces runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: batch_get_traces immutable: true diff --git a/actions/xray_get_service_graph.yaml b/actions/xray_get_service_graph.yaml index 9a1e7744..32de37de 100644 --- a/actions/xray_get_service_graph.yaml +++ b/actions/xray_get_service_graph.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: xray_get_service_graph runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_service_graph immutable: true diff --git a/actions/xray_get_trace_graph.yaml b/actions/xray_get_trace_graph.yaml index ed8de692..66c32862 100644 --- a/actions/xray_get_trace_graph.yaml +++ b/actions/xray_get_trace_graph.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: xray_get_trace_graph runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_trace_graph immutable: true diff --git a/actions/xray_get_trace_summaries.yaml b/actions/xray_get_trace_summaries.yaml index c943f8da..2fde1167 100644 --- a/actions/xray_get_trace_summaries.yaml +++ b/actions/xray_get_trace_summaries.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: xray_get_trace_summaries runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: get_trace_summaries immutable: true diff --git a/actions/xray_put_telemetry_records.yaml b/actions/xray_put_telemetry_records.yaml index d0f8d59a..ca32cea2 100644 --- a/actions/xray_put_telemetry_records.yaml +++ b/actions/xray_put_telemetry_records.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: xray_put_telemetry_records runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_telemetry_records immutable: true diff --git a/actions/xray_put_trace_segments.yaml b/actions/xray_put_trace_segments.yaml index d34f2165..54299420 100644 --- a/actions/xray_put_trace_segments.yaml +++ b/actions/xray_put_trace_segments.yaml @@ -6,6 +6,10 @@ entry_point: run.py name: xray_put_trace_segments runner_type: python-script parameters: + account_id: + type: string + region: + type: string action: default: put_trace_segments immutable: true diff --git a/aws.yaml.example b/aws.yaml.example index 406b45cf..90599249 100755 --- a/aws.yaml.example +++ b/aws.yaml.example @@ -10,6 +10,12 @@ service_notifications_sensor: port: 12345 path: /my-path +actions: + roles: + - arn:aws:iam::123456789098:role/roleA + - arn:aws:iam::901234567812:role/roleB + - arn:aws:iam::567890123489:role/roleC + sqs_sensor: roles: - arn:aws:iam::123456789098:role/rolename1 diff --git a/config.schema.yaml b/config.schema.yaml index e6ed811e..0e1c4404 100755 --- a/config.schema.yaml +++ b/config.schema.yaml @@ -23,6 +23,14 @@ type: "boolean" description: "Set to True to log every boto method / function invocation" default: false + actions: + type: object + properties: + roles: + type: "array" + description: "ARNs of the roles which allow effecting actions on resources on that account" + items: + type: "string" service_notifications_sensor: type: object properties: diff --git a/pack.yaml b/pack.yaml index 329e6a22..edb1b755 100755 --- a/pack.yaml +++ b/pack.yaml @@ -19,7 +19,7 @@ keywords: - SQS - lambda - kinesis -version : 1.3.0 +version : 1.3.1 author : StackStorm, Inc. email : info@stackstorm.com python_versions: diff --git a/tests/aws_base_action_test_case.py b/tests/aws_base_action_test_case.py index 6cc4c53d..12e54fa5 100644 --- a/tests/aws_base_action_test_case.py +++ b/tests/aws_base_action_test_case.py @@ -12,18 +12,43 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and +import mock import yaml from st2tests.base import BaseActionTestCase +from botocore.exceptions import ClientError class AWSBaseActionTestCase(BaseActionTestCase): __test__ = False + class MockStsClient(object): + def __init__(self): + self.meta = mock.Mock(service_model={}) + + def get_caller_identity(self): + ci = mock.Mock() + ci.get = lambda attribute: '111222333444' if attribute == 'Account' else None + return ci + + def assume_role(self, RoleArn, RoleSessionName): + return { + 'Credentials': { + 'AccessKeyId': 'access_key_id_example', + 'SecretAccessKey': 'secret_access_key_example', + 'SessionToken': 'session_token_example' + } + } + + class MockStsClientRaiseClientError(MockStsClient): + def assume_role(self, RoleArn, RoleSessionName): + raise ClientError({'Error': {'Code': 'AccessDenied'}}, 'sqs_test') + def setUp(self): super(AWSBaseActionTestCase, self).setUp() self._full_config = self.load_yaml('full.yaml') + self._multiaccount_config = self.load_yaml('multiaccount.yaml') def load_yaml(self, filename): return yaml.safe_load(self.get_fixture_content(filename)) @@ -31,3 +56,7 @@ def load_yaml(self, filename): @property def full_config(self): return self._full_config + + @property + def multiaccount_config(self): + return self._multiaccount_config diff --git a/tests/fixtures/multiaccount.yaml b/tests/fixtures/multiaccount.yaml index 08b0de25..88d6f8a0 100644 --- a/tests/fixtures/multiaccount.yaml +++ b/tests/fixtures/multiaccount.yaml @@ -9,6 +9,10 @@ service_notifications_sensor: port: 12345 path: "/my-path" +actions: + roles: + - "arn:aws:iam::345678901223:role/rolename2" + sqs_sensor: roles: - "arn:aws:iam::345678901223:role/rolename1" diff --git a/tests/test_action_cloudformation.py b/tests/test_action_cloudformation.py index ea3dc81f..6fa341db 100644 --- a/tests/test_action_cloudformation.py +++ b/tests/test_action_cloudformation.py @@ -1,9 +1,11 @@ import mock from run import ActionManager +from boto3.session import Session from aws_base_action_test_case import AWSBaseActionTestCase from boto.cloudformation.connection import CloudFormationConnection +from botocore.exceptions import ClientError class CloudFormationTestCase(AWSBaseActionTestCase): @@ -17,11 +19,48 @@ def setUp(self): 'cls': 'CloudFormationConnection', } + @mock.patch.object(Session, 'client', + mock.Mock(return_value=AWSBaseActionTestCase.MockStsClient())) @mock.patch.object(CloudFormationConnection, 'get_path', mock.Mock(return_value='hoge')) - def test_connection(self): + def _connection(self, config, additional_params): self._params['action'] = 'get_path' + self._params.update(additional_params) - action = self.get_action_instance(self.full_config) + action = self.get_action_instance(config) result = action.run(**self._params) self.assertEqual(result, ['hoge']) + + def test_connection_full_config(self): + self._connection(self.full_config, {}) + + def test_connection_multiaccount_config(self): + params = { + 'account_id': '345678901223', + 'region': 'us-east-1' + } + self._connection(self.multiaccount_config, params) + + @mock.patch.object(Session, 'client', mock.Mock( + return_value=AWSBaseActionTestCase.MockStsClientRaiseClientError())) + @mock.patch.object(CloudFormationConnection, 'get_path', mock.Mock(return_value='hoge')) + def test_fails_assuming_role(self): + self._params.update({ + 'action': 'get_path', + 'account_id': '345678901223', + 'region': 'us-east-1' + }) + action = self.get_action_instance(self.multiaccount_config) + self.assertRaises(ClientError, lambda: action.run(**self._params)) + + @mock.patch.object(Session, 'client', + mock.Mock(return_value=AWSBaseActionTestCase.MockStsClient())) + @mock.patch.object(CloudFormationConnection, 'get_path', mock.Mock(return_value='hoge')) + def test_fails_with_missing_arn_multiaccount_config(self): + self._params.update({ + 'action': 'get_path', + 'account_id': '345678901223', + 'region': 'us-east-1' + }) + action = self.get_action_instance(self.full_config) + self.assertRaises(KeyError, lambda: action.run(**self._params)) diff --git a/tests/test_action_get_bucket.py b/tests/test_action_get_bucket.py index 840e7412..83d93257 100644 --- a/tests/test_action_get_bucket.py +++ b/tests/test_action_get_bucket.py @@ -18,6 +18,7 @@ from boto.s3.connection import S3Connection from boto.s3.bucket import Bucket +from boto3.session import Session from run import ActionManager from datetime import datetime @@ -50,28 +51,54 @@ def setUp(self): 'cls': 'S3Connection', } + @mock.patch.object(Session, 'client', + mock.Mock(return_value=AWSBaseActionTestCase.MockStsClient())) @mock.patch.object(S3Connection, 'get_all_buckets', mock.MagicMock(return_value=_MOCK_BUCKETS)) - def test_get_all_buckets(self): + def _get_all_buckets(self, config, additional_params): self._params['action'] = 'get_all_buckets' + self._params.update(additional_params) - action = self.get_action_instance(self.full_config) + action = self.get_action_instance(config) result = action.run(**self._params) self.assertIsNotNone(result) self.assertTrue(isinstance(result, list)) self.assertEqual(len(result), len(self._MOCK_BUCKETS)) + def test_get_all_buckets_full_config(self): + self._get_all_buckets(self.full_config, {}) + + def test_get_all_buckets_multiaccount_config(self): + params = { + 'account_id': '345678901223', + 'region': 'us-east-1' + } + self._get_all_buckets(self.multiaccount_config, params) + + @mock.patch.object(Session, 'client', + mock.Mock(return_value=AWSBaseActionTestCase.MockStsClient())) @mock.patch.object(S3Connection, 'get_bucket', mock.MagicMock(return_value=MockBucket(False, name='foo'))) - def test_get_bucket(self): + def _get_bucket(self, config, additional_params): self._params['action'] = 'get_bucket' self._params['validate'] = True + self._params.update(additional_params) - action = self.get_action_instance(self.full_config) + action = self.get_action_instance(config) result = action.run(**self._params) self.assertIsNotNone(result) self.assertEqual(len(result), 1) self.assertTrue(isinstance(result[0], dict)) self.assertEqual(result[0]['name'], 'foo') + + def test_get_bucket_full_config(self): + self._get_bucket(self.full_config, {}) + + def test_get_bucket_multiaccount_config(self): + params = { + 'account_id': '345678901223', + 'region': 'us-east-1' + } + self._get_bucket(self.multiaccount_config, params) diff --git a/tests/test_action_vpc_get_all_subnets.py b/tests/test_action_vpc_get_all_subnets.py index 825c8828..470238bf 100644 --- a/tests/test_action_vpc_get_all_subnets.py +++ b/tests/test_action_vpc_get_all_subnets.py @@ -1,5 +1,6 @@ import mock +from boto3.session import Session from boto.connection import AWSQueryConnection from run import ActionManager @@ -36,6 +37,7 @@ MOCK_RESPONSE.read = mock.Mock(return_value=DUMMY_RAW_RESPONSE) +@mock.patch.object(Session, 'client', mock.Mock(return_value=AWSBaseActionTestCase.MockStsClient())) @mock.patch.object(AWSQueryConnection, 'make_request', mock.Mock(return_value=MOCK_RESPONSE)) class VPCGetAllSubnetsTestCase(AWSBaseActionTestCase): __test__ = True @@ -49,16 +51,38 @@ def setUp(self): 'action': 'get_all_subnets', } - def test_get_subnets(self): - action = self.get_action_instance(self.full_config) + def _get_subnets(self, config, additional_params): + self._params.update(additional_params) + action = self.get_action_instance(config) result = action.run(**self._params) self.assertTrue(isinstance(result, list)) self.assertEqual(len(result), 3) - def test_get_subnets_with_filter(self): + def test_get_subnets_full_config(self): + self._get_subnets(self.full_config, {}) + + def test_get_subnets_multiaccount_config(self): + params = { + 'account_id': '345678901223', + 'region': 'us-east-1' + } + self._get_subnets(self.multiaccount_config, params) + + def _get_subnets_with_filter(self, config, additional_params): self._params['filters'] = {'hoge': 'fuga'} - action = self.get_action_instance(self.full_config) + self._params.update(additional_params) + action = self.get_action_instance(config) result = action.run(**self._params) self.assertTrue(isinstance(result, list)) + + def test_get_subnets_with_filter_full_config(self): + self._get_subnets_with_filter(self.full_config, {}) + + def test_get_subnets_with_filter_multiaccount_config(self): + params = { + 'account_id': '345678901223', + 'region': 'us-east-1' + } + self._get_subnets_with_filter(self.multiaccount_config, params)