pulumi-datadog 4.62.0a1768603471__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 +39 -0
- pulumi_datadog/_inputs.py +3877 -198
- pulumi_datadog/cloud_inventory_sync_config.py +389 -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/metric_tag_configuration.py +18 -29
- pulumi_datadog/on_call_user_notification_channel.py +222 -0
- pulumi_datadog/on_call_user_notification_rule.py +332 -0
- pulumi_datadog/outputs.py +2718 -160
- 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.0a1768603471.dist-info → pulumi_datadog-4.63.0.dist-info}/METADATA +1 -1
- {pulumi_datadog-4.62.0a1768603471.dist-info → pulumi_datadog-4.63.0.dist-info}/RECORD +20 -13
- {pulumi_datadog-4.62.0a1768603471.dist-info → pulumi_datadog-4.63.0.dist-info}/WHEEL +1 -1
- {pulumi_datadog-4.62.0a1768603471.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 *
|
|
@@ -71,6 +72,7 @@ from .get_metrics import *
|
|
|
71
72
|
from .get_monitor import *
|
|
72
73
|
from .get_monitor_config_policies import *
|
|
73
74
|
from .get_monitors import *
|
|
75
|
+
from .get_organization_settings import *
|
|
74
76
|
from .get_permissions import *
|
|
75
77
|
from .get_powerpack import *
|
|
76
78
|
from .get_reference_table import *
|
|
@@ -96,6 +98,8 @@ from .get_tag_pipeline_ruleset import *
|
|
|
96
98
|
from .get_team import *
|
|
97
99
|
from .get_team_hierarchy_links import *
|
|
98
100
|
from .get_team_memberships import *
|
|
101
|
+
from .get_team_notification_rule import *
|
|
102
|
+
from .get_team_notification_rules import *
|
|
99
103
|
from .get_teams import *
|
|
100
104
|
from .get_user import *
|
|
101
105
|
from .get_users import *
|
|
@@ -124,6 +128,8 @@ from .observability_pipeline import *
|
|
|
124
128
|
from .on_call_escalation_policy import *
|
|
125
129
|
from .on_call_schedule import *
|
|
126
130
|
from .on_call_team_routing_rules import *
|
|
131
|
+
from .on_call_user_notification_channel import *
|
|
132
|
+
from .on_call_user_notification_rule import *
|
|
127
133
|
from .openapi_api import *
|
|
128
134
|
from .org_connection import *
|
|
129
135
|
from .organization_settings import *
|
|
@@ -162,6 +168,7 @@ from .team import *
|
|
|
162
168
|
from .team_hierarchy_links import *
|
|
163
169
|
from .team_link import *
|
|
164
170
|
from .team_membership import *
|
|
171
|
+
from .team_notification_rule import *
|
|
165
172
|
from .team_permission_setting import *
|
|
166
173
|
from .user import *
|
|
167
174
|
from .user_role import *
|
|
@@ -459,6 +466,14 @@ _utilities.register(
|
|
|
459
466
|
"datadog:index/cloudConfigurationRule:CloudConfigurationRule": "CloudConfigurationRule"
|
|
460
467
|
}
|
|
461
468
|
},
|
|
469
|
+
{
|
|
470
|
+
"pkg": "datadog",
|
|
471
|
+
"mod": "index/cloudInventorySyncConfig",
|
|
472
|
+
"fqn": "pulumi_datadog",
|
|
473
|
+
"classes": {
|
|
474
|
+
"datadog:index/cloudInventorySyncConfig:CloudInventorySyncConfig": "CloudInventorySyncConfig"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
462
477
|
{
|
|
463
478
|
"pkg": "datadog",
|
|
464
479
|
"mod": "index/cloudWorkloadSecurityAgentRule",
|
|
@@ -787,6 +802,22 @@ _utilities.register(
|
|
|
787
802
|
"datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules": "OnCallTeamRoutingRules"
|
|
788
803
|
}
|
|
789
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
|
+
},
|
|
790
821
|
{
|
|
791
822
|
"pkg": "datadog",
|
|
792
823
|
"mod": "index/openapiApi",
|
|
@@ -1083,6 +1114,14 @@ _utilities.register(
|
|
|
1083
1114
|
"datadog:index/teamMembership:TeamMembership": "TeamMembership"
|
|
1084
1115
|
}
|
|
1085
1116
|
},
|
|
1117
|
+
{
|
|
1118
|
+
"pkg": "datadog",
|
|
1119
|
+
"mod": "index/teamNotificationRule",
|
|
1120
|
+
"fqn": "pulumi_datadog",
|
|
1121
|
+
"classes": {
|
|
1122
|
+
"datadog:index/teamNotificationRule:TeamNotificationRule": "TeamNotificationRule"
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1086
1125
|
{
|
|
1087
1126
|
"pkg": "datadog",
|
|
1088
1127
|
"mod": "index/teamPermissionSetting",
|