@pulumi/datadog 5.1.0 → 5.2.0-alpha.1775837976
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.
package/openapiApi.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
10
10
|
* import * as std from "@pulumi/std";
|
|
11
11
|
*
|
|
12
12
|
* // Uploads an OpenAPI file from the given local path to Datadog's API catalog
|
|
13
|
-
* const my_api = new datadog.OpenapiApi("my-api", {spec: std.
|
|
13
|
+
* const my_api = new datadog.OpenapiApi("my-api", {spec: std.file({
|
|
14
14
|
* input: "./path/my-api.yaml",
|
|
15
15
|
* }).result});
|
|
16
16
|
* ```
|
package/openapiApi.js
CHANGED
|
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
16
16
|
* import * as std from "@pulumi/std";
|
|
17
17
|
*
|
|
18
18
|
* // Uploads an OpenAPI file from the given local path to Datadog's API catalog
|
|
19
|
-
* const my_api = new datadog.OpenapiApi("my-api", {spec: std.
|
|
19
|
+
* const my_api = new datadog.OpenapiApi("my-api", {spec: std.file({
|
|
20
20
|
* input: "./path/my-api.yaml",
|
|
21
21
|
* }).result});
|
|
22
22
|
* ```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/datadog",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0-alpha.1775837976",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Datadog resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "datadog",
|
|
25
|
-
"version": "5.
|
|
25
|
+
"version": "5.2.0-alpha.1775837976"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -31,14 +31,14 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
31
31
|
* // Please note that the IDs of all default retention filters have the prefix 'default', and you need to populate the retention_filter_ids field with all retention filter IDs.
|
|
32
32
|
* const myRumRetentionFiltersOrder = new datadog.RumRetentionFiltersOrder("my_rum_retention_filters_order", {
|
|
33
33
|
* applicationId: datadogRumApplication.myRumApplication.id,
|
|
34
|
-
* retentionFilterIds: std.
|
|
34
|
+
* retentionFilterIds: std.concat({
|
|
35
35
|
* input: [
|
|
36
|
-
* myRetentionFilters.then(myRetentionFilters => .filter(rf => std.
|
|
36
|
+
* myRetentionFilters.then(myRetentionFilters => .filter(rf => std.startswith({
|
|
37
37
|
* input: rf.id,
|
|
38
38
|
* prefix: "default",
|
|
39
39
|
* }).result).map(rf => (rf.id))),
|
|
40
40
|
* [newRumRetentionFilter.id],
|
|
41
|
-
* pulumi.all([myRetentionFilters, newRumRetentionFilter.id]).apply(([myRetentionFilters, id]) => .filter(rf => !std.
|
|
41
|
+
* pulumi.all([myRetentionFilters, newRumRetentionFilter.id]).apply(([myRetentionFilters, id]) => .filter(rf => !std.startswith({
|
|
42
42
|
* input: rf.id,
|
|
43
43
|
* prefix: "default",
|
|
44
44
|
* }).result && rf.id != id).map(rf => (rf.id))),
|
|
@@ -37,14 +37,14 @@ const utilities = require("./utilities");
|
|
|
37
37
|
* // Please note that the IDs of all default retention filters have the prefix 'default', and you need to populate the retention_filter_ids field with all retention filter IDs.
|
|
38
38
|
* const myRumRetentionFiltersOrder = new datadog.RumRetentionFiltersOrder("my_rum_retention_filters_order", {
|
|
39
39
|
* applicationId: datadogRumApplication.myRumApplication.id,
|
|
40
|
-
* retentionFilterIds: std.
|
|
40
|
+
* retentionFilterIds: std.concat({
|
|
41
41
|
* input: [
|
|
42
|
-
* myRetentionFilters.then(myRetentionFilters => .filter(rf => std.
|
|
42
|
+
* myRetentionFilters.then(myRetentionFilters => .filter(rf => std.startswith({
|
|
43
43
|
* input: rf.id,
|
|
44
44
|
* prefix: "default",
|
|
45
45
|
* }).result).map(rf => (rf.id))),
|
|
46
46
|
* [newRumRetentionFilter.id],
|
|
47
|
-
* pulumi.all([myRetentionFilters, newRumRetentionFilter.id]).apply(([myRetentionFilters, id]) => .filter(rf => !std.
|
|
47
|
+
* pulumi.all([myRetentionFilters, newRumRetentionFilter.id]).apply(([myRetentionFilters, id]) => .filter(rf => !std.startswith({
|
|
48
48
|
* input: rf.id,
|
|
49
49
|
* prefix: "default",
|
|
50
50
|
* }).result && rf.id != id).map(rf => (rf.id))),
|
|
@@ -39,8 +39,8 @@ import * as outputs from "./types/output";
|
|
|
39
39
|
* securityPolicy: "v3.1",
|
|
40
40
|
* };
|
|
41
41
|
* // Auto-generate version from keepers
|
|
42
|
-
* const secretVersion = `rotation-${std.
|
|
43
|
-
* input: std.
|
|
42
|
+
* const secretVersion = `rotation-${std.substr({
|
|
43
|
+
* input: std.md5({
|
|
44
44
|
* input: JSON.stringify(secretKeepers),
|
|
45
45
|
* }).result,
|
|
46
46
|
* length: 0,
|
|
@@ -43,8 +43,8 @@ const utilities = require("./utilities");
|
|
|
43
43
|
* securityPolicy: "v3.1",
|
|
44
44
|
* };
|
|
45
45
|
* // Auto-generate version from keepers
|
|
46
|
-
* const secretVersion = `rotation-${std.
|
|
47
|
-
* input: std.
|
|
46
|
+
* const secretVersion = `rotation-${std.substr({
|
|
47
|
+
* input: std.md5({
|
|
48
48
|
* input: JSON.stringify(secretKeepers),
|
|
49
49
|
* }).result,
|
|
50
50
|
* length: 0,
|