@pulumi/datadog 4.38.0-alpha.1734499896 → 4.38.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/aws/getIntegrationAvailableLogsServices.d.ts +22 -0
- package/aws/getIntegrationAvailableLogsServices.js +24 -0
- package/aws/getIntegrationAvailableLogsServices.js.map +1 -0
- package/aws/getIntegrationAvailableNamespaces.d.ts +22 -0
- package/aws/getIntegrationAvailableNamespaces.js +24 -0
- package/aws/getIntegrationAvailableNamespaces.js.map +1 -0
- package/aws/index.d.ts +9 -0
- package/aws/index.js +12 -1
- package/aws/index.js.map +1 -1
- package/aws/integrationAccount.d.ts +119 -0
- package/aws/integrationAccount.js +80 -0
- package/aws/integrationAccount.js.map +1 -0
- package/cloudflare/integrationAccount.d.ts +3 -3
- package/dashboard.d.ts +8 -6
- package/dashboard.js +2 -0
- package/dashboard.js.map +1 -1
- package/getSensitiveDataScannerStandardPattern.d.ts +7 -1
- package/getSensitiveDataScannerStandardPattern.js.map +1 -1
- package/monitor.d.ts +6 -1
- package/monitor.js +1 -1
- package/monitor.js.map +1 -1
- package/package.json +2 -2
- package/syntheticsTest.d.ts +179 -3
- package/syntheticsTest.js +149 -0
- package/syntheticsTest.js.map +1 -1
- package/types/input.d.ts +352 -4
- package/types/output.d.ts +352 -4
package/types/output.d.ts
CHANGED
|
@@ -21913,6 +21913,10 @@ export interface SyntheticsTestApiStep {
|
|
|
21913
21913
|
* Assertions used for the test. Multiple `assertion` blocks are allowed with the structure below.
|
|
21914
21914
|
*/
|
|
21915
21915
|
assertions?: outputs.SyntheticsTestApiStepAssertion[];
|
|
21916
|
+
/**
|
|
21917
|
+
* Determines whether or not to exit the test if the step succeeds.
|
|
21918
|
+
*/
|
|
21919
|
+
exitIfSucceed?: boolean;
|
|
21916
21920
|
/**
|
|
21917
21921
|
* Values to parse and save as variables from the response.
|
|
21918
21922
|
*/
|
|
@@ -22309,11 +22313,11 @@ export interface SyntheticsTestApiStepRequestProxy {
|
|
|
22309
22313
|
}
|
|
22310
22314
|
export interface SyntheticsTestApiStepRetry {
|
|
22311
22315
|
/**
|
|
22312
|
-
* Number of retries needed to consider a location as failed before sending a notification alert. Defaults to `0`.
|
|
22316
|
+
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `5`. Defaults to `0`.
|
|
22313
22317
|
*/
|
|
22314
22318
|
count?: number;
|
|
22315
22319
|
/**
|
|
22316
|
-
* Interval between a failed test and the next retry in milliseconds. Defaults to `300`.
|
|
22320
|
+
* Interval between a failed test and the next retry in milliseconds. Maximum value: `5000`. Defaults to `300`.
|
|
22317
22321
|
*/
|
|
22318
22322
|
interval?: number;
|
|
22319
22323
|
}
|
|
@@ -22587,6 +22591,237 @@ export interface SyntheticsTestConfigVariable {
|
|
|
22587
22591
|
*/
|
|
22588
22592
|
type: string;
|
|
22589
22593
|
}
|
|
22594
|
+
export interface SyntheticsTestMobileOptionsList {
|
|
22595
|
+
allowApplicationCrash?: boolean;
|
|
22596
|
+
bindings?: outputs.SyntheticsTestMobileOptionsListBinding[];
|
|
22597
|
+
/**
|
|
22598
|
+
* CI/CD options for a Synthetic test.
|
|
22599
|
+
*/
|
|
22600
|
+
ci?: outputs.SyntheticsTestMobileOptionsListCi;
|
|
22601
|
+
defaultStepTimeout?: number;
|
|
22602
|
+
deviceIds: string[];
|
|
22603
|
+
disableAutoAcceptAlert?: boolean;
|
|
22604
|
+
/**
|
|
22605
|
+
* Minimum amount of time in failure required to trigger an alert (in seconds). Default is `0`.
|
|
22606
|
+
*/
|
|
22607
|
+
minFailureDuration?: number;
|
|
22608
|
+
mobileApplication: outputs.SyntheticsTestMobileOptionsListMobileApplication;
|
|
22609
|
+
/**
|
|
22610
|
+
* The monitor name is used for the alert title as well as for all monitor dashboard widgets and SLOs.
|
|
22611
|
+
*/
|
|
22612
|
+
monitorName?: string;
|
|
22613
|
+
monitorOptions?: outputs.SyntheticsTestMobileOptionsListMonitorOptions;
|
|
22614
|
+
monitorPriority?: number;
|
|
22615
|
+
/**
|
|
22616
|
+
* Prevents saving screenshots of the steps.
|
|
22617
|
+
*/
|
|
22618
|
+
noScreenshot?: boolean;
|
|
22619
|
+
/**
|
|
22620
|
+
* A list of role identifiers pulled from the Roles API to restrict read and write access.
|
|
22621
|
+
*/
|
|
22622
|
+
restrictedRoles?: string[];
|
|
22623
|
+
retry?: outputs.SyntheticsTestMobileOptionsListRetry;
|
|
22624
|
+
/**
|
|
22625
|
+
* Object containing timeframes and timezone used for advanced scheduling.
|
|
22626
|
+
*/
|
|
22627
|
+
scheduling?: outputs.SyntheticsTestMobileOptionsListScheduling;
|
|
22628
|
+
/**
|
|
22629
|
+
* How often the test should run (in seconds).
|
|
22630
|
+
*/
|
|
22631
|
+
tickEvery: number;
|
|
22632
|
+
verbosity?: number;
|
|
22633
|
+
}
|
|
22634
|
+
export interface SyntheticsTestMobileOptionsListBinding {
|
|
22635
|
+
principals?: string[];
|
|
22636
|
+
/**
|
|
22637
|
+
* Valid values are `editor`, `viewer`.
|
|
22638
|
+
*/
|
|
22639
|
+
relation?: string;
|
|
22640
|
+
}
|
|
22641
|
+
export interface SyntheticsTestMobileOptionsListCi {
|
|
22642
|
+
/**
|
|
22643
|
+
* Execution rule for a Synthetics test. Valid values are `blocking`, `nonBlocking`, `skipped`.
|
|
22644
|
+
*/
|
|
22645
|
+
executionRule: string;
|
|
22646
|
+
}
|
|
22647
|
+
export interface SyntheticsTestMobileOptionsListMobileApplication {
|
|
22648
|
+
applicationId: string;
|
|
22649
|
+
referenceId: string;
|
|
22650
|
+
/**
|
|
22651
|
+
* Valid values are `latest`, `version`.
|
|
22652
|
+
*/
|
|
22653
|
+
referenceType: string;
|
|
22654
|
+
}
|
|
22655
|
+
export interface SyntheticsTestMobileOptionsListMonitorOptions {
|
|
22656
|
+
escalationMessage?: string;
|
|
22657
|
+
/**
|
|
22658
|
+
* Valid values are `showAll`, `hideAll`, `hideQuery`, `hideHandles`.
|
|
22659
|
+
*/
|
|
22660
|
+
notificationPresetName?: string;
|
|
22661
|
+
/**
|
|
22662
|
+
* Specify a renotification frequency in minutes. Values available by default are `0`, `10`, `20`, `30`, `40`, `50`, `60`, `90`, `120`, `180`, `240`, `300`, `360`, `720`, `1440`. Defaults to `0`.
|
|
22663
|
+
*/
|
|
22664
|
+
renotifyInterval?: number;
|
|
22665
|
+
renotifyOccurrences?: number;
|
|
22666
|
+
}
|
|
22667
|
+
export interface SyntheticsTestMobileOptionsListRetry {
|
|
22668
|
+
/**
|
|
22669
|
+
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `5`. Defaults to `0`.
|
|
22670
|
+
*/
|
|
22671
|
+
count?: number;
|
|
22672
|
+
/**
|
|
22673
|
+
* Interval between a failed test and the next retry in milliseconds. Maximum value: `5000`. Defaults to `300`.
|
|
22674
|
+
*/
|
|
22675
|
+
interval?: number;
|
|
22676
|
+
}
|
|
22677
|
+
export interface SyntheticsTestMobileOptionsListScheduling {
|
|
22678
|
+
/**
|
|
22679
|
+
* Array containing objects describing the scheduling pattern to apply to each day.
|
|
22680
|
+
*/
|
|
22681
|
+
timeframes: outputs.SyntheticsTestMobileOptionsListSchedulingTimeframe[];
|
|
22682
|
+
/**
|
|
22683
|
+
* Timezone in which the timeframe is based.
|
|
22684
|
+
*/
|
|
22685
|
+
timezone: string;
|
|
22686
|
+
}
|
|
22687
|
+
export interface SyntheticsTestMobileOptionsListSchedulingTimeframe {
|
|
22688
|
+
/**
|
|
22689
|
+
* Number representing the day of the week
|
|
22690
|
+
*/
|
|
22691
|
+
day: number;
|
|
22692
|
+
/**
|
|
22693
|
+
* The hour of the day on which scheduling starts.
|
|
22694
|
+
*/
|
|
22695
|
+
from: string;
|
|
22696
|
+
/**
|
|
22697
|
+
* The hour of the day on which scheduling ends.
|
|
22698
|
+
*/
|
|
22699
|
+
to: string;
|
|
22700
|
+
}
|
|
22701
|
+
export interface SyntheticsTestMobileStep {
|
|
22702
|
+
/**
|
|
22703
|
+
* A boolean set to allow this step to fail.
|
|
22704
|
+
*/
|
|
22705
|
+
allowFailure?: boolean;
|
|
22706
|
+
/**
|
|
22707
|
+
* A boolean set to determine if the step has a new step element.
|
|
22708
|
+
*/
|
|
22709
|
+
hasNewStepElement?: boolean;
|
|
22710
|
+
/**
|
|
22711
|
+
* A boolean to use in addition to `allowFailure` to determine if the test should be marked as failed when the step fails.
|
|
22712
|
+
*/
|
|
22713
|
+
isCritical?: boolean;
|
|
22714
|
+
/**
|
|
22715
|
+
* The name of the step.
|
|
22716
|
+
*/
|
|
22717
|
+
name: string;
|
|
22718
|
+
/**
|
|
22719
|
+
* A boolean set to not take a screenshot for the step.
|
|
22720
|
+
*/
|
|
22721
|
+
noScreenshot?: boolean;
|
|
22722
|
+
/**
|
|
22723
|
+
* Parameters for the step.
|
|
22724
|
+
*/
|
|
22725
|
+
params: outputs.SyntheticsTestMobileStepParams;
|
|
22726
|
+
/**
|
|
22727
|
+
* The public ID of the step.
|
|
22728
|
+
*/
|
|
22729
|
+
publicId?: string;
|
|
22730
|
+
/**
|
|
22731
|
+
* The time before declaring a step failed.
|
|
22732
|
+
*/
|
|
22733
|
+
timeout?: number;
|
|
22734
|
+
/**
|
|
22735
|
+
* The type of the step. Valid values are `assertElementContent`, `assertScreenContains`, `assertScreenLacks`, `doubleTap`, `extractVariable`, `flick`, `openDeeplink`, `playSubTest`, `pressBack`, `restartApplication`, `rotate`, `scroll`, `scrollToElement`, `tap`, `toggleWiFi`, `typeText`, `wait`.
|
|
22736
|
+
*/
|
|
22737
|
+
type: string;
|
|
22738
|
+
}
|
|
22739
|
+
export interface SyntheticsTestMobileStepParams {
|
|
22740
|
+
/**
|
|
22741
|
+
* Check type to use for an assertion step. Valid values are `equals`, `notEquals`, `contains`, `notContains`, `startsWith`, `notStartsWith`, `greater`, `lower`, `greaterEquals`, `lowerEquals`, `matchRegex`, `between`, `isEmpty`, `notIsEmpty`.
|
|
22742
|
+
*/
|
|
22743
|
+
check?: string;
|
|
22744
|
+
/**
|
|
22745
|
+
* Delay between each key stroke for a "type test" step.
|
|
22746
|
+
*/
|
|
22747
|
+
delay?: number;
|
|
22748
|
+
/**
|
|
22749
|
+
* Valid values are `up`, `down`, `left`, `right`.
|
|
22750
|
+
*/
|
|
22751
|
+
direction?: string;
|
|
22752
|
+
/**
|
|
22753
|
+
* Element to use for the step, JSON encoded string.
|
|
22754
|
+
*/
|
|
22755
|
+
element?: outputs.SyntheticsTestMobileStepParamsElement;
|
|
22756
|
+
enable?: boolean;
|
|
22757
|
+
maxScrolls?: number;
|
|
22758
|
+
positions?: outputs.SyntheticsTestMobileStepParamsPosition[];
|
|
22759
|
+
/**
|
|
22760
|
+
* ID of the Synthetics test to use as subtest.
|
|
22761
|
+
*/
|
|
22762
|
+
subtestPublicId?: string;
|
|
22763
|
+
/**
|
|
22764
|
+
* Value of the step.
|
|
22765
|
+
*/
|
|
22766
|
+
value?: string;
|
|
22767
|
+
/**
|
|
22768
|
+
* Details of the variable to extract.
|
|
22769
|
+
*/
|
|
22770
|
+
variable?: outputs.SyntheticsTestMobileStepParamsVariable;
|
|
22771
|
+
withEnter?: boolean;
|
|
22772
|
+
/**
|
|
22773
|
+
* X coordinates for a "scroll step".
|
|
22774
|
+
*/
|
|
22775
|
+
x?: number;
|
|
22776
|
+
/**
|
|
22777
|
+
* Y coordinates for a "scroll step".
|
|
22778
|
+
*/
|
|
22779
|
+
y?: number;
|
|
22780
|
+
}
|
|
22781
|
+
export interface SyntheticsTestMobileStepParamsElement {
|
|
22782
|
+
context?: string;
|
|
22783
|
+
/**
|
|
22784
|
+
* Valid values are `native`, `web`.
|
|
22785
|
+
*/
|
|
22786
|
+
contextType?: string;
|
|
22787
|
+
elementDescription?: string;
|
|
22788
|
+
multiLocator?: {
|
|
22789
|
+
[key: string]: string;
|
|
22790
|
+
};
|
|
22791
|
+
relativePosition?: outputs.SyntheticsTestMobileStepParamsElementRelativePosition;
|
|
22792
|
+
textContent?: string;
|
|
22793
|
+
userLocator?: outputs.SyntheticsTestMobileStepParamsElementUserLocator;
|
|
22794
|
+
viewName?: string;
|
|
22795
|
+
}
|
|
22796
|
+
export interface SyntheticsTestMobileStepParamsElementRelativePosition {
|
|
22797
|
+
x?: number;
|
|
22798
|
+
y?: number;
|
|
22799
|
+
}
|
|
22800
|
+
export interface SyntheticsTestMobileStepParamsElementUserLocator {
|
|
22801
|
+
failTestOnCannotLocate?: boolean;
|
|
22802
|
+
values?: outputs.SyntheticsTestMobileStepParamsElementUserLocatorValue[];
|
|
22803
|
+
}
|
|
22804
|
+
export interface SyntheticsTestMobileStepParamsElementUserLocatorValue {
|
|
22805
|
+
/**
|
|
22806
|
+
* Valid values are `accessibility-id`, `id`, `ios-predicate-string`, `ios-class-chain`, `xpath`.
|
|
22807
|
+
*/
|
|
22808
|
+
type?: string;
|
|
22809
|
+
value?: string;
|
|
22810
|
+
}
|
|
22811
|
+
export interface SyntheticsTestMobileStepParamsPosition {
|
|
22812
|
+
x?: number;
|
|
22813
|
+
y?: number;
|
|
22814
|
+
}
|
|
22815
|
+
export interface SyntheticsTestMobileStepParamsVariable {
|
|
22816
|
+
/**
|
|
22817
|
+
* Example of the extracted variable. Defaults to `""`.
|
|
22818
|
+
*/
|
|
22819
|
+
example?: string;
|
|
22820
|
+
/**
|
|
22821
|
+
* Name of the extracted variable.
|
|
22822
|
+
*/
|
|
22823
|
+
name: string;
|
|
22824
|
+
}
|
|
22590
22825
|
export interface SyntheticsTestOptionsList {
|
|
22591
22826
|
/**
|
|
22592
22827
|
* For SSL test, whether or not the test should allow self signed certificates.
|
|
@@ -22678,11 +22913,11 @@ export interface SyntheticsTestOptionsListMonitorOptions {
|
|
|
22678
22913
|
}
|
|
22679
22914
|
export interface SyntheticsTestOptionsListRetry {
|
|
22680
22915
|
/**
|
|
22681
|
-
* Number of retries needed to consider a location as failed before sending a notification alert. Defaults to `0`.
|
|
22916
|
+
* Number of retries needed to consider a location as failed before sending a notification alert. Maximum value: `5`. Defaults to `0`.
|
|
22682
22917
|
*/
|
|
22683
22918
|
count?: number;
|
|
22684
22919
|
/**
|
|
22685
|
-
* Interval between a failed test and the next retry in milliseconds. Defaults to `300`.
|
|
22920
|
+
* Interval between a failed test and the next retry in milliseconds. Maximum value: `5000`. Defaults to `300`.
|
|
22686
22921
|
*/
|
|
22687
22922
|
interval?: number;
|
|
22688
22923
|
}
|
|
@@ -22957,6 +23192,119 @@ export declare namespace aws {
|
|
|
22957
23192
|
*/
|
|
22958
23193
|
label: string;
|
|
22959
23194
|
}
|
|
23195
|
+
interface IntegrationAccountAuthConfig {
|
|
23196
|
+
awsAuthConfigKeys?: outputs.aws.IntegrationAccountAuthConfigAwsAuthConfigKeys;
|
|
23197
|
+
awsAuthConfigRole?: outputs.aws.IntegrationAccountAuthConfigAwsAuthConfigRole;
|
|
23198
|
+
}
|
|
23199
|
+
interface IntegrationAccountAuthConfigAwsAuthConfigKeys {
|
|
23200
|
+
/**
|
|
23201
|
+
* AWS Access Key ID
|
|
23202
|
+
*/
|
|
23203
|
+
accessKeyId?: string;
|
|
23204
|
+
secretAccessKey?: string;
|
|
23205
|
+
}
|
|
23206
|
+
interface IntegrationAccountAuthConfigAwsAuthConfigRole {
|
|
23207
|
+
/**
|
|
23208
|
+
* AWS IAM External ID for associated role
|
|
23209
|
+
*/
|
|
23210
|
+
externalId: string;
|
|
23211
|
+
/**
|
|
23212
|
+
* AWS IAM Role name
|
|
23213
|
+
*/
|
|
23214
|
+
roleName?: string;
|
|
23215
|
+
}
|
|
23216
|
+
interface IntegrationAccountAwsRegions {
|
|
23217
|
+
/**
|
|
23218
|
+
* Include all regions. Defaults to `true`.
|
|
23219
|
+
*/
|
|
23220
|
+
includeAll: boolean;
|
|
23221
|
+
/**
|
|
23222
|
+
* Include only these regions.
|
|
23223
|
+
*/
|
|
23224
|
+
includeOnlies?: string[];
|
|
23225
|
+
}
|
|
23226
|
+
interface IntegrationAccountLogsConfig {
|
|
23227
|
+
lambdaForwarder?: outputs.aws.IntegrationAccountLogsConfigLambdaForwarder;
|
|
23228
|
+
}
|
|
23229
|
+
interface IntegrationAccountLogsConfigLambdaForwarder {
|
|
23230
|
+
/**
|
|
23231
|
+
* List of Datadog Lambda Log Forwarder ARNs in your AWS account.
|
|
23232
|
+
*/
|
|
23233
|
+
lambdas: string[];
|
|
23234
|
+
/**
|
|
23235
|
+
* List of service IDs set to enable automatic log collection. Use `datadog.aws.getIntegrationAvailableLogsServices` data source to get allowed values.
|
|
23236
|
+
*/
|
|
23237
|
+
sources: string[];
|
|
23238
|
+
}
|
|
23239
|
+
interface IntegrationAccountMetricsConfig {
|
|
23240
|
+
/**
|
|
23241
|
+
* Enable EC2 automute for AWS metrics Defaults to `true`.
|
|
23242
|
+
*/
|
|
23243
|
+
automuteEnabled: boolean;
|
|
23244
|
+
/**
|
|
23245
|
+
* Enable CloudWatch alarms collection Defaults to `false`.
|
|
23246
|
+
*/
|
|
23247
|
+
collectCloudwatchAlarms: boolean;
|
|
23248
|
+
/**
|
|
23249
|
+
* Enable custom metrics collection Defaults to `false`.
|
|
23250
|
+
*/
|
|
23251
|
+
collectCustomMetrics: boolean;
|
|
23252
|
+
/**
|
|
23253
|
+
* Enable AWS metrics collection Defaults to `true`.
|
|
23254
|
+
*/
|
|
23255
|
+
enabled: boolean;
|
|
23256
|
+
namespaceFilters?: outputs.aws.IntegrationAccountMetricsConfigNamespaceFilters;
|
|
23257
|
+
/**
|
|
23258
|
+
* AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form `key:value`) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as `?` (match a single character) and `*` (match multiple characters), and exclusion using `!` before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example, `env:production,instance-type:c?.*,!region:us-east-1`.
|
|
23259
|
+
*/
|
|
23260
|
+
tagFilters?: outputs.aws.IntegrationAccountMetricsConfigTagFilter[];
|
|
23261
|
+
}
|
|
23262
|
+
interface IntegrationAccountMetricsConfigNamespaceFilters {
|
|
23263
|
+
/**
|
|
23264
|
+
* Exclude only these namespaces from metrics collection. Use `datadog.aws.getIntegrationAvailableNamespaces` data source to get allowed values. Defaults to `["AWS/SQS", "AWS/ElasticMapReduce"]`. `AWS/SQS` and `AWS/ElasticMapReduce` are excluded by default to reduce your AWS CloudWatch costs from `GetMetricData` API calls.
|
|
23265
|
+
*/
|
|
23266
|
+
excludeOnlies: string[];
|
|
23267
|
+
/**
|
|
23268
|
+
* Include only these namespaces for metrics collection. Use `datadog.aws.getIntegrationAvailableNamespaces` data source to get allowed values.
|
|
23269
|
+
*/
|
|
23270
|
+
includeOnlies?: string[];
|
|
23271
|
+
}
|
|
23272
|
+
interface IntegrationAccountMetricsConfigTagFilter {
|
|
23273
|
+
/**
|
|
23274
|
+
* The AWS service for which the tag filters defined in `tags` will be applied.
|
|
23275
|
+
*/
|
|
23276
|
+
namespace: string;
|
|
23277
|
+
/**
|
|
23278
|
+
* The AWS resource tags to filter on for the service specified by `namespace`.
|
|
23279
|
+
*/
|
|
23280
|
+
tags: string[];
|
|
23281
|
+
}
|
|
23282
|
+
interface IntegrationAccountResourcesConfig {
|
|
23283
|
+
/**
|
|
23284
|
+
* Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires `extendedCollection` to be set to `true`. Defaults to `false`.
|
|
23285
|
+
*/
|
|
23286
|
+
cloudSecurityPostureManagementCollection: boolean;
|
|
23287
|
+
/**
|
|
23288
|
+
* Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for `cloudSecurityPostureManagementCollection`. Defaults to `true`.
|
|
23289
|
+
*/
|
|
23290
|
+
extendedCollection: boolean;
|
|
23291
|
+
}
|
|
23292
|
+
interface IntegrationAccountTracesConfig {
|
|
23293
|
+
/**
|
|
23294
|
+
* AWS X-Ray services to collect traces from.
|
|
23295
|
+
*/
|
|
23296
|
+
xrayServices?: outputs.aws.IntegrationAccountTracesConfigXrayServices;
|
|
23297
|
+
}
|
|
23298
|
+
interface IntegrationAccountTracesConfigXrayServices {
|
|
23299
|
+
/**
|
|
23300
|
+
* Include all services
|
|
23301
|
+
*/
|
|
23302
|
+
includeAll?: boolean;
|
|
23303
|
+
/**
|
|
23304
|
+
* Include only these services
|
|
23305
|
+
*/
|
|
23306
|
+
includeOnlies: string[];
|
|
23307
|
+
}
|
|
22960
23308
|
}
|
|
22961
23309
|
export declare namespace config {
|
|
22962
23310
|
interface DefaultTags {
|