pulumi-datadog 4.63.0a1768973818__py3-none-any.whl → 4.64.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 +79 -0
- pulumi_datadog/_inputs.py +4490 -294
- pulumi_datadog/cloud_inventory_sync_config.py +389 -0
- pulumi_datadog/datastore.py +539 -0
- pulumi_datadog/datastore_item.py +332 -0
- pulumi_datadog/gcp/integration_sts.py +94 -0
- pulumi_datadog/get_datastore.py +220 -0
- pulumi_datadog/get_datastore_item.py +198 -0
- pulumi_datadog/get_organization_settings.py +138 -0
- pulumi_datadog/get_security_monitoring_critical_asset.py +168 -0
- pulumi_datadog/get_security_monitoring_critical_assets.py +107 -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 +3373 -356
- pulumi_datadog/powerpack.py +7 -7
- pulumi_datadog/pulumi-plugin.json +1 -1
- pulumi_datadog/rum_retention_filter.py +17 -17
- pulumi_datadog/security_monitoring_critical_asset.py +392 -0
- pulumi_datadog/synthetics_global_variable.py +112 -45
- pulumi_datadog/synthetics_suite.py +342 -0
- pulumi_datadog/team_notification_rule.py +418 -0
- {pulumi_datadog-4.63.0a1768973818.dist-info → pulumi_datadog-4.64.0.dist-info}/METADATA +1 -1
- {pulumi_datadog-4.63.0a1768973818.dist-info → pulumi_datadog-4.64.0.dist-info}/RECORD +29 -14
- {pulumi_datadog-4.63.0a1768973818.dist-info → pulumi_datadog-4.64.0.dist-info}/WHEEL +1 -1
- {pulumi_datadog-4.63.0a1768973818.dist-info → pulumi_datadog-4.64.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,8 @@ from .dashboard import *
|
|
|
34
35
|
from .dashboard_json import *
|
|
35
36
|
from .dashboard_list import *
|
|
36
37
|
from .dataset import *
|
|
38
|
+
from .datastore import *
|
|
39
|
+
from .datastore_item import *
|
|
37
40
|
from .deployment_gate import *
|
|
38
41
|
from .domain_allowlist import *
|
|
39
42
|
from .downtime import *
|
|
@@ -53,6 +56,8 @@ from .get_csm_threats_policies import *
|
|
|
53
56
|
from .get_custom_allocation_rule import *
|
|
54
57
|
from .get_dashboard import *
|
|
55
58
|
from .get_dashboard_list import *
|
|
59
|
+
from .get_datastore import *
|
|
60
|
+
from .get_datastore_item import *
|
|
56
61
|
from .get_gcp_uc_config import *
|
|
57
62
|
from .get_hosts import *
|
|
58
63
|
from .get_incident_notification_rule import *
|
|
@@ -71,6 +76,7 @@ from .get_metrics import *
|
|
|
71
76
|
from .get_monitor import *
|
|
72
77
|
from .get_monitor_config_policies import *
|
|
73
78
|
from .get_monitors import *
|
|
79
|
+
from .get_organization_settings import *
|
|
74
80
|
from .get_permissions import *
|
|
75
81
|
from .get_powerpack import *
|
|
76
82
|
from .get_reference_table import *
|
|
@@ -80,6 +86,8 @@ from .get_role_users import *
|
|
|
80
86
|
from .get_roles import *
|
|
81
87
|
from .get_rum_application import *
|
|
82
88
|
from .get_rum_retention_filters import *
|
|
89
|
+
from .get_security_monitoring_critical_asset import *
|
|
90
|
+
from .get_security_monitoring_critical_assets import *
|
|
83
91
|
from .get_security_monitoring_filters import *
|
|
84
92
|
from .get_security_monitoring_rules import *
|
|
85
93
|
from .get_security_monitoring_suppressions import *
|
|
@@ -96,6 +104,8 @@ from .get_tag_pipeline_ruleset import *
|
|
|
96
104
|
from .get_team import *
|
|
97
105
|
from .get_team_hierarchy_links import *
|
|
98
106
|
from .get_team_memberships import *
|
|
107
|
+
from .get_team_notification_rule import *
|
|
108
|
+
from .get_team_notification_rules import *
|
|
99
109
|
from .get_teams import *
|
|
100
110
|
from .get_user import *
|
|
101
111
|
from .get_users import *
|
|
@@ -124,6 +134,8 @@ from .observability_pipeline import *
|
|
|
124
134
|
from .on_call_escalation_policy import *
|
|
125
135
|
from .on_call_schedule import *
|
|
126
136
|
from .on_call_team_routing_rules import *
|
|
137
|
+
from .on_call_user_notification_channel import *
|
|
138
|
+
from .on_call_user_notification_rule import *
|
|
127
139
|
from .openapi_api import *
|
|
128
140
|
from .org_connection import *
|
|
129
141
|
from .organization_settings import *
|
|
@@ -136,6 +148,7 @@ from .rum_application import *
|
|
|
136
148
|
from .rum_metric import *
|
|
137
149
|
from .rum_retention_filter import *
|
|
138
150
|
from .rum_retention_filters_order import *
|
|
151
|
+
from .security_monitoring_critical_asset import *
|
|
139
152
|
from .security_monitoring_default_rule import *
|
|
140
153
|
from .security_monitoring_filter import *
|
|
141
154
|
from .security_monitoring_rule import *
|
|
@@ -155,6 +168,7 @@ from .spans_metric import *
|
|
|
155
168
|
from .synthetics_concurrency_cap import *
|
|
156
169
|
from .synthetics_global_variable import *
|
|
157
170
|
from .synthetics_private_location import *
|
|
171
|
+
from .synthetics_suite import *
|
|
158
172
|
from .synthetics_test import *
|
|
159
173
|
from .tag_pipeline_ruleset import *
|
|
160
174
|
from .tag_pipeline_rulesets import *
|
|
@@ -162,6 +176,7 @@ from .team import *
|
|
|
162
176
|
from .team_hierarchy_links import *
|
|
163
177
|
from .team_link import *
|
|
164
178
|
from .team_membership import *
|
|
179
|
+
from .team_notification_rule import *
|
|
165
180
|
from .team_permission_setting import *
|
|
166
181
|
from .user import *
|
|
167
182
|
from .user_role import *
|
|
@@ -459,6 +474,14 @@ _utilities.register(
|
|
|
459
474
|
"datadog:index/cloudConfigurationRule:CloudConfigurationRule": "CloudConfigurationRule"
|
|
460
475
|
}
|
|
461
476
|
},
|
|
477
|
+
{
|
|
478
|
+
"pkg": "datadog",
|
|
479
|
+
"mod": "index/cloudInventorySyncConfig",
|
|
480
|
+
"fqn": "pulumi_datadog",
|
|
481
|
+
"classes": {
|
|
482
|
+
"datadog:index/cloudInventorySyncConfig:CloudInventorySyncConfig": "CloudInventorySyncConfig"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
462
485
|
{
|
|
463
486
|
"pkg": "datadog",
|
|
464
487
|
"mod": "index/cloudWorkloadSecurityAgentRule",
|
|
@@ -555,6 +578,22 @@ _utilities.register(
|
|
|
555
578
|
"datadog:index/dataset:Dataset": "Dataset"
|
|
556
579
|
}
|
|
557
580
|
},
|
|
581
|
+
{
|
|
582
|
+
"pkg": "datadog",
|
|
583
|
+
"mod": "index/datastore",
|
|
584
|
+
"fqn": "pulumi_datadog",
|
|
585
|
+
"classes": {
|
|
586
|
+
"datadog:index/datastore:Datastore": "Datastore"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"pkg": "datadog",
|
|
591
|
+
"mod": "index/datastoreItem",
|
|
592
|
+
"fqn": "pulumi_datadog",
|
|
593
|
+
"classes": {
|
|
594
|
+
"datadog:index/datastoreItem:DatastoreItem": "DatastoreItem"
|
|
595
|
+
}
|
|
596
|
+
},
|
|
558
597
|
{
|
|
559
598
|
"pkg": "datadog",
|
|
560
599
|
"mod": "index/deploymentGate",
|
|
@@ -787,6 +826,22 @@ _utilities.register(
|
|
|
787
826
|
"datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules": "OnCallTeamRoutingRules"
|
|
788
827
|
}
|
|
789
828
|
},
|
|
829
|
+
{
|
|
830
|
+
"pkg": "datadog",
|
|
831
|
+
"mod": "index/onCallUserNotificationChannel",
|
|
832
|
+
"fqn": "pulumi_datadog",
|
|
833
|
+
"classes": {
|
|
834
|
+
"datadog:index/onCallUserNotificationChannel:OnCallUserNotificationChannel": "OnCallUserNotificationChannel"
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"pkg": "datadog",
|
|
839
|
+
"mod": "index/onCallUserNotificationRule",
|
|
840
|
+
"fqn": "pulumi_datadog",
|
|
841
|
+
"classes": {
|
|
842
|
+
"datadog:index/onCallUserNotificationRule:OnCallUserNotificationRule": "OnCallUserNotificationRule"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
790
845
|
{
|
|
791
846
|
"pkg": "datadog",
|
|
792
847
|
"mod": "index/openapiApi",
|
|
@@ -875,6 +930,14 @@ _utilities.register(
|
|
|
875
930
|
"datadog:index/rumRetentionFiltersOrder:RumRetentionFiltersOrder": "RumRetentionFiltersOrder"
|
|
876
931
|
}
|
|
877
932
|
},
|
|
933
|
+
{
|
|
934
|
+
"pkg": "datadog",
|
|
935
|
+
"mod": "index/securityMonitoringCriticalAsset",
|
|
936
|
+
"fqn": "pulumi_datadog",
|
|
937
|
+
"classes": {
|
|
938
|
+
"datadog:index/securityMonitoringCriticalAsset:SecurityMonitoringCriticalAsset": "SecurityMonitoringCriticalAsset"
|
|
939
|
+
}
|
|
940
|
+
},
|
|
878
941
|
{
|
|
879
942
|
"pkg": "datadog",
|
|
880
943
|
"mod": "index/securityMonitoringDefaultRule",
|
|
@@ -1027,6 +1090,14 @@ _utilities.register(
|
|
|
1027
1090
|
"datadog:index/syntheticsPrivateLocation:SyntheticsPrivateLocation": "SyntheticsPrivateLocation"
|
|
1028
1091
|
}
|
|
1029
1092
|
},
|
|
1093
|
+
{
|
|
1094
|
+
"pkg": "datadog",
|
|
1095
|
+
"mod": "index/syntheticsSuite",
|
|
1096
|
+
"fqn": "pulumi_datadog",
|
|
1097
|
+
"classes": {
|
|
1098
|
+
"datadog:index/syntheticsSuite:SyntheticsSuite": "SyntheticsSuite"
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1030
1101
|
{
|
|
1031
1102
|
"pkg": "datadog",
|
|
1032
1103
|
"mod": "index/syntheticsTest",
|
|
@@ -1083,6 +1154,14 @@ _utilities.register(
|
|
|
1083
1154
|
"datadog:index/teamMembership:TeamMembership": "TeamMembership"
|
|
1084
1155
|
}
|
|
1085
1156
|
},
|
|
1157
|
+
{
|
|
1158
|
+
"pkg": "datadog",
|
|
1159
|
+
"mod": "index/teamNotificationRule",
|
|
1160
|
+
"fqn": "pulumi_datadog",
|
|
1161
|
+
"classes": {
|
|
1162
|
+
"datadog:index/teamNotificationRule:TeamNotificationRule": "TeamNotificationRule"
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1086
1165
|
{
|
|
1087
1166
|
"pkg": "datadog",
|
|
1088
1167
|
"mod": "index/teamPermissionSetting",
|