@pulumi/datadog 4.46.0-alpha.1740720926 → 4.46.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/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/input.d.ts
CHANGED
|
@@ -1,5 +1,98 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
|
+
export interface ActionConnectionAws {
|
|
4
|
+
/**
|
|
5
|
+
* Configuration for an assume role AWS connection
|
|
6
|
+
*/
|
|
7
|
+
assumeRole?: pulumi.Input<inputs.ActionConnectionAwsAssumeRole>;
|
|
8
|
+
}
|
|
9
|
+
export interface ActionConnectionAwsAssumeRole {
|
|
10
|
+
/**
|
|
11
|
+
* AWS account that the connection is created for
|
|
12
|
+
*/
|
|
13
|
+
accountId?: pulumi.Input<string>;
|
|
14
|
+
/**
|
|
15
|
+
* External ID that specifies which connection can be used to assume the role
|
|
16
|
+
*/
|
|
17
|
+
externalId?: pulumi.Input<string>;
|
|
18
|
+
/**
|
|
19
|
+
* AWS account that will assume the role
|
|
20
|
+
*/
|
|
21
|
+
principalId?: pulumi.Input<string>;
|
|
22
|
+
/**
|
|
23
|
+
* Role to assume
|
|
24
|
+
*/
|
|
25
|
+
role?: pulumi.Input<string>;
|
|
26
|
+
}
|
|
27
|
+
export interface ActionConnectionHttp {
|
|
28
|
+
/**
|
|
29
|
+
* Base HTTP url for the integration
|
|
30
|
+
*/
|
|
31
|
+
baseUrl?: pulumi.Input<string>;
|
|
32
|
+
/**
|
|
33
|
+
* Configuration for an HTTP connection that uses token auth
|
|
34
|
+
*/
|
|
35
|
+
tokenAuth?: pulumi.Input<inputs.ActionConnectionHttpTokenAuth>;
|
|
36
|
+
}
|
|
37
|
+
export interface ActionConnectionHttpTokenAuth {
|
|
38
|
+
/**
|
|
39
|
+
* Body for HTTP authentication
|
|
40
|
+
*/
|
|
41
|
+
body?: pulumi.Input<inputs.ActionConnectionHttpTokenAuthBody>;
|
|
42
|
+
/**
|
|
43
|
+
* Header for HTTP authentication
|
|
44
|
+
*/
|
|
45
|
+
headers?: pulumi.Input<pulumi.Input<inputs.ActionConnectionHttpTokenAuthHeader>[]>;
|
|
46
|
+
/**
|
|
47
|
+
* Token for HTTP authentication
|
|
48
|
+
*/
|
|
49
|
+
tokens?: pulumi.Input<pulumi.Input<inputs.ActionConnectionHttpTokenAuthToken>[]>;
|
|
50
|
+
/**
|
|
51
|
+
* URL parameter for HTTP authentication
|
|
52
|
+
*/
|
|
53
|
+
urlParameters?: pulumi.Input<pulumi.Input<inputs.ActionConnectionHttpTokenAuthUrlParameter>[]>;
|
|
54
|
+
}
|
|
55
|
+
export interface ActionConnectionHttpTokenAuthBody {
|
|
56
|
+
/**
|
|
57
|
+
* Serialized body content
|
|
58
|
+
*/
|
|
59
|
+
content?: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* Content type of the body
|
|
62
|
+
*/
|
|
63
|
+
contentType?: pulumi.Input<string>;
|
|
64
|
+
}
|
|
65
|
+
export interface ActionConnectionHttpTokenAuthHeader {
|
|
66
|
+
/**
|
|
67
|
+
* Header name
|
|
68
|
+
*/
|
|
69
|
+
name?: pulumi.Input<string>;
|
|
70
|
+
value?: pulumi.Input<string>;
|
|
71
|
+
}
|
|
72
|
+
export interface ActionConnectionHttpTokenAuthToken {
|
|
73
|
+
/**
|
|
74
|
+
* Token name
|
|
75
|
+
*/
|
|
76
|
+
name?: pulumi.Input<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Token type
|
|
79
|
+
*/
|
|
80
|
+
type?: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Token value
|
|
83
|
+
*/
|
|
84
|
+
value?: pulumi.Input<string>;
|
|
85
|
+
}
|
|
86
|
+
export interface ActionConnectionHttpTokenAuthUrlParameter {
|
|
87
|
+
/**
|
|
88
|
+
* URL parameter name
|
|
89
|
+
*/
|
|
90
|
+
name?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* URL parameter value
|
|
93
|
+
*/
|
|
94
|
+
value?: pulumi.Input<string>;
|
|
95
|
+
}
|
|
3
96
|
export interface ApmRetentionFilterFilter {
|
|
4
97
|
/**
|
|
5
98
|
* The search query - follow the span search syntax, use `AND` between tags and `\` to escape special characters, use nanosecond for duration. Defaults to `"*"`.
|
|
@@ -2892,6 +2985,10 @@ export interface DashboardWidgetListStreamDefinitionRequestColumn {
|
|
|
2892
2985
|
width: pulumi.Input<string>;
|
|
2893
2986
|
}
|
|
2894
2987
|
export interface DashboardWidgetListStreamDefinitionRequestQuery {
|
|
2988
|
+
/**
|
|
2989
|
+
* Specifies the field for logs pattern clustering. Can only be used with `logsPatternStream`.
|
|
2990
|
+
*/
|
|
2991
|
+
clusteringPatternFieldPath?: pulumi.Input<string>;
|
|
2895
2992
|
/**
|
|
2896
2993
|
* 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`.
|
|
2897
2994
|
*/
|
|
@@ -2900,6 +2997,10 @@ export interface DashboardWidgetListStreamDefinitionRequestQuery {
|
|
|
2900
2997
|
* Size of events displayed in widget. Required if `dataSource` is `eventStream`. Valid values are `s`, `l`.
|
|
2901
2998
|
*/
|
|
2902
2999
|
eventSize?: pulumi.Input<string>;
|
|
3000
|
+
/**
|
|
3001
|
+
* 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.
|
|
3002
|
+
*/
|
|
3003
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.DashboardWidgetListStreamDefinitionRequestQueryGroupBy>[]>;
|
|
2903
3004
|
/**
|
|
2904
3005
|
* List of indexes.
|
|
2905
3006
|
*/
|
|
@@ -2917,6 +3018,12 @@ export interface DashboardWidgetListStreamDefinitionRequestQuery {
|
|
|
2917
3018
|
*/
|
|
2918
3019
|
storage?: pulumi.Input<string>;
|
|
2919
3020
|
}
|
|
3021
|
+
export interface DashboardWidgetListStreamDefinitionRequestQueryGroupBy {
|
|
3022
|
+
/**
|
|
3023
|
+
* Facet name
|
|
3024
|
+
*/
|
|
3025
|
+
facet: pulumi.Input<string>;
|
|
3026
|
+
}
|
|
2920
3027
|
export interface DashboardWidgetListStreamDefinitionRequestQuerySort {
|
|
2921
3028
|
/**
|
|
2922
3029
|
* The facet path for the column.
|
|
@@ -3409,6 +3516,10 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
|
3409
3516
|
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
3410
3517
|
*/
|
|
3411
3518
|
cellDisplayMode?: pulumi.Input<string>;
|
|
3519
|
+
/**
|
|
3520
|
+
* A list of display modes for each table cell.
|
|
3521
|
+
*/
|
|
3522
|
+
cellDisplayModeOptions?: pulumi.Input<inputs.DashboardWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions>;
|
|
3412
3523
|
/**
|
|
3413
3524
|
* 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.
|
|
3414
3525
|
*/
|
|
@@ -3430,6 +3541,16 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
|
3430
3541
|
*/
|
|
3431
3542
|
style?: pulumi.Input<inputs.DashboardWidgetQueryTableDefinitionRequestFormulaStyle>;
|
|
3432
3543
|
}
|
|
3544
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions {
|
|
3545
|
+
/**
|
|
3546
|
+
* The type of trend line to display. Valid values are `area`, `line`, `bars`.
|
|
3547
|
+
*/
|
|
3548
|
+
trendType?: pulumi.Input<string>;
|
|
3549
|
+
/**
|
|
3550
|
+
* The scale of the y-axis. Valid values are `shared`, `independent`.
|
|
3551
|
+
*/
|
|
3552
|
+
yScale?: pulumi.Input<string>;
|
|
3553
|
+
}
|
|
3433
3554
|
export interface DashboardWidgetQueryTableDefinitionRequestFormulaConditionalFormat {
|
|
3434
3555
|
/**
|
|
3435
3556
|
* The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
|
|
@@ -8617,6 +8738,192 @@ export interface DowntimeScheduleRecurringScheduleRecurrence {
|
|
|
8617
8738
|
*/
|
|
8618
8739
|
start?: pulumi.Input<string>;
|
|
8619
8740
|
}
|
|
8741
|
+
export interface GetActionConnectionAws {
|
|
8742
|
+
/**
|
|
8743
|
+
* Configuration for an assume role AWS connection
|
|
8744
|
+
*/
|
|
8745
|
+
assumeRole?: inputs.GetActionConnectionAwsAssumeRole;
|
|
8746
|
+
}
|
|
8747
|
+
export interface GetActionConnectionAwsArgs {
|
|
8748
|
+
/**
|
|
8749
|
+
* Configuration for an assume role AWS connection
|
|
8750
|
+
*/
|
|
8751
|
+
assumeRole?: pulumi.Input<inputs.GetActionConnectionAwsAssumeRoleArgs>;
|
|
8752
|
+
}
|
|
8753
|
+
export interface GetActionConnectionAwsAssumeRole {
|
|
8754
|
+
/**
|
|
8755
|
+
* AWS account that the connection is created for
|
|
8756
|
+
*/
|
|
8757
|
+
accountId?: string;
|
|
8758
|
+
/**
|
|
8759
|
+
* External ID that specifies which connection can be used to assume the role
|
|
8760
|
+
*/
|
|
8761
|
+
externalId?: string;
|
|
8762
|
+
/**
|
|
8763
|
+
* AWS account that will assume the role
|
|
8764
|
+
*/
|
|
8765
|
+
principalId?: string;
|
|
8766
|
+
/**
|
|
8767
|
+
* Role to assume
|
|
8768
|
+
*/
|
|
8769
|
+
role?: string;
|
|
8770
|
+
}
|
|
8771
|
+
export interface GetActionConnectionAwsAssumeRoleArgs {
|
|
8772
|
+
/**
|
|
8773
|
+
* AWS account that the connection is created for
|
|
8774
|
+
*/
|
|
8775
|
+
accountId?: pulumi.Input<string>;
|
|
8776
|
+
/**
|
|
8777
|
+
* External ID that specifies which connection can be used to assume the role
|
|
8778
|
+
*/
|
|
8779
|
+
externalId?: pulumi.Input<string>;
|
|
8780
|
+
/**
|
|
8781
|
+
* AWS account that will assume the role
|
|
8782
|
+
*/
|
|
8783
|
+
principalId?: pulumi.Input<string>;
|
|
8784
|
+
/**
|
|
8785
|
+
* Role to assume
|
|
8786
|
+
*/
|
|
8787
|
+
role?: pulumi.Input<string>;
|
|
8788
|
+
}
|
|
8789
|
+
export interface GetActionConnectionHttp {
|
|
8790
|
+
/**
|
|
8791
|
+
* Base HTTP url for the integration
|
|
8792
|
+
*/
|
|
8793
|
+
baseUrl?: string;
|
|
8794
|
+
/**
|
|
8795
|
+
* Configuration for an HTTP connection that uses token auth
|
|
8796
|
+
*/
|
|
8797
|
+
tokenAuth?: inputs.GetActionConnectionHttpTokenAuth;
|
|
8798
|
+
}
|
|
8799
|
+
export interface GetActionConnectionHttpArgs {
|
|
8800
|
+
/**
|
|
8801
|
+
* Base HTTP url for the integration
|
|
8802
|
+
*/
|
|
8803
|
+
baseUrl?: pulumi.Input<string>;
|
|
8804
|
+
/**
|
|
8805
|
+
* Configuration for an HTTP connection that uses token auth
|
|
8806
|
+
*/
|
|
8807
|
+
tokenAuth?: pulumi.Input<inputs.GetActionConnectionHttpTokenAuthArgs>;
|
|
8808
|
+
}
|
|
8809
|
+
export interface GetActionConnectionHttpTokenAuth {
|
|
8810
|
+
/**
|
|
8811
|
+
* Body for HTTP authentication
|
|
8812
|
+
*/
|
|
8813
|
+
body?: inputs.GetActionConnectionHttpTokenAuthBody;
|
|
8814
|
+
/**
|
|
8815
|
+
* Header for HTTP authentication
|
|
8816
|
+
*/
|
|
8817
|
+
headers?: inputs.GetActionConnectionHttpTokenAuthHeader[];
|
|
8818
|
+
/**
|
|
8819
|
+
* Token for HTTP authentication
|
|
8820
|
+
*/
|
|
8821
|
+
tokens?: inputs.GetActionConnectionHttpTokenAuthToken[];
|
|
8822
|
+
/**
|
|
8823
|
+
* URL parameter for HTTP authentication
|
|
8824
|
+
*/
|
|
8825
|
+
urlParameters?: inputs.GetActionConnectionHttpTokenAuthUrlParameter[];
|
|
8826
|
+
}
|
|
8827
|
+
export interface GetActionConnectionHttpTokenAuthArgs {
|
|
8828
|
+
/**
|
|
8829
|
+
* Body for HTTP authentication
|
|
8830
|
+
*/
|
|
8831
|
+
body?: pulumi.Input<inputs.GetActionConnectionHttpTokenAuthBodyArgs>;
|
|
8832
|
+
/**
|
|
8833
|
+
* Header for HTTP authentication
|
|
8834
|
+
*/
|
|
8835
|
+
headers?: pulumi.Input<pulumi.Input<inputs.GetActionConnectionHttpTokenAuthHeaderArgs>[]>;
|
|
8836
|
+
/**
|
|
8837
|
+
* Token for HTTP authentication
|
|
8838
|
+
*/
|
|
8839
|
+
tokens?: pulumi.Input<pulumi.Input<inputs.GetActionConnectionHttpTokenAuthTokenArgs>[]>;
|
|
8840
|
+
/**
|
|
8841
|
+
* URL parameter for HTTP authentication
|
|
8842
|
+
*/
|
|
8843
|
+
urlParameters?: pulumi.Input<pulumi.Input<inputs.GetActionConnectionHttpTokenAuthUrlParameterArgs>[]>;
|
|
8844
|
+
}
|
|
8845
|
+
export interface GetActionConnectionHttpTokenAuthBody {
|
|
8846
|
+
/**
|
|
8847
|
+
* Serialized body content
|
|
8848
|
+
*/
|
|
8849
|
+
content?: string;
|
|
8850
|
+
/**
|
|
8851
|
+
* Content type of the body
|
|
8852
|
+
*/
|
|
8853
|
+
contentType?: string;
|
|
8854
|
+
}
|
|
8855
|
+
export interface GetActionConnectionHttpTokenAuthBodyArgs {
|
|
8856
|
+
/**
|
|
8857
|
+
* Serialized body content
|
|
8858
|
+
*/
|
|
8859
|
+
content?: pulumi.Input<string>;
|
|
8860
|
+
/**
|
|
8861
|
+
* Content type of the body
|
|
8862
|
+
*/
|
|
8863
|
+
contentType?: pulumi.Input<string>;
|
|
8864
|
+
}
|
|
8865
|
+
export interface GetActionConnectionHttpTokenAuthHeader {
|
|
8866
|
+
/**
|
|
8867
|
+
* Header name
|
|
8868
|
+
*/
|
|
8869
|
+
name?: string;
|
|
8870
|
+
value?: string;
|
|
8871
|
+
}
|
|
8872
|
+
export interface GetActionConnectionHttpTokenAuthHeaderArgs {
|
|
8873
|
+
/**
|
|
8874
|
+
* Header name
|
|
8875
|
+
*/
|
|
8876
|
+
name?: pulumi.Input<string>;
|
|
8877
|
+
value?: pulumi.Input<string>;
|
|
8878
|
+
}
|
|
8879
|
+
export interface GetActionConnectionHttpTokenAuthToken {
|
|
8880
|
+
/**
|
|
8881
|
+
* Token name
|
|
8882
|
+
*/
|
|
8883
|
+
name?: string;
|
|
8884
|
+
/**
|
|
8885
|
+
* Token type
|
|
8886
|
+
*/
|
|
8887
|
+
type?: string;
|
|
8888
|
+
/**
|
|
8889
|
+
* Token value
|
|
8890
|
+
*/
|
|
8891
|
+
value?: string;
|
|
8892
|
+
}
|
|
8893
|
+
export interface GetActionConnectionHttpTokenAuthTokenArgs {
|
|
8894
|
+
/**
|
|
8895
|
+
* Token name
|
|
8896
|
+
*/
|
|
8897
|
+
name?: pulumi.Input<string>;
|
|
8898
|
+
/**
|
|
8899
|
+
* Token type
|
|
8900
|
+
*/
|
|
8901
|
+
type?: pulumi.Input<string>;
|
|
8902
|
+
/**
|
|
8903
|
+
* Token value
|
|
8904
|
+
*/
|
|
8905
|
+
value?: pulumi.Input<string>;
|
|
8906
|
+
}
|
|
8907
|
+
export interface GetActionConnectionHttpTokenAuthUrlParameter {
|
|
8908
|
+
/**
|
|
8909
|
+
* URL parameter name
|
|
8910
|
+
*/
|
|
8911
|
+
name?: string;
|
|
8912
|
+
/**
|
|
8913
|
+
* URL parameter value
|
|
8914
|
+
*/
|
|
8915
|
+
value?: string;
|
|
8916
|
+
}
|
|
8917
|
+
export interface GetActionConnectionHttpTokenAuthUrlParameterArgs {
|
|
8918
|
+
/**
|
|
8919
|
+
* URL parameter name
|
|
8920
|
+
*/
|
|
8921
|
+
name?: pulumi.Input<string>;
|
|
8922
|
+
/**
|
|
8923
|
+
* URL parameter value
|
|
8924
|
+
*/
|
|
8925
|
+
value?: pulumi.Input<string>;
|
|
8926
|
+
}
|
|
8620
8927
|
export interface GetTeamsTeam {
|
|
8621
8928
|
/**
|
|
8622
8929
|
* Free-form markdown description/content for the team's homepage.
|
|
@@ -14171,6 +14478,10 @@ export interface PowerpackWidgetListStreamDefinitionRequestColumn {
|
|
|
14171
14478
|
width: pulumi.Input<string>;
|
|
14172
14479
|
}
|
|
14173
14480
|
export interface PowerpackWidgetListStreamDefinitionRequestQuery {
|
|
14481
|
+
/**
|
|
14482
|
+
* Specifies the field for logs pattern clustering. Can only be used with `logsPatternStream`.
|
|
14483
|
+
*/
|
|
14484
|
+
clusteringPatternFieldPath?: pulumi.Input<string>;
|
|
14174
14485
|
/**
|
|
14175
14486
|
* 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`.
|
|
14176
14487
|
*/
|
|
@@ -14179,6 +14490,10 @@ export interface PowerpackWidgetListStreamDefinitionRequestQuery {
|
|
|
14179
14490
|
* Size of events displayed in widget. Required if `dataSource` is `eventStream`. Valid values are `s`, `l`.
|
|
14180
14491
|
*/
|
|
14181
14492
|
eventSize?: pulumi.Input<string>;
|
|
14493
|
+
/**
|
|
14494
|
+
* 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.
|
|
14495
|
+
*/
|
|
14496
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.PowerpackWidgetListStreamDefinitionRequestQueryGroupBy>[]>;
|
|
14182
14497
|
/**
|
|
14183
14498
|
* List of indexes.
|
|
14184
14499
|
*/
|
|
@@ -14196,6 +14511,12 @@ export interface PowerpackWidgetListStreamDefinitionRequestQuery {
|
|
|
14196
14511
|
*/
|
|
14197
14512
|
storage?: pulumi.Input<string>;
|
|
14198
14513
|
}
|
|
14514
|
+
export interface PowerpackWidgetListStreamDefinitionRequestQueryGroupBy {
|
|
14515
|
+
/**
|
|
14516
|
+
* Facet name
|
|
14517
|
+
*/
|
|
14518
|
+
facet: pulumi.Input<string>;
|
|
14519
|
+
}
|
|
14199
14520
|
export interface PowerpackWidgetListStreamDefinitionRequestQuerySort {
|
|
14200
14521
|
/**
|
|
14201
14522
|
* The facet path for the column.
|
|
@@ -14624,6 +14945,10 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormula {
|
|
|
14624
14945
|
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
14625
14946
|
*/
|
|
14626
14947
|
cellDisplayMode?: pulumi.Input<string>;
|
|
14948
|
+
/**
|
|
14949
|
+
* A list of display modes for each table cell.
|
|
14950
|
+
*/
|
|
14951
|
+
cellDisplayModeOptions?: pulumi.Input<inputs.PowerpackWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions>;
|
|
14627
14952
|
/**
|
|
14628
14953
|
* 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.
|
|
14629
14954
|
*/
|
|
@@ -14645,6 +14970,16 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormula {
|
|
|
14645
14970
|
*/
|
|
14646
14971
|
style?: pulumi.Input<inputs.PowerpackWidgetQueryTableDefinitionRequestFormulaStyle>;
|
|
14647
14972
|
}
|
|
14973
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions {
|
|
14974
|
+
/**
|
|
14975
|
+
* The type of trend line to display. Valid values are `area`, `line`, `bars`.
|
|
14976
|
+
*/
|
|
14977
|
+
trendType?: pulumi.Input<string>;
|
|
14978
|
+
/**
|
|
14979
|
+
* The scale of the y-axis. Valid values are `shared`, `independent`.
|
|
14980
|
+
*/
|
|
14981
|
+
yScale?: pulumi.Input<string>;
|
|
14982
|
+
}
|
|
14648
14983
|
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaConditionalFormat {
|
|
14649
14984
|
/**
|
|
14650
14985
|
* The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
|
|
@@ -22138,7 +22473,9 @@ export interface SyntheticsGlobalVariableParseTestOptionsParser {
|
|
|
22138
22473
|
}
|
|
22139
22474
|
export interface SyntheticsPrivateLocationMetadata {
|
|
22140
22475
|
/**
|
|
22141
|
-
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
22476
|
+
* 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.
|
|
22477
|
+
*
|
|
22478
|
+
* @deprecated This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
22142
22479
|
*/
|
|
22143
22480
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
22144
22481
|
}
|
|
@@ -22843,6 +23180,9 @@ export interface SyntheticsTestConfigVariable {
|
|
|
22843
23180
|
}
|
|
22844
23181
|
export interface SyntheticsTestMobileOptionsList {
|
|
22845
23182
|
allowApplicationCrash?: pulumi.Input<boolean>;
|
|
23183
|
+
/**
|
|
23184
|
+
* Restriction policy bindings for the Synthetic mobile test. Should not be used in parallel with a `datadog.RestrictionPolicy` resource
|
|
23185
|
+
*/
|
|
22846
23186
|
bindings?: pulumi.Input<pulumi.Input<inputs.SyntheticsTestMobileOptionsListBinding>[]>;
|
|
22847
23187
|
/**
|
|
22848
23188
|
* CI/CD options for a Synthetic test.
|
|
@@ -22867,7 +23207,9 @@ export interface SyntheticsTestMobileOptionsList {
|
|
|
22867
23207
|
*/
|
|
22868
23208
|
noScreenshot?: pulumi.Input<boolean>;
|
|
22869
23209
|
/**
|
|
22870
|
-
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
23210
|
+
* 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.
|
|
23211
|
+
*
|
|
23212
|
+
* @deprecated This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
22871
23213
|
*/
|
|
22872
23214
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
22873
23215
|
retry?: pulumi.Input<inputs.SyntheticsTestMobileOptionsListRetry>;
|
|
@@ -23135,7 +23477,9 @@ export interface SyntheticsTestOptionsList {
|
|
|
23135
23477
|
*/
|
|
23136
23478
|
noScreenshot?: pulumi.Input<boolean>;
|
|
23137
23479
|
/**
|
|
23138
|
-
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
23480
|
+
* 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.
|
|
23481
|
+
*
|
|
23482
|
+
* @deprecated This field is no longer supported by the Datadog API. Please use `datadog.RestrictionPolicy` instead.
|
|
23139
23483
|
*/
|
|
23140
23484
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
23141
23485
|
retry?: pulumi.Input<inputs.SyntheticsTestOptionsListRetry>;
|