├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yml └── workflows │ ├── changelog.yaml │ ├── labeler.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── LICENSE-3rdparty.csv ├── NOTICE ├── README.md ├── RELEASING.md ├── SUPPORT.md ├── datadog-cloudformation-common-python ├── CHANGELOG.md ├── README.md ├── setup.cfg ├── setup.py └── src │ └── datadog_cloudformation_common │ ├── __init__.py │ ├── api_clients.py │ ├── utils.py │ └── version.py ├── datadog-dashboards-dashboard-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-dashboards-dashboard-configuration.json ├── datadog-dashboards-dashboard.json ├── docs │ └── README.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ └── inputs_1_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_dashboards_dashboard │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-iam-user-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-iam-user.json ├── docs │ ├── README.md │ └── datadogcredentials.md ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_iam_user │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-integrations-aws-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-integrations-aws-configuration.json ├── datadog-integrations-aws.json ├── docs │ ├── README.md │ └── accountspecificnamespacerules.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ └── inputs_1_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_integrations_aws │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-integrations-awsaccount-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-integrations-awsaccount-configuration.json ├── datadog-integrations-awsaccount.json ├── docs │ ├── README.md │ ├── authconfig.md │ ├── awsregions.md │ ├── logsconfig.md │ ├── metricsconfig.md │ ├── resourcesconfig.md │ └── tracesconfig.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ └── inputs_1_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_integrations_awsaccount │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-monitors-downtime-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-monitors-downtime-configuration.json ├── datadog-monitors-downtime.json ├── docs │ └── README.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ └── inputs_1_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_monitors_downtime │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-monitors-downtimeschedule-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-monitors-downtimeschedule-configuration.json ├── datadog-monitors-downtimeschedule.json ├── docs │ ├── README.md │ ├── monitoridentifier.md │ └── schedule.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ └── inputs_1_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_monitors_downtimeschedule │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-monitors-monitor-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-monitors-monitor-configuration.json ├── datadog-monitors-monitor.json ├── docs │ ├── README.md │ ├── cloudformationoptions.md │ ├── creator.md │ ├── monitorformulaandfunctioneventquerydefinition.md │ ├── monitorformulaandfunctioneventquerygroupby.md │ ├── monitoroptions.md │ ├── monitorschedulingoptions.md │ ├── monitorschedulingoptionsevaluationwindow.md │ ├── monitorthresholds.md │ └── monitorthresholdwindows.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ ├── inputs_1_update.json │ ├── inputs_2_create.json │ ├── inputs_2_invalid.json │ ├── inputs_2_update.json │ ├── inputs_3_create.json │ ├── inputs_3_invalid.json │ └── inputs_3_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_monitors_monitor │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── datadog-slos-slo-handler ├── .rpdk-config ├── CHANGELOG.md ├── README.md ├── datadog-slos-slo-configuration.json ├── datadog-slos-slo.json ├── docs │ ├── README.md │ ├── creator.md │ ├── query.md │ └── threshold.md ├── inputs │ ├── inputs_1_create.json │ ├── inputs_1_invalid.json │ └── inputs_1_update.json ├── requirements.txt ├── resource-role.yaml ├── src │ └── datadog_slos_slo │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── version.py └── template.yml ├── publish └── publish-requirements.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/workflows/changelog.yaml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-3rdparty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/LICENSE-3rdparty.csv -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/README.md -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/setup.cfg -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/setup.py -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/src/datadog_cloudformation_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/src/datadog_cloudformation_common/api_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/src/datadog_cloudformation_common/api_clients.py -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/src/datadog_cloudformation_common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/src/datadog_cloudformation_common/utils.py -------------------------------------------------------------------------------- /datadog-cloudformation-common-python/src/datadog_cloudformation_common/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-cloudformation-common-python/src/datadog_cloudformation_common/version.py -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/README.md -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/datadog-dashboards-dashboard-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/datadog-dashboards-dashboard-configuration.json -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/datadog-dashboards-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/datadog-dashboards-dashboard.json -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/src/datadog_dashboards_dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/src/datadog_dashboards_dashboard/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/src/datadog_dashboards_dashboard/handlers.py -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/src/datadog_dashboards_dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/src/datadog_dashboards_dashboard/models.py -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/src/datadog_dashboards_dashboard/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1.0" 2 | -------------------------------------------------------------------------------- /datadog-dashboards-dashboard-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-dashboards-dashboard-handler/template.yml -------------------------------------------------------------------------------- /datadog-iam-user-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-iam-user-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-iam-user-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/README.md -------------------------------------------------------------------------------- /datadog-iam-user-handler/datadog-iam-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/datadog-iam-user.json -------------------------------------------------------------------------------- /datadog-iam-user-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-iam-user-handler/docs/datadogcredentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/docs/datadogcredentials.md -------------------------------------------------------------------------------- /datadog-iam-user-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-iam-user-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-iam-user-handler/src/datadog_iam_user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-iam-user-handler/src/datadog_iam_user/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/src/datadog_iam_user/handlers.py -------------------------------------------------------------------------------- /datadog-iam-user-handler/src/datadog_iam_user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/src/datadog_iam_user/models.py -------------------------------------------------------------------------------- /datadog-iam-user-handler/src/datadog_iam_user/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.3.0" 2 | -------------------------------------------------------------------------------- /datadog-iam-user-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-iam-user-handler/template.yml -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/README.md -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/datadog-integrations-aws-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/datadog-integrations-aws-configuration.json -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/datadog-integrations-aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/datadog-integrations-aws.json -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/docs/accountspecificnamespacerules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/docs/accountspecificnamespacerules.md -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/src/datadog_integrations_aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/src/datadog_integrations_aws/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/src/datadog_integrations_aws/handlers.py -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/src/datadog_integrations_aws/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/src/datadog_integrations_aws/models.py -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/src/datadog_integrations_aws/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.4.0" 2 | -------------------------------------------------------------------------------- /datadog-integrations-aws-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-aws-handler/template.yml -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/README.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/datadog-integrations-awsaccount-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/datadog-integrations-awsaccount-configuration.json -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/datadog-integrations-awsaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/datadog-integrations-awsaccount.json -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/authconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/authconfig.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/awsregions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/awsregions.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/logsconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/logsconfig.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/metricsconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/metricsconfig.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/resourcesconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/resourcesconfig.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/docs/tracesconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/docs/tracesconfig.md -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/src/datadog_integrations_awsaccount/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/src/datadog_integrations_awsaccount/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/src/datadog_integrations_awsaccount/handlers.py -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/src/datadog_integrations_awsaccount/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/src/datadog_integrations_awsaccount/models.py -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/src/datadog_integrations_awsaccount/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0" 2 | -------------------------------------------------------------------------------- /datadog-integrations-awsaccount-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-integrations-awsaccount-handler/template.yml -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/README.md -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/datadog-monitors-downtime-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/datadog-monitors-downtime-configuration.json -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/datadog-monitors-downtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/datadog-monitors-downtime.json -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/src/datadog_monitors_downtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/src/datadog_monitors_downtime/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/src/datadog_monitors_downtime/handlers.py -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/src/datadog_monitors_downtime/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/src/datadog_monitors_downtime/models.py -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/src/datadog_monitors_downtime/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.1.0" 2 | -------------------------------------------------------------------------------- /datadog-monitors-downtime-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtime-handler/template.yml -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/README.md -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/datadog-monitors-downtimeschedule-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/datadog-monitors-downtimeschedule-configuration.json -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/datadog-monitors-downtimeschedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/datadog-monitors-downtimeschedule.json -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/docs/monitoridentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/docs/monitoridentifier.md -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/docs/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/docs/schedule.md -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/src/datadog_monitors_downtimeschedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/src/datadog_monitors_downtimeschedule/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/src/datadog_monitors_downtimeschedule/handlers.py -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/src/datadog_monitors_downtimeschedule/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/src/datadog_monitors_downtimeschedule/models.py -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/src/datadog_monitors_downtimeschedule/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0" 2 | -------------------------------------------------------------------------------- /datadog-monitors-downtimeschedule-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-downtimeschedule-handler/template.yml -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/README.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/datadog-monitors-monitor-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/datadog-monitors-monitor-configuration.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/datadog-monitors-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/datadog-monitors-monitor.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/cloudformationoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/cloudformationoptions.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/creator.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitorformulaandfunctioneventquerydefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitorformulaandfunctioneventquerydefinition.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitorformulaandfunctioneventquerygroupby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitorformulaandfunctioneventquerygroupby.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitoroptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitoroptions.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitorschedulingoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitorschedulingoptions.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitorschedulingoptionsevaluationwindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitorschedulingoptionsevaluationwindow.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitorthresholds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitorthresholds.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/docs/monitorthresholdwindows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/docs/monitorthresholdwindows.md -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_2_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_2_create.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_2_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_2_invalid.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_2_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_2_update.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_3_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_3_create.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_3_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_3_invalid.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/inputs/inputs_3_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/inputs/inputs_3_update.json -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/src/datadog_monitors_monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/src/datadog_monitors_monitor/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/src/datadog_monitors_monitor/handlers.py -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/src/datadog_monitors_monitor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/src/datadog_monitors_monitor/models.py -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/src/datadog_monitors_monitor/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.8.0" 2 | -------------------------------------------------------------------------------- /datadog-monitors-monitor-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-monitors-monitor-handler/template.yml -------------------------------------------------------------------------------- /datadog-slos-slo-handler/.rpdk-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/.rpdk-config -------------------------------------------------------------------------------- /datadog-slos-slo-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/CHANGELOG.md -------------------------------------------------------------------------------- /datadog-slos-slo-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/README.md -------------------------------------------------------------------------------- /datadog-slos-slo-handler/datadog-slos-slo-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/datadog-slos-slo-configuration.json -------------------------------------------------------------------------------- /datadog-slos-slo-handler/datadog-slos-slo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/datadog-slos-slo.json -------------------------------------------------------------------------------- /datadog-slos-slo-handler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/docs/README.md -------------------------------------------------------------------------------- /datadog-slos-slo-handler/docs/creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/docs/creator.md -------------------------------------------------------------------------------- /datadog-slos-slo-handler/docs/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/docs/query.md -------------------------------------------------------------------------------- /datadog-slos-slo-handler/docs/threshold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/docs/threshold.md -------------------------------------------------------------------------------- /datadog-slos-slo-handler/inputs/inputs_1_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/inputs/inputs_1_create.json -------------------------------------------------------------------------------- /datadog-slos-slo-handler/inputs/inputs_1_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/inputs/inputs_1_invalid.json -------------------------------------------------------------------------------- /datadog-slos-slo-handler/inputs/inputs_1_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/inputs/inputs_1_update.json -------------------------------------------------------------------------------- /datadog-slos-slo-handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/requirements.txt -------------------------------------------------------------------------------- /datadog-slos-slo-handler/resource-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/resource-role.yaml -------------------------------------------------------------------------------- /datadog-slos-slo-handler/src/datadog_slos_slo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datadog-slos-slo-handler/src/datadog_slos_slo/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/src/datadog_slos_slo/handlers.py -------------------------------------------------------------------------------- /datadog-slos-slo-handler/src/datadog_slos_slo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/src/datadog_slos_slo/models.py -------------------------------------------------------------------------------- /datadog-slos-slo-handler/src/datadog_slos_slo/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.0" 2 | -------------------------------------------------------------------------------- /datadog-slos-slo-handler/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/datadog-slos-slo-handler/template.yml -------------------------------------------------------------------------------- /publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/datadog-cloudformation-resources/HEAD/publish -------------------------------------------------------------------------------- /publish-requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.17.105 2 | cloudformation-cli==0.2.13 --------------------------------------------------------------------------------