pulumi-datadog 4.62.0a1768594023__py3-none-any.whl → 4.63.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_datadog/__init__.py +48 -0
- pulumi_datadog/_inputs.py +6565 -3926
- pulumi_datadog/cloud_inventory_sync_config.py +389 -0
- pulumi_datadog/csm_threats_agent_rule.py +50 -3
- pulumi_datadog/deployment_gate.py +483 -0
- pulumi_datadog/gcp/integration_sts.py +94 -0
- pulumi_datadog/get_organization_settings.py +138 -0
- pulumi_datadog/get_service_level_objective.py +15 -1
- pulumi_datadog/get_team_notification_rule.py +218 -0
- pulumi_datadog/get_team_notification_rules.py +136 -0
- pulumi_datadog/logs_index.py +4 -0
- pulumi_datadog/metric_tag_configuration.py +18 -29
- pulumi_datadog/observability_pipeline.py +14 -14
- pulumi_datadog/on_call_user_notification_channel.py +222 -0
- pulumi_datadog/on_call_user_notification_rule.py +332 -0
- pulumi_datadog/outputs.py +4672 -2494
- pulumi_datadog/powerpack.py +7 -7
- pulumi_datadog/pulumi-plugin.json +1 -1
- pulumi_datadog/synthetics_global_variable.py +112 -45
- pulumi_datadog/team_notification_rule.py +418 -0
- {pulumi_datadog-4.62.0a1768594023.dist-info → pulumi_datadog-4.63.0.dist-info}/METADATA +1 -1
- {pulumi_datadog-4.62.0a1768594023.dist-info → pulumi_datadog-4.63.0.dist-info}/RECORD +24 -16
- {pulumi_datadog-4.62.0a1768594023.dist-info → pulumi_datadog-4.63.0.dist-info}/WHEEL +1 -1
- {pulumi_datadog-4.62.0a1768594023.dist-info → pulumi_datadog-4.63.0.dist-info}/top_level.txt +0 -0
pulumi_datadog/__init__.py
CHANGED
|
@@ -22,6 +22,7 @@ from .aws_cur_config import *
|
|
|
22
22
|
from .azure_uc_config import *
|
|
23
23
|
from .child_organization import *
|
|
24
24
|
from .cloud_configuration_rule import *
|
|
25
|
+
from .cloud_inventory_sync_config import *
|
|
25
26
|
from .cloud_workload_security_agent_rule import *
|
|
26
27
|
from .compliance_custom_framework import *
|
|
27
28
|
from .compliance_resource_evaluation_filter import *
|
|
@@ -34,6 +35,7 @@ from .dashboard import *
|
|
|
34
35
|
from .dashboard_json import *
|
|
35
36
|
from .dashboard_list import *
|
|
36
37
|
from .dataset import *
|
|
38
|
+
from .deployment_gate import *
|
|
37
39
|
from .domain_allowlist import *
|
|
38
40
|
from .downtime import *
|
|
39
41
|
from .downtime_schedule import *
|
|
@@ -70,6 +72,7 @@ from .get_metrics import *
|
|
|
70
72
|
from .get_monitor import *
|
|
71
73
|
from .get_monitor_config_policies import *
|
|
72
74
|
from .get_monitors import *
|
|
75
|
+
from .get_organization_settings import *
|
|
73
76
|
from .get_permissions import *
|
|
74
77
|
from .get_powerpack import *
|
|
75
78
|
from .get_reference_table import *
|
|
@@ -95,6 +98,8 @@ from .get_tag_pipeline_ruleset import *
|
|
|
95
98
|
from .get_team import *
|
|
96
99
|
from .get_team_hierarchy_links import *
|
|
97
100
|
from .get_team_memberships import *
|
|
101
|
+
from .get_team_notification_rule import *
|
|
102
|
+
from .get_team_notification_rules import *
|
|
98
103
|
from .get_teams import *
|
|
99
104
|
from .get_user import *
|
|
100
105
|
from .get_users import *
|
|
@@ -123,6 +128,8 @@ from .observability_pipeline import *
|
|
|
123
128
|
from .on_call_escalation_policy import *
|
|
124
129
|
from .on_call_schedule import *
|
|
125
130
|
from .on_call_team_routing_rules import *
|
|
131
|
+
from .on_call_user_notification_channel import *
|
|
132
|
+
from .on_call_user_notification_rule import *
|
|
126
133
|
from .openapi_api import *
|
|
127
134
|
from .org_connection import *
|
|
128
135
|
from .organization_settings import *
|
|
@@ -161,6 +168,7 @@ from .team import *
|
|
|
161
168
|
from .team_hierarchy_links import *
|
|
162
169
|
from .team_link import *
|
|
163
170
|
from .team_membership import *
|
|
171
|
+
from .team_notification_rule import *
|
|
164
172
|
from .team_permission_setting import *
|
|
165
173
|
from .user import *
|
|
166
174
|
from .user_role import *
|
|
@@ -458,6 +466,14 @@ _utilities.register(
|
|
|
458
466
|
"datadog:index/cloudConfigurationRule:CloudConfigurationRule": "CloudConfigurationRule"
|
|
459
467
|
}
|
|
460
468
|
},
|
|
469
|
+
{
|
|
470
|
+
"pkg": "datadog",
|
|
471
|
+
"mod": "index/cloudInventorySyncConfig",
|
|
472
|
+
"fqn": "pulumi_datadog",
|
|
473
|
+
"classes": {
|
|
474
|
+
"datadog:index/cloudInventorySyncConfig:CloudInventorySyncConfig": "CloudInventorySyncConfig"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
461
477
|
{
|
|
462
478
|
"pkg": "datadog",
|
|
463
479
|
"mod": "index/cloudWorkloadSecurityAgentRule",
|
|
@@ -554,6 +570,14 @@ _utilities.register(
|
|
|
554
570
|
"datadog:index/dataset:Dataset": "Dataset"
|
|
555
571
|
}
|
|
556
572
|
},
|
|
573
|
+
{
|
|
574
|
+
"pkg": "datadog",
|
|
575
|
+
"mod": "index/deploymentGate",
|
|
576
|
+
"fqn": "pulumi_datadog",
|
|
577
|
+
"classes": {
|
|
578
|
+
"datadog:index/deploymentGate:DeploymentGate": "DeploymentGate"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
557
581
|
{
|
|
558
582
|
"pkg": "datadog",
|
|
559
583
|
"mod": "index/domainAllowlist",
|
|
@@ -778,6 +802,22 @@ _utilities.register(
|
|
|
778
802
|
"datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules": "OnCallTeamRoutingRules"
|
|
779
803
|
}
|
|
780
804
|
},
|
|
805
|
+
{
|
|
806
|
+
"pkg": "datadog",
|
|
807
|
+
"mod": "index/onCallUserNotificationChannel",
|
|
808
|
+
"fqn": "pulumi_datadog",
|
|
809
|
+
"classes": {
|
|
810
|
+
"datadog:index/onCallUserNotificationChannel:OnCallUserNotificationChannel": "OnCallUserNotificationChannel"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"pkg": "datadog",
|
|
815
|
+
"mod": "index/onCallUserNotificationRule",
|
|
816
|
+
"fqn": "pulumi_datadog",
|
|
817
|
+
"classes": {
|
|
818
|
+
"datadog:index/onCallUserNotificationRule:OnCallUserNotificationRule": "OnCallUserNotificationRule"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
781
821
|
{
|
|
782
822
|
"pkg": "datadog",
|
|
783
823
|
"mod": "index/openapiApi",
|
|
@@ -1074,6 +1114,14 @@ _utilities.register(
|
|
|
1074
1114
|
"datadog:index/teamMembership:TeamMembership": "TeamMembership"
|
|
1075
1115
|
}
|
|
1076
1116
|
},
|
|
1117
|
+
{
|
|
1118
|
+
"pkg": "datadog",
|
|
1119
|
+
"mod": "index/teamNotificationRule",
|
|
1120
|
+
"fqn": "pulumi_datadog",
|
|
1121
|
+
"classes": {
|
|
1122
|
+
"datadog:index/teamNotificationRule:TeamNotificationRule": "TeamNotificationRule"
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1077
1125
|
{
|
|
1078
1126
|
"pkg": "datadog",
|
|
1079
1127
|
"mod": "index/teamPermissionSetting",
|