@pulumi/datadog 4.53.0-alpha.1755150202 → 4.53.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 +1 -1
- package/actionConnection.js +1 -1
- package/agentlessScanningAwsScanOptions.d.ts +127 -0
- package/agentlessScanningAwsScanOptions.js +103 -0
- package/agentlessScanningAwsScanOptions.js.map +1 -0
- package/appKeyRegistration.d.ts +66 -0
- package/appKeyRegistration.js +70 -0
- package/appKeyRegistration.js.map +1 -0
- package/config/vars.d.ts +30 -0
- package/config/vars.js +36 -0
- package/config/vars.js.map +1 -1
- package/getActionConnection.d.ts +2 -2
- package/getActionConnection.js +2 -2
- package/getAppBuilderApp.d.ts +2 -2
- package/getAppBuilderApp.js +2 -2
- package/getIncidentType.d.ts +70 -0
- package/getIncidentType.js +50 -0
- package/getIncidentType.js.map +1 -0
- package/getMetricMetadata.d.ts +68 -0
- package/getMetricMetadata.js +28 -0
- package/getMetricMetadata.js.map +1 -0
- package/getWorkflowAutomation.d.ts +2 -2
- package/getWorkflowAutomation.js +2 -2
- package/incidentType.d.ts +97 -0
- package/incidentType.js +81 -0
- package/incidentType.js.map +1 -0
- package/index.d.ts +15 -0
- package/index.js +25 -4
- package/index.js.map +1 -1
- package/onCallEscalationPolicy.d.ts +1 -1
- package/onCallEscalationPolicy.js +1 -1
- package/package.json +2 -2
- package/provider.d.ts +60 -0
- package/provider.js +7 -1
- package/provider.js.map +1 -1
- package/securityMonitoringDefaultRule.d.ts +1 -1
- package/syntheticsTest.d.ts +3 -3
- package/types/input.d.ts +229 -13
- package/types/output.d.ts +236 -20
package/types/output.d.ts
CHANGED
|
@@ -9993,6 +9993,10 @@ export interface LogsCustomPipelineProcessor {
|
|
|
9993
9993
|
* Arithmetic Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#arithmetic-processor)
|
|
9994
9994
|
*/
|
|
9995
9995
|
arithmeticProcessor?: outputs.LogsCustomPipelineProcessorArithmeticProcessor;
|
|
9996
|
+
/**
|
|
9997
|
+
* Array Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#array-processor)
|
|
9998
|
+
*/
|
|
9999
|
+
arrayProcessor?: outputs.LogsCustomPipelineProcessorArrayProcessor;
|
|
9996
10000
|
/**
|
|
9997
10001
|
* Attribute Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#remapper)
|
|
9998
10002
|
*/
|
|
@@ -10005,6 +10009,10 @@ export interface LogsCustomPipelineProcessor {
|
|
|
10005
10009
|
* Date Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#log-date-remapper)
|
|
10006
10010
|
*/
|
|
10007
10011
|
dateRemapper?: outputs.LogsCustomPipelineProcessorDateRemapper;
|
|
10012
|
+
/**
|
|
10013
|
+
* Decoder Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#decoder-processor)
|
|
10014
|
+
*/
|
|
10015
|
+
decoderProcessor?: outputs.LogsCustomPipelineProcessorDecoderProcessor;
|
|
10008
10016
|
/**
|
|
10009
10017
|
* Date GeoIP Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#geoip-parser)
|
|
10010
10018
|
*/
|
|
@@ -10077,6 +10085,76 @@ export interface LogsCustomPipelineProcessorArithmeticProcessor {
|
|
|
10077
10085
|
*/
|
|
10078
10086
|
target: string;
|
|
10079
10087
|
}
|
|
10088
|
+
export interface LogsCustomPipelineProcessorArrayProcessor {
|
|
10089
|
+
/**
|
|
10090
|
+
* Boolean value to enable your processor.
|
|
10091
|
+
*/
|
|
10092
|
+
isEnabled?: boolean;
|
|
10093
|
+
/**
|
|
10094
|
+
* Your processor name.
|
|
10095
|
+
*/
|
|
10096
|
+
name?: string;
|
|
10097
|
+
/**
|
|
10098
|
+
* Operation to perform on the array.
|
|
10099
|
+
*/
|
|
10100
|
+
operation: outputs.LogsCustomPipelineProcessorArrayProcessorOperation;
|
|
10101
|
+
}
|
|
10102
|
+
export interface LogsCustomPipelineProcessorArrayProcessorOperation {
|
|
10103
|
+
/**
|
|
10104
|
+
* Operation that appends a value to a target array attribute.
|
|
10105
|
+
*/
|
|
10106
|
+
append?: outputs.LogsCustomPipelineProcessorArrayProcessorOperationAppend;
|
|
10107
|
+
/**
|
|
10108
|
+
* Operation that computes the length of a source array and stores the result in a target attribute.
|
|
10109
|
+
*/
|
|
10110
|
+
length?: outputs.LogsCustomPipelineProcessorArrayProcessorOperationLength;
|
|
10111
|
+
/**
|
|
10112
|
+
* Operation that finds an object in a source array using a filter, and then extracts a value from that found object and puts that value into the target attribute.
|
|
10113
|
+
*/
|
|
10114
|
+
select?: outputs.LogsCustomPipelineProcessorArrayProcessorOperationSelect;
|
|
10115
|
+
}
|
|
10116
|
+
export interface LogsCustomPipelineProcessorArrayProcessorOperationAppend {
|
|
10117
|
+
/**
|
|
10118
|
+
* Remove or preserve the remapped source element. Defaults to `true`.
|
|
10119
|
+
*/
|
|
10120
|
+
preserveSource?: boolean;
|
|
10121
|
+
/**
|
|
10122
|
+
* Attribute path containing the value to append.
|
|
10123
|
+
*/
|
|
10124
|
+
source: string;
|
|
10125
|
+
/**
|
|
10126
|
+
* Attribute path of the array to append to.
|
|
10127
|
+
*/
|
|
10128
|
+
target: string;
|
|
10129
|
+
}
|
|
10130
|
+
export interface LogsCustomPipelineProcessorArrayProcessorOperationLength {
|
|
10131
|
+
/**
|
|
10132
|
+
* Attribute path of the array to compute the length of.
|
|
10133
|
+
*/
|
|
10134
|
+
source: string;
|
|
10135
|
+
/**
|
|
10136
|
+
* Attribute that receives the computed length.
|
|
10137
|
+
*/
|
|
10138
|
+
target: string;
|
|
10139
|
+
}
|
|
10140
|
+
export interface LogsCustomPipelineProcessorArrayProcessorOperationSelect {
|
|
10141
|
+
/**
|
|
10142
|
+
* Filter expression (e.g. key1:value1 OR key2:value2) used to find the matching element.
|
|
10143
|
+
*/
|
|
10144
|
+
filter: string;
|
|
10145
|
+
/**
|
|
10146
|
+
* Attribute path of the array to search into.
|
|
10147
|
+
*/
|
|
10148
|
+
source: string;
|
|
10149
|
+
/**
|
|
10150
|
+
* Attribute that receives the extracted value.
|
|
10151
|
+
*/
|
|
10152
|
+
target: string;
|
|
10153
|
+
/**
|
|
10154
|
+
* Attribute key from the matching object that should be extracted.
|
|
10155
|
+
*/
|
|
10156
|
+
valueToExtract: string;
|
|
10157
|
+
}
|
|
10080
10158
|
export interface LogsCustomPipelineProcessorAttributeRemapper {
|
|
10081
10159
|
/**
|
|
10082
10160
|
* If the processor is enabled or not.
|
|
@@ -10157,6 +10235,32 @@ export interface LogsCustomPipelineProcessorDateRemapper {
|
|
|
10157
10235
|
*/
|
|
10158
10236
|
sources: string[];
|
|
10159
10237
|
}
|
|
10238
|
+
export interface LogsCustomPipelineProcessorDecoderProcessor {
|
|
10239
|
+
/**
|
|
10240
|
+
* Encoding type: base64 or base16
|
|
10241
|
+
*/
|
|
10242
|
+
binaryToTextEncoding: string;
|
|
10243
|
+
/**
|
|
10244
|
+
* Input representation: utf-8 or integer
|
|
10245
|
+
*/
|
|
10246
|
+
inputRepresentation: string;
|
|
10247
|
+
/**
|
|
10248
|
+
* If the processor is enabled or not.
|
|
10249
|
+
*/
|
|
10250
|
+
isEnabled?: boolean;
|
|
10251
|
+
/**
|
|
10252
|
+
* Name of the processor.
|
|
10253
|
+
*/
|
|
10254
|
+
name?: string;
|
|
10255
|
+
/**
|
|
10256
|
+
* Encoded message
|
|
10257
|
+
*/
|
|
10258
|
+
source: string;
|
|
10259
|
+
/**
|
|
10260
|
+
* Decoded message
|
|
10261
|
+
*/
|
|
10262
|
+
target: string;
|
|
10263
|
+
}
|
|
10160
10264
|
export interface LogsCustomPipelineProcessorGeoIpParser {
|
|
10161
10265
|
/**
|
|
10162
10266
|
* If the processor is enabled or not.
|
|
@@ -10263,6 +10367,10 @@ export interface LogsCustomPipelineProcessorPipelineProcessor {
|
|
|
10263
10367
|
* Arithmetic Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#arithmetic-processor)
|
|
10264
10368
|
*/
|
|
10265
10369
|
arithmeticProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor;
|
|
10370
|
+
/**
|
|
10371
|
+
* Array Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#array-processor)
|
|
10372
|
+
*/
|
|
10373
|
+
arrayProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessor;
|
|
10266
10374
|
/**
|
|
10267
10375
|
* Attribute Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#remapper)
|
|
10268
10376
|
*/
|
|
@@ -10275,6 +10383,10 @@ export interface LogsCustomPipelineProcessorPipelineProcessor {
|
|
|
10275
10383
|
* Date Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#log-date-remapper)
|
|
10276
10384
|
*/
|
|
10277
10385
|
dateRemapper?: outputs.LogsCustomPipelineProcessorPipelineProcessorDateRemapper;
|
|
10386
|
+
/**
|
|
10387
|
+
* Decoder Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#decoder-processor)
|
|
10388
|
+
*/
|
|
10389
|
+
decoderProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorDecoderProcessor;
|
|
10278
10390
|
/**
|
|
10279
10391
|
* Date GeoIP Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#geoip-parser)
|
|
10280
10392
|
*/
|
|
@@ -10346,6 +10458,76 @@ export interface LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor
|
|
|
10346
10458
|
*/
|
|
10347
10459
|
target: string;
|
|
10348
10460
|
}
|
|
10461
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessor {
|
|
10462
|
+
/**
|
|
10463
|
+
* Boolean value to enable your processor.
|
|
10464
|
+
*/
|
|
10465
|
+
isEnabled?: boolean;
|
|
10466
|
+
/**
|
|
10467
|
+
* Your processor name.
|
|
10468
|
+
*/
|
|
10469
|
+
name?: string;
|
|
10470
|
+
/**
|
|
10471
|
+
* Operation to perform on the array.
|
|
10472
|
+
*/
|
|
10473
|
+
operation: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperation;
|
|
10474
|
+
}
|
|
10475
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperation {
|
|
10476
|
+
/**
|
|
10477
|
+
* Operation that appends a value to a target array attribute.
|
|
10478
|
+
*/
|
|
10479
|
+
append?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationAppend;
|
|
10480
|
+
/**
|
|
10481
|
+
* Operation that computes the length of a source array and stores the result in a target attribute.
|
|
10482
|
+
*/
|
|
10483
|
+
length?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationLength;
|
|
10484
|
+
/**
|
|
10485
|
+
* Operation that finds an object in a source array using a filter, and then extracts a value from that found object and puts that value into the target attribute.
|
|
10486
|
+
*/
|
|
10487
|
+
select?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationSelect;
|
|
10488
|
+
}
|
|
10489
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationAppend {
|
|
10490
|
+
/**
|
|
10491
|
+
* Remove or preserve the remapped source element. Defaults to `true`.
|
|
10492
|
+
*/
|
|
10493
|
+
preserveSource?: boolean;
|
|
10494
|
+
/**
|
|
10495
|
+
* Attribute path containing the value to append.
|
|
10496
|
+
*/
|
|
10497
|
+
source: string;
|
|
10498
|
+
/**
|
|
10499
|
+
* Attribute path of the array to append to.
|
|
10500
|
+
*/
|
|
10501
|
+
target: string;
|
|
10502
|
+
}
|
|
10503
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationLength {
|
|
10504
|
+
/**
|
|
10505
|
+
* Attribute path of the array to compute the length of.
|
|
10506
|
+
*/
|
|
10507
|
+
source: string;
|
|
10508
|
+
/**
|
|
10509
|
+
* Attribute that receives the computed length.
|
|
10510
|
+
*/
|
|
10511
|
+
target: string;
|
|
10512
|
+
}
|
|
10513
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationSelect {
|
|
10514
|
+
/**
|
|
10515
|
+
* Filter expression (e.g. key1:value1 OR key2:value2) used to find the matching element.
|
|
10516
|
+
*/
|
|
10517
|
+
filter: string;
|
|
10518
|
+
/**
|
|
10519
|
+
* Attribute path of the array to search into.
|
|
10520
|
+
*/
|
|
10521
|
+
source: string;
|
|
10522
|
+
/**
|
|
10523
|
+
* Attribute that receives the extracted value.
|
|
10524
|
+
*/
|
|
10525
|
+
target: string;
|
|
10526
|
+
/**
|
|
10527
|
+
* Attribute key from the matching object that should be extracted.
|
|
10528
|
+
*/
|
|
10529
|
+
valueToExtract: string;
|
|
10530
|
+
}
|
|
10349
10531
|
export interface LogsCustomPipelineProcessorPipelineProcessorAttributeRemapper {
|
|
10350
10532
|
/**
|
|
10351
10533
|
* If the processor is enabled or not.
|
|
@@ -10426,6 +10608,32 @@ export interface LogsCustomPipelineProcessorPipelineProcessorDateRemapper {
|
|
|
10426
10608
|
*/
|
|
10427
10609
|
sources: string[];
|
|
10428
10610
|
}
|
|
10611
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorDecoderProcessor {
|
|
10612
|
+
/**
|
|
10613
|
+
* Encoding type: base64 or base16
|
|
10614
|
+
*/
|
|
10615
|
+
binaryToTextEncoding: string;
|
|
10616
|
+
/**
|
|
10617
|
+
* Input representation: utf-8 or integer
|
|
10618
|
+
*/
|
|
10619
|
+
inputRepresentation: string;
|
|
10620
|
+
/**
|
|
10621
|
+
* If the processor is enabled or not.
|
|
10622
|
+
*/
|
|
10623
|
+
isEnabled?: boolean;
|
|
10624
|
+
/**
|
|
10625
|
+
* Name of the processor.
|
|
10626
|
+
*/
|
|
10627
|
+
name?: string;
|
|
10628
|
+
/**
|
|
10629
|
+
* Encoded message
|
|
10630
|
+
*/
|
|
10631
|
+
source: string;
|
|
10632
|
+
/**
|
|
10633
|
+
* Decoded message
|
|
10634
|
+
*/
|
|
10635
|
+
target: string;
|
|
10636
|
+
}
|
|
10429
10637
|
export interface LogsCustomPipelineProcessorPipelineProcessorGeoIpParser {
|
|
10430
10638
|
/**
|
|
10431
10639
|
* If the processor is enabled or not.
|
|
@@ -24772,9 +24980,9 @@ export interface SecurityMonitoringDefaultRuleFilter {
|
|
|
24772
24980
|
}
|
|
24773
24981
|
export interface SecurityMonitoringDefaultRuleOptions {
|
|
24774
24982
|
/**
|
|
24775
|
-
* If true, signals in non-production environments have a lower severity than what is defined by the rule case, which can reduce noise. The decrement is applied when the environment tag of the signal starts with `staging`, `test`, or `dev`. Only available when the rule type is `logDetection`.
|
|
24983
|
+
* If true, signals in non-production environments have a lower severity than what is defined by the rule case, which can reduce noise. The decrement is applied when the environment tag of the signal starts with `staging`, `test`, or `dev`. Only available when the rule type is `logDetection`.
|
|
24776
24984
|
*/
|
|
24777
|
-
decreaseCriticalityBasedOnEnv
|
|
24985
|
+
decreaseCriticalityBasedOnEnv: boolean;
|
|
24778
24986
|
}
|
|
24779
24987
|
export interface SecurityMonitoringDefaultRuleQuery {
|
|
24780
24988
|
/**
|
|
@@ -24784,31 +24992,31 @@ export interface SecurityMonitoringDefaultRuleQuery {
|
|
|
24784
24992
|
*/
|
|
24785
24993
|
agentRules?: outputs.SecurityMonitoringDefaultRuleQueryAgentRule[];
|
|
24786
24994
|
/**
|
|
24787
|
-
* The aggregation type. For Signal Correlation rules, it must be event_count. Valid values are `count`, `cardinality`, `sum`, `max`, `newValue`, `geoData`, `eventCount`, `none`.
|
|
24995
|
+
* The aggregation type. For Signal Correlation rules, it must be event_count. Valid values are `count`, `cardinality`, `sum`, `max`, `newValue`, `geoData`, `eventCount`, `none`.
|
|
24788
24996
|
*/
|
|
24789
|
-
aggregation
|
|
24997
|
+
aggregation: string;
|
|
24790
24998
|
/**
|
|
24791
24999
|
* Query extension to append to the logs query.
|
|
24792
25000
|
*/
|
|
24793
|
-
customQueryExtension
|
|
25001
|
+
customQueryExtension: string;
|
|
24794
25002
|
/**
|
|
24795
|
-
* Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`, `events`.
|
|
25003
|
+
* Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`, `events`.
|
|
24796
25004
|
*/
|
|
24797
|
-
dataSource
|
|
25005
|
+
dataSource: string;
|
|
24798
25006
|
/**
|
|
24799
25007
|
* Field for which the cardinality is measured. Sent as an array.
|
|
24800
25008
|
*/
|
|
24801
|
-
distinctFields
|
|
25009
|
+
distinctFields: string[];
|
|
24802
25010
|
/**
|
|
24803
25011
|
* Fields to group by.
|
|
24804
25012
|
*/
|
|
24805
|
-
groupByFields
|
|
25013
|
+
groupByFields: string[];
|
|
24806
25014
|
/**
|
|
24807
25015
|
* The target field to aggregate over when using the `sum`, `max`, or `geoData` aggregations. **Deprecated.** Configure `metrics` instead. This attribute will be removed in the next major version of the provider.
|
|
24808
25016
|
*
|
|
24809
25017
|
* @deprecated Configure `metrics` instead. This attribute will be removed in the next major version of the provider.
|
|
24810
25018
|
*/
|
|
24811
|
-
metric
|
|
25019
|
+
metric: string;
|
|
24812
25020
|
/**
|
|
24813
25021
|
* Group of target fields to aggregate over when using the `sum`, `max`, `geoData`, or `newValue` aggregations. The `sum`, `max`, and `geoData` aggregations only accept one value in this list, whereas the `newValue` aggregation accepts up to five values.
|
|
24814
25022
|
*/
|
|
@@ -24816,7 +25024,7 @@ export interface SecurityMonitoringDefaultRuleQuery {
|
|
|
24816
25024
|
/**
|
|
24817
25025
|
* Name of the query. Not compatible with `newValue` aggregations.
|
|
24818
25026
|
*/
|
|
24819
|
-
name
|
|
25027
|
+
name: string;
|
|
24820
25028
|
/**
|
|
24821
25029
|
* Query to run on logs.
|
|
24822
25030
|
*/
|
|
@@ -24870,7 +25078,7 @@ export interface SecurityMonitoringRuleCaseAction {
|
|
|
24870
25078
|
*/
|
|
24871
25079
|
options?: outputs.SecurityMonitoringRuleCaseActionOptions;
|
|
24872
25080
|
/**
|
|
24873
|
-
* Type of action to perform when the case triggers. Valid values are `blockIp`, `blockUser`, `userBehavior`.
|
|
25081
|
+
* Type of action to perform when the case triggers. Valid values are `blockIp`, `blockUser`, `userBehavior`, `flagIp`.
|
|
24874
25082
|
*/
|
|
24875
25083
|
type: string;
|
|
24876
25084
|
}
|
|
@@ -25361,7 +25569,7 @@ export interface SyntheticsTestApiStep {
|
|
|
25361
25569
|
*/
|
|
25362
25570
|
requestClientCertificate?: outputs.SyntheticsTestApiStepRequestClientCertificate;
|
|
25363
25571
|
/**
|
|
25364
|
-
* The request for the
|
|
25572
|
+
* The request for the API step.
|
|
25365
25573
|
*/
|
|
25366
25574
|
requestDefinition?: outputs.SyntheticsTestApiStepRequestDefinition;
|
|
25367
25575
|
/**
|
|
@@ -25392,7 +25600,7 @@ export interface SyntheticsTestApiStep {
|
|
|
25392
25600
|
};
|
|
25393
25601
|
retry?: outputs.SyntheticsTestApiStepRetry;
|
|
25394
25602
|
/**
|
|
25395
|
-
* The subtype of the Synthetic
|
|
25603
|
+
* The subtype of the Synthetic multistep API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `wait`. Defaults to `"http"`.
|
|
25396
25604
|
*/
|
|
25397
25605
|
subtype?: string;
|
|
25398
25606
|
/**
|
|
@@ -25602,7 +25810,7 @@ export interface SyntheticsTestApiStepRequestClientCertificateKey {
|
|
|
25602
25810
|
}
|
|
25603
25811
|
export interface SyntheticsTestApiStepRequestDefinition {
|
|
25604
25812
|
/**
|
|
25605
|
-
* For SSL
|
|
25813
|
+
* For SSL tests, whether or not the test should allow self signed certificates.
|
|
25606
25814
|
*/
|
|
25607
25815
|
acceptSelfSigned?: boolean;
|
|
25608
25816
|
/**
|
|
@@ -25626,9 +25834,13 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
25626
25834
|
*/
|
|
25627
25835
|
certificateDomains?: string[];
|
|
25628
25836
|
/**
|
|
25629
|
-
* For SSL
|
|
25837
|
+
* For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
|
|
25630
25838
|
*/
|
|
25631
25839
|
checkCertificateRevocation?: boolean;
|
|
25840
|
+
/**
|
|
25841
|
+
* For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA
|
|
25842
|
+
*/
|
|
25843
|
+
disableAiaIntermediateFetching?: boolean;
|
|
25632
25844
|
/**
|
|
25633
25845
|
* DNS server to use for DNS tests (`subtype = "dns"`).
|
|
25634
25846
|
*/
|
|
@@ -25660,7 +25872,7 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
25660
25872
|
*/
|
|
25661
25873
|
isMessageBase64Encoded?: boolean;
|
|
25662
25874
|
/**
|
|
25663
|
-
* For UDP and websocket tests, message to send with the request.
|
|
25875
|
+
* For gRPC, UDP and websocket tests, message to send with the request.
|
|
25664
25876
|
*/
|
|
25665
25877
|
message?: string;
|
|
25666
25878
|
/**
|
|
@@ -26314,7 +26526,7 @@ export interface SyntheticsTestMobileStepParamsVariable {
|
|
|
26314
26526
|
}
|
|
26315
26527
|
export interface SyntheticsTestOptionsList {
|
|
26316
26528
|
/**
|
|
26317
|
-
* For SSL
|
|
26529
|
+
* For SSL tests, whether or not the test should allow self signed certificates.
|
|
26318
26530
|
*/
|
|
26319
26531
|
acceptSelfSigned?: boolean;
|
|
26320
26532
|
/**
|
|
@@ -26322,13 +26534,17 @@ export interface SyntheticsTestOptionsList {
|
|
|
26322
26534
|
*/
|
|
26323
26535
|
allowInsecure?: boolean;
|
|
26324
26536
|
/**
|
|
26325
|
-
* For SSL
|
|
26537
|
+
* For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
|
|
26326
26538
|
*/
|
|
26327
26539
|
checkCertificateRevocation?: boolean;
|
|
26328
26540
|
/**
|
|
26329
26541
|
* CI/CD options for a Synthetic test.
|
|
26330
26542
|
*/
|
|
26331
26543
|
ci?: outputs.SyntheticsTestOptionsListCi;
|
|
26544
|
+
/**
|
|
26545
|
+
* For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA
|
|
26546
|
+
*/
|
|
26547
|
+
disableAiaIntermediateFetching?: boolean;
|
|
26332
26548
|
/**
|
|
26333
26549
|
* Disable Cross-Origin Resource Sharing for browser tests.
|
|
26334
26550
|
*/
|
|
@@ -26603,7 +26819,7 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
26603
26819
|
*/
|
|
26604
26820
|
isMessageBase64Encoded?: boolean;
|
|
26605
26821
|
/**
|
|
26606
|
-
* For UDP and websocket tests, message to send with the request.
|
|
26822
|
+
* For gRPC, UDP and websocket tests, message to send with the request.
|
|
26607
26823
|
*/
|
|
26608
26824
|
message?: string;
|
|
26609
26825
|
/**
|