@pulumi/datadog 4.7.0-alpha.1646160203 → 4.7.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/types/output.d.ts CHANGED
@@ -201,6 +201,10 @@ export interface DashboardWidget {
201
201
  * The definition for a Trace Service widget.
202
202
  */
203
203
  traceServiceDefinition?: outputs.DashboardWidgetTraceServiceDefinition;
204
+ /**
205
+ * The definition for a Treemap widget.
206
+ */
207
+ treemapDefinition?: outputs.DashboardWidgetTreemapDefinition;
204
208
  /**
205
209
  * The layout of the widget on a 'free' dashboard.
206
210
  */
@@ -500,6 +504,7 @@ export interface DashboardWidgetDistributionDefinition {
500
504
  }
501
505
  export interface DashboardWidgetDistributionDefinitionRequest {
502
506
  apmQuery?: outputs.DashboardWidgetDistributionDefinitionRequestApmQuery;
507
+ apmStatsQuery?: outputs.DashboardWidgetDistributionDefinitionRequestApmStatsQuery;
503
508
  logQuery?: outputs.DashboardWidgetDistributionDefinitionRequestLogQuery;
504
509
  processQuery?: outputs.DashboardWidgetDistributionDefinitionRequestProcessQuery;
505
510
  q?: string;
@@ -534,6 +539,21 @@ export interface DashboardWidgetDistributionDefinitionRequestApmQueryMultiComput
534
539
  facet?: string;
535
540
  interval?: number;
536
541
  }
542
+ export interface DashboardWidgetDistributionDefinitionRequestApmStatsQuery {
543
+ columns?: outputs.DashboardWidgetDistributionDefinitionRequestApmStatsQueryColumn[];
544
+ env: string;
545
+ name: string;
546
+ primaryTag: string;
547
+ resource?: string;
548
+ rowType: string;
549
+ service: string;
550
+ }
551
+ export interface DashboardWidgetDistributionDefinitionRequestApmStatsQueryColumn {
552
+ alias?: string;
553
+ cellDisplayMode?: string;
554
+ name: string;
555
+ order?: string;
556
+ }
537
557
  export interface DashboardWidgetDistributionDefinitionRequestLogQuery {
538
558
  computeQuery?: outputs.DashboardWidgetDistributionDefinitionRequestLogQueryComputeQuery;
539
559
  groupBies?: outputs.DashboardWidgetDistributionDefinitionRequestLogQueryGroupBy[];
@@ -958,6 +978,10 @@ export interface DashboardWidgetGroupDefinitionWidget {
958
978
  * The definition for a Trace Service widget.
959
979
  */
960
980
  traceServiceDefinition?: outputs.DashboardWidgetGroupDefinitionWidgetTraceServiceDefinition;
981
+ /**
982
+ * The definition for a Treemap widget.
983
+ */
984
+ treemapDefinition?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinition;
961
985
  /**
962
986
  * The layout of the widget on a 'free' dashboard.
963
987
  */
@@ -1257,6 +1281,7 @@ export interface DashboardWidgetGroupDefinitionWidgetDistributionDefinition {
1257
1281
  }
1258
1282
  export interface DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequest {
1259
1283
  apmQuery?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery;
1284
+ apmStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery;
1260
1285
  logQuery?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery;
1261
1286
  processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery;
1262
1287
  q?: string;
@@ -1291,6 +1316,21 @@ export interface DashboardWidgetGroupDefinitionWidgetDistributionDefinitionReque
1291
1316
  facet?: string;
1292
1317
  interval?: number;
1293
1318
  }
1319
+ export interface DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery {
1320
+ columns?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn[];
1321
+ env: string;
1322
+ name: string;
1323
+ primaryTag: string;
1324
+ resource?: string;
1325
+ rowType: string;
1326
+ service: string;
1327
+ }
1328
+ export interface DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn {
1329
+ alias?: string;
1330
+ cellDisplayMode?: string;
1331
+ name: string;
1332
+ order?: string;
1333
+ }
1294
1334
  export interface DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery {
1295
1335
  computeQuery?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery;
1296
1336
  groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy[];
@@ -3986,6 +4026,113 @@ export interface DashboardWidgetGroupDefinitionWidgetTraceServiceDefinition {
3986
4026
  titleAlign?: string;
3987
4027
  titleSize?: string;
3988
4028
  }
4029
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinition {
4030
+ requests?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequest[];
4031
+ /**
4032
+ * The title of the dashboard.
4033
+ */
4034
+ title?: string;
4035
+ }
4036
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequest {
4037
+ formulas?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormula[];
4038
+ queries?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQuery[];
4039
+ }
4040
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormula {
4041
+ alias?: string;
4042
+ cellDisplayMode?: string;
4043
+ conditionalFormats?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormulaConditionalFormat[];
4044
+ formulaExpression: string;
4045
+ limit?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormulaLimit;
4046
+ }
4047
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormulaConditionalFormat {
4048
+ comparator: string;
4049
+ customBgColor?: string;
4050
+ customFgColor?: string;
4051
+ hideValue?: boolean;
4052
+ imageUrl?: string;
4053
+ metric?: string;
4054
+ palette: string;
4055
+ timeframe?: string;
4056
+ value: number;
4057
+ }
4058
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormulaLimit {
4059
+ count?: number;
4060
+ order?: string;
4061
+ }
4062
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQuery {
4063
+ apmDependencyStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryApmDependencyStatsQuery;
4064
+ apmResourceStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryApmResourceStatsQuery;
4065
+ eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQuery;
4066
+ metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryMetricQuery;
4067
+ processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryProcessQuery;
4068
+ }
4069
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryApmDependencyStatsQuery {
4070
+ dataSource: string;
4071
+ env: string;
4072
+ isUpstream?: boolean;
4073
+ name: string;
4074
+ operationName: string;
4075
+ primaryTagName?: string;
4076
+ primaryTagValue?: string;
4077
+ resourceName: string;
4078
+ service: string;
4079
+ stat: string;
4080
+ }
4081
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryApmResourceStatsQuery {
4082
+ dataSource: string;
4083
+ env: string;
4084
+ groupBies?: string[];
4085
+ name: string;
4086
+ operationName?: string;
4087
+ primaryTagName?: string;
4088
+ primaryTagValue?: string;
4089
+ resourceName?: string;
4090
+ service: string;
4091
+ stat: string;
4092
+ }
4093
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQuery {
4094
+ computes: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQueryCompute[];
4095
+ dataSource: string;
4096
+ groupBies?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQueryGroupBy[];
4097
+ indexes?: string[];
4098
+ name: string;
4099
+ search?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQuerySearch;
4100
+ }
4101
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQueryCompute {
4102
+ aggregation: string;
4103
+ interval?: number;
4104
+ metric?: string;
4105
+ }
4106
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQueryGroupBy {
4107
+ facet: string;
4108
+ limit?: number;
4109
+ sort?: outputs.DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQueryGroupBySort;
4110
+ }
4111
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQueryGroupBySort {
4112
+ aggregation: string;
4113
+ metric?: string;
4114
+ order?: string;
4115
+ }
4116
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEventQuerySearch {
4117
+ query: string;
4118
+ }
4119
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryMetricQuery {
4120
+ aggregator?: string;
4121
+ dataSource?: string;
4122
+ name: string;
4123
+ query: string;
4124
+ }
4125
+ export interface DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryProcessQuery {
4126
+ aggregator?: string;
4127
+ dataSource: string;
4128
+ isNormalizedCpu?: boolean;
4129
+ limit?: number;
4130
+ metric: string;
4131
+ name: string;
4132
+ sort?: string;
4133
+ tagFilters?: string[];
4134
+ textFilter?: string;
4135
+ }
3989
4136
  export interface DashboardWidgetGroupDefinitionWidgetWidgetLayout {
3990
4137
  height: number;
3991
4138
  isColumnBreak?: boolean;
@@ -6386,6 +6533,113 @@ export interface DashboardWidgetTraceServiceDefinition {
6386
6533
  titleAlign?: string;
6387
6534
  titleSize?: string;
6388
6535
  }
6536
+ export interface DashboardWidgetTreemapDefinition {
6537
+ requests?: outputs.DashboardWidgetTreemapDefinitionRequest[];
6538
+ /**
6539
+ * The title of the dashboard.
6540
+ */
6541
+ title?: string;
6542
+ }
6543
+ export interface DashboardWidgetTreemapDefinitionRequest {
6544
+ formulas?: outputs.DashboardWidgetTreemapDefinitionRequestFormula[];
6545
+ queries?: outputs.DashboardWidgetTreemapDefinitionRequestQuery[];
6546
+ }
6547
+ export interface DashboardWidgetTreemapDefinitionRequestFormula {
6548
+ alias?: string;
6549
+ cellDisplayMode?: string;
6550
+ conditionalFormats?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaConditionalFormat[];
6551
+ formulaExpression: string;
6552
+ limit?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaLimit;
6553
+ }
6554
+ export interface DashboardWidgetTreemapDefinitionRequestFormulaConditionalFormat {
6555
+ comparator: string;
6556
+ customBgColor?: string;
6557
+ customFgColor?: string;
6558
+ hideValue?: boolean;
6559
+ imageUrl?: string;
6560
+ metric?: string;
6561
+ palette: string;
6562
+ timeframe?: string;
6563
+ value: number;
6564
+ }
6565
+ export interface DashboardWidgetTreemapDefinitionRequestFormulaLimit {
6566
+ count?: number;
6567
+ order?: string;
6568
+ }
6569
+ export interface DashboardWidgetTreemapDefinitionRequestQuery {
6570
+ apmDependencyStatsQuery?: outputs.DashboardWidgetTreemapDefinitionRequestQueryApmDependencyStatsQuery;
6571
+ apmResourceStatsQuery?: outputs.DashboardWidgetTreemapDefinitionRequestQueryApmResourceStatsQuery;
6572
+ eventQuery?: outputs.DashboardWidgetTreemapDefinitionRequestQueryEventQuery;
6573
+ metricQuery?: outputs.DashboardWidgetTreemapDefinitionRequestQueryMetricQuery;
6574
+ processQuery?: outputs.DashboardWidgetTreemapDefinitionRequestQueryProcessQuery;
6575
+ }
6576
+ export interface DashboardWidgetTreemapDefinitionRequestQueryApmDependencyStatsQuery {
6577
+ dataSource: string;
6578
+ env: string;
6579
+ isUpstream?: boolean;
6580
+ name: string;
6581
+ operationName: string;
6582
+ primaryTagName?: string;
6583
+ primaryTagValue?: string;
6584
+ resourceName: string;
6585
+ service: string;
6586
+ stat: string;
6587
+ }
6588
+ export interface DashboardWidgetTreemapDefinitionRequestQueryApmResourceStatsQuery {
6589
+ dataSource: string;
6590
+ env: string;
6591
+ groupBies?: string[];
6592
+ name: string;
6593
+ operationName?: string;
6594
+ primaryTagName?: string;
6595
+ primaryTagValue?: string;
6596
+ resourceName?: string;
6597
+ service: string;
6598
+ stat: string;
6599
+ }
6600
+ export interface DashboardWidgetTreemapDefinitionRequestQueryEventQuery {
6601
+ computes: outputs.DashboardWidgetTreemapDefinitionRequestQueryEventQueryCompute[];
6602
+ dataSource: string;
6603
+ groupBies?: outputs.DashboardWidgetTreemapDefinitionRequestQueryEventQueryGroupBy[];
6604
+ indexes?: string[];
6605
+ name: string;
6606
+ search?: outputs.DashboardWidgetTreemapDefinitionRequestQueryEventQuerySearch;
6607
+ }
6608
+ export interface DashboardWidgetTreemapDefinitionRequestQueryEventQueryCompute {
6609
+ aggregation: string;
6610
+ interval?: number;
6611
+ metric?: string;
6612
+ }
6613
+ export interface DashboardWidgetTreemapDefinitionRequestQueryEventQueryGroupBy {
6614
+ facet: string;
6615
+ limit?: number;
6616
+ sort?: outputs.DashboardWidgetTreemapDefinitionRequestQueryEventQueryGroupBySort;
6617
+ }
6618
+ export interface DashboardWidgetTreemapDefinitionRequestQueryEventQueryGroupBySort {
6619
+ aggregation: string;
6620
+ metric?: string;
6621
+ order?: string;
6622
+ }
6623
+ export interface DashboardWidgetTreemapDefinitionRequestQueryEventQuerySearch {
6624
+ query: string;
6625
+ }
6626
+ export interface DashboardWidgetTreemapDefinitionRequestQueryMetricQuery {
6627
+ aggregator?: string;
6628
+ dataSource?: string;
6629
+ name: string;
6630
+ query: string;
6631
+ }
6632
+ export interface DashboardWidgetTreemapDefinitionRequestQueryProcessQuery {
6633
+ aggregator?: string;
6634
+ dataSource: string;
6635
+ isNormalizedCpu?: boolean;
6636
+ limit?: number;
6637
+ metric: string;
6638
+ name: string;
6639
+ sort?: string;
6640
+ tagFilters?: string[];
6641
+ textFilter?: string;
6642
+ }
6389
6643
  export interface DashboardWidgetWidgetLayout {
6390
6644
  height: number;
6391
6645
  isColumnBreak?: boolean;
@@ -6419,6 +6673,35 @@ export interface DowntimeRecurrence {
6419
6673
  */
6420
6674
  weekDays?: string[];
6421
6675
  }
6676
+ export interface GetCloudWorkloadSecurityAgentRulesAgentRule {
6677
+ description: string;
6678
+ enabled: boolean;
6679
+ expression: string;
6680
+ /**
6681
+ * The ID of this resource.
6682
+ */
6683
+ id: string;
6684
+ name: string;
6685
+ }
6686
+ export interface GetLogsIndexesLogsIndex {
6687
+ dailyLimit: number;
6688
+ exclusionFilters: outputs.GetLogsIndexesLogsIndexExclusionFilter[];
6689
+ filters: outputs.GetLogsIndexesLogsIndexFilter[];
6690
+ name: string;
6691
+ retentionDays: number;
6692
+ }
6693
+ export interface GetLogsIndexesLogsIndexExclusionFilter {
6694
+ filters?: outputs.GetLogsIndexesLogsIndexExclusionFilterFilter[];
6695
+ isEnabled: boolean;
6696
+ name: string;
6697
+ }
6698
+ export interface GetLogsIndexesLogsIndexExclusionFilterFilter {
6699
+ query: string;
6700
+ sampleRate: number;
6701
+ }
6702
+ export interface GetLogsIndexesLogsIndexFilter {
6703
+ query: string;
6704
+ }
6422
6705
  export interface GetMonitorMonitorThreshold {
6423
6706
  critical: string;
6424
6707
  criticalRecovery: string;
@@ -6483,7 +6766,7 @@ export interface GetSecurityMonitoringRulesRuleFilter {
6483
6766
  }
6484
6767
  export interface GetSecurityMonitoringRulesRuleOptions {
6485
6768
  detectionMethod?: string;
6486
- evaluationWindow: number;
6769
+ evaluationWindow?: number;
6487
6770
  keepAlive: number;
6488
6771
  maxSignalDuration: number;
6489
6772
  newValueOptions?: outputs.GetSecurityMonitoringRulesRuleOptionsNewValueOptions;
@@ -7119,7 +7402,7 @@ export interface SecurityMonitoringRuleFilter {
7119
7402
  }
7120
7403
  export interface SecurityMonitoringRuleOptions {
7121
7404
  detectionMethod?: string;
7122
- evaluationWindow: number;
7405
+ evaluationWindow?: number;
7123
7406
  keepAlive: number;
7124
7407
  maxSignalDuration: number;
7125
7408
  newValueOptions?: outputs.SecurityMonitoringRuleOptionsNewValueOptions;
@@ -7239,6 +7522,10 @@ export interface SyntheticsTestApiStep {
7239
7522
  requestHeaders?: {
7240
7523
  [key: string]: any;
7241
7524
  };
7525
+ /**
7526
+ * The proxy to perform the test.
7527
+ */
7528
+ requestProxy?: outputs.SyntheticsTestApiStepRequestProxy;
7242
7529
  /**
7243
7530
  * Query arguments name and value map.
7244
7531
  */
@@ -7298,14 +7585,46 @@ export interface SyntheticsTestApiStepExtractedValueParser {
7298
7585
  value?: string;
7299
7586
  }
7300
7587
  export interface SyntheticsTestApiStepRequestBasicauth {
7588
+ /**
7589
+ * Access key for `SIGV4` authentication.
7590
+ */
7591
+ accessKey?: string;
7592
+ /**
7593
+ * Domain for `ntlm` authentication.
7594
+ */
7595
+ domain?: string;
7301
7596
  /**
7302
7597
  * Password for authentication.
7303
7598
  */
7304
- password: string;
7599
+ password?: string;
7600
+ /**
7601
+ * Region for `SIGV4` authentication.
7602
+ */
7603
+ region?: string;
7604
+ /**
7605
+ * Secret key for `SIGV4` authentication.
7606
+ */
7607
+ secretKey?: string;
7608
+ /**
7609
+ * Service name for `SIGV4` authentication.
7610
+ */
7611
+ serviceName?: string;
7612
+ /**
7613
+ * Session token for `SIGV4` authentication.
7614
+ */
7615
+ sessionToken?: string;
7616
+ /**
7617
+ * Type of basic authentication to use when performing the test.
7618
+ */
7619
+ type?: string;
7305
7620
  /**
7306
7621
  * Username for authentication.
7307
7622
  */
7308
- username: string;
7623
+ username?: string;
7624
+ /**
7625
+ * Workstation for `ntlm` authentication.
7626
+ */
7627
+ workstation?: string;
7309
7628
  }
7310
7629
  export interface SyntheticsTestApiStepRequestClientCertificate {
7311
7630
  cert: outputs.SyntheticsTestApiStepRequestClientCertificateCert;
@@ -7375,6 +7694,18 @@ export interface SyntheticsTestApiStepRequestDefinition {
7375
7694
  */
7376
7695
  url?: string;
7377
7696
  }
7697
+ export interface SyntheticsTestApiStepRequestProxy {
7698
+ /**
7699
+ * Header name and value map.
7700
+ */
7701
+ headers?: {
7702
+ [key: string]: any;
7703
+ };
7704
+ /**
7705
+ * URL of the proxy to perform the test.
7706
+ */
7707
+ url: string;
7708
+ }
7378
7709
  export interface SyntheticsTestApiStepRetry {
7379
7710
  count?: number;
7380
7711
  interval?: number;
@@ -7415,6 +7746,10 @@ export interface SyntheticsTestBrowserStep {
7415
7746
  * Force update of the "element" parameter for the step
7416
7747
  */
7417
7748
  forceElementUpdate?: boolean;
7749
+ /**
7750
+ * Determines whether or not to consider the entire test as failed if this step fails. Can be used only if `allowFailure` is `true`.
7751
+ */
7752
+ isCritical?: boolean;
7418
7753
  /**
7419
7754
  * Name of the step.
7420
7755
  */
@@ -7439,6 +7774,7 @@ export interface SyntheticsTestBrowserStepParams {
7439
7774
  code?: string;
7440
7775
  delay?: number;
7441
7776
  element?: string;
7777
+ elementUserLocator?: outputs.SyntheticsTestBrowserStepParamsElementUserLocator;
7442
7778
  email?: string;
7443
7779
  file?: string;
7444
7780
  files?: string;
@@ -7452,6 +7788,17 @@ export interface SyntheticsTestBrowserStepParams {
7452
7788
  x?: number;
7453
7789
  y?: number;
7454
7790
  }
7791
+ export interface SyntheticsTestBrowserStepParamsElementUserLocator {
7792
+ failTestOnCannotLocate?: boolean;
7793
+ value: outputs.SyntheticsTestBrowserStepParamsElementUserLocatorValue;
7794
+ }
7795
+ export interface SyntheticsTestBrowserStepParamsElementUserLocatorValue {
7796
+ /**
7797
+ * Synthetics test type. Valid values are `api`, `browser`.
7798
+ */
7799
+ type?: string;
7800
+ value: string;
7801
+ }
7455
7802
  export interface SyntheticsTestBrowserStepParamsVariable {
7456
7803
  example?: string;
7457
7804
  /**
@@ -7512,6 +7859,10 @@ export interface SyntheticsTestOptionsList {
7512
7859
  * Allows loading insecure content for an HTTP test.
7513
7860
  */
7514
7861
  allowInsecure?: boolean;
7862
+ /**
7863
+ * For SSL test, whether or not the test should fail on revoked certificate in stapled OCSP.
7864
+ */
7865
+ checkCertificateRevocation?: boolean;
7515
7866
  /**
7516
7867
  * Determines whether or not the API HTTP test should follow redirects.
7517
7868
  */
@@ -7548,14 +7899,46 @@ export interface SyntheticsTestOptionsListRetry {
7548
7899
  interval?: number;
7549
7900
  }
7550
7901
  export interface SyntheticsTestRequestBasicauth {
7902
+ /**
7903
+ * Access key for `SIGV4` authentication.
7904
+ */
7905
+ accessKey?: string;
7906
+ /**
7907
+ * Domain for `ntlm` authentication.
7908
+ */
7909
+ domain?: string;
7551
7910
  /**
7552
7911
  * Password for authentication.
7553
7912
  */
7554
- password: string;
7913
+ password?: string;
7914
+ /**
7915
+ * Region for `SIGV4` authentication.
7916
+ */
7917
+ region?: string;
7918
+ /**
7919
+ * Secret key for `SIGV4` authentication.
7920
+ */
7921
+ secretKey?: string;
7922
+ /**
7923
+ * Service name for `SIGV4` authentication.
7924
+ */
7925
+ serviceName?: string;
7926
+ /**
7927
+ * Session token for `SIGV4` authentication.
7928
+ */
7929
+ sessionToken?: string;
7930
+ /**
7931
+ * Type of basic authentication to use when performing the test.
7932
+ */
7933
+ type?: string;
7555
7934
  /**
7556
7935
  * Username for authentication.
7557
7936
  */
7558
- username: string;
7937
+ username?: string;
7938
+ /**
7939
+ * Workstation for `ntlm` authentication.
7940
+ */
7941
+ workstation?: string;
7559
7942
  }
7560
7943
  export interface SyntheticsTestRequestClientCertificate {
7561
7944
  cert: outputs.SyntheticsTestRequestClientCertificateCert;
@@ -7623,6 +8006,18 @@ export interface SyntheticsTestRequestDefinition {
7623
8006
  */
7624
8007
  url?: string;
7625
8008
  }
8009
+ export interface SyntheticsTestRequestProxy {
8010
+ /**
8011
+ * Header name and value map.
8012
+ */
8013
+ headers?: {
8014
+ [key: string]: any;
8015
+ };
8016
+ /**
8017
+ * URL of the proxy to perform the test.
8018
+ */
8019
+ url: string;
8020
+ }
7626
8021
  export declare namespace slack {
7627
8022
  interface ChannelDisplay {
7628
8023
  /**