pulumi-datadog 4.64.0a1769443125__py3-none-any.whl → 4.65.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 +40 -0
- pulumi_datadog/_inputs.py +779 -242
- pulumi_datadog/datastore.py +539 -0
- pulumi_datadog/datastore_item.py +332 -0
- pulumi_datadog/get_datastore.py +220 -0
- pulumi_datadog/get_datastore_item.py +198 -0
- pulumi_datadog/get_security_monitoring_critical_asset.py +168 -0
- pulumi_datadog/get_security_monitoring_critical_assets.py +107 -0
- pulumi_datadog/observability_pipeline.py +2 -2
- pulumi_datadog/outputs.py +659 -186
- 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/sensitive_data_scanner_rule.py +1 -1
- pulumi_datadog/synthetics_suite.py +342 -0
- {pulumi_datadog-4.64.0a1769443125.dist-info → pulumi_datadog-4.65.0.dist-info}/METADATA +1 -1
- {pulumi_datadog-4.64.0a1769443125.dist-info → pulumi_datadog-4.65.0.dist-info}/RECORD +19 -11
- {pulumi_datadog-4.64.0a1769443125.dist-info → pulumi_datadog-4.65.0.dist-info}/WHEEL +0 -0
- {pulumi_datadog-4.64.0a1769443125.dist-info → pulumi_datadog-4.65.0.dist-info}/top_level.txt +0 -0
pulumi_datadog/__init__.py
CHANGED
|
@@ -35,6 +35,8 @@ from .dashboard import *
|
|
|
35
35
|
from .dashboard_json import *
|
|
36
36
|
from .dashboard_list import *
|
|
37
37
|
from .dataset import *
|
|
38
|
+
from .datastore import *
|
|
39
|
+
from .datastore_item import *
|
|
38
40
|
from .deployment_gate import *
|
|
39
41
|
from .domain_allowlist import *
|
|
40
42
|
from .downtime import *
|
|
@@ -54,6 +56,8 @@ from .get_csm_threats_policies import *
|
|
|
54
56
|
from .get_custom_allocation_rule import *
|
|
55
57
|
from .get_dashboard import *
|
|
56
58
|
from .get_dashboard_list import *
|
|
59
|
+
from .get_datastore import *
|
|
60
|
+
from .get_datastore_item import *
|
|
57
61
|
from .get_gcp_uc_config import *
|
|
58
62
|
from .get_hosts import *
|
|
59
63
|
from .get_incident_notification_rule import *
|
|
@@ -82,6 +86,8 @@ from .get_role_users import *
|
|
|
82
86
|
from .get_roles import *
|
|
83
87
|
from .get_rum_application import *
|
|
84
88
|
from .get_rum_retention_filters import *
|
|
89
|
+
from .get_security_monitoring_critical_asset import *
|
|
90
|
+
from .get_security_monitoring_critical_assets import *
|
|
85
91
|
from .get_security_monitoring_filters import *
|
|
86
92
|
from .get_security_monitoring_rules import *
|
|
87
93
|
from .get_security_monitoring_suppressions import *
|
|
@@ -142,6 +148,7 @@ from .rum_application import *
|
|
|
142
148
|
from .rum_metric import *
|
|
143
149
|
from .rum_retention_filter import *
|
|
144
150
|
from .rum_retention_filters_order import *
|
|
151
|
+
from .security_monitoring_critical_asset import *
|
|
145
152
|
from .security_monitoring_default_rule import *
|
|
146
153
|
from .security_monitoring_filter import *
|
|
147
154
|
from .security_monitoring_rule import *
|
|
@@ -161,6 +168,7 @@ from .spans_metric import *
|
|
|
161
168
|
from .synthetics_concurrency_cap import *
|
|
162
169
|
from .synthetics_global_variable import *
|
|
163
170
|
from .synthetics_private_location import *
|
|
171
|
+
from .synthetics_suite import *
|
|
164
172
|
from .synthetics_test import *
|
|
165
173
|
from .tag_pipeline_ruleset import *
|
|
166
174
|
from .tag_pipeline_rulesets import *
|
|
@@ -570,6 +578,22 @@ _utilities.register(
|
|
|
570
578
|
"datadog:index/dataset:Dataset": "Dataset"
|
|
571
579
|
}
|
|
572
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
|
+
},
|
|
573
597
|
{
|
|
574
598
|
"pkg": "datadog",
|
|
575
599
|
"mod": "index/deploymentGate",
|
|
@@ -906,6 +930,14 @@ _utilities.register(
|
|
|
906
930
|
"datadog:index/rumRetentionFiltersOrder:RumRetentionFiltersOrder": "RumRetentionFiltersOrder"
|
|
907
931
|
}
|
|
908
932
|
},
|
|
933
|
+
{
|
|
934
|
+
"pkg": "datadog",
|
|
935
|
+
"mod": "index/securityMonitoringCriticalAsset",
|
|
936
|
+
"fqn": "pulumi_datadog",
|
|
937
|
+
"classes": {
|
|
938
|
+
"datadog:index/securityMonitoringCriticalAsset:SecurityMonitoringCriticalAsset": "SecurityMonitoringCriticalAsset"
|
|
939
|
+
}
|
|
940
|
+
},
|
|
909
941
|
{
|
|
910
942
|
"pkg": "datadog",
|
|
911
943
|
"mod": "index/securityMonitoringDefaultRule",
|
|
@@ -1058,6 +1090,14 @@ _utilities.register(
|
|
|
1058
1090
|
"datadog:index/syntheticsPrivateLocation:SyntheticsPrivateLocation": "SyntheticsPrivateLocation"
|
|
1059
1091
|
}
|
|
1060
1092
|
},
|
|
1093
|
+
{
|
|
1094
|
+
"pkg": "datadog",
|
|
1095
|
+
"mod": "index/syntheticsSuite",
|
|
1096
|
+
"fqn": "pulumi_datadog",
|
|
1097
|
+
"classes": {
|
|
1098
|
+
"datadog:index/syntheticsSuite:SyntheticsSuite": "SyntheticsSuite"
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1061
1101
|
{
|
|
1062
1102
|
"pkg": "datadog",
|
|
1063
1103
|
"mod": "index/syntheticsTest",
|