@pulumi/datadog 4.48.0-alpha.1743572300 → 4.48.0
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/apmRetentionFilter.d.ts +3 -3
- package/appBuilderApp.d.ts +123 -0
- package/appBuilderApp.js +71 -0
- package/appBuilderApp.js.map +1 -0
- package/azure/integration.d.ts +2 -0
- package/azure/integration.js +2 -0
- package/azure/integration.js.map +1 -1
- package/getAppBuilderApp.d.ts +84 -0
- package/getAppBuilderApp.js +50 -0
- package/getAppBuilderApp.js.map +1 -0
- package/getRumRetentionFilters.d.ts +67 -0
- package/getRumRetentionFilters.js +50 -0
- package/getRumRetentionFilters.js.map +1 -0
- package/getSoftwareCatalog.d.ts +135 -0
- package/getSoftwareCatalog.js +60 -0
- package/getSoftwareCatalog.js.map +1 -0
- package/getSyntheticsLocations.d.ts +1 -1
- package/index.d.ts +18 -0
- package/index.js +28 -4
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/rumRetentionFilter.d.ts +134 -0
- package/rumRetentionFilter.js +97 -0
- package/rumRetentionFilter.js.map +1 -0
- package/rumRetentionFiltersOrder.d.ts +69 -0
- package/rumRetentionFiltersOrder.js +66 -0
- package/rumRetentionFiltersOrder.js.map +1 -0
- package/softwareCatalog.d.ts +3 -3
- package/syntheticsConcurrencyCap.d.ts +3 -3
- package/syntheticsGlobalVariable.d.ts +3 -3
- package/syntheticsTest.d.ts +55 -4
- package/syntheticsTest.js +55 -4
- package/syntheticsTest.js.map +1 -1
- package/types/input.d.ts +24 -17
- package/types/output.d.ts +41 -17
- package/workflowAutomation.d.ts +6 -6
package/types/output.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export interface ActionConnectionAws {
|
|
|
7
7
|
}
|
|
8
8
|
export interface ActionConnectionAwsAssumeRole {
|
|
9
9
|
/**
|
|
10
|
-
* AWS account that the connection is created for
|
|
10
|
+
* AWS account that the connection is created for. String length must be at least 1.
|
|
11
11
|
*/
|
|
12
12
|
accountId?: string;
|
|
13
13
|
/**
|
|
@@ -19,13 +19,13 @@ export interface ActionConnectionAwsAssumeRole {
|
|
|
19
19
|
*/
|
|
20
20
|
principalId: string;
|
|
21
21
|
/**
|
|
22
|
-
* Role to assume
|
|
22
|
+
* Role to assume. String length must be at least 1.
|
|
23
23
|
*/
|
|
24
24
|
role?: string;
|
|
25
25
|
}
|
|
26
26
|
export interface ActionConnectionHttp {
|
|
27
27
|
/**
|
|
28
|
-
* Base HTTP url for the integration
|
|
28
|
+
* Base HTTP url for the integration. String length must be at least 1.
|
|
29
29
|
*/
|
|
30
30
|
baseUrl?: string;
|
|
31
31
|
/**
|
|
@@ -53,42 +53,45 @@ export interface ActionConnectionHttpTokenAuth {
|
|
|
53
53
|
}
|
|
54
54
|
export interface ActionConnectionHttpTokenAuthBody {
|
|
55
55
|
/**
|
|
56
|
-
* Serialized body content
|
|
56
|
+
* Serialized body content. String length must be at least 1.
|
|
57
57
|
*/
|
|
58
58
|
content?: string;
|
|
59
59
|
/**
|
|
60
|
-
* Content type of the body
|
|
60
|
+
* Content type of the body. String length must be at least 1.
|
|
61
61
|
*/
|
|
62
62
|
contentType?: string;
|
|
63
63
|
}
|
|
64
64
|
export interface ActionConnectionHttpTokenAuthHeader {
|
|
65
65
|
/**
|
|
66
|
-
* Header name
|
|
66
|
+
* Header name. String length must be at least 1.
|
|
67
67
|
*/
|
|
68
68
|
name?: string;
|
|
69
|
+
/**
|
|
70
|
+
* String length must be at least 1.
|
|
71
|
+
*/
|
|
69
72
|
value?: string;
|
|
70
73
|
}
|
|
71
74
|
export interface ActionConnectionHttpTokenAuthToken {
|
|
72
75
|
/**
|
|
73
|
-
* Token name
|
|
76
|
+
* Token name. String length must be at least 1.
|
|
74
77
|
*/
|
|
75
78
|
name?: string;
|
|
76
79
|
/**
|
|
77
|
-
* Token type
|
|
80
|
+
* Token type Valid values are `SECRET`.
|
|
78
81
|
*/
|
|
79
82
|
type?: string;
|
|
80
83
|
/**
|
|
81
|
-
* Token value
|
|
84
|
+
* Token value. String length must be at least 1.
|
|
82
85
|
*/
|
|
83
86
|
value?: string;
|
|
84
87
|
}
|
|
85
88
|
export interface ActionConnectionHttpTokenAuthUrlParameter {
|
|
86
89
|
/**
|
|
87
|
-
* URL parameter name
|
|
90
|
+
* URL parameter name. String length must be at least 1.
|
|
88
91
|
*/
|
|
89
92
|
name?: string;
|
|
90
93
|
/**
|
|
91
|
-
* URL parameter value
|
|
94
|
+
* URL parameter value. String length must be at least 1.
|
|
92
95
|
*/
|
|
93
96
|
value?: string;
|
|
94
97
|
}
|
|
@@ -9221,6 +9224,14 @@ export interface GetRolesRole {
|
|
|
9221
9224
|
*/
|
|
9222
9225
|
userCount: number;
|
|
9223
9226
|
}
|
|
9227
|
+
export interface GetRumRetentionFiltersRetentionFilter {
|
|
9228
|
+
enabled: boolean;
|
|
9229
|
+
eventType: string;
|
|
9230
|
+
id: string;
|
|
9231
|
+
name: string;
|
|
9232
|
+
query: string;
|
|
9233
|
+
sampleRate: number;
|
|
9234
|
+
}
|
|
9224
9235
|
export interface GetSecurityMonitoringFiltersFilter {
|
|
9225
9236
|
/**
|
|
9226
9237
|
* Exclusion filters to exclude some logs from the security filter.
|
|
@@ -9598,6 +9609,15 @@ export interface GetServiceLevelObjectivesSlo {
|
|
|
9598
9609
|
*/
|
|
9599
9610
|
type: string;
|
|
9600
9611
|
}
|
|
9612
|
+
export interface GetSoftwareCatalogEntity {
|
|
9613
|
+
displayName: string;
|
|
9614
|
+
id: string;
|
|
9615
|
+
kind: string;
|
|
9616
|
+
name: string;
|
|
9617
|
+
namespace: string;
|
|
9618
|
+
owner: string;
|
|
9619
|
+
tags: string[];
|
|
9620
|
+
}
|
|
9601
9621
|
export interface GetTeamMembershipsTeamMembership {
|
|
9602
9622
|
id: string;
|
|
9603
9623
|
role: string;
|
|
@@ -9651,7 +9671,7 @@ export interface GetUsersUser {
|
|
|
9651
9671
|
}
|
|
9652
9672
|
export interface IpAllowlistEntry {
|
|
9653
9673
|
/**
|
|
9654
|
-
* IP address or range of addresses.
|
|
9674
|
+
* IP address or range of addresses. String must be a valid CIDR block or IP address.
|
|
9655
9675
|
*/
|
|
9656
9676
|
cidrBlock: string;
|
|
9657
9677
|
/**
|
|
@@ -9724,6 +9744,10 @@ export interface LogsArchiveS3Archive {
|
|
|
9724
9744
|
* Your AWS role name
|
|
9725
9745
|
*/
|
|
9726
9746
|
roleName: string;
|
|
9747
|
+
/**
|
|
9748
|
+
* The AWS S3 storage class used to upload the logs. Valid values are `STANDARD`, `STANDARD_IA`, `ONEZONE_IA`, `INTELLIGENT_TIERING`, `GLACIER_IR`. Defaults to `"STANDARD"`.
|
|
9749
|
+
*/
|
|
9750
|
+
storageClass?: string;
|
|
9727
9751
|
}
|
|
9728
9752
|
export interface LogsCustomDestinationElasticsearchDestination {
|
|
9729
9753
|
/**
|
|
@@ -23115,11 +23139,11 @@ export interface SyntheticsGlobalVariableOptions {
|
|
|
23115
23139
|
}
|
|
23116
23140
|
export interface SyntheticsGlobalVariableOptionsTotpParameters {
|
|
23117
23141
|
/**
|
|
23118
|
-
* Number of digits for the OTP.
|
|
23142
|
+
* Number of digits for the OTP. Value must be between 4 and 10.
|
|
23119
23143
|
*/
|
|
23120
23144
|
digits: number;
|
|
23121
23145
|
/**
|
|
23122
|
-
* Interval for which to refresh the token (in seconds).
|
|
23146
|
+
* Interval for which to refresh the token (in seconds). Value must be between 0 and 999.
|
|
23123
23147
|
*/
|
|
23124
23148
|
refreshInterval: number;
|
|
23125
23149
|
}
|
|
@@ -23569,7 +23593,7 @@ export interface SyntheticsTestApiStepRequestProxy {
|
|
|
23569
23593
|
}
|
|
23570
23594
|
export interface SyntheticsTestApiStepRetry {
|
|
23571
23595
|
/**
|
|
23572
|
-
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `
|
|
23596
|
+
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `3` for `api` tests, `2` for `browser` and `mobile` tests. Defaults to `0`.
|
|
23573
23597
|
*/
|
|
23574
23598
|
count?: number;
|
|
23575
23599
|
/**
|
|
@@ -23942,7 +23966,7 @@ export interface SyntheticsTestMobileOptionsListMonitorOptions {
|
|
|
23942
23966
|
}
|
|
23943
23967
|
export interface SyntheticsTestMobileOptionsListRetry {
|
|
23944
23968
|
/**
|
|
23945
|
-
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `
|
|
23969
|
+
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `3` for `api` tests, `2` for `browser` and `mobile` tests. Defaults to `0`.
|
|
23946
23970
|
*/
|
|
23947
23971
|
count?: number;
|
|
23948
23972
|
/**
|
|
@@ -24195,7 +24219,7 @@ export interface SyntheticsTestOptionsListMonitorOptions {
|
|
|
24195
24219
|
}
|
|
24196
24220
|
export interface SyntheticsTestOptionsListRetry {
|
|
24197
24221
|
/**
|
|
24198
|
-
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `
|
|
24222
|
+
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `3` for `api` tests, `2` for `browser` and `mobile` tests. Defaults to `0`.
|
|
24199
24223
|
*/
|
|
24200
24224
|
count?: number;
|
|
24201
24225
|
/**
|
package/workflowAutomation.d.ts
CHANGED
|
@@ -78,7 +78,7 @@ export declare class WorkflowAutomation extends pulumi.CustomResource {
|
|
|
78
78
|
*/
|
|
79
79
|
readonly description: pulumi.Output<string>;
|
|
80
80
|
/**
|
|
81
|
-
* Name of the workflow.
|
|
81
|
+
* Name of the workflow. String length must be at least 1.
|
|
82
82
|
*/
|
|
83
83
|
readonly name: pulumi.Output<string>;
|
|
84
84
|
/**
|
|
@@ -94,7 +94,7 @@ export declare class WorkflowAutomation extends pulumi.CustomResource {
|
|
|
94
94
|
*/
|
|
95
95
|
readonly tags: pulumi.Output<string[]>;
|
|
96
96
|
/**
|
|
97
|
-
* If a webhook trigger is defined on this workflow, a webhookSecret is required and should be provided here.
|
|
97
|
+
* If a webhook trigger is defined on this workflow, a webhookSecret is required and should be provided here. String length must be at least 16.
|
|
98
98
|
*/
|
|
99
99
|
readonly webhookSecret: pulumi.Output<string | undefined>;
|
|
100
100
|
/**
|
|
@@ -115,7 +115,7 @@ export interface WorkflowAutomationState {
|
|
|
115
115
|
*/
|
|
116
116
|
description?: pulumi.Input<string>;
|
|
117
117
|
/**
|
|
118
|
-
* Name of the workflow.
|
|
118
|
+
* Name of the workflow. String length must be at least 1.
|
|
119
119
|
*/
|
|
120
120
|
name?: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
@@ -131,7 +131,7 @@ export interface WorkflowAutomationState {
|
|
|
131
131
|
*/
|
|
132
132
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133
133
|
/**
|
|
134
|
-
* If a webhook trigger is defined on this workflow, a webhookSecret is required and should be provided here.
|
|
134
|
+
* If a webhook trigger is defined on this workflow, a webhookSecret is required and should be provided here. String length must be at least 16.
|
|
135
135
|
*/
|
|
136
136
|
webhookSecret?: pulumi.Input<string>;
|
|
137
137
|
}
|
|
@@ -144,7 +144,7 @@ export interface WorkflowAutomationArgs {
|
|
|
144
144
|
*/
|
|
145
145
|
description: pulumi.Input<string>;
|
|
146
146
|
/**
|
|
147
|
-
* Name of the workflow.
|
|
147
|
+
* Name of the workflow. String length must be at least 1.
|
|
148
148
|
*/
|
|
149
149
|
name: pulumi.Input<string>;
|
|
150
150
|
/**
|
|
@@ -160,7 +160,7 @@ export interface WorkflowAutomationArgs {
|
|
|
160
160
|
*/
|
|
161
161
|
tags: pulumi.Input<pulumi.Input<string>[]>;
|
|
162
162
|
/**
|
|
163
|
-
* If a webhook trigger is defined on this workflow, a webhookSecret is required and should be provided here.
|
|
163
|
+
* If a webhook trigger is defined on this workflow, a webhookSecret is required and should be provided here. String length must be at least 16.
|
|
164
164
|
*/
|
|
165
165
|
webhookSecret?: pulumi.Input<string>;
|
|
166
166
|
}
|