@pulumi/datadog 5.4.0-alpha.1780123105 → 5.4.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/index.d.ts +3 -0
- package/aws/index.d.ts.map +1 -1
- package/aws/index.js +6 -1
- package/aws/index.js.map +1 -1
- package/aws/integrationAccountCcmConfig.d.ts +86 -0
- package/aws/integrationAccountCcmConfig.d.ts.map +1 -0
- package/aws/integrationAccountCcmConfig.js +109 -0
- package/aws/integrationAccountCcmConfig.js.map +1 -0
- package/config/vars.d.ts +4 -0
- package/config/vars.d.ts.map +1 -1
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/index.d.ts +1 -2
- package/index.d.ts.map +1 -1
- package/index.js +1 -3
- package/index.js.map +1 -1
- package/orgGroupPolicy.d.ts +9 -9
- package/orgGroupPolicy.js +6 -6
- package/orgGroupPolicyOverride.d.ts +7 -7
- package/orgGroupPolicyOverride.js +7 -7
- package/package.json +2 -2
- package/provider.d.ts +8 -0
- package/provider.d.ts.map +1 -1
- package/provider.js +2 -1
- package/provider.js.map +1 -1
- package/syntheticsTest.d.ts +103 -0
- package/syntheticsTest.d.ts.map +1 -1
- package/syntheticsTest.js +103 -0
- package/syntheticsTest.js.map +1 -1
- package/types/input.d.ts +1036 -95
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +1040 -95
- package/types/output.d.ts.map +1 -1
- package/databricks/index.d.ts +0 -4
- package/databricks/index.d.ts.map +0 -1
- package/databricks/index.js +0 -45
- package/databricks/index.js.map +0 -1
- package/databricks/integrationAccount.d.ts +0 -323
- package/databricks/integrationAccount.d.ts.map +0 -1
- package/databricks/integrationAccount.js +0 -162
- package/databricks/integrationAccount.js.map +0 -1
package/types/output.d.ts
CHANGED
|
@@ -63533,6 +63533,10 @@ export interface GetSecurityMonitoringRulesRuleOptionsImpossibleTravelOptions {
|
|
|
63533
63533
|
* If true, signals are suppressed for the first 24 hours. During that time, Datadog learns the user's regular access locations. This can be helpful to reduce noise and infer VPN usage or credentialed API access.
|
|
63534
63534
|
*/
|
|
63535
63535
|
baselineUserLocations?: boolean;
|
|
63536
|
+
/**
|
|
63537
|
+
* The duration in days during which Datadog learns a user's access locations before generating signals. Only applicable when `baselineUserLocations` is `true`. Defaults to `1` if unset.
|
|
63538
|
+
*/
|
|
63539
|
+
baselineUserLocationsDuration: number;
|
|
63536
63540
|
}
|
|
63537
63541
|
export interface GetSecurityMonitoringRulesRuleOptionsNewValueOptions {
|
|
63538
63542
|
/**
|
|
@@ -65699,10 +65703,18 @@ export interface MonitorMonitorThresholds {
|
|
|
65699
65703
|
* The monitor `CRITICAL` threshold. Must be a number.
|
|
65700
65704
|
*/
|
|
65701
65705
|
critical?: string;
|
|
65706
|
+
/**
|
|
65707
|
+
* Query evaluated as a dynamic `CRITICAL` threshold. Only supported on metric monitors with a formula query and `options['variables']`. Cannot be combined with static thresholds. This field is in preview.
|
|
65708
|
+
*/
|
|
65709
|
+
criticalQuery?: string;
|
|
65702
65710
|
/**
|
|
65703
65711
|
* The monitor `CRITICAL` recovery threshold. Must be a number.
|
|
65704
65712
|
*/
|
|
65705
65713
|
criticalRecovery?: string;
|
|
65714
|
+
/**
|
|
65715
|
+
* Query evaluated as a dynamic `CRITICAL` recovery threshold. Only supported on metric monitors with a formula query and `options['variables']`. Cannot be combined with static thresholds. This field is in preview.
|
|
65716
|
+
*/
|
|
65717
|
+
criticalRecoveryQuery?: string;
|
|
65706
65718
|
/**
|
|
65707
65719
|
* The monitor `OK` threshold. Only supported in monitor type `service check`. Must be a number.
|
|
65708
65720
|
*/
|
|
@@ -65799,6 +65811,14 @@ export interface MonitorSchedulingOptionsEvaluationWindow {
|
|
|
65799
65811
|
timezone?: string;
|
|
65800
65812
|
}
|
|
65801
65813
|
export interface MonitorVariables {
|
|
65814
|
+
/**
|
|
65815
|
+
* Aggregate-augmented composite query variables (reference table augment joined to a metrics or events base query).
|
|
65816
|
+
*/
|
|
65817
|
+
aggregateAugmentedQueries?: outputs.MonitorVariablesAggregateAugmentedQuery[];
|
|
65818
|
+
/**
|
|
65819
|
+
* Aggregate-filtered composite query variables (filter base query results using a reference table or events filter query).
|
|
65820
|
+
*/
|
|
65821
|
+
aggregateFilteredQueries?: outputs.MonitorVariablesAggregateFilteredQuery[];
|
|
65802
65822
|
/**
|
|
65803
65823
|
* The Cloud Cost query using formulas and functions.
|
|
65804
65824
|
*/
|
|
@@ -65816,6 +65836,638 @@ export interface MonitorVariables {
|
|
|
65816
65836
|
*/
|
|
65817
65837
|
eventQueries?: outputs.MonitorVariablesEventQuery[];
|
|
65818
65838
|
}
|
|
65839
|
+
export interface MonitorVariablesAggregateAugmentedQuery {
|
|
65840
|
+
/**
|
|
65841
|
+
* Events augment query. Do not set `augmentReferenceTable` in the same block.
|
|
65842
|
+
*/
|
|
65843
|
+
augmentEventQuery?: outputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQuery;
|
|
65844
|
+
/**
|
|
65845
|
+
* Reference table augment query. Do not set `augmentEventQuery` in the same block.
|
|
65846
|
+
*/
|
|
65847
|
+
augmentReferenceTable?: outputs.MonitorVariablesAggregateAugmentedQueryAugmentReferenceTable;
|
|
65848
|
+
/**
|
|
65849
|
+
* Events base query. Do not set `baseMetricsQuery` in the same block.
|
|
65850
|
+
*/
|
|
65851
|
+
baseEventQuery?: outputs.MonitorVariablesAggregateAugmentedQueryBaseEventQuery;
|
|
65852
|
+
/**
|
|
65853
|
+
* Metrics base query. Do not set `baseEventQuery` in the same block.
|
|
65854
|
+
*/
|
|
65855
|
+
baseMetricsQuery?: outputs.MonitorVariablesAggregateAugmentedQueryBaseMetricsQuery;
|
|
65856
|
+
/**
|
|
65857
|
+
* Compute aggregations for the aggregate-augmented query.
|
|
65858
|
+
*/
|
|
65859
|
+
computes: outputs.MonitorVariablesAggregateAugmentedQueryCompute[];
|
|
65860
|
+
/**
|
|
65861
|
+
* The data source for aggregate-augmented composite queries. Must be `aggregateAugmentedQuery`. Valid values are `aggregateAugmentedQuery`.
|
|
65862
|
+
*/
|
|
65863
|
+
dataSource: string;
|
|
65864
|
+
/**
|
|
65865
|
+
* Group by options for the aggregate-augmented query. At least one block is required.
|
|
65866
|
+
*/
|
|
65867
|
+
groupBies: outputs.MonitorVariablesAggregateAugmentedQueryGroupBy[];
|
|
65868
|
+
/**
|
|
65869
|
+
* Join condition between augment and base queries.
|
|
65870
|
+
*/
|
|
65871
|
+
joinCondition: outputs.MonitorVariablesAggregateAugmentedQueryJoinCondition;
|
|
65872
|
+
/**
|
|
65873
|
+
* Name of the query for use in formulas.
|
|
65874
|
+
*/
|
|
65875
|
+
name?: string;
|
|
65876
|
+
}
|
|
65877
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQuery {
|
|
65878
|
+
/**
|
|
65879
|
+
* The compute options.
|
|
65880
|
+
*/
|
|
65881
|
+
computes: outputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQueryCompute[];
|
|
65882
|
+
/**
|
|
65883
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
65884
|
+
*/
|
|
65885
|
+
dataSource: string;
|
|
65886
|
+
/**
|
|
65887
|
+
* Group by options.
|
|
65888
|
+
*/
|
|
65889
|
+
groupBies?: outputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBy[];
|
|
65890
|
+
/**
|
|
65891
|
+
* An array of index names to query in the stream.
|
|
65892
|
+
*/
|
|
65893
|
+
indexes?: string[];
|
|
65894
|
+
/**
|
|
65895
|
+
* The name of query for use in formulas.
|
|
65896
|
+
*/
|
|
65897
|
+
name: string;
|
|
65898
|
+
/**
|
|
65899
|
+
* The search options.
|
|
65900
|
+
*/
|
|
65901
|
+
search: outputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQuerySearch;
|
|
65902
|
+
}
|
|
65903
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQueryCompute {
|
|
65904
|
+
/**
|
|
65905
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65906
|
+
*/
|
|
65907
|
+
aggregation: string;
|
|
65908
|
+
/**
|
|
65909
|
+
* A time interval in milliseconds.
|
|
65910
|
+
*/
|
|
65911
|
+
interval?: number;
|
|
65912
|
+
/**
|
|
65913
|
+
* The measurable attribute to compute.
|
|
65914
|
+
*/
|
|
65915
|
+
metric?: string;
|
|
65916
|
+
/**
|
|
65917
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
65918
|
+
*/
|
|
65919
|
+
name?: string;
|
|
65920
|
+
}
|
|
65921
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBy {
|
|
65922
|
+
/**
|
|
65923
|
+
* The event facet.
|
|
65924
|
+
*/
|
|
65925
|
+
facet: string;
|
|
65926
|
+
/**
|
|
65927
|
+
* The number of groups to return.
|
|
65928
|
+
*/
|
|
65929
|
+
limit?: number;
|
|
65930
|
+
/**
|
|
65931
|
+
* The options for sorting group by results.
|
|
65932
|
+
*/
|
|
65933
|
+
sort?: outputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBySort;
|
|
65934
|
+
/**
|
|
65935
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
65936
|
+
*/
|
|
65937
|
+
source?: string;
|
|
65938
|
+
}
|
|
65939
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBySort {
|
|
65940
|
+
/**
|
|
65941
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65942
|
+
*/
|
|
65943
|
+
aggregation: string;
|
|
65944
|
+
/**
|
|
65945
|
+
* The metric used for sorting group by results.
|
|
65946
|
+
*/
|
|
65947
|
+
metric?: string;
|
|
65948
|
+
/**
|
|
65949
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
65950
|
+
*/
|
|
65951
|
+
order?: string;
|
|
65952
|
+
}
|
|
65953
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQuerySearch {
|
|
65954
|
+
/**
|
|
65955
|
+
* The events search string.
|
|
65956
|
+
*/
|
|
65957
|
+
query: string;
|
|
65958
|
+
}
|
|
65959
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentReferenceTable {
|
|
65960
|
+
/**
|
|
65961
|
+
* Columns to retrieve from the reference table.
|
|
65962
|
+
*/
|
|
65963
|
+
columns?: outputs.MonitorVariablesAggregateAugmentedQueryAugmentReferenceTableColumn[];
|
|
65964
|
+
/**
|
|
65965
|
+
* Must be `referenceTable`. Valid values are `referenceTable`.
|
|
65966
|
+
*/
|
|
65967
|
+
dataSource: string;
|
|
65968
|
+
/**
|
|
65969
|
+
* Name of the augment sub-query.
|
|
65970
|
+
*/
|
|
65971
|
+
name?: string;
|
|
65972
|
+
/**
|
|
65973
|
+
* Optional filter expression for the reference table query.
|
|
65974
|
+
*/
|
|
65975
|
+
queryFilter?: string;
|
|
65976
|
+
/**
|
|
65977
|
+
* Name of the reference table.
|
|
65978
|
+
*/
|
|
65979
|
+
tableName: string;
|
|
65980
|
+
}
|
|
65981
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentReferenceTableColumn {
|
|
65982
|
+
/**
|
|
65983
|
+
* Optional alias for the column.
|
|
65984
|
+
*/
|
|
65985
|
+
alias?: string;
|
|
65986
|
+
/**
|
|
65987
|
+
* Reference table column name.
|
|
65988
|
+
*/
|
|
65989
|
+
name: string;
|
|
65990
|
+
}
|
|
65991
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQuery {
|
|
65992
|
+
/**
|
|
65993
|
+
* The compute options.
|
|
65994
|
+
*/
|
|
65995
|
+
computes: outputs.MonitorVariablesAggregateAugmentedQueryBaseEventQueryCompute[];
|
|
65996
|
+
/**
|
|
65997
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
65998
|
+
*/
|
|
65999
|
+
dataSource: string;
|
|
66000
|
+
/**
|
|
66001
|
+
* Group by options.
|
|
66002
|
+
*/
|
|
66003
|
+
groupBies?: outputs.MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBy[];
|
|
66004
|
+
/**
|
|
66005
|
+
* An array of index names to query in the stream.
|
|
66006
|
+
*/
|
|
66007
|
+
indexes?: string[];
|
|
66008
|
+
/**
|
|
66009
|
+
* The name of query for use in formulas.
|
|
66010
|
+
*/
|
|
66011
|
+
name: string;
|
|
66012
|
+
/**
|
|
66013
|
+
* The search options.
|
|
66014
|
+
*/
|
|
66015
|
+
search: outputs.MonitorVariablesAggregateAugmentedQueryBaseEventQuerySearch;
|
|
66016
|
+
}
|
|
66017
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQueryCompute {
|
|
66018
|
+
/**
|
|
66019
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66020
|
+
*/
|
|
66021
|
+
aggregation: string;
|
|
66022
|
+
/**
|
|
66023
|
+
* A time interval in milliseconds.
|
|
66024
|
+
*/
|
|
66025
|
+
interval?: number;
|
|
66026
|
+
/**
|
|
66027
|
+
* The measurable attribute to compute.
|
|
66028
|
+
*/
|
|
66029
|
+
metric?: string;
|
|
66030
|
+
/**
|
|
66031
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66032
|
+
*/
|
|
66033
|
+
name?: string;
|
|
66034
|
+
}
|
|
66035
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBy {
|
|
66036
|
+
/**
|
|
66037
|
+
* The event facet.
|
|
66038
|
+
*/
|
|
66039
|
+
facet: string;
|
|
66040
|
+
/**
|
|
66041
|
+
* The number of groups to return.
|
|
66042
|
+
*/
|
|
66043
|
+
limit?: number;
|
|
66044
|
+
/**
|
|
66045
|
+
* The options for sorting group by results.
|
|
66046
|
+
*/
|
|
66047
|
+
sort?: outputs.MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBySort;
|
|
66048
|
+
/**
|
|
66049
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66050
|
+
*/
|
|
66051
|
+
source?: string;
|
|
66052
|
+
}
|
|
66053
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBySort {
|
|
66054
|
+
/**
|
|
66055
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66056
|
+
*/
|
|
66057
|
+
aggregation: string;
|
|
66058
|
+
/**
|
|
66059
|
+
* The metric used for sorting group by results.
|
|
66060
|
+
*/
|
|
66061
|
+
metric?: string;
|
|
66062
|
+
/**
|
|
66063
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66064
|
+
*/
|
|
66065
|
+
order?: string;
|
|
66066
|
+
}
|
|
66067
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQuerySearch {
|
|
66068
|
+
/**
|
|
66069
|
+
* The events search string.
|
|
66070
|
+
*/
|
|
66071
|
+
query: string;
|
|
66072
|
+
}
|
|
66073
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseMetricsQuery {
|
|
66074
|
+
/**
|
|
66075
|
+
* The aggregation method for metrics queries. Valid values are `avg`, `min`, `max`, `sum`, `last`, `mean`, `area`, `l2norm`, `percentile`, `stddev`, `countUnique`.
|
|
66076
|
+
*/
|
|
66077
|
+
aggregator?: string;
|
|
66078
|
+
/**
|
|
66079
|
+
* The data source for metrics queries. Valid values are `metrics`, `cloudCost`, `datadogUsage`.
|
|
66080
|
+
*/
|
|
66081
|
+
dataSource: string;
|
|
66082
|
+
/**
|
|
66083
|
+
* The name of the query for use in formulas.
|
|
66084
|
+
*/
|
|
66085
|
+
name?: string;
|
|
66086
|
+
/**
|
|
66087
|
+
* The metrics query definition.
|
|
66088
|
+
*/
|
|
66089
|
+
query: string;
|
|
66090
|
+
}
|
|
66091
|
+
export interface MonitorVariablesAggregateAugmentedQueryCompute {
|
|
66092
|
+
/**
|
|
66093
|
+
* The aggregation methods for compute steps. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66094
|
+
*/
|
|
66095
|
+
aggregation: string;
|
|
66096
|
+
/**
|
|
66097
|
+
* A time interval in milliseconds.
|
|
66098
|
+
*/
|
|
66099
|
+
interval?: number;
|
|
66100
|
+
/**
|
|
66101
|
+
* The measurable attribute to compute.
|
|
66102
|
+
*/
|
|
66103
|
+
metric?: string;
|
|
66104
|
+
/**
|
|
66105
|
+
* The name assigned to this aggregation when multiple aggregations are defined.
|
|
66106
|
+
*/
|
|
66107
|
+
name?: string;
|
|
66108
|
+
}
|
|
66109
|
+
export interface MonitorVariablesAggregateAugmentedQueryGroupBy {
|
|
66110
|
+
/**
|
|
66111
|
+
* The facet to group by.
|
|
66112
|
+
*/
|
|
66113
|
+
facet: string;
|
|
66114
|
+
/**
|
|
66115
|
+
* The number of groups to return.
|
|
66116
|
+
*/
|
|
66117
|
+
limit?: number;
|
|
66118
|
+
/**
|
|
66119
|
+
* Sort options for group by.
|
|
66120
|
+
*/
|
|
66121
|
+
sort?: outputs.MonitorVariablesAggregateAugmentedQueryGroupBySort;
|
|
66122
|
+
/**
|
|
66123
|
+
* Identifies which sub-query this facet refers to (for example `filterQuery`).
|
|
66124
|
+
*/
|
|
66125
|
+
source?: string;
|
|
66126
|
+
}
|
|
66127
|
+
export interface MonitorVariablesAggregateAugmentedQueryGroupBySort {
|
|
66128
|
+
/**
|
|
66129
|
+
* The aggregation methods for sorting. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66130
|
+
*/
|
|
66131
|
+
aggregation: string;
|
|
66132
|
+
/**
|
|
66133
|
+
* The metric used for sorting group by results.
|
|
66134
|
+
*/
|
|
66135
|
+
metric?: string;
|
|
66136
|
+
/**
|
|
66137
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66138
|
+
*/
|
|
66139
|
+
order?: string;
|
|
66140
|
+
}
|
|
66141
|
+
export interface MonitorVariablesAggregateAugmentedQueryJoinCondition {
|
|
66142
|
+
/**
|
|
66143
|
+
* Attribute from the augment query to join on.
|
|
66144
|
+
*/
|
|
66145
|
+
augmentAttribute: string;
|
|
66146
|
+
/**
|
|
66147
|
+
* Attribute from the base query to join on.
|
|
66148
|
+
*/
|
|
66149
|
+
baseAttribute: string;
|
|
66150
|
+
/**
|
|
66151
|
+
* Join type (for example `inner`). Valid values are `inner`, `left`.
|
|
66152
|
+
*/
|
|
66153
|
+
joinType: string;
|
|
66154
|
+
}
|
|
66155
|
+
export interface MonitorVariablesAggregateFilteredQuery {
|
|
66156
|
+
/**
|
|
66157
|
+
* Events base query. Do not set `baseMetricsQuery` in the same block.
|
|
66158
|
+
*/
|
|
66159
|
+
baseEventQuery?: outputs.MonitorVariablesAggregateFilteredQueryBaseEventQuery;
|
|
66160
|
+
/**
|
|
66161
|
+
* Metrics base query. Do not set `baseEventQuery` in the same block.
|
|
66162
|
+
*/
|
|
66163
|
+
baseMetricsQuery?: outputs.MonitorVariablesAggregateFilteredQueryBaseMetricsQuery;
|
|
66164
|
+
/**
|
|
66165
|
+
* Optional compute aggregations for the aggregate-filtered query.
|
|
66166
|
+
*/
|
|
66167
|
+
computes?: outputs.MonitorVariablesAggregateFilteredQueryCompute[];
|
|
66168
|
+
/**
|
|
66169
|
+
* The data source for aggregate-filtered composite queries. Must be `aggregateFilteredQuery`. Valid values are `aggregateFilteredQuery`.
|
|
66170
|
+
*/
|
|
66171
|
+
dataSource: string;
|
|
66172
|
+
/**
|
|
66173
|
+
* Events filter query. Do not set `filterReferenceTable` in the same block.
|
|
66174
|
+
*/
|
|
66175
|
+
filterEventQuery?: outputs.MonitorVariablesAggregateFilteredQueryFilterEventQuery;
|
|
66176
|
+
/**
|
|
66177
|
+
* Reference table filter query. Do not set `filterEventQuery` in the same block.
|
|
66178
|
+
*/
|
|
66179
|
+
filterReferenceTable?: outputs.MonitorVariablesAggregateFilteredQueryFilterReferenceTable;
|
|
66180
|
+
/**
|
|
66181
|
+
* Filter conditions mapping base query attributes to filter query attributes.
|
|
66182
|
+
*/
|
|
66183
|
+
filters: outputs.MonitorVariablesAggregateFilteredQueryFilter[];
|
|
66184
|
+
/**
|
|
66185
|
+
* Optional group by options for the aggregate-filtered query.
|
|
66186
|
+
*/
|
|
66187
|
+
groupBies?: outputs.MonitorVariablesAggregateFilteredQueryGroupBy[];
|
|
66188
|
+
/**
|
|
66189
|
+
* Name of the query for use in formulas.
|
|
66190
|
+
*/
|
|
66191
|
+
name?: string;
|
|
66192
|
+
}
|
|
66193
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQuery {
|
|
66194
|
+
/**
|
|
66195
|
+
* The compute options.
|
|
66196
|
+
*/
|
|
66197
|
+
computes: outputs.MonitorVariablesAggregateFilteredQueryBaseEventQueryCompute[];
|
|
66198
|
+
/**
|
|
66199
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
66200
|
+
*/
|
|
66201
|
+
dataSource: string;
|
|
66202
|
+
/**
|
|
66203
|
+
* Group by options.
|
|
66204
|
+
*/
|
|
66205
|
+
groupBies?: outputs.MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBy[];
|
|
66206
|
+
/**
|
|
66207
|
+
* An array of index names to query in the stream.
|
|
66208
|
+
*/
|
|
66209
|
+
indexes?: string[];
|
|
66210
|
+
/**
|
|
66211
|
+
* The name of query for use in formulas.
|
|
66212
|
+
*/
|
|
66213
|
+
name: string;
|
|
66214
|
+
/**
|
|
66215
|
+
* The search options.
|
|
66216
|
+
*/
|
|
66217
|
+
search: outputs.MonitorVariablesAggregateFilteredQueryBaseEventQuerySearch;
|
|
66218
|
+
}
|
|
66219
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQueryCompute {
|
|
66220
|
+
/**
|
|
66221
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66222
|
+
*/
|
|
66223
|
+
aggregation: string;
|
|
66224
|
+
/**
|
|
66225
|
+
* A time interval in milliseconds.
|
|
66226
|
+
*/
|
|
66227
|
+
interval?: number;
|
|
66228
|
+
/**
|
|
66229
|
+
* The measurable attribute to compute.
|
|
66230
|
+
*/
|
|
66231
|
+
metric?: string;
|
|
66232
|
+
/**
|
|
66233
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66234
|
+
*/
|
|
66235
|
+
name?: string;
|
|
66236
|
+
}
|
|
66237
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBy {
|
|
66238
|
+
/**
|
|
66239
|
+
* The event facet.
|
|
66240
|
+
*/
|
|
66241
|
+
facet: string;
|
|
66242
|
+
/**
|
|
66243
|
+
* The number of groups to return.
|
|
66244
|
+
*/
|
|
66245
|
+
limit?: number;
|
|
66246
|
+
/**
|
|
66247
|
+
* The options for sorting group by results.
|
|
66248
|
+
*/
|
|
66249
|
+
sort?: outputs.MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBySort;
|
|
66250
|
+
/**
|
|
66251
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66252
|
+
*/
|
|
66253
|
+
source?: string;
|
|
66254
|
+
}
|
|
66255
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBySort {
|
|
66256
|
+
/**
|
|
66257
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66258
|
+
*/
|
|
66259
|
+
aggregation: string;
|
|
66260
|
+
/**
|
|
66261
|
+
* The metric used for sorting group by results.
|
|
66262
|
+
*/
|
|
66263
|
+
metric?: string;
|
|
66264
|
+
/**
|
|
66265
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66266
|
+
*/
|
|
66267
|
+
order?: string;
|
|
66268
|
+
}
|
|
66269
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQuerySearch {
|
|
66270
|
+
/**
|
|
66271
|
+
* The events search string.
|
|
66272
|
+
*/
|
|
66273
|
+
query: string;
|
|
66274
|
+
}
|
|
66275
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseMetricsQuery {
|
|
66276
|
+
/**
|
|
66277
|
+
* The aggregation method for metrics queries. Valid values are `avg`, `min`, `max`, `sum`, `last`, `mean`, `area`, `l2norm`, `percentile`, `stddev`, `countUnique`.
|
|
66278
|
+
*/
|
|
66279
|
+
aggregator?: string;
|
|
66280
|
+
/**
|
|
66281
|
+
* The data source for metrics queries. Valid values are `metrics`, `cloudCost`, `datadogUsage`.
|
|
66282
|
+
*/
|
|
66283
|
+
dataSource: string;
|
|
66284
|
+
/**
|
|
66285
|
+
* The name of the query for use in formulas.
|
|
66286
|
+
*/
|
|
66287
|
+
name?: string;
|
|
66288
|
+
/**
|
|
66289
|
+
* The metrics query definition.
|
|
66290
|
+
*/
|
|
66291
|
+
query: string;
|
|
66292
|
+
}
|
|
66293
|
+
export interface MonitorVariablesAggregateFilteredQueryCompute {
|
|
66294
|
+
/**
|
|
66295
|
+
* The aggregation methods for compute steps. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66296
|
+
*/
|
|
66297
|
+
aggregation: string;
|
|
66298
|
+
/**
|
|
66299
|
+
* A time interval in milliseconds.
|
|
66300
|
+
*/
|
|
66301
|
+
interval?: number;
|
|
66302
|
+
/**
|
|
66303
|
+
* The measurable attribute to compute.
|
|
66304
|
+
*/
|
|
66305
|
+
metric?: string;
|
|
66306
|
+
/**
|
|
66307
|
+
* The name assigned to this aggregation when multiple aggregations are defined.
|
|
66308
|
+
*/
|
|
66309
|
+
name?: string;
|
|
66310
|
+
}
|
|
66311
|
+
export interface MonitorVariablesAggregateFilteredQueryFilter {
|
|
66312
|
+
/**
|
|
66313
|
+
* Attribute from the base query to filter on.
|
|
66314
|
+
*/
|
|
66315
|
+
baseAttribute: string;
|
|
66316
|
+
/**
|
|
66317
|
+
* When true, exclude matching records instead of including them.
|
|
66318
|
+
*/
|
|
66319
|
+
exclude?: boolean;
|
|
66320
|
+
/**
|
|
66321
|
+
* Attribute from the filter query to match against.
|
|
66322
|
+
*/
|
|
66323
|
+
filterAttribute: string;
|
|
66324
|
+
}
|
|
66325
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQuery {
|
|
66326
|
+
/**
|
|
66327
|
+
* The compute options.
|
|
66328
|
+
*/
|
|
66329
|
+
computes: outputs.MonitorVariablesAggregateFilteredQueryFilterEventQueryCompute[];
|
|
66330
|
+
/**
|
|
66331
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
66332
|
+
*/
|
|
66333
|
+
dataSource: string;
|
|
66334
|
+
/**
|
|
66335
|
+
* Group by options.
|
|
66336
|
+
*/
|
|
66337
|
+
groupBies?: outputs.MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBy[];
|
|
66338
|
+
/**
|
|
66339
|
+
* An array of index names to query in the stream.
|
|
66340
|
+
*/
|
|
66341
|
+
indexes?: string[];
|
|
66342
|
+
/**
|
|
66343
|
+
* The name of query for use in formulas.
|
|
66344
|
+
*/
|
|
66345
|
+
name: string;
|
|
66346
|
+
/**
|
|
66347
|
+
* The search options.
|
|
66348
|
+
*/
|
|
66349
|
+
search: outputs.MonitorVariablesAggregateFilteredQueryFilterEventQuerySearch;
|
|
66350
|
+
}
|
|
66351
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQueryCompute {
|
|
66352
|
+
/**
|
|
66353
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66354
|
+
*/
|
|
66355
|
+
aggregation: string;
|
|
66356
|
+
/**
|
|
66357
|
+
* A time interval in milliseconds.
|
|
66358
|
+
*/
|
|
66359
|
+
interval?: number;
|
|
66360
|
+
/**
|
|
66361
|
+
* The measurable attribute to compute.
|
|
66362
|
+
*/
|
|
66363
|
+
metric?: string;
|
|
66364
|
+
/**
|
|
66365
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66366
|
+
*/
|
|
66367
|
+
name?: string;
|
|
66368
|
+
}
|
|
66369
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBy {
|
|
66370
|
+
/**
|
|
66371
|
+
* The event facet.
|
|
66372
|
+
*/
|
|
66373
|
+
facet: string;
|
|
66374
|
+
/**
|
|
66375
|
+
* The number of groups to return.
|
|
66376
|
+
*/
|
|
66377
|
+
limit?: number;
|
|
66378
|
+
/**
|
|
66379
|
+
* The options for sorting group by results.
|
|
66380
|
+
*/
|
|
66381
|
+
sort?: outputs.MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBySort;
|
|
66382
|
+
/**
|
|
66383
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66384
|
+
*/
|
|
66385
|
+
source?: string;
|
|
66386
|
+
}
|
|
66387
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBySort {
|
|
66388
|
+
/**
|
|
66389
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66390
|
+
*/
|
|
66391
|
+
aggregation: string;
|
|
66392
|
+
/**
|
|
66393
|
+
* The metric used for sorting group by results.
|
|
66394
|
+
*/
|
|
66395
|
+
metric?: string;
|
|
66396
|
+
/**
|
|
66397
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66398
|
+
*/
|
|
66399
|
+
order?: string;
|
|
66400
|
+
}
|
|
66401
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQuerySearch {
|
|
66402
|
+
/**
|
|
66403
|
+
* The events search string.
|
|
66404
|
+
*/
|
|
66405
|
+
query: string;
|
|
66406
|
+
}
|
|
66407
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterReferenceTable {
|
|
66408
|
+
/**
|
|
66409
|
+
* Columns to retrieve from the reference table.
|
|
66410
|
+
*/
|
|
66411
|
+
columns?: outputs.MonitorVariablesAggregateFilteredQueryFilterReferenceTableColumn[];
|
|
66412
|
+
/**
|
|
66413
|
+
* Must be `referenceTable`. Valid values are `referenceTable`.
|
|
66414
|
+
*/
|
|
66415
|
+
dataSource: string;
|
|
66416
|
+
/**
|
|
66417
|
+
* Name of the filter sub-query.
|
|
66418
|
+
*/
|
|
66419
|
+
name?: string;
|
|
66420
|
+
/**
|
|
66421
|
+
* Optional filter expression for the reference table query.
|
|
66422
|
+
*/
|
|
66423
|
+
queryFilter?: string;
|
|
66424
|
+
/**
|
|
66425
|
+
* Name of the reference table.
|
|
66426
|
+
*/
|
|
66427
|
+
tableName: string;
|
|
66428
|
+
}
|
|
66429
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterReferenceTableColumn {
|
|
66430
|
+
/**
|
|
66431
|
+
* Optional alias for the column.
|
|
66432
|
+
*/
|
|
66433
|
+
alias?: string;
|
|
66434
|
+
/**
|
|
66435
|
+
* Reference table column name.
|
|
66436
|
+
*/
|
|
66437
|
+
name: string;
|
|
66438
|
+
}
|
|
66439
|
+
export interface MonitorVariablesAggregateFilteredQueryGroupBy {
|
|
66440
|
+
/**
|
|
66441
|
+
* The facet to group by.
|
|
66442
|
+
*/
|
|
66443
|
+
facet: string;
|
|
66444
|
+
/**
|
|
66445
|
+
* The number of groups to return.
|
|
66446
|
+
*/
|
|
66447
|
+
limit?: number;
|
|
66448
|
+
/**
|
|
66449
|
+
* Sort options for group by.
|
|
66450
|
+
*/
|
|
66451
|
+
sort?: outputs.MonitorVariablesAggregateFilteredQueryGroupBySort;
|
|
66452
|
+
/**
|
|
66453
|
+
* Identifies which sub-query this facet refers to (for example `filterQuery`).
|
|
66454
|
+
*/
|
|
66455
|
+
source?: string;
|
|
66456
|
+
}
|
|
66457
|
+
export interface MonitorVariablesAggregateFilteredQueryGroupBySort {
|
|
66458
|
+
/**
|
|
66459
|
+
* The aggregation methods for sorting. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66460
|
+
*/
|
|
66461
|
+
aggregation: string;
|
|
66462
|
+
/**
|
|
66463
|
+
* The metric used for sorting group by results.
|
|
66464
|
+
*/
|
|
66465
|
+
metric?: string;
|
|
66466
|
+
/**
|
|
66467
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66468
|
+
*/
|
|
66469
|
+
order?: string;
|
|
66470
|
+
}
|
|
65819
66471
|
export interface MonitorVariablesCloudCostQuery {
|
|
65820
66472
|
/**
|
|
65821
66473
|
* The aggregation methods available for cloud cost queries. Valid values are `avg`, `sum`, `max`, `min`, `last`, `area`, `l2norm`, `percentile`, `stddev`.
|
|
@@ -65947,6 +66599,10 @@ export interface MonitorVariablesEventQueryCompute {
|
|
|
65947
66599
|
* The measurable attribute to compute.
|
|
65948
66600
|
*/
|
|
65949
66601
|
metric?: string;
|
|
66602
|
+
/**
|
|
66603
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66604
|
+
*/
|
|
66605
|
+
name?: string;
|
|
65950
66606
|
}
|
|
65951
66607
|
export interface MonitorVariablesEventQueryGroupBy {
|
|
65952
66608
|
/**
|
|
@@ -65961,6 +66617,10 @@ export interface MonitorVariablesEventQueryGroupBy {
|
|
|
65961
66617
|
* The options for sorting group by results.
|
|
65962
66618
|
*/
|
|
65963
66619
|
sort?: outputs.MonitorVariablesEventQueryGroupBySort;
|
|
66620
|
+
/**
|
|
66621
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66622
|
+
*/
|
|
66623
|
+
source?: string;
|
|
65964
66624
|
}
|
|
65965
66625
|
export interface MonitorVariablesEventQueryGroupBySort {
|
|
65966
66626
|
/**
|
|
@@ -66268,6 +66928,10 @@ export interface ObservabilityPipelineConfigDestinationAmazonS3Generic {
|
|
|
66268
66928
|
* S3 bucket name.
|
|
66269
66929
|
*/
|
|
66270
66930
|
bucket: string;
|
|
66931
|
+
/**
|
|
66932
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
66933
|
+
*/
|
|
66934
|
+
buffer?: outputs.ObservabilityPipelineConfigDestinationAmazonS3GenericBuffer;
|
|
66271
66935
|
/**
|
|
66272
66936
|
* Compression configuration.
|
|
66273
66937
|
*/
|
|
@@ -66313,6 +66977,40 @@ export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBatchSetti
|
|
|
66313
66977
|
*/
|
|
66314
66978
|
timeoutSecs?: number;
|
|
66315
66979
|
}
|
|
66980
|
+
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBuffer {
|
|
66981
|
+
/**
|
|
66982
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
66983
|
+
*/
|
|
66984
|
+
disk?: outputs.ObservabilityPipelineConfigDestinationAmazonS3GenericBufferDisk;
|
|
66985
|
+
/**
|
|
66986
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
66987
|
+
*/
|
|
66988
|
+
memory?: outputs.ObservabilityPipelineConfigDestinationAmazonS3GenericBufferMemory;
|
|
66989
|
+
}
|
|
66990
|
+
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBufferDisk {
|
|
66991
|
+
/**
|
|
66992
|
+
* Maximum size of the disk buffer (in bytes).
|
|
66993
|
+
*/
|
|
66994
|
+
maxSize?: number;
|
|
66995
|
+
/**
|
|
66996
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
66997
|
+
*/
|
|
66998
|
+
whenFull: string;
|
|
66999
|
+
}
|
|
67000
|
+
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBufferMemory {
|
|
67001
|
+
/**
|
|
67002
|
+
* Maximum events for the memory buffer.
|
|
67003
|
+
*/
|
|
67004
|
+
maxEvents?: number;
|
|
67005
|
+
/**
|
|
67006
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67007
|
+
*/
|
|
67008
|
+
maxSize?: number;
|
|
67009
|
+
/**
|
|
67010
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67011
|
+
*/
|
|
67012
|
+
whenFull: string;
|
|
67013
|
+
}
|
|
66316
67014
|
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericCompression {
|
|
66317
67015
|
/**
|
|
66318
67016
|
* Compression algorithm. Valid values are `gzip`, `zstd`, `snappy`.
|
|
@@ -66474,11 +67172,49 @@ export interface ObservabilityPipelineConfigDestinationAzureStorageBufferMemory
|
|
|
66474
67172
|
whenFull: string;
|
|
66475
67173
|
}
|
|
66476
67174
|
export interface ObservabilityPipelineConfigDestinationCloudPrem {
|
|
67175
|
+
/**
|
|
67176
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
67177
|
+
*/
|
|
67178
|
+
buffer?: outputs.ObservabilityPipelineConfigDestinationCloudPremBuffer;
|
|
66477
67179
|
/**
|
|
66478
67180
|
* Name of the environment variable or secret that holds the endpoint URL.
|
|
66479
67181
|
*/
|
|
66480
67182
|
endpointUrlKey?: string;
|
|
66481
67183
|
}
|
|
67184
|
+
export interface ObservabilityPipelineConfigDestinationCloudPremBuffer {
|
|
67185
|
+
/**
|
|
67186
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
67187
|
+
*/
|
|
67188
|
+
disk?: outputs.ObservabilityPipelineConfigDestinationCloudPremBufferDisk;
|
|
67189
|
+
/**
|
|
67190
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
67191
|
+
*/
|
|
67192
|
+
memory?: outputs.ObservabilityPipelineConfigDestinationCloudPremBufferMemory;
|
|
67193
|
+
}
|
|
67194
|
+
export interface ObservabilityPipelineConfigDestinationCloudPremBufferDisk {
|
|
67195
|
+
/**
|
|
67196
|
+
* Maximum size of the disk buffer (in bytes).
|
|
67197
|
+
*/
|
|
67198
|
+
maxSize?: number;
|
|
67199
|
+
/**
|
|
67200
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67201
|
+
*/
|
|
67202
|
+
whenFull: string;
|
|
67203
|
+
}
|
|
67204
|
+
export interface ObservabilityPipelineConfigDestinationCloudPremBufferMemory {
|
|
67205
|
+
/**
|
|
67206
|
+
* Maximum events for the memory buffer.
|
|
67207
|
+
*/
|
|
67208
|
+
maxEvents?: number;
|
|
67209
|
+
/**
|
|
67210
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67211
|
+
*/
|
|
67212
|
+
maxSize?: number;
|
|
67213
|
+
/**
|
|
67214
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67215
|
+
*/
|
|
67216
|
+
whenFull: string;
|
|
67217
|
+
}
|
|
66482
67218
|
export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiem {
|
|
66483
67219
|
/**
|
|
66484
67220
|
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
@@ -67080,6 +67816,10 @@ export interface ObservabilityPipelineConfigDestinationHttpClient {
|
|
|
67080
67816
|
* HTTP authentication strategy. Valid values are `none`, `basic`, `bearer`.
|
|
67081
67817
|
*/
|
|
67082
67818
|
authStrategy?: string;
|
|
67819
|
+
/**
|
|
67820
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
67821
|
+
*/
|
|
67822
|
+
buffer?: outputs.ObservabilityPipelineConfigDestinationHttpClientBuffer;
|
|
67083
67823
|
/**
|
|
67084
67824
|
* Compression configuration for HTTP requests.
|
|
67085
67825
|
*/
|
|
@@ -67109,6 +67849,40 @@ export interface ObservabilityPipelineConfigDestinationHttpClient {
|
|
|
67109
67849
|
*/
|
|
67110
67850
|
usernameKey?: string;
|
|
67111
67851
|
}
|
|
67852
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientBuffer {
|
|
67853
|
+
/**
|
|
67854
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
67855
|
+
*/
|
|
67856
|
+
disk?: outputs.ObservabilityPipelineConfigDestinationHttpClientBufferDisk;
|
|
67857
|
+
/**
|
|
67858
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
67859
|
+
*/
|
|
67860
|
+
memory?: outputs.ObservabilityPipelineConfigDestinationHttpClientBufferMemory;
|
|
67861
|
+
}
|
|
67862
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientBufferDisk {
|
|
67863
|
+
/**
|
|
67864
|
+
* Maximum size of the disk buffer (in bytes).
|
|
67865
|
+
*/
|
|
67866
|
+
maxSize?: number;
|
|
67867
|
+
/**
|
|
67868
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67869
|
+
*/
|
|
67870
|
+
whenFull: string;
|
|
67871
|
+
}
|
|
67872
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientBufferMemory {
|
|
67873
|
+
/**
|
|
67874
|
+
* Maximum events for the memory buffer.
|
|
67875
|
+
*/
|
|
67876
|
+
maxEvents?: number;
|
|
67877
|
+
/**
|
|
67878
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67879
|
+
*/
|
|
67880
|
+
maxSize?: number;
|
|
67881
|
+
/**
|
|
67882
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67883
|
+
*/
|
|
67884
|
+
whenFull: string;
|
|
67885
|
+
}
|
|
67112
67886
|
export interface ObservabilityPipelineConfigDestinationHttpClientCompression {
|
|
67113
67887
|
/**
|
|
67114
67888
|
* Compression algorithm. Valid values are `gzip`.
|
|
@@ -67138,6 +67912,10 @@ export interface ObservabilityPipelineConfigDestinationKafka {
|
|
|
67138
67912
|
* Name of the environment variable or secret that holds the Kafka bootstrap servers.
|
|
67139
67913
|
*/
|
|
67140
67914
|
bootstrapServersKey?: string;
|
|
67915
|
+
/**
|
|
67916
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
67917
|
+
*/
|
|
67918
|
+
buffer?: outputs.ObservabilityPipelineConfigDestinationKafkaBuffer;
|
|
67141
67919
|
/**
|
|
67142
67920
|
* Compression codec for Kafka messages. Valid values are `none`, `gzip`, `snappy`, `lz4`, `zstd`.
|
|
67143
67921
|
*/
|
|
@@ -67187,6 +67965,40 @@ export interface ObservabilityPipelineConfigDestinationKafka {
|
|
|
67187
67965
|
*/
|
|
67188
67966
|
topic: string;
|
|
67189
67967
|
}
|
|
67968
|
+
export interface ObservabilityPipelineConfigDestinationKafkaBuffer {
|
|
67969
|
+
/**
|
|
67970
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
67971
|
+
*/
|
|
67972
|
+
disk?: outputs.ObservabilityPipelineConfigDestinationKafkaBufferDisk;
|
|
67973
|
+
/**
|
|
67974
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
67975
|
+
*/
|
|
67976
|
+
memory?: outputs.ObservabilityPipelineConfigDestinationKafkaBufferMemory;
|
|
67977
|
+
}
|
|
67978
|
+
export interface ObservabilityPipelineConfigDestinationKafkaBufferDisk {
|
|
67979
|
+
/**
|
|
67980
|
+
* Maximum size of the disk buffer (in bytes).
|
|
67981
|
+
*/
|
|
67982
|
+
maxSize?: number;
|
|
67983
|
+
/**
|
|
67984
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67985
|
+
*/
|
|
67986
|
+
whenFull: string;
|
|
67987
|
+
}
|
|
67988
|
+
export interface ObservabilityPipelineConfigDestinationKafkaBufferMemory {
|
|
67989
|
+
/**
|
|
67990
|
+
* Maximum events for the memory buffer.
|
|
67991
|
+
*/
|
|
67992
|
+
maxEvents?: number;
|
|
67993
|
+
/**
|
|
67994
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67995
|
+
*/
|
|
67996
|
+
maxSize?: number;
|
|
67997
|
+
/**
|
|
67998
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67999
|
+
*/
|
|
68000
|
+
whenFull: string;
|
|
68001
|
+
}
|
|
67190
68002
|
export interface ObservabilityPipelineConfigDestinationKafkaLibrdkafkaOption {
|
|
67191
68003
|
/**
|
|
67192
68004
|
* The name of the librdkafka configuration option.
|
|
@@ -68912,27 +69724,31 @@ export interface ObservabilityPipelineConfigSourceFluentBit {
|
|
|
68912
69724
|
*/
|
|
68913
69725
|
addressKey?: string;
|
|
68914
69726
|
/**
|
|
68915
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69727
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
68916
69728
|
*/
|
|
68917
69729
|
tls?: outputs.ObservabilityPipelineConfigSourceFluentBitTls;
|
|
68918
69730
|
}
|
|
68919
69731
|
export interface ObservabilityPipelineConfigSourceFluentBitTls {
|
|
68920
69732
|
/**
|
|
68921
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69733
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
68922
69734
|
*/
|
|
68923
69735
|
caFile?: string;
|
|
68924
69736
|
/**
|
|
68925
|
-
* Path to the TLS
|
|
69737
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
68926
69738
|
*/
|
|
68927
69739
|
crtFile: string;
|
|
68928
69740
|
/**
|
|
68929
|
-
* Path to the private key file associated with the TLS
|
|
69741
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
68930
69742
|
*/
|
|
68931
69743
|
keyFile?: string;
|
|
68932
69744
|
/**
|
|
68933
69745
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
68934
69746
|
*/
|
|
68935
69747
|
keyPassKey?: string;
|
|
69748
|
+
/**
|
|
69749
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69750
|
+
*/
|
|
69751
|
+
verifyCertificate?: boolean;
|
|
68936
69752
|
}
|
|
68937
69753
|
export interface ObservabilityPipelineConfigSourceFluentd {
|
|
68938
69754
|
/**
|
|
@@ -68940,27 +69756,31 @@ export interface ObservabilityPipelineConfigSourceFluentd {
|
|
|
68940
69756
|
*/
|
|
68941
69757
|
addressKey?: string;
|
|
68942
69758
|
/**
|
|
68943
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69759
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
68944
69760
|
*/
|
|
68945
69761
|
tls?: outputs.ObservabilityPipelineConfigSourceFluentdTls;
|
|
68946
69762
|
}
|
|
68947
69763
|
export interface ObservabilityPipelineConfigSourceFluentdTls {
|
|
68948
69764
|
/**
|
|
68949
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69765
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
68950
69766
|
*/
|
|
68951
69767
|
caFile?: string;
|
|
68952
69768
|
/**
|
|
68953
|
-
* Path to the TLS
|
|
69769
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
68954
69770
|
*/
|
|
68955
69771
|
crtFile: string;
|
|
68956
69772
|
/**
|
|
68957
|
-
* Path to the private key file associated with the TLS
|
|
69773
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
68958
69774
|
*/
|
|
68959
69775
|
keyFile?: string;
|
|
68960
69776
|
/**
|
|
68961
69777
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
68962
69778
|
*/
|
|
68963
69779
|
keyPassKey?: string;
|
|
69780
|
+
/**
|
|
69781
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69782
|
+
*/
|
|
69783
|
+
verifyCertificate?: boolean;
|
|
68964
69784
|
}
|
|
68965
69785
|
export interface ObservabilityPipelineConfigSourceGooglePubsub {
|
|
68966
69786
|
/**
|
|
@@ -69086,31 +69906,77 @@ export interface ObservabilityPipelineConfigSourceHttpServer {
|
|
|
69086
69906
|
*/
|
|
69087
69907
|
passwordKey?: string;
|
|
69088
69908
|
/**
|
|
69089
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69909
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69090
69910
|
*/
|
|
69091
69911
|
tls?: outputs.ObservabilityPipelineConfigSourceHttpServerTls;
|
|
69092
69912
|
/**
|
|
69093
69913
|
* Name of the environment variable or secret that holds the username.
|
|
69094
69914
|
*/
|
|
69095
69915
|
usernameKey?: string;
|
|
69916
|
+
/**
|
|
69917
|
+
* A token accepted for authenticating incoming HTTP requests. Cannot be combined with the `plain` auth strategy.
|
|
69918
|
+
*/
|
|
69919
|
+
validTokens?: outputs.ObservabilityPipelineConfigSourceHttpServerValidToken[];
|
|
69096
69920
|
}
|
|
69097
69921
|
export interface ObservabilityPipelineConfigSourceHttpServerTls {
|
|
69098
69922
|
/**
|
|
69099
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69923
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69100
69924
|
*/
|
|
69101
69925
|
caFile?: string;
|
|
69102
69926
|
/**
|
|
69103
|
-
* Path to the TLS
|
|
69927
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69104
69928
|
*/
|
|
69105
69929
|
crtFile: string;
|
|
69106
69930
|
/**
|
|
69107
|
-
* Path to the private key file associated with the TLS
|
|
69931
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69108
69932
|
*/
|
|
69109
69933
|
keyFile?: string;
|
|
69110
69934
|
/**
|
|
69111
69935
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69112
69936
|
*/
|
|
69113
69937
|
keyPassKey?: string;
|
|
69938
|
+
/**
|
|
69939
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69940
|
+
*/
|
|
69941
|
+
verifyCertificate?: boolean;
|
|
69942
|
+
}
|
|
69943
|
+
export interface ObservabilityPipelineConfigSourceHttpServerValidToken {
|
|
69944
|
+
/**
|
|
69945
|
+
* Whether this token is currently accepted. Defaults to `true`.
|
|
69946
|
+
*/
|
|
69947
|
+
enabled: boolean;
|
|
69948
|
+
/**
|
|
69949
|
+
* An optional metadata field attached to every event authenticated by the token. Both `key` and `value` must match `^[A-Za-z0-9_]+$`.
|
|
69950
|
+
*/
|
|
69951
|
+
fieldToAdd?: outputs.ObservabilityPipelineConfigSourceHttpServerValidTokenFieldToAdd;
|
|
69952
|
+
/**
|
|
69953
|
+
* Specifies where the worker extracts the token from the incoming HTTP request. Set either `location` for a built-in source or `header` to read it from a request header.
|
|
69954
|
+
*/
|
|
69955
|
+
pathToToken?: outputs.ObservabilityPipelineConfigSourceHttpServerValidTokenPathToToken;
|
|
69956
|
+
/**
|
|
69957
|
+
* Name of the environment variable or secret that holds the expected token value.
|
|
69958
|
+
*/
|
|
69959
|
+
tokenKey: string;
|
|
69960
|
+
}
|
|
69961
|
+
export interface ObservabilityPipelineConfigSourceHttpServerValidTokenFieldToAdd {
|
|
69962
|
+
/**
|
|
69963
|
+
* The metadata field name to add to incoming events.
|
|
69964
|
+
*/
|
|
69965
|
+
key: string;
|
|
69966
|
+
/**
|
|
69967
|
+
* The metadata field value to add to incoming events.
|
|
69968
|
+
*/
|
|
69969
|
+
value: string;
|
|
69970
|
+
}
|
|
69971
|
+
export interface ObservabilityPipelineConfigSourceHttpServerValidTokenPathToToken {
|
|
69972
|
+
/**
|
|
69973
|
+
* The name of the HTTP header that carries the token.
|
|
69974
|
+
*/
|
|
69975
|
+
header?: string;
|
|
69976
|
+
/**
|
|
69977
|
+
* Built-in token location on the incoming HTTP request. One of `path`, `address`. Valid values are `path`, `address`.
|
|
69978
|
+
*/
|
|
69979
|
+
location?: string;
|
|
69114
69980
|
}
|
|
69115
69981
|
export interface ObservabilityPipelineConfigSourceKafka {
|
|
69116
69982
|
/**
|
|
@@ -69186,27 +70052,31 @@ export interface ObservabilityPipelineConfigSourceLogstash {
|
|
|
69186
70052
|
*/
|
|
69187
70053
|
addressKey?: string;
|
|
69188
70054
|
/**
|
|
69189
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70055
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69190
70056
|
*/
|
|
69191
70057
|
tls?: outputs.ObservabilityPipelineConfigSourceLogstashTls;
|
|
69192
70058
|
}
|
|
69193
70059
|
export interface ObservabilityPipelineConfigSourceLogstashTls {
|
|
69194
70060
|
/**
|
|
69195
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70061
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69196
70062
|
*/
|
|
69197
70063
|
caFile?: string;
|
|
69198
70064
|
/**
|
|
69199
|
-
* Path to the TLS
|
|
70065
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69200
70066
|
*/
|
|
69201
70067
|
crtFile: string;
|
|
69202
70068
|
/**
|
|
69203
|
-
* Path to the private key file associated with the TLS
|
|
70069
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69204
70070
|
*/
|
|
69205
70071
|
keyFile?: string;
|
|
69206
70072
|
/**
|
|
69207
70073
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69208
70074
|
*/
|
|
69209
70075
|
keyPassKey?: string;
|
|
70076
|
+
/**
|
|
70077
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70078
|
+
*/
|
|
70079
|
+
verifyCertificate?: boolean;
|
|
69210
70080
|
}
|
|
69211
70081
|
export interface ObservabilityPipelineConfigSourceOpentelemetry {
|
|
69212
70082
|
/**
|
|
@@ -69218,27 +70088,31 @@ export interface ObservabilityPipelineConfigSourceOpentelemetry {
|
|
|
69218
70088
|
*/
|
|
69219
70089
|
httpAddressKey?: string;
|
|
69220
70090
|
/**
|
|
69221
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70091
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69222
70092
|
*/
|
|
69223
70093
|
tls?: outputs.ObservabilityPipelineConfigSourceOpentelemetryTls;
|
|
69224
70094
|
}
|
|
69225
70095
|
export interface ObservabilityPipelineConfigSourceOpentelemetryTls {
|
|
69226
70096
|
/**
|
|
69227
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70097
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69228
70098
|
*/
|
|
69229
70099
|
caFile?: string;
|
|
69230
70100
|
/**
|
|
69231
|
-
* Path to the TLS
|
|
70101
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69232
70102
|
*/
|
|
69233
70103
|
crtFile: string;
|
|
69234
70104
|
/**
|
|
69235
|
-
* Path to the private key file associated with the TLS
|
|
70105
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69236
70106
|
*/
|
|
69237
70107
|
keyFile?: string;
|
|
69238
70108
|
/**
|
|
69239
70109
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69240
70110
|
*/
|
|
69241
70111
|
keyPassKey?: string;
|
|
70112
|
+
/**
|
|
70113
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70114
|
+
*/
|
|
70115
|
+
verifyCertificate?: boolean;
|
|
69242
70116
|
}
|
|
69243
70117
|
export interface ObservabilityPipelineConfigSourceRsyslog {
|
|
69244
70118
|
/**
|
|
@@ -69250,27 +70124,31 @@ export interface ObservabilityPipelineConfigSourceRsyslog {
|
|
|
69250
70124
|
*/
|
|
69251
70125
|
mode?: string;
|
|
69252
70126
|
/**
|
|
69253
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70127
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69254
70128
|
*/
|
|
69255
70129
|
tls?: outputs.ObservabilityPipelineConfigSourceRsyslogTls;
|
|
69256
70130
|
}
|
|
69257
70131
|
export interface ObservabilityPipelineConfigSourceRsyslogTls {
|
|
69258
70132
|
/**
|
|
69259
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70133
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69260
70134
|
*/
|
|
69261
70135
|
caFile?: string;
|
|
69262
70136
|
/**
|
|
69263
|
-
* Path to the TLS
|
|
70137
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69264
70138
|
*/
|
|
69265
70139
|
crtFile: string;
|
|
69266
70140
|
/**
|
|
69267
|
-
* Path to the private key file associated with the TLS
|
|
70141
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69268
70142
|
*/
|
|
69269
70143
|
keyFile?: string;
|
|
69270
70144
|
/**
|
|
69271
70145
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69272
70146
|
*/
|
|
69273
70147
|
keyPassKey?: string;
|
|
70148
|
+
/**
|
|
70149
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70150
|
+
*/
|
|
70151
|
+
verifyCertificate?: boolean;
|
|
69274
70152
|
}
|
|
69275
70153
|
export interface ObservabilityPipelineConfigSourceSocket {
|
|
69276
70154
|
/**
|
|
@@ -69286,7 +70164,7 @@ export interface ObservabilityPipelineConfigSourceSocket {
|
|
|
69286
70164
|
*/
|
|
69287
70165
|
mode: string;
|
|
69288
70166
|
/**
|
|
69289
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70167
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69290
70168
|
*/
|
|
69291
70169
|
tls?: outputs.ObservabilityPipelineConfigSourceSocketTls;
|
|
69292
70170
|
}
|
|
@@ -69308,21 +70186,25 @@ export interface ObservabilityPipelineConfigSourceSocketFramingCharacterDelimite
|
|
|
69308
70186
|
}
|
|
69309
70187
|
export interface ObservabilityPipelineConfigSourceSocketTls {
|
|
69310
70188
|
/**
|
|
69311
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70189
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69312
70190
|
*/
|
|
69313
70191
|
caFile?: string;
|
|
69314
70192
|
/**
|
|
69315
|
-
* Path to the TLS
|
|
70193
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69316
70194
|
*/
|
|
69317
70195
|
crtFile: string;
|
|
69318
70196
|
/**
|
|
69319
|
-
* Path to the private key file associated with the TLS
|
|
70197
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69320
70198
|
*/
|
|
69321
70199
|
keyFile?: string;
|
|
69322
70200
|
/**
|
|
69323
70201
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69324
70202
|
*/
|
|
69325
70203
|
keyPassKey?: string;
|
|
70204
|
+
/**
|
|
70205
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70206
|
+
*/
|
|
70207
|
+
verifyCertificate?: boolean;
|
|
69326
70208
|
}
|
|
69327
70209
|
export interface ObservabilityPipelineConfigSourceSplunkHec {
|
|
69328
70210
|
/**
|
|
@@ -69334,27 +70216,59 @@ export interface ObservabilityPipelineConfigSourceSplunkHec {
|
|
|
69334
70216
|
*/
|
|
69335
70217
|
storeHecToken?: boolean;
|
|
69336
70218
|
/**
|
|
69337
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70219
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69338
70220
|
*/
|
|
69339
70221
|
tls?: outputs.ObservabilityPipelineConfigSourceSplunkHecTls;
|
|
70222
|
+
/**
|
|
70223
|
+
* A HEC token accepted for authenticating incoming Splunk HEC requests.
|
|
70224
|
+
*/
|
|
70225
|
+
validTokens?: outputs.ObservabilityPipelineConfigSourceSplunkHecValidToken[];
|
|
69340
70226
|
}
|
|
69341
70227
|
export interface ObservabilityPipelineConfigSourceSplunkHecTls {
|
|
69342
70228
|
/**
|
|
69343
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70229
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69344
70230
|
*/
|
|
69345
70231
|
caFile?: string;
|
|
69346
70232
|
/**
|
|
69347
|
-
* Path to the TLS
|
|
70233
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69348
70234
|
*/
|
|
69349
70235
|
crtFile: string;
|
|
69350
70236
|
/**
|
|
69351
|
-
* Path to the private key file associated with the TLS
|
|
70237
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69352
70238
|
*/
|
|
69353
70239
|
keyFile?: string;
|
|
69354
70240
|
/**
|
|
69355
70241
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69356
70242
|
*/
|
|
69357
70243
|
keyPassKey?: string;
|
|
70244
|
+
/**
|
|
70245
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70246
|
+
*/
|
|
70247
|
+
verifyCertificate?: boolean;
|
|
70248
|
+
}
|
|
70249
|
+
export interface ObservabilityPipelineConfigSourceSplunkHecValidToken {
|
|
70250
|
+
/**
|
|
70251
|
+
* Whether this token is currently accepted. Defaults to `true`.
|
|
70252
|
+
*/
|
|
70253
|
+
enabled: boolean;
|
|
70254
|
+
/**
|
|
70255
|
+
* An optional metadata field attached to every event authenticated by the token. Both `key` and `value` must match `^[A-Za-z0-9_]+$`.
|
|
70256
|
+
*/
|
|
70257
|
+
fieldToAdd?: outputs.ObservabilityPipelineConfigSourceSplunkHecValidTokenFieldToAdd;
|
|
70258
|
+
/**
|
|
70259
|
+
* Name of the environment variable or secret that holds the expected HEC token value.
|
|
70260
|
+
*/
|
|
70261
|
+
tokenKey: string;
|
|
70262
|
+
}
|
|
70263
|
+
export interface ObservabilityPipelineConfigSourceSplunkHecValidTokenFieldToAdd {
|
|
70264
|
+
/**
|
|
70265
|
+
* The metadata field name to add to incoming events.
|
|
70266
|
+
*/
|
|
70267
|
+
key: string;
|
|
70268
|
+
/**
|
|
70269
|
+
* The metadata field value to add to incoming events.
|
|
70270
|
+
*/
|
|
70271
|
+
value: string;
|
|
69358
70272
|
}
|
|
69359
70273
|
export interface ObservabilityPipelineConfigSourceSplunkTcp {
|
|
69360
70274
|
/**
|
|
@@ -69362,27 +70276,31 @@ export interface ObservabilityPipelineConfigSourceSplunkTcp {
|
|
|
69362
70276
|
*/
|
|
69363
70277
|
addressKey?: string;
|
|
69364
70278
|
/**
|
|
69365
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70279
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69366
70280
|
*/
|
|
69367
70281
|
tls?: outputs.ObservabilityPipelineConfigSourceSplunkTcpTls;
|
|
69368
70282
|
}
|
|
69369
70283
|
export interface ObservabilityPipelineConfigSourceSplunkTcpTls {
|
|
69370
70284
|
/**
|
|
69371
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70285
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69372
70286
|
*/
|
|
69373
70287
|
caFile?: string;
|
|
69374
70288
|
/**
|
|
69375
|
-
* Path to the TLS
|
|
70289
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69376
70290
|
*/
|
|
69377
70291
|
crtFile: string;
|
|
69378
70292
|
/**
|
|
69379
|
-
* Path to the private key file associated with the TLS
|
|
70293
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69380
70294
|
*/
|
|
69381
70295
|
keyFile?: string;
|
|
69382
70296
|
/**
|
|
69383
70297
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69384
70298
|
*/
|
|
69385
70299
|
keyPassKey?: string;
|
|
70300
|
+
/**
|
|
70301
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70302
|
+
*/
|
|
70303
|
+
verifyCertificate?: boolean;
|
|
69386
70304
|
}
|
|
69387
70305
|
export interface ObservabilityPipelineConfigSourceSumoLogic {
|
|
69388
70306
|
/**
|
|
@@ -69400,27 +70318,31 @@ export interface ObservabilityPipelineConfigSourceSyslogNg {
|
|
|
69400
70318
|
*/
|
|
69401
70319
|
mode?: string;
|
|
69402
70320
|
/**
|
|
69403
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70321
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69404
70322
|
*/
|
|
69405
70323
|
tls?: outputs.ObservabilityPipelineConfigSourceSyslogNgTls;
|
|
69406
70324
|
}
|
|
69407
70325
|
export interface ObservabilityPipelineConfigSourceSyslogNgTls {
|
|
69408
70326
|
/**
|
|
69409
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70327
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69410
70328
|
*/
|
|
69411
70329
|
caFile?: string;
|
|
69412
70330
|
/**
|
|
69413
|
-
* Path to the TLS
|
|
70331
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69414
70332
|
*/
|
|
69415
70333
|
crtFile: string;
|
|
69416
70334
|
/**
|
|
69417
|
-
* Path to the private key file associated with the TLS
|
|
70335
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69418
70336
|
*/
|
|
69419
70337
|
keyFile?: string;
|
|
69420
70338
|
/**
|
|
69421
70339
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69422
70340
|
*/
|
|
69423
70341
|
keyPassKey?: string;
|
|
70342
|
+
/**
|
|
70343
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70344
|
+
*/
|
|
70345
|
+
verifyCertificate?: boolean;
|
|
69424
70346
|
}
|
|
69425
70347
|
export interface OnCallEscalationPolicyStep {
|
|
69426
70348
|
/**
|
|
@@ -123672,6 +124594,10 @@ export interface SecurityMonitoringRuleOptionsImpossibleTravelOptions {
|
|
|
123672
124594
|
* If true, signals are suppressed for the first 24 hours. During that time, Datadog learns the user's regular access locations. This can be helpful to reduce noise and infer VPN usage or credentialed API access. Defaults to `false`.
|
|
123673
124595
|
*/
|
|
123674
124596
|
baselineUserLocations: boolean;
|
|
124597
|
+
/**
|
|
124598
|
+
* The duration in days during which Datadog learns a user's access locations before generating signals. Only applicable when `baselineUserLocations` is `true`. Defaults to `1` if unset. . Value must be between 1 and 30.
|
|
124599
|
+
*/
|
|
124600
|
+
baselineUserLocationsDuration: number;
|
|
123675
124601
|
}
|
|
123676
124602
|
export interface SecurityMonitoringRuleOptionsNewValueOptions {
|
|
123677
124603
|
/**
|
|
@@ -124283,7 +125209,7 @@ export interface SyntheticsTestApiStep {
|
|
|
124283
125209
|
*/
|
|
124284
125210
|
subtestPublicId?: string;
|
|
124285
125211
|
/**
|
|
124286
|
-
* The subtype of the Synthetic multistep API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `wait`, `playSubTest`. Defaults to `"http"`.
|
|
125212
|
+
* The subtype of the Synthetic multistep API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `mcp`, `wait`, `playSubTest`. Defaults to `"http"`.
|
|
124287
125213
|
*/
|
|
124288
125214
|
subtype?: string;
|
|
124289
125215
|
/**
|
|
@@ -124308,6 +125234,10 @@ export interface SyntheticsTestApiStepAssertion {
|
|
|
124308
125234
|
* Expected value. **Note:** Depends on the assertion type. Refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-an-api-test).
|
|
124309
125235
|
*/
|
|
124310
125236
|
target?: string;
|
|
125237
|
+
/**
|
|
125238
|
+
* Expected MCP server capabilities if `type` is `mcpServerCapabilities`. Exactly one nested block is allowed with the structure below.
|
|
125239
|
+
*/
|
|
125240
|
+
targetMcpCapabilities?: outputs.SyntheticsTestApiStepAssertionTargetMcpCapabilities;
|
|
124311
125241
|
/**
|
|
124312
125242
|
* Expected structure if `operator` is `validatesJSONPath`. Exactly one nested block is allowed with the structure below.
|
|
124313
125243
|
*/
|
|
@@ -124325,10 +125255,16 @@ export interface SyntheticsTestApiStepAssertion {
|
|
|
124325
125255
|
*/
|
|
124326
125256
|
timingsScope?: string;
|
|
124327
125257
|
/**
|
|
124328
|
-
* Type of assertion. **Note:** Only some combinations of `type` and `operator` are valid. For API tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-an-api-test). For Network Path tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-a-network-path-test). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`, `multiNetworkHop`, `jitter`, `bodyHash`, `javascript`.
|
|
125258
|
+
* Type of assertion. **Note:** Only some combinations of `type` and `operator` are valid. For API tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-an-api-test). For Network Path tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-a-network-path-test). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`, `multiNetworkHop`, `jitter`, `mcpToolNameLength`, `mcpToolCount`, `bodyHash`, `javascript`, `mcpRespectsSpecification`, `mcpServerCapabilities`.
|
|
124329
125259
|
*/
|
|
124330
125260
|
type: string;
|
|
124331
125261
|
}
|
|
125262
|
+
export interface SyntheticsTestApiStepAssertionTargetMcpCapabilities {
|
|
125263
|
+
/**
|
|
125264
|
+
* List of MCP server capabilities to assert against.
|
|
125265
|
+
*/
|
|
125266
|
+
capabilities: string[];
|
|
125267
|
+
}
|
|
124332
125268
|
export interface SyntheticsTestApiStepAssertionTargetjsonpath {
|
|
124333
125269
|
/**
|
|
124334
125270
|
* The element from the list of results to assert on. Select from `firstElementMatches` (the first element in the list), `everyElementMatches` (every element in the list), `atLeastOneElementMatches` (at least one element in the list), or `serializationMatches` (the serialized value of the list). Defaults to `"firstElementMatches"`.
|
|
@@ -124509,7 +125445,7 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
124509
125445
|
*/
|
|
124510
125446
|
bodyType?: string;
|
|
124511
125447
|
/**
|
|
124512
|
-
* The type of gRPC call to perform. Valid values are `healthcheck`, `unary`.
|
|
125448
|
+
* The type of gRPC call to perform, or the MCP step call (`init`, `toolList`, `toolCall`). Valid values are `healthcheck`, `unary`, `init`, `toolList`, `toolCall`.
|
|
124513
125449
|
*/
|
|
124514
125450
|
callType?: string;
|
|
124515
125451
|
/**
|
|
@@ -124566,6 +125502,10 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
124566
125502
|
* For Network Path tests, the maximum time-to-live (max number of hops) used in outgoing probe packets.
|
|
124567
125503
|
*/
|
|
124568
125504
|
maxTtl?: number;
|
|
125505
|
+
/**
|
|
125506
|
+
* For MCP API steps, the MCP protocol version used by the request.
|
|
125507
|
+
*/
|
|
125508
|
+
mcpProtocolVersion?: string;
|
|
124569
125509
|
/**
|
|
124570
125510
|
* For gRPC, UDP, and Websocket tests, message to send with the request.
|
|
124571
125511
|
*/
|
|
@@ -124624,6 +125564,14 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
124624
125564
|
* Timeout in seconds for the test.
|
|
124625
125565
|
*/
|
|
124626
125566
|
timeout?: number;
|
|
125567
|
+
/**
|
|
125568
|
+
* For MCP API steps, the JSON-encoded arguments to pass to the tool when `callType` is `toolCall`.
|
|
125569
|
+
*/
|
|
125570
|
+
toolArgs?: string;
|
|
125571
|
+
/**
|
|
125572
|
+
* For MCP API steps, the name of the tool to call. Required when `callType` is `toolCall`.
|
|
125573
|
+
*/
|
|
125574
|
+
toolName?: string;
|
|
124627
125575
|
/**
|
|
124628
125576
|
* For Network Path tests, the number of traceroute path tracings.
|
|
124629
125577
|
*/
|
|
@@ -124702,6 +125650,10 @@ export interface SyntheticsTestAssertion {
|
|
|
124702
125650
|
* Expected value. **Note:** Depends on the assertion type. Refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-an-api-test).
|
|
124703
125651
|
*/
|
|
124704
125652
|
target?: string;
|
|
125653
|
+
/**
|
|
125654
|
+
* Expected MCP server capabilities if `type` is `mcpServerCapabilities`. Exactly one nested block is allowed with the structure below.
|
|
125655
|
+
*/
|
|
125656
|
+
targetMcpCapabilities?: outputs.SyntheticsTestAssertionTargetMcpCapabilities;
|
|
124705
125657
|
/**
|
|
124706
125658
|
* Expected structure if `operator` is `validatesJSONPath`. Exactly one nested block is allowed with the structure below.
|
|
124707
125659
|
*/
|
|
@@ -124719,10 +125671,16 @@ export interface SyntheticsTestAssertion {
|
|
|
124719
125671
|
*/
|
|
124720
125672
|
timingsScope?: string;
|
|
124721
125673
|
/**
|
|
124722
|
-
* Type of assertion. **Note:** Only some combinations of `type` and `operator` are valid. For API tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-an-api-test). For Network Path tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-a-network-path-test). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`, `multiNetworkHop`, `jitter`, `bodyHash`, `javascript`.
|
|
125674
|
+
* Type of assertion. **Note:** Only some combinations of `type` and `operator` are valid. For API tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-an-api-test). For Network Path tests, refer to `config.assertions` in the [Datadog API reference](https://docs.datadoghq.com/api/latest/synthetics/#create-a-network-path-test). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`, `multiNetworkHop`, `jitter`, `mcpToolNameLength`, `mcpToolCount`, `bodyHash`, `javascript`, `mcpRespectsSpecification`, `mcpServerCapabilities`.
|
|
124723
125675
|
*/
|
|
124724
125676
|
type: string;
|
|
124725
125677
|
}
|
|
125678
|
+
export interface SyntheticsTestAssertionTargetMcpCapabilities {
|
|
125679
|
+
/**
|
|
125680
|
+
* List of MCP server capabilities to assert against.
|
|
125681
|
+
*/
|
|
125682
|
+
capabilities: string[];
|
|
125683
|
+
}
|
|
124726
125684
|
export interface SyntheticsTestAssertionTargetjsonpath {
|
|
124727
125685
|
/**
|
|
124728
125686
|
* The element from the list of results to assert on. Select from `firstElementMatches` (the first element in the list), `everyElementMatches` (every element in the list), `atLeastOneElementMatches` (at least one element in the list), or `serializationMatches` (the serialized value of the list). Defaults to `"firstElementMatches"`.
|
|
@@ -125528,7 +126486,7 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
125528
126486
|
*/
|
|
125529
126487
|
bodyType?: string;
|
|
125530
126488
|
/**
|
|
125531
|
-
* The type of gRPC call to perform. Valid values are `healthcheck`, `unary`.
|
|
126489
|
+
* The type of gRPC call to perform, or the MCP step call (`init`, `toolList`, `toolCall`). Valid values are `healthcheck`, `unary`, `init`, `toolList`, `toolCall`.
|
|
125532
126490
|
*/
|
|
125533
126491
|
callType?: string;
|
|
125534
126492
|
/**
|
|
@@ -125575,6 +126533,10 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
125575
126533
|
* For Network Path tests, the maximum time-to-live (max number of hops) used in outgoing probe packets.
|
|
125576
126534
|
*/
|
|
125577
126535
|
maxTtl?: number;
|
|
126536
|
+
/**
|
|
126537
|
+
* For MCP API steps, the MCP protocol version used by the request.
|
|
126538
|
+
*/
|
|
126539
|
+
mcpProtocolVersion?: string;
|
|
125578
126540
|
/**
|
|
125579
126541
|
* For gRPC, UDP, and Websocket tests, message to send with the request.
|
|
125580
126542
|
*/
|
|
@@ -125633,6 +126595,14 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
125633
126595
|
* Timeout in seconds for the test.
|
|
125634
126596
|
*/
|
|
125635
126597
|
timeout?: number;
|
|
126598
|
+
/**
|
|
126599
|
+
* For MCP API steps, the JSON-encoded arguments to pass to the tool when `callType` is `toolCall`.
|
|
126600
|
+
*/
|
|
126601
|
+
toolArgs?: string;
|
|
126602
|
+
/**
|
|
126603
|
+
* For MCP API steps, the name of the tool to call. Required when `callType` is `toolCall`.
|
|
126604
|
+
*/
|
|
126605
|
+
toolName?: string;
|
|
125636
126606
|
/**
|
|
125637
126607
|
* For Network Path tests, the number of traceroute path tracings.
|
|
125638
126608
|
*/
|
|
@@ -125924,6 +126894,31 @@ export declare namespace aws {
|
|
|
125924
126894
|
*/
|
|
125925
126895
|
includeOnlies?: string[];
|
|
125926
126896
|
}
|
|
126897
|
+
interface IntegrationAccountCcmConfigCcmConfig {
|
|
126898
|
+
dataExportConfigs?: outputs.aws.IntegrationAccountCcmConfigCcmConfigDataExportConfig[];
|
|
126899
|
+
}
|
|
126900
|
+
interface IntegrationAccountCcmConfigCcmConfigDataExportConfig {
|
|
126901
|
+
/**
|
|
126902
|
+
* Name of the S3 bucket where the Cost and Usage Report is stored.
|
|
126903
|
+
*/
|
|
126904
|
+
bucketName?: string;
|
|
126905
|
+
/**
|
|
126906
|
+
* AWS region of the S3 bucket.
|
|
126907
|
+
*/
|
|
126908
|
+
bucketRegion?: string;
|
|
126909
|
+
/**
|
|
126910
|
+
* Name of the Cost and Usage Report.
|
|
126911
|
+
*/
|
|
126912
|
+
reportName?: string;
|
|
126913
|
+
/**
|
|
126914
|
+
* S3 prefix where the Cost and Usage Report is stored.
|
|
126915
|
+
*/
|
|
126916
|
+
reportPrefix?: string;
|
|
126917
|
+
/**
|
|
126918
|
+
* Type of the Cost and Usage Report.
|
|
126919
|
+
*/
|
|
126920
|
+
reportType?: string;
|
|
126921
|
+
}
|
|
125927
126922
|
interface IntegrationAccountLogsConfig {
|
|
125928
126923
|
/**
|
|
125929
126924
|
* Leave empty to omit logs config.
|
|
@@ -126049,56 +127044,6 @@ export declare namespace config {
|
|
|
126049
127044
|
};
|
|
126050
127045
|
}
|
|
126051
127046
|
}
|
|
126052
|
-
export declare namespace databricks {
|
|
126053
|
-
interface IntegrationAccountAuthConfig {
|
|
126054
|
-
/**
|
|
126055
|
-
* OAuth (service principal) authentication. Recommended for new deployments. `clientId`, `clientSecret`, and `databricksAccountId` must be provided together.
|
|
126056
|
-
*/
|
|
126057
|
-
oauth?: outputs.databricks.IntegrationAccountAuthConfigOauth;
|
|
126058
|
-
/**
|
|
126059
|
-
* Personal Access Token authentication. Deprecated in favor of `oauth`; kept for backwards compatibility.
|
|
126060
|
-
*/
|
|
126061
|
-
pat?: outputs.databricks.IntegrationAccountAuthConfigPat;
|
|
126062
|
-
}
|
|
126063
|
-
interface IntegrationAccountAuthConfigOauth {
|
|
126064
|
-
/**
|
|
126065
|
-
* Azure Tenant ID (UUID format) for authenticating via Microsoft Entra ID. Only set when using Azure Entra ID OAuth.
|
|
126066
|
-
*/
|
|
126067
|
-
azureTenantId?: string;
|
|
126068
|
-
/**
|
|
126069
|
-
* OAuth Client ID for the Databricks service principal.
|
|
126070
|
-
*/
|
|
126071
|
-
clientId?: string;
|
|
126072
|
-
/**
|
|
126073
|
-
* OAuth Client Secret for the Databricks service principal. This value is write-only; changes made outside of Terraform will not be drift-detected.
|
|
126074
|
-
*/
|
|
126075
|
-
clientSecret?: string;
|
|
126076
|
-
/**
|
|
126077
|
-
* Databricks Account ID (UUID format). Found in your Databricks profile in the upper-right corner.
|
|
126078
|
-
*/
|
|
126079
|
-
databricksAccountId?: string;
|
|
126080
|
-
}
|
|
126081
|
-
interface IntegrationAccountAuthConfigPat {
|
|
126082
|
-
/**
|
|
126083
|
-
* Databricks Personal Access Token (PAT). Generate from Settings > Developer > Access tokens. This value is write-only; changes made outside of Terraform will not be drift-detected.
|
|
126084
|
-
*/
|
|
126085
|
-
token?: string;
|
|
126086
|
-
}
|
|
126087
|
-
interface IntegrationAccountPrivateActionRunnerConfiguration {
|
|
126088
|
-
/**
|
|
126089
|
-
* Private Action Runner connection ID.
|
|
126090
|
-
*/
|
|
126091
|
-
connectionId?: string;
|
|
126092
|
-
/**
|
|
126093
|
-
* Path to the stored secret holding Databricks credentials inside the Private Action Runner.
|
|
126094
|
-
*/
|
|
126095
|
-
secretPath?: string;
|
|
126096
|
-
/**
|
|
126097
|
-
* Service Account UUID used to execute Private Action Runner actions.
|
|
126098
|
-
*/
|
|
126099
|
-
userUuid?: string;
|
|
126100
|
-
}
|
|
126101
|
-
}
|
|
126102
127047
|
export declare namespace gcp {
|
|
126103
127048
|
interface IntegrationMonitoredResourceConfig {
|
|
126104
127049
|
filters: string[];
|