@pulumi/datadog 4.46.0-alpha.1740720926 → 4.46.0-alpha.1740799517
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/actionConnection.d.ts +83 -0
- package/actionConnection.js +65 -0
- package/actionConnection.js.map +1 -0
- package/aws/integration.d.ts +2 -0
- package/aws/integration.js +2 -0
- package/aws/integration.js.map +1 -1
- package/aws/integrationLambdaArn.d.ts +2 -0
- package/aws/integrationLambdaArn.js +2 -0
- package/aws/integrationLambdaArn.js.map +1 -1
- package/aws/integrationLogCollection.d.ts +2 -0
- package/aws/integrationLogCollection.js +2 -0
- package/aws/integrationLogCollection.js.map +1 -1
- package/aws/integrationTagFilter.d.ts +2 -0
- package/aws/integrationTagFilter.js +2 -0
- package/aws/integrationTagFilter.js.map +1 -1
- package/getActionConnection.d.ts +88 -0
- package/getActionConnection.js +54 -0
- package/getActionConnection.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +12 -4
- package/index.js.map +1 -1
- package/ms/index.d.ts +3 -0
- package/ms/index.js +6 -1
- package/ms/index.js.map +1 -1
- package/ms/integrationTeamsWorkflowsWebhookHandle.d.ts +63 -0
- package/ms/integrationTeamsWorkflowsWebhookHandle.js +62 -0
- package/ms/integrationTeamsWorkflowsWebhookHandle.js.map +1 -0
- package/package.json +2 -2
- package/syntheticsGlobalVariable.d.ts +9 -3
- package/syntheticsGlobalVariable.js.map +1 -1
- package/types/input.d.ts +347 -3
- package/types/output.d.ts +254 -3
package/types/output.d.ts
CHANGED
|
@@ -1,4 +1,97 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
|
+
export interface ActionConnectionAws {
|
|
3
|
+
/**
|
|
4
|
+
* Configuration for an assume role AWS connection
|
|
5
|
+
*/
|
|
6
|
+
assumeRole?: outputs.ActionConnectionAwsAssumeRole;
|
|
7
|
+
}
|
|
8
|
+
export interface ActionConnectionAwsAssumeRole {
|
|
9
|
+
/**
|
|
10
|
+
* AWS account that the connection is created for
|
|
11
|
+
*/
|
|
12
|
+
accountId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* External ID that specifies which connection can be used to assume the role
|
|
15
|
+
*/
|
|
16
|
+
externalId: string;
|
|
17
|
+
/**
|
|
18
|
+
* AWS account that will assume the role
|
|
19
|
+
*/
|
|
20
|
+
principalId: string;
|
|
21
|
+
/**
|
|
22
|
+
* Role to assume
|
|
23
|
+
*/
|
|
24
|
+
role?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface ActionConnectionHttp {
|
|
27
|
+
/**
|
|
28
|
+
* Base HTTP url for the integration
|
|
29
|
+
*/
|
|
30
|
+
baseUrl?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Configuration for an HTTP connection that uses token auth
|
|
33
|
+
*/
|
|
34
|
+
tokenAuth?: outputs.ActionConnectionHttpTokenAuth;
|
|
35
|
+
}
|
|
36
|
+
export interface ActionConnectionHttpTokenAuth {
|
|
37
|
+
/**
|
|
38
|
+
* Body for HTTP authentication
|
|
39
|
+
*/
|
|
40
|
+
body?: outputs.ActionConnectionHttpTokenAuthBody;
|
|
41
|
+
/**
|
|
42
|
+
* Header for HTTP authentication
|
|
43
|
+
*/
|
|
44
|
+
headers?: outputs.ActionConnectionHttpTokenAuthHeader[];
|
|
45
|
+
/**
|
|
46
|
+
* Token for HTTP authentication
|
|
47
|
+
*/
|
|
48
|
+
tokens?: outputs.ActionConnectionHttpTokenAuthToken[];
|
|
49
|
+
/**
|
|
50
|
+
* URL parameter for HTTP authentication
|
|
51
|
+
*/
|
|
52
|
+
urlParameters?: outputs.ActionConnectionHttpTokenAuthUrlParameter[];
|
|
53
|
+
}
|
|
54
|
+
export interface ActionConnectionHttpTokenAuthBody {
|
|
55
|
+
/**
|
|
56
|
+
* Serialized body content
|
|
57
|
+
*/
|
|
58
|
+
content?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Content type of the body
|
|
61
|
+
*/
|
|
62
|
+
contentType?: string;
|
|
63
|
+
}
|
|
64
|
+
export interface ActionConnectionHttpTokenAuthHeader {
|
|
65
|
+
/**
|
|
66
|
+
* Header name
|
|
67
|
+
*/
|
|
68
|
+
name?: string;
|
|
69
|
+
value?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface ActionConnectionHttpTokenAuthToken {
|
|
72
|
+
/**
|
|
73
|
+
* Token name
|
|
74
|
+
*/
|
|
75
|
+
name?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Token type
|
|
78
|
+
*/
|
|
79
|
+
type?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Token value
|
|
82
|
+
*/
|
|
83
|
+
value?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface ActionConnectionHttpTokenAuthUrlParameter {
|
|
86
|
+
/**
|
|
87
|
+
* URL parameter name
|
|
88
|
+
*/
|
|
89
|
+
name?: string;
|
|
90
|
+
/**
|
|
91
|
+
* URL parameter value
|
|
92
|
+
*/
|
|
93
|
+
value?: string;
|
|
94
|
+
}
|
|
2
95
|
export interface ApmRetentionFilterFilter {
|
|
3
96
|
/**
|
|
4
97
|
* The search query - follow the span search syntax, use `AND` between tags and `\` to escape special characters, use nanosecond for duration. Defaults to `"*"`.
|
|
@@ -2891,6 +2984,10 @@ export interface DashboardWidgetListStreamDefinitionRequestColumn {
|
|
|
2891
2984
|
width: string;
|
|
2892
2985
|
}
|
|
2893
2986
|
export interface DashboardWidgetListStreamDefinitionRequestQuery {
|
|
2987
|
+
/**
|
|
2988
|
+
* Specifies the field for logs pattern clustering. Can only be used with `logsPatternStream`.
|
|
2989
|
+
*/
|
|
2990
|
+
clusteringPatternFieldPath?: string;
|
|
2894
2991
|
/**
|
|
2895
2992
|
* Source from which to query items to display in the stream. Valid values are `logsStream`, `auditStream`, `ciPipelineStream`, `ciTestStream`, `rumIssueStream`, `apmIssueStream`, `traceStream`, `logsIssueStream`, `logsPatternStream`, `logsTransactionStream`, `eventStream`, `rumStream`, `llmObservabilityStream`.
|
|
2896
2993
|
*/
|
|
@@ -2899,6 +2996,10 @@ export interface DashboardWidgetListStreamDefinitionRequestQuery {
|
|
|
2899
2996
|
* Size of events displayed in widget. Required if `dataSource` is `eventStream`. Valid values are `s`, `l`.
|
|
2900
2997
|
*/
|
|
2901
2998
|
eventSize?: string;
|
|
2999
|
+
/**
|
|
3000
|
+
* Group by configuration for the List Stream widget. Group by can only be used with `logsPatternStream` (up to 4 items) or `logsTransactionStream` (one group by item is required) list stream source.
|
|
3001
|
+
*/
|
|
3002
|
+
groupBies?: outputs.DashboardWidgetListStreamDefinitionRequestQueryGroupBy[];
|
|
2902
3003
|
/**
|
|
2903
3004
|
* List of indexes.
|
|
2904
3005
|
*/
|
|
@@ -2916,6 +3017,12 @@ export interface DashboardWidgetListStreamDefinitionRequestQuery {
|
|
|
2916
3017
|
*/
|
|
2917
3018
|
storage?: string;
|
|
2918
3019
|
}
|
|
3020
|
+
export interface DashboardWidgetListStreamDefinitionRequestQueryGroupBy {
|
|
3021
|
+
/**
|
|
3022
|
+
* Facet name
|
|
3023
|
+
*/
|
|
3024
|
+
facet: string;
|
|
3025
|
+
}
|
|
2919
3026
|
export interface DashboardWidgetListStreamDefinitionRequestQuerySort {
|
|
2920
3027
|
/**
|
|
2921
3028
|
* The facet path for the column.
|
|
@@ -3408,6 +3515,10 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
|
3408
3515
|
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
3409
3516
|
*/
|
|
3410
3517
|
cellDisplayMode?: string;
|
|
3518
|
+
/**
|
|
3519
|
+
* A list of display modes for each table cell.
|
|
3520
|
+
*/
|
|
3521
|
+
cellDisplayModeOptions?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions;
|
|
3411
3522
|
/**
|
|
3412
3523
|
* Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple `conditionalFormats` blocks are allowed using the structure below.
|
|
3413
3524
|
*/
|
|
@@ -3429,6 +3540,16 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
|
3429
3540
|
*/
|
|
3430
3541
|
style?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaStyle;
|
|
3431
3542
|
}
|
|
3543
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions {
|
|
3544
|
+
/**
|
|
3545
|
+
* The type of trend line to display. Valid values are `area`, `line`, `bars`.
|
|
3546
|
+
*/
|
|
3547
|
+
trendType?: string;
|
|
3548
|
+
/**
|
|
3549
|
+
* The scale of the y-axis. Valid values are `shared`, `independent`.
|
|
3550
|
+
*/
|
|
3551
|
+
yScale?: string;
|
|
3552
|
+
}
|
|
3432
3553
|
export interface DashboardWidgetQueryTableDefinitionRequestFormulaConditionalFormat {
|
|
3433
3554
|
/**
|
|
3434
3555
|
* The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
|
|
@@ -8616,6 +8737,99 @@ export interface DowntimeScheduleRecurringScheduleRecurrence {
|
|
|
8616
8737
|
*/
|
|
8617
8738
|
start: string;
|
|
8618
8739
|
}
|
|
8740
|
+
export interface GetActionConnectionAws {
|
|
8741
|
+
/**
|
|
8742
|
+
* Configuration for an assume role AWS connection
|
|
8743
|
+
*/
|
|
8744
|
+
assumeRole?: outputs.GetActionConnectionAwsAssumeRole;
|
|
8745
|
+
}
|
|
8746
|
+
export interface GetActionConnectionAwsAssumeRole {
|
|
8747
|
+
/**
|
|
8748
|
+
* AWS account that the connection is created for
|
|
8749
|
+
*/
|
|
8750
|
+
accountId: string;
|
|
8751
|
+
/**
|
|
8752
|
+
* External ID that specifies which connection can be used to assume the role
|
|
8753
|
+
*/
|
|
8754
|
+
externalId: string;
|
|
8755
|
+
/**
|
|
8756
|
+
* AWS account that will assume the role
|
|
8757
|
+
*/
|
|
8758
|
+
principalId: string;
|
|
8759
|
+
/**
|
|
8760
|
+
* Role to assume
|
|
8761
|
+
*/
|
|
8762
|
+
role: string;
|
|
8763
|
+
}
|
|
8764
|
+
export interface GetActionConnectionHttp {
|
|
8765
|
+
/**
|
|
8766
|
+
* Base HTTP url for the integration
|
|
8767
|
+
*/
|
|
8768
|
+
baseUrl: string;
|
|
8769
|
+
/**
|
|
8770
|
+
* Configuration for an HTTP connection that uses token auth
|
|
8771
|
+
*/
|
|
8772
|
+
tokenAuth?: outputs.GetActionConnectionHttpTokenAuth;
|
|
8773
|
+
}
|
|
8774
|
+
export interface GetActionConnectionHttpTokenAuth {
|
|
8775
|
+
/**
|
|
8776
|
+
* Body for HTTP authentication
|
|
8777
|
+
*/
|
|
8778
|
+
body?: outputs.GetActionConnectionHttpTokenAuthBody;
|
|
8779
|
+
/**
|
|
8780
|
+
* Header for HTTP authentication
|
|
8781
|
+
*/
|
|
8782
|
+
headers?: outputs.GetActionConnectionHttpTokenAuthHeader[];
|
|
8783
|
+
/**
|
|
8784
|
+
* Token for HTTP authentication
|
|
8785
|
+
*/
|
|
8786
|
+
tokens?: outputs.GetActionConnectionHttpTokenAuthToken[];
|
|
8787
|
+
/**
|
|
8788
|
+
* URL parameter for HTTP authentication
|
|
8789
|
+
*/
|
|
8790
|
+
urlParameters?: outputs.GetActionConnectionHttpTokenAuthUrlParameter[];
|
|
8791
|
+
}
|
|
8792
|
+
export interface GetActionConnectionHttpTokenAuthBody {
|
|
8793
|
+
/**
|
|
8794
|
+
* Serialized body content
|
|
8795
|
+
*/
|
|
8796
|
+
content: string;
|
|
8797
|
+
/**
|
|
8798
|
+
* Content type of the body
|
|
8799
|
+
*/
|
|
8800
|
+
contentType: string;
|
|
8801
|
+
}
|
|
8802
|
+
export interface GetActionConnectionHttpTokenAuthHeader {
|
|
8803
|
+
/**
|
|
8804
|
+
* Header name
|
|
8805
|
+
*/
|
|
8806
|
+
name: string;
|
|
8807
|
+
value: string;
|
|
8808
|
+
}
|
|
8809
|
+
export interface GetActionConnectionHttpTokenAuthToken {
|
|
8810
|
+
/**
|
|
8811
|
+
* Token name
|
|
8812
|
+
*/
|
|
8813
|
+
name: string;
|
|
8814
|
+
/**
|
|
8815
|
+
* Token type
|
|
8816
|
+
*/
|
|
8817
|
+
type: string;
|
|
8818
|
+
/**
|
|
8819
|
+
* Token value
|
|
8820
|
+
*/
|
|
8821
|
+
value: string;
|
|
8822
|
+
}
|
|
8823
|
+
export interface GetActionConnectionHttpTokenAuthUrlParameter {
|
|
8824
|
+
/**
|
|
8825
|
+
* URL parameter name
|
|
8826
|
+
*/
|
|
8827
|
+
name: string;
|
|
8828
|
+
/**
|
|
8829
|
+
* URL parameter value
|
|
8830
|
+
*/
|
|
8831
|
+
value: string;
|
|
8832
|
+
}
|
|
8619
8833
|
export interface GetCloudWorkloadSecurityAgentRulesAgentRule {
|
|
8620
8834
|
/**
|
|
8621
8835
|
* The description of the Agent rule.
|
|
@@ -14804,6 +15018,10 @@ export interface PowerpackWidgetListStreamDefinitionRequestColumn {
|
|
|
14804
15018
|
width: string;
|
|
14805
15019
|
}
|
|
14806
15020
|
export interface PowerpackWidgetListStreamDefinitionRequestQuery {
|
|
15021
|
+
/**
|
|
15022
|
+
* Specifies the field for logs pattern clustering. Can only be used with `logsPatternStream`.
|
|
15023
|
+
*/
|
|
15024
|
+
clusteringPatternFieldPath?: string;
|
|
14807
15025
|
/**
|
|
14808
15026
|
* Source from which to query items to display in the stream. Valid values are `logsStream`, `auditStream`, `ciPipelineStream`, `ciTestStream`, `rumIssueStream`, `apmIssueStream`, `traceStream`, `logsIssueStream`, `logsPatternStream`, `logsTransactionStream`, `eventStream`, `rumStream`, `llmObservabilityStream`.
|
|
14809
15027
|
*/
|
|
@@ -14812,6 +15030,10 @@ export interface PowerpackWidgetListStreamDefinitionRequestQuery {
|
|
|
14812
15030
|
* Size of events displayed in widget. Required if `dataSource` is `eventStream`. Valid values are `s`, `l`.
|
|
14813
15031
|
*/
|
|
14814
15032
|
eventSize?: string;
|
|
15033
|
+
/**
|
|
15034
|
+
* Group by configuration for the List Stream widget. Group by can only be used with `logsPatternStream` (up to 4 items) or `logsTransactionStream` (one group by item is required) list stream source.
|
|
15035
|
+
*/
|
|
15036
|
+
groupBies?: outputs.PowerpackWidgetListStreamDefinitionRequestQueryGroupBy[];
|
|
14815
15037
|
/**
|
|
14816
15038
|
* List of indexes.
|
|
14817
15039
|
*/
|
|
@@ -14829,6 +15051,12 @@ export interface PowerpackWidgetListStreamDefinitionRequestQuery {
|
|
|
14829
15051
|
*/
|
|
14830
15052
|
storage?: string;
|
|
14831
15053
|
}
|
|
15054
|
+
export interface PowerpackWidgetListStreamDefinitionRequestQueryGroupBy {
|
|
15055
|
+
/**
|
|
15056
|
+
* Facet name
|
|
15057
|
+
*/
|
|
15058
|
+
facet: string;
|
|
15059
|
+
}
|
|
14832
15060
|
export interface PowerpackWidgetListStreamDefinitionRequestQuerySort {
|
|
14833
15061
|
/**
|
|
14834
15062
|
* The facet path for the column.
|
|
@@ -15257,6 +15485,10 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormula {
|
|
|
15257
15485
|
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
15258
15486
|
*/
|
|
15259
15487
|
cellDisplayMode?: string;
|
|
15488
|
+
/**
|
|
15489
|
+
* A list of display modes for each table cell.
|
|
15490
|
+
*/
|
|
15491
|
+
cellDisplayModeOptions?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions;
|
|
15260
15492
|
/**
|
|
15261
15493
|
* Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple `conditionalFormats` blocks are allowed using the structure below.
|
|
15262
15494
|
*/
|
|
@@ -15278,6 +15510,16 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormula {
|
|
|
15278
15510
|
*/
|
|
15279
15511
|
style?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaStyle;
|
|
15280
15512
|
}
|
|
15513
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions {
|
|
15514
|
+
/**
|
|
15515
|
+
* The type of trend line to display. Valid values are `area`, `line`, `bars`.
|
|
15516
|
+
*/
|
|
15517
|
+
trendType?: string;
|
|
15518
|
+
/**
|
|
15519
|
+
* The scale of the y-axis. Valid values are `shared`, `independent`.
|
|
15520
|
+
*/
|
|
15521
|
+
yScale?: string;
|
|
15522
|
+
}
|
|
15281
15523
|
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaConditionalFormat {
|
|
15282
15524
|
/**
|
|
15283
15525
|
* The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
|
|
@@ -22763,7 +23005,9 @@ export interface SyntheticsGlobalVariableParseTestOptionsParser {
|
|
|
22763
23005
|
}
|
|
22764
23006
|
export interface SyntheticsPrivateLocationMetadata {
|
|
22765
23007
|
/**
|
|
22766
|
-
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
23008
|
+
* A list of role identifiers pulled from the Roles API to restrict read and write access. **Deprecated.** This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
23009
|
+
*
|
|
23010
|
+
* @deprecated This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
22767
23011
|
*/
|
|
22768
23012
|
restrictedRoles?: string[];
|
|
22769
23013
|
}
|
|
@@ -23468,6 +23712,9 @@ export interface SyntheticsTestConfigVariable {
|
|
|
23468
23712
|
}
|
|
23469
23713
|
export interface SyntheticsTestMobileOptionsList {
|
|
23470
23714
|
allowApplicationCrash?: boolean;
|
|
23715
|
+
/**
|
|
23716
|
+
* Restriction policy bindings for the Synthetic mobile test. Should not be used in parallel with a `datadog.RestrictionPolicy` resource
|
|
23717
|
+
*/
|
|
23471
23718
|
bindings?: outputs.SyntheticsTestMobileOptionsListBinding[];
|
|
23472
23719
|
/**
|
|
23473
23720
|
* CI/CD options for a Synthetic test.
|
|
@@ -23492,7 +23739,9 @@ export interface SyntheticsTestMobileOptionsList {
|
|
|
23492
23739
|
*/
|
|
23493
23740
|
noScreenshot?: boolean;
|
|
23494
23741
|
/**
|
|
23495
|
-
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
23742
|
+
* A list of role identifiers pulled from the Roles API to restrict read and write access. **Deprecated.** This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
23743
|
+
*
|
|
23744
|
+
* @deprecated This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
23496
23745
|
*/
|
|
23497
23746
|
restrictedRoles?: string[];
|
|
23498
23747
|
retry?: outputs.SyntheticsTestMobileOptionsListRetry;
|
|
@@ -23760,7 +24009,9 @@ export interface SyntheticsTestOptionsList {
|
|
|
23760
24009
|
*/
|
|
23761
24010
|
noScreenshot?: boolean;
|
|
23762
24011
|
/**
|
|
23763
|
-
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
24012
|
+
* A list of role identifiers pulled from the Roles API to restrict read and write access. **Deprecated.** This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
24013
|
+
*
|
|
24014
|
+
* @deprecated This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
23764
24015
|
*/
|
|
23765
24016
|
restrictedRoles?: string[];
|
|
23766
24017
|
retry?: outputs.SyntheticsTestOptionsListRetry;
|