@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/input.d.ts
CHANGED
|
@@ -65528,10 +65528,18 @@ export interface MonitorMonitorThresholds {
|
|
|
65528
65528
|
* The monitor `CRITICAL` threshold. Must be a number.
|
|
65529
65529
|
*/
|
|
65530
65530
|
critical?: pulumi.Input<string | undefined>;
|
|
65531
|
+
/**
|
|
65532
|
+
* 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.
|
|
65533
|
+
*/
|
|
65534
|
+
criticalQuery?: pulumi.Input<string | undefined>;
|
|
65531
65535
|
/**
|
|
65532
65536
|
* The monitor `CRITICAL` recovery threshold. Must be a number.
|
|
65533
65537
|
*/
|
|
65534
65538
|
criticalRecovery?: pulumi.Input<string | undefined>;
|
|
65539
|
+
/**
|
|
65540
|
+
* 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.
|
|
65541
|
+
*/
|
|
65542
|
+
criticalRecoveryQuery?: pulumi.Input<string | undefined>;
|
|
65535
65543
|
/**
|
|
65536
65544
|
* The monitor `OK` threshold. Only supported in monitor type `service check`. Must be a number.
|
|
65537
65545
|
*/
|
|
@@ -65628,6 +65636,14 @@ export interface MonitorSchedulingOptionsEvaluationWindow {
|
|
|
65628
65636
|
timezone?: pulumi.Input<string | undefined>;
|
|
65629
65637
|
}
|
|
65630
65638
|
export interface MonitorVariables {
|
|
65639
|
+
/**
|
|
65640
|
+
* Aggregate-augmented composite query variables (reference table augment joined to a metrics or events base query).
|
|
65641
|
+
*/
|
|
65642
|
+
aggregateAugmentedQueries?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQuery>[] | undefined>;
|
|
65643
|
+
/**
|
|
65644
|
+
* Aggregate-filtered composite query variables (filter base query results using a reference table or events filter query).
|
|
65645
|
+
*/
|
|
65646
|
+
aggregateFilteredQueries?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQuery>[] | undefined>;
|
|
65631
65647
|
/**
|
|
65632
65648
|
* The Cloud Cost query using formulas and functions.
|
|
65633
65649
|
*/
|
|
@@ -65645,6 +65661,638 @@ export interface MonitorVariables {
|
|
|
65645
65661
|
*/
|
|
65646
65662
|
eventQueries?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesEventQuery>[] | undefined>;
|
|
65647
65663
|
}
|
|
65664
|
+
export interface MonitorVariablesAggregateAugmentedQuery {
|
|
65665
|
+
/**
|
|
65666
|
+
* Events augment query. Do not set `augmentReferenceTable` in the same block.
|
|
65667
|
+
*/
|
|
65668
|
+
augmentEventQuery?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQuery | undefined>;
|
|
65669
|
+
/**
|
|
65670
|
+
* Reference table augment query. Do not set `augmentEventQuery` in the same block.
|
|
65671
|
+
*/
|
|
65672
|
+
augmentReferenceTable?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentReferenceTable | undefined>;
|
|
65673
|
+
/**
|
|
65674
|
+
* Events base query. Do not set `baseMetricsQuery` in the same block.
|
|
65675
|
+
*/
|
|
65676
|
+
baseEventQuery?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryBaseEventQuery | undefined>;
|
|
65677
|
+
/**
|
|
65678
|
+
* Metrics base query. Do not set `baseEventQuery` in the same block.
|
|
65679
|
+
*/
|
|
65680
|
+
baseMetricsQuery?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryBaseMetricsQuery | undefined>;
|
|
65681
|
+
/**
|
|
65682
|
+
* Compute aggregations for the aggregate-augmented query.
|
|
65683
|
+
*/
|
|
65684
|
+
computes: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryCompute>[]>;
|
|
65685
|
+
/**
|
|
65686
|
+
* The data source for aggregate-augmented composite queries. Must be `aggregateAugmentedQuery`. Valid values are `aggregateAugmentedQuery`.
|
|
65687
|
+
*/
|
|
65688
|
+
dataSource: pulumi.Input<string>;
|
|
65689
|
+
/**
|
|
65690
|
+
* Group by options for the aggregate-augmented query. At least one block is required.
|
|
65691
|
+
*/
|
|
65692
|
+
groupBies: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryGroupBy>[]>;
|
|
65693
|
+
/**
|
|
65694
|
+
* Join condition between augment and base queries.
|
|
65695
|
+
*/
|
|
65696
|
+
joinCondition: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryJoinCondition>;
|
|
65697
|
+
/**
|
|
65698
|
+
* Name of the query for use in formulas.
|
|
65699
|
+
*/
|
|
65700
|
+
name?: pulumi.Input<string | undefined>;
|
|
65701
|
+
}
|
|
65702
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQuery {
|
|
65703
|
+
/**
|
|
65704
|
+
* The compute options.
|
|
65705
|
+
*/
|
|
65706
|
+
computes: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQueryCompute>[]>;
|
|
65707
|
+
/**
|
|
65708
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
65709
|
+
*/
|
|
65710
|
+
dataSource: pulumi.Input<string>;
|
|
65711
|
+
/**
|
|
65712
|
+
* Group by options.
|
|
65713
|
+
*/
|
|
65714
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBy>[] | undefined>;
|
|
65715
|
+
/**
|
|
65716
|
+
* An array of index names to query in the stream.
|
|
65717
|
+
*/
|
|
65718
|
+
indexes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
65719
|
+
/**
|
|
65720
|
+
* The name of query for use in formulas.
|
|
65721
|
+
*/
|
|
65722
|
+
name: pulumi.Input<string>;
|
|
65723
|
+
/**
|
|
65724
|
+
* The search options.
|
|
65725
|
+
*/
|
|
65726
|
+
search: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQuerySearch>;
|
|
65727
|
+
}
|
|
65728
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQueryCompute {
|
|
65729
|
+
/**
|
|
65730
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65731
|
+
*/
|
|
65732
|
+
aggregation: pulumi.Input<string>;
|
|
65733
|
+
/**
|
|
65734
|
+
* A time interval in milliseconds.
|
|
65735
|
+
*/
|
|
65736
|
+
interval?: pulumi.Input<number | undefined>;
|
|
65737
|
+
/**
|
|
65738
|
+
* The measurable attribute to compute.
|
|
65739
|
+
*/
|
|
65740
|
+
metric?: pulumi.Input<string | undefined>;
|
|
65741
|
+
/**
|
|
65742
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
65743
|
+
*/
|
|
65744
|
+
name?: pulumi.Input<string | undefined>;
|
|
65745
|
+
}
|
|
65746
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBy {
|
|
65747
|
+
/**
|
|
65748
|
+
* The event facet.
|
|
65749
|
+
*/
|
|
65750
|
+
facet: pulumi.Input<string>;
|
|
65751
|
+
/**
|
|
65752
|
+
* The number of groups to return.
|
|
65753
|
+
*/
|
|
65754
|
+
limit?: pulumi.Input<number | undefined>;
|
|
65755
|
+
/**
|
|
65756
|
+
* The options for sorting group by results.
|
|
65757
|
+
*/
|
|
65758
|
+
sort?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBySort | undefined>;
|
|
65759
|
+
/**
|
|
65760
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
65761
|
+
*/
|
|
65762
|
+
source?: pulumi.Input<string | undefined>;
|
|
65763
|
+
}
|
|
65764
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQueryGroupBySort {
|
|
65765
|
+
/**
|
|
65766
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65767
|
+
*/
|
|
65768
|
+
aggregation: pulumi.Input<string>;
|
|
65769
|
+
/**
|
|
65770
|
+
* The metric used for sorting group by results.
|
|
65771
|
+
*/
|
|
65772
|
+
metric?: pulumi.Input<string | undefined>;
|
|
65773
|
+
/**
|
|
65774
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
65775
|
+
*/
|
|
65776
|
+
order?: pulumi.Input<string | undefined>;
|
|
65777
|
+
}
|
|
65778
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentEventQuerySearch {
|
|
65779
|
+
/**
|
|
65780
|
+
* The events search string.
|
|
65781
|
+
*/
|
|
65782
|
+
query: pulumi.Input<string>;
|
|
65783
|
+
}
|
|
65784
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentReferenceTable {
|
|
65785
|
+
/**
|
|
65786
|
+
* Columns to retrieve from the reference table.
|
|
65787
|
+
*/
|
|
65788
|
+
columns?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryAugmentReferenceTableColumn>[] | undefined>;
|
|
65789
|
+
/**
|
|
65790
|
+
* Must be `referenceTable`. Valid values are `referenceTable`.
|
|
65791
|
+
*/
|
|
65792
|
+
dataSource: pulumi.Input<string>;
|
|
65793
|
+
/**
|
|
65794
|
+
* Name of the augment sub-query.
|
|
65795
|
+
*/
|
|
65796
|
+
name?: pulumi.Input<string | undefined>;
|
|
65797
|
+
/**
|
|
65798
|
+
* Optional filter expression for the reference table query.
|
|
65799
|
+
*/
|
|
65800
|
+
queryFilter?: pulumi.Input<string | undefined>;
|
|
65801
|
+
/**
|
|
65802
|
+
* Name of the reference table.
|
|
65803
|
+
*/
|
|
65804
|
+
tableName: pulumi.Input<string>;
|
|
65805
|
+
}
|
|
65806
|
+
export interface MonitorVariablesAggregateAugmentedQueryAugmentReferenceTableColumn {
|
|
65807
|
+
/**
|
|
65808
|
+
* Optional alias for the column.
|
|
65809
|
+
*/
|
|
65810
|
+
alias?: pulumi.Input<string | undefined>;
|
|
65811
|
+
/**
|
|
65812
|
+
* Reference table column name.
|
|
65813
|
+
*/
|
|
65814
|
+
name: pulumi.Input<string>;
|
|
65815
|
+
}
|
|
65816
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQuery {
|
|
65817
|
+
/**
|
|
65818
|
+
* The compute options.
|
|
65819
|
+
*/
|
|
65820
|
+
computes: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryBaseEventQueryCompute>[]>;
|
|
65821
|
+
/**
|
|
65822
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
65823
|
+
*/
|
|
65824
|
+
dataSource: pulumi.Input<string>;
|
|
65825
|
+
/**
|
|
65826
|
+
* Group by options.
|
|
65827
|
+
*/
|
|
65828
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBy>[] | undefined>;
|
|
65829
|
+
/**
|
|
65830
|
+
* An array of index names to query in the stream.
|
|
65831
|
+
*/
|
|
65832
|
+
indexes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
65833
|
+
/**
|
|
65834
|
+
* The name of query for use in formulas.
|
|
65835
|
+
*/
|
|
65836
|
+
name: pulumi.Input<string>;
|
|
65837
|
+
/**
|
|
65838
|
+
* The search options.
|
|
65839
|
+
*/
|
|
65840
|
+
search: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryBaseEventQuerySearch>;
|
|
65841
|
+
}
|
|
65842
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQueryCompute {
|
|
65843
|
+
/**
|
|
65844
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65845
|
+
*/
|
|
65846
|
+
aggregation: pulumi.Input<string>;
|
|
65847
|
+
/**
|
|
65848
|
+
* A time interval in milliseconds.
|
|
65849
|
+
*/
|
|
65850
|
+
interval?: pulumi.Input<number | undefined>;
|
|
65851
|
+
/**
|
|
65852
|
+
* The measurable attribute to compute.
|
|
65853
|
+
*/
|
|
65854
|
+
metric?: pulumi.Input<string | undefined>;
|
|
65855
|
+
/**
|
|
65856
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
65857
|
+
*/
|
|
65858
|
+
name?: pulumi.Input<string | undefined>;
|
|
65859
|
+
}
|
|
65860
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBy {
|
|
65861
|
+
/**
|
|
65862
|
+
* The event facet.
|
|
65863
|
+
*/
|
|
65864
|
+
facet: pulumi.Input<string>;
|
|
65865
|
+
/**
|
|
65866
|
+
* The number of groups to return.
|
|
65867
|
+
*/
|
|
65868
|
+
limit?: pulumi.Input<number | undefined>;
|
|
65869
|
+
/**
|
|
65870
|
+
* The options for sorting group by results.
|
|
65871
|
+
*/
|
|
65872
|
+
sort?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBySort | undefined>;
|
|
65873
|
+
/**
|
|
65874
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
65875
|
+
*/
|
|
65876
|
+
source?: pulumi.Input<string | undefined>;
|
|
65877
|
+
}
|
|
65878
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQueryGroupBySort {
|
|
65879
|
+
/**
|
|
65880
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65881
|
+
*/
|
|
65882
|
+
aggregation: pulumi.Input<string>;
|
|
65883
|
+
/**
|
|
65884
|
+
* The metric used for sorting group by results.
|
|
65885
|
+
*/
|
|
65886
|
+
metric?: pulumi.Input<string | undefined>;
|
|
65887
|
+
/**
|
|
65888
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
65889
|
+
*/
|
|
65890
|
+
order?: pulumi.Input<string | undefined>;
|
|
65891
|
+
}
|
|
65892
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseEventQuerySearch {
|
|
65893
|
+
/**
|
|
65894
|
+
* The events search string.
|
|
65895
|
+
*/
|
|
65896
|
+
query: pulumi.Input<string>;
|
|
65897
|
+
}
|
|
65898
|
+
export interface MonitorVariablesAggregateAugmentedQueryBaseMetricsQuery {
|
|
65899
|
+
/**
|
|
65900
|
+
* The aggregation method for metrics queries. Valid values are `avg`, `min`, `max`, `sum`, `last`, `mean`, `area`, `l2norm`, `percentile`, `stddev`, `countUnique`.
|
|
65901
|
+
*/
|
|
65902
|
+
aggregator?: pulumi.Input<string | undefined>;
|
|
65903
|
+
/**
|
|
65904
|
+
* The data source for metrics queries. Valid values are `metrics`, `cloudCost`, `datadogUsage`.
|
|
65905
|
+
*/
|
|
65906
|
+
dataSource: pulumi.Input<string>;
|
|
65907
|
+
/**
|
|
65908
|
+
* The name of the query for use in formulas.
|
|
65909
|
+
*/
|
|
65910
|
+
name?: pulumi.Input<string | undefined>;
|
|
65911
|
+
/**
|
|
65912
|
+
* The metrics query definition.
|
|
65913
|
+
*/
|
|
65914
|
+
query: pulumi.Input<string>;
|
|
65915
|
+
}
|
|
65916
|
+
export interface MonitorVariablesAggregateAugmentedQueryCompute {
|
|
65917
|
+
/**
|
|
65918
|
+
* The aggregation methods for compute steps. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65919
|
+
*/
|
|
65920
|
+
aggregation: pulumi.Input<string>;
|
|
65921
|
+
/**
|
|
65922
|
+
* A time interval in milliseconds.
|
|
65923
|
+
*/
|
|
65924
|
+
interval?: pulumi.Input<number | undefined>;
|
|
65925
|
+
/**
|
|
65926
|
+
* The measurable attribute to compute.
|
|
65927
|
+
*/
|
|
65928
|
+
metric?: pulumi.Input<string | undefined>;
|
|
65929
|
+
/**
|
|
65930
|
+
* The name assigned to this aggregation when multiple aggregations are defined.
|
|
65931
|
+
*/
|
|
65932
|
+
name?: pulumi.Input<string | undefined>;
|
|
65933
|
+
}
|
|
65934
|
+
export interface MonitorVariablesAggregateAugmentedQueryGroupBy {
|
|
65935
|
+
/**
|
|
65936
|
+
* The facet to group by.
|
|
65937
|
+
*/
|
|
65938
|
+
facet: pulumi.Input<string>;
|
|
65939
|
+
/**
|
|
65940
|
+
* The number of groups to return.
|
|
65941
|
+
*/
|
|
65942
|
+
limit?: pulumi.Input<number | undefined>;
|
|
65943
|
+
/**
|
|
65944
|
+
* Sort options for group by.
|
|
65945
|
+
*/
|
|
65946
|
+
sort?: pulumi.Input<inputs.MonitorVariablesAggregateAugmentedQueryGroupBySort | undefined>;
|
|
65947
|
+
/**
|
|
65948
|
+
* Identifies which sub-query this facet refers to (for example `filterQuery`).
|
|
65949
|
+
*/
|
|
65950
|
+
source?: pulumi.Input<string | undefined>;
|
|
65951
|
+
}
|
|
65952
|
+
export interface MonitorVariablesAggregateAugmentedQueryGroupBySort {
|
|
65953
|
+
/**
|
|
65954
|
+
* The aggregation methods for sorting. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
65955
|
+
*/
|
|
65956
|
+
aggregation: pulumi.Input<string>;
|
|
65957
|
+
/**
|
|
65958
|
+
* The metric used for sorting group by results.
|
|
65959
|
+
*/
|
|
65960
|
+
metric?: pulumi.Input<string | undefined>;
|
|
65961
|
+
/**
|
|
65962
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
65963
|
+
*/
|
|
65964
|
+
order?: pulumi.Input<string | undefined>;
|
|
65965
|
+
}
|
|
65966
|
+
export interface MonitorVariablesAggregateAugmentedQueryJoinCondition {
|
|
65967
|
+
/**
|
|
65968
|
+
* Attribute from the augment query to join on.
|
|
65969
|
+
*/
|
|
65970
|
+
augmentAttribute: pulumi.Input<string>;
|
|
65971
|
+
/**
|
|
65972
|
+
* Attribute from the base query to join on.
|
|
65973
|
+
*/
|
|
65974
|
+
baseAttribute: pulumi.Input<string>;
|
|
65975
|
+
/**
|
|
65976
|
+
* Join type (for example `inner`). Valid values are `inner`, `left`.
|
|
65977
|
+
*/
|
|
65978
|
+
joinType: pulumi.Input<string>;
|
|
65979
|
+
}
|
|
65980
|
+
export interface MonitorVariablesAggregateFilteredQuery {
|
|
65981
|
+
/**
|
|
65982
|
+
* Events base query. Do not set `baseMetricsQuery` in the same block.
|
|
65983
|
+
*/
|
|
65984
|
+
baseEventQuery?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryBaseEventQuery | undefined>;
|
|
65985
|
+
/**
|
|
65986
|
+
* Metrics base query. Do not set `baseEventQuery` in the same block.
|
|
65987
|
+
*/
|
|
65988
|
+
baseMetricsQuery?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryBaseMetricsQuery | undefined>;
|
|
65989
|
+
/**
|
|
65990
|
+
* Optional compute aggregations for the aggregate-filtered query.
|
|
65991
|
+
*/
|
|
65992
|
+
computes?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryCompute>[] | undefined>;
|
|
65993
|
+
/**
|
|
65994
|
+
* The data source for aggregate-filtered composite queries. Must be `aggregateFilteredQuery`. Valid values are `aggregateFilteredQuery`.
|
|
65995
|
+
*/
|
|
65996
|
+
dataSource: pulumi.Input<string>;
|
|
65997
|
+
/**
|
|
65998
|
+
* Events filter query. Do not set `filterReferenceTable` in the same block.
|
|
65999
|
+
*/
|
|
66000
|
+
filterEventQuery?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterEventQuery | undefined>;
|
|
66001
|
+
/**
|
|
66002
|
+
* Reference table filter query. Do not set `filterEventQuery` in the same block.
|
|
66003
|
+
*/
|
|
66004
|
+
filterReferenceTable?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterReferenceTable | undefined>;
|
|
66005
|
+
/**
|
|
66006
|
+
* Filter conditions mapping base query attributes to filter query attributes.
|
|
66007
|
+
*/
|
|
66008
|
+
filters: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilter>[]>;
|
|
66009
|
+
/**
|
|
66010
|
+
* Optional group by options for the aggregate-filtered query.
|
|
66011
|
+
*/
|
|
66012
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryGroupBy>[] | undefined>;
|
|
66013
|
+
/**
|
|
66014
|
+
* Name of the query for use in formulas.
|
|
66015
|
+
*/
|
|
66016
|
+
name?: pulumi.Input<string | undefined>;
|
|
66017
|
+
}
|
|
66018
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQuery {
|
|
66019
|
+
/**
|
|
66020
|
+
* The compute options.
|
|
66021
|
+
*/
|
|
66022
|
+
computes: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryBaseEventQueryCompute>[]>;
|
|
66023
|
+
/**
|
|
66024
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
66025
|
+
*/
|
|
66026
|
+
dataSource: pulumi.Input<string>;
|
|
66027
|
+
/**
|
|
66028
|
+
* Group by options.
|
|
66029
|
+
*/
|
|
66030
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBy>[] | undefined>;
|
|
66031
|
+
/**
|
|
66032
|
+
* An array of index names to query in the stream.
|
|
66033
|
+
*/
|
|
66034
|
+
indexes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
66035
|
+
/**
|
|
66036
|
+
* The name of query for use in formulas.
|
|
66037
|
+
*/
|
|
66038
|
+
name: pulumi.Input<string>;
|
|
66039
|
+
/**
|
|
66040
|
+
* The search options.
|
|
66041
|
+
*/
|
|
66042
|
+
search: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryBaseEventQuerySearch>;
|
|
66043
|
+
}
|
|
66044
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQueryCompute {
|
|
66045
|
+
/**
|
|
66046
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66047
|
+
*/
|
|
66048
|
+
aggregation: pulumi.Input<string>;
|
|
66049
|
+
/**
|
|
66050
|
+
* A time interval in milliseconds.
|
|
66051
|
+
*/
|
|
66052
|
+
interval?: pulumi.Input<number | undefined>;
|
|
66053
|
+
/**
|
|
66054
|
+
* The measurable attribute to compute.
|
|
66055
|
+
*/
|
|
66056
|
+
metric?: pulumi.Input<string | undefined>;
|
|
66057
|
+
/**
|
|
66058
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66059
|
+
*/
|
|
66060
|
+
name?: pulumi.Input<string | undefined>;
|
|
66061
|
+
}
|
|
66062
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBy {
|
|
66063
|
+
/**
|
|
66064
|
+
* The event facet.
|
|
66065
|
+
*/
|
|
66066
|
+
facet: pulumi.Input<string>;
|
|
66067
|
+
/**
|
|
66068
|
+
* The number of groups to return.
|
|
66069
|
+
*/
|
|
66070
|
+
limit?: pulumi.Input<number | undefined>;
|
|
66071
|
+
/**
|
|
66072
|
+
* The options for sorting group by results.
|
|
66073
|
+
*/
|
|
66074
|
+
sort?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBySort | undefined>;
|
|
66075
|
+
/**
|
|
66076
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66077
|
+
*/
|
|
66078
|
+
source?: pulumi.Input<string | undefined>;
|
|
66079
|
+
}
|
|
66080
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQueryGroupBySort {
|
|
66081
|
+
/**
|
|
66082
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66083
|
+
*/
|
|
66084
|
+
aggregation: pulumi.Input<string>;
|
|
66085
|
+
/**
|
|
66086
|
+
* The metric used for sorting group by results.
|
|
66087
|
+
*/
|
|
66088
|
+
metric?: pulumi.Input<string | undefined>;
|
|
66089
|
+
/**
|
|
66090
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66091
|
+
*/
|
|
66092
|
+
order?: pulumi.Input<string | undefined>;
|
|
66093
|
+
}
|
|
66094
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseEventQuerySearch {
|
|
66095
|
+
/**
|
|
66096
|
+
* The events search string.
|
|
66097
|
+
*/
|
|
66098
|
+
query: pulumi.Input<string>;
|
|
66099
|
+
}
|
|
66100
|
+
export interface MonitorVariablesAggregateFilteredQueryBaseMetricsQuery {
|
|
66101
|
+
/**
|
|
66102
|
+
* The aggregation method for metrics queries. Valid values are `avg`, `min`, `max`, `sum`, `last`, `mean`, `area`, `l2norm`, `percentile`, `stddev`, `countUnique`.
|
|
66103
|
+
*/
|
|
66104
|
+
aggregator?: pulumi.Input<string | undefined>;
|
|
66105
|
+
/**
|
|
66106
|
+
* The data source for metrics queries. Valid values are `metrics`, `cloudCost`, `datadogUsage`.
|
|
66107
|
+
*/
|
|
66108
|
+
dataSource: pulumi.Input<string>;
|
|
66109
|
+
/**
|
|
66110
|
+
* The name of the query for use in formulas.
|
|
66111
|
+
*/
|
|
66112
|
+
name?: pulumi.Input<string | undefined>;
|
|
66113
|
+
/**
|
|
66114
|
+
* The metrics query definition.
|
|
66115
|
+
*/
|
|
66116
|
+
query: pulumi.Input<string>;
|
|
66117
|
+
}
|
|
66118
|
+
export interface MonitorVariablesAggregateFilteredQueryCompute {
|
|
66119
|
+
/**
|
|
66120
|
+
* The aggregation methods for compute steps. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66121
|
+
*/
|
|
66122
|
+
aggregation: pulumi.Input<string>;
|
|
66123
|
+
/**
|
|
66124
|
+
* A time interval in milliseconds.
|
|
66125
|
+
*/
|
|
66126
|
+
interval?: pulumi.Input<number | undefined>;
|
|
66127
|
+
/**
|
|
66128
|
+
* The measurable attribute to compute.
|
|
66129
|
+
*/
|
|
66130
|
+
metric?: pulumi.Input<string | undefined>;
|
|
66131
|
+
/**
|
|
66132
|
+
* The name assigned to this aggregation when multiple aggregations are defined.
|
|
66133
|
+
*/
|
|
66134
|
+
name?: pulumi.Input<string | undefined>;
|
|
66135
|
+
}
|
|
66136
|
+
export interface MonitorVariablesAggregateFilteredQueryFilter {
|
|
66137
|
+
/**
|
|
66138
|
+
* Attribute from the base query to filter on.
|
|
66139
|
+
*/
|
|
66140
|
+
baseAttribute: pulumi.Input<string>;
|
|
66141
|
+
/**
|
|
66142
|
+
* When true, exclude matching records instead of including them.
|
|
66143
|
+
*/
|
|
66144
|
+
exclude?: pulumi.Input<boolean | undefined>;
|
|
66145
|
+
/**
|
|
66146
|
+
* Attribute from the filter query to match against.
|
|
66147
|
+
*/
|
|
66148
|
+
filterAttribute: pulumi.Input<string>;
|
|
66149
|
+
}
|
|
66150
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQuery {
|
|
66151
|
+
/**
|
|
66152
|
+
* The compute options.
|
|
66153
|
+
*/
|
|
66154
|
+
computes: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterEventQueryCompute>[]>;
|
|
66155
|
+
/**
|
|
66156
|
+
* The data source for event platform-based queries. Valid values are `rum`, `ciPipelines`, `ciTests`, `audit`, `events`, `logs`, `spans`, `databaseQueries`, `network`, `networkPath`.
|
|
66157
|
+
*/
|
|
66158
|
+
dataSource: pulumi.Input<string>;
|
|
66159
|
+
/**
|
|
66160
|
+
* Group by options.
|
|
66161
|
+
*/
|
|
66162
|
+
groupBies?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBy>[] | undefined>;
|
|
66163
|
+
/**
|
|
66164
|
+
* An array of index names to query in the stream.
|
|
66165
|
+
*/
|
|
66166
|
+
indexes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
66167
|
+
/**
|
|
66168
|
+
* The name of query for use in formulas.
|
|
66169
|
+
*/
|
|
66170
|
+
name: pulumi.Input<string>;
|
|
66171
|
+
/**
|
|
66172
|
+
* The search options.
|
|
66173
|
+
*/
|
|
66174
|
+
search: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterEventQuerySearch>;
|
|
66175
|
+
}
|
|
66176
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQueryCompute {
|
|
66177
|
+
/**
|
|
66178
|
+
* The aggregation methods for event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66179
|
+
*/
|
|
66180
|
+
aggregation: pulumi.Input<string>;
|
|
66181
|
+
/**
|
|
66182
|
+
* A time interval in milliseconds.
|
|
66183
|
+
*/
|
|
66184
|
+
interval?: pulumi.Input<number | undefined>;
|
|
66185
|
+
/**
|
|
66186
|
+
* The measurable attribute to compute.
|
|
66187
|
+
*/
|
|
66188
|
+
metric?: pulumi.Input<string | undefined>;
|
|
66189
|
+
/**
|
|
66190
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66191
|
+
*/
|
|
66192
|
+
name?: pulumi.Input<string | undefined>;
|
|
66193
|
+
}
|
|
66194
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBy {
|
|
66195
|
+
/**
|
|
66196
|
+
* The event facet.
|
|
66197
|
+
*/
|
|
66198
|
+
facet: pulumi.Input<string>;
|
|
66199
|
+
/**
|
|
66200
|
+
* The number of groups to return.
|
|
66201
|
+
*/
|
|
66202
|
+
limit?: pulumi.Input<number | undefined>;
|
|
66203
|
+
/**
|
|
66204
|
+
* The options for sorting group by results.
|
|
66205
|
+
*/
|
|
66206
|
+
sort?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBySort | undefined>;
|
|
66207
|
+
/**
|
|
66208
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66209
|
+
*/
|
|
66210
|
+
source?: pulumi.Input<string | undefined>;
|
|
66211
|
+
}
|
|
66212
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQueryGroupBySort {
|
|
66213
|
+
/**
|
|
66214
|
+
* The aggregation methods for the event platform queries. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66215
|
+
*/
|
|
66216
|
+
aggregation: pulumi.Input<string>;
|
|
66217
|
+
/**
|
|
66218
|
+
* The metric used for sorting group by results.
|
|
66219
|
+
*/
|
|
66220
|
+
metric?: pulumi.Input<string | undefined>;
|
|
66221
|
+
/**
|
|
66222
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66223
|
+
*/
|
|
66224
|
+
order?: pulumi.Input<string | undefined>;
|
|
66225
|
+
}
|
|
66226
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterEventQuerySearch {
|
|
66227
|
+
/**
|
|
66228
|
+
* The events search string.
|
|
66229
|
+
*/
|
|
66230
|
+
query: pulumi.Input<string>;
|
|
66231
|
+
}
|
|
66232
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterReferenceTable {
|
|
66233
|
+
/**
|
|
66234
|
+
* Columns to retrieve from the reference table.
|
|
66235
|
+
*/
|
|
66236
|
+
columns?: pulumi.Input<pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryFilterReferenceTableColumn>[] | undefined>;
|
|
66237
|
+
/**
|
|
66238
|
+
* Must be `referenceTable`. Valid values are `referenceTable`.
|
|
66239
|
+
*/
|
|
66240
|
+
dataSource: pulumi.Input<string>;
|
|
66241
|
+
/**
|
|
66242
|
+
* Name of the filter sub-query.
|
|
66243
|
+
*/
|
|
66244
|
+
name?: pulumi.Input<string | undefined>;
|
|
66245
|
+
/**
|
|
66246
|
+
* Optional filter expression for the reference table query.
|
|
66247
|
+
*/
|
|
66248
|
+
queryFilter?: pulumi.Input<string | undefined>;
|
|
66249
|
+
/**
|
|
66250
|
+
* Name of the reference table.
|
|
66251
|
+
*/
|
|
66252
|
+
tableName: pulumi.Input<string>;
|
|
66253
|
+
}
|
|
66254
|
+
export interface MonitorVariablesAggregateFilteredQueryFilterReferenceTableColumn {
|
|
66255
|
+
/**
|
|
66256
|
+
* Optional alias for the column.
|
|
66257
|
+
*/
|
|
66258
|
+
alias?: pulumi.Input<string | undefined>;
|
|
66259
|
+
/**
|
|
66260
|
+
* Reference table column name.
|
|
66261
|
+
*/
|
|
66262
|
+
name: pulumi.Input<string>;
|
|
66263
|
+
}
|
|
66264
|
+
export interface MonitorVariablesAggregateFilteredQueryGroupBy {
|
|
66265
|
+
/**
|
|
66266
|
+
* The facet to group by.
|
|
66267
|
+
*/
|
|
66268
|
+
facet: pulumi.Input<string>;
|
|
66269
|
+
/**
|
|
66270
|
+
* The number of groups to return.
|
|
66271
|
+
*/
|
|
66272
|
+
limit?: pulumi.Input<number | undefined>;
|
|
66273
|
+
/**
|
|
66274
|
+
* Sort options for group by.
|
|
66275
|
+
*/
|
|
66276
|
+
sort?: pulumi.Input<inputs.MonitorVariablesAggregateFilteredQueryGroupBySort | undefined>;
|
|
66277
|
+
/**
|
|
66278
|
+
* Identifies which sub-query this facet refers to (for example `filterQuery`).
|
|
66279
|
+
*/
|
|
66280
|
+
source?: pulumi.Input<string | undefined>;
|
|
66281
|
+
}
|
|
66282
|
+
export interface MonitorVariablesAggregateFilteredQueryGroupBySort {
|
|
66283
|
+
/**
|
|
66284
|
+
* The aggregation methods for sorting. Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`.
|
|
66285
|
+
*/
|
|
66286
|
+
aggregation: pulumi.Input<string>;
|
|
66287
|
+
/**
|
|
66288
|
+
* The metric used for sorting group by results.
|
|
66289
|
+
*/
|
|
66290
|
+
metric?: pulumi.Input<string | undefined>;
|
|
66291
|
+
/**
|
|
66292
|
+
* Direction of sort. Valid values are `asc`, `desc`.
|
|
66293
|
+
*/
|
|
66294
|
+
order?: pulumi.Input<string | undefined>;
|
|
66295
|
+
}
|
|
65648
66296
|
export interface MonitorVariablesCloudCostQuery {
|
|
65649
66297
|
/**
|
|
65650
66298
|
* The aggregation methods available for cloud cost queries. Valid values are `avg`, `sum`, `max`, `min`, `last`, `area`, `l2norm`, `percentile`, `stddev`.
|
|
@@ -65776,6 +66424,10 @@ export interface MonitorVariablesEventQueryCompute {
|
|
|
65776
66424
|
* The measurable attribute to compute.
|
|
65777
66425
|
*/
|
|
65778
66426
|
metric?: pulumi.Input<string | undefined>;
|
|
66427
|
+
/**
|
|
66428
|
+
* The name assigned to this aggregation when multiple aggregations are defined for a query.
|
|
66429
|
+
*/
|
|
66430
|
+
name?: pulumi.Input<string | undefined>;
|
|
65779
66431
|
}
|
|
65780
66432
|
export interface MonitorVariablesEventQueryGroupBy {
|
|
65781
66433
|
/**
|
|
@@ -65790,6 +66442,10 @@ export interface MonitorVariablesEventQueryGroupBy {
|
|
|
65790
66442
|
* The options for sorting group by results.
|
|
65791
66443
|
*/
|
|
65792
66444
|
sort?: pulumi.Input<inputs.MonitorVariablesEventQueryGroupBySort | undefined>;
|
|
66445
|
+
/**
|
|
66446
|
+
* For composite aggregate-augmented queries, identifies which sub-query this group-by facet refers to (for example `filterQuery`).
|
|
66447
|
+
*/
|
|
66448
|
+
source?: pulumi.Input<string | undefined>;
|
|
65793
66449
|
}
|
|
65794
66450
|
export interface MonitorVariablesEventQueryGroupBySort {
|
|
65795
66451
|
/**
|
|
@@ -66097,6 +66753,10 @@ export interface ObservabilityPipelineConfigDestinationAmazonS3Generic {
|
|
|
66097
66753
|
* S3 bucket name.
|
|
66098
66754
|
*/
|
|
66099
66755
|
bucket: pulumi.Input<string>;
|
|
66756
|
+
/**
|
|
66757
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
66758
|
+
*/
|
|
66759
|
+
buffer?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationAmazonS3GenericBuffer | undefined>;
|
|
66100
66760
|
/**
|
|
66101
66761
|
* Compression configuration.
|
|
66102
66762
|
*/
|
|
@@ -66142,6 +66802,40 @@ export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBatchSetti
|
|
|
66142
66802
|
*/
|
|
66143
66803
|
timeoutSecs?: pulumi.Input<number | undefined>;
|
|
66144
66804
|
}
|
|
66805
|
+
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBuffer {
|
|
66806
|
+
/**
|
|
66807
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
66808
|
+
*/
|
|
66809
|
+
disk?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationAmazonS3GenericBufferDisk | undefined>;
|
|
66810
|
+
/**
|
|
66811
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
66812
|
+
*/
|
|
66813
|
+
memory?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationAmazonS3GenericBufferMemory | undefined>;
|
|
66814
|
+
}
|
|
66815
|
+
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBufferDisk {
|
|
66816
|
+
/**
|
|
66817
|
+
* Maximum size of the disk buffer (in bytes).
|
|
66818
|
+
*/
|
|
66819
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
66820
|
+
/**
|
|
66821
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
66822
|
+
*/
|
|
66823
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
66824
|
+
}
|
|
66825
|
+
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericBufferMemory {
|
|
66826
|
+
/**
|
|
66827
|
+
* Maximum events for the memory buffer.
|
|
66828
|
+
*/
|
|
66829
|
+
maxEvents?: pulumi.Input<number | undefined>;
|
|
66830
|
+
/**
|
|
66831
|
+
* Maximum size of the memory buffer (in bytes).
|
|
66832
|
+
*/
|
|
66833
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
66834
|
+
/**
|
|
66835
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
66836
|
+
*/
|
|
66837
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
66838
|
+
}
|
|
66145
66839
|
export interface ObservabilityPipelineConfigDestinationAmazonS3GenericCompression {
|
|
66146
66840
|
/**
|
|
66147
66841
|
* Compression algorithm. Valid values are `gzip`, `zstd`, `snappy`.
|
|
@@ -66303,11 +66997,49 @@ export interface ObservabilityPipelineConfigDestinationAzureStorageBufferMemory
|
|
|
66303
66997
|
whenFull?: pulumi.Input<string | undefined>;
|
|
66304
66998
|
}
|
|
66305
66999
|
export interface ObservabilityPipelineConfigDestinationCloudPrem {
|
|
67000
|
+
/**
|
|
67001
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
67002
|
+
*/
|
|
67003
|
+
buffer?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationCloudPremBuffer | undefined>;
|
|
66306
67004
|
/**
|
|
66307
67005
|
* Name of the environment variable or secret that holds the endpoint URL.
|
|
66308
67006
|
*/
|
|
66309
67007
|
endpointUrlKey?: pulumi.Input<string | undefined>;
|
|
66310
67008
|
}
|
|
67009
|
+
export interface ObservabilityPipelineConfigDestinationCloudPremBuffer {
|
|
67010
|
+
/**
|
|
67011
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
67012
|
+
*/
|
|
67013
|
+
disk?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationCloudPremBufferDisk | undefined>;
|
|
67014
|
+
/**
|
|
67015
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
67016
|
+
*/
|
|
67017
|
+
memory?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationCloudPremBufferMemory | undefined>;
|
|
67018
|
+
}
|
|
67019
|
+
export interface ObservabilityPipelineConfigDestinationCloudPremBufferDisk {
|
|
67020
|
+
/**
|
|
67021
|
+
* Maximum size of the disk buffer (in bytes).
|
|
67022
|
+
*/
|
|
67023
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
67024
|
+
/**
|
|
67025
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67026
|
+
*/
|
|
67027
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
67028
|
+
}
|
|
67029
|
+
export interface ObservabilityPipelineConfigDestinationCloudPremBufferMemory {
|
|
67030
|
+
/**
|
|
67031
|
+
* Maximum events for the memory buffer.
|
|
67032
|
+
*/
|
|
67033
|
+
maxEvents?: pulumi.Input<number | undefined>;
|
|
67034
|
+
/**
|
|
67035
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67036
|
+
*/
|
|
67037
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
67038
|
+
/**
|
|
67039
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67040
|
+
*/
|
|
67041
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
67042
|
+
}
|
|
66311
67043
|
export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiem {
|
|
66312
67044
|
/**
|
|
66313
67045
|
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
@@ -66909,6 +67641,10 @@ export interface ObservabilityPipelineConfigDestinationHttpClient {
|
|
|
66909
67641
|
* HTTP authentication strategy. Valid values are `none`, `basic`, `bearer`.
|
|
66910
67642
|
*/
|
|
66911
67643
|
authStrategy?: pulumi.Input<string | undefined>;
|
|
67644
|
+
/**
|
|
67645
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
67646
|
+
*/
|
|
67647
|
+
buffer?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationHttpClientBuffer | undefined>;
|
|
66912
67648
|
/**
|
|
66913
67649
|
* Compression configuration for HTTP requests.
|
|
66914
67650
|
*/
|
|
@@ -66938,6 +67674,40 @@ export interface ObservabilityPipelineConfigDestinationHttpClient {
|
|
|
66938
67674
|
*/
|
|
66939
67675
|
usernameKey?: pulumi.Input<string | undefined>;
|
|
66940
67676
|
}
|
|
67677
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientBuffer {
|
|
67678
|
+
/**
|
|
67679
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
67680
|
+
*/
|
|
67681
|
+
disk?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationHttpClientBufferDisk | undefined>;
|
|
67682
|
+
/**
|
|
67683
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
67684
|
+
*/
|
|
67685
|
+
memory?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationHttpClientBufferMemory | undefined>;
|
|
67686
|
+
}
|
|
67687
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientBufferDisk {
|
|
67688
|
+
/**
|
|
67689
|
+
* Maximum size of the disk buffer (in bytes).
|
|
67690
|
+
*/
|
|
67691
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
67692
|
+
/**
|
|
67693
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67694
|
+
*/
|
|
67695
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
67696
|
+
}
|
|
67697
|
+
export interface ObservabilityPipelineConfigDestinationHttpClientBufferMemory {
|
|
67698
|
+
/**
|
|
67699
|
+
* Maximum events for the memory buffer.
|
|
67700
|
+
*/
|
|
67701
|
+
maxEvents?: pulumi.Input<number | undefined>;
|
|
67702
|
+
/**
|
|
67703
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67704
|
+
*/
|
|
67705
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
67706
|
+
/**
|
|
67707
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67708
|
+
*/
|
|
67709
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
67710
|
+
}
|
|
66941
67711
|
export interface ObservabilityPipelineConfigDestinationHttpClientCompression {
|
|
66942
67712
|
/**
|
|
66943
67713
|
* Compression algorithm. Valid values are `gzip`.
|
|
@@ -66967,6 +67737,10 @@ export interface ObservabilityPipelineConfigDestinationKafka {
|
|
|
66967
67737
|
* Name of the environment variable or secret that holds the Kafka bootstrap servers.
|
|
66968
67738
|
*/
|
|
66969
67739
|
bootstrapServersKey?: pulumi.Input<string | undefined>;
|
|
67740
|
+
/**
|
|
67741
|
+
* Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
|
|
67742
|
+
*/
|
|
67743
|
+
buffer?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafkaBuffer | undefined>;
|
|
66970
67744
|
/**
|
|
66971
67745
|
* Compression codec for Kafka messages. Valid values are `none`, `gzip`, `snappy`, `lz4`, `zstd`.
|
|
66972
67746
|
*/
|
|
@@ -67016,6 +67790,40 @@ export interface ObservabilityPipelineConfigDestinationKafka {
|
|
|
67016
67790
|
*/
|
|
67017
67791
|
topic: pulumi.Input<string>;
|
|
67018
67792
|
}
|
|
67793
|
+
export interface ObservabilityPipelineConfigDestinationKafkaBuffer {
|
|
67794
|
+
/**
|
|
67795
|
+
* Options for configuring a disk buffer. Cannot be used with `memory`.
|
|
67796
|
+
*/
|
|
67797
|
+
disk?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafkaBufferDisk | undefined>;
|
|
67798
|
+
/**
|
|
67799
|
+
* Options for configuring a memory buffer. Cannot be used with `disk`.
|
|
67800
|
+
*/
|
|
67801
|
+
memory?: pulumi.Input<inputs.ObservabilityPipelineConfigDestinationKafkaBufferMemory | undefined>;
|
|
67802
|
+
}
|
|
67803
|
+
export interface ObservabilityPipelineConfigDestinationKafkaBufferDisk {
|
|
67804
|
+
/**
|
|
67805
|
+
* Maximum size of the disk buffer (in bytes).
|
|
67806
|
+
*/
|
|
67807
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
67808
|
+
/**
|
|
67809
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67810
|
+
*/
|
|
67811
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
67812
|
+
}
|
|
67813
|
+
export interface ObservabilityPipelineConfigDestinationKafkaBufferMemory {
|
|
67814
|
+
/**
|
|
67815
|
+
* Maximum events for the memory buffer.
|
|
67816
|
+
*/
|
|
67817
|
+
maxEvents?: pulumi.Input<number | undefined>;
|
|
67818
|
+
/**
|
|
67819
|
+
* Maximum size of the memory buffer (in bytes).
|
|
67820
|
+
*/
|
|
67821
|
+
maxSize?: pulumi.Input<number | undefined>;
|
|
67822
|
+
/**
|
|
67823
|
+
* Behavior when the buffer is full. Valid values are `block` or `dropNewest`. Defaults to `"block"`.
|
|
67824
|
+
*/
|
|
67825
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
67826
|
+
}
|
|
67019
67827
|
export interface ObservabilityPipelineConfigDestinationKafkaLibrdkafkaOption {
|
|
67020
67828
|
/**
|
|
67021
67829
|
* The name of the librdkafka configuration option.
|
|
@@ -68741,27 +69549,31 @@ export interface ObservabilityPipelineConfigSourceFluentBit {
|
|
|
68741
69549
|
*/
|
|
68742
69550
|
addressKey?: pulumi.Input<string | undefined>;
|
|
68743
69551
|
/**
|
|
68744
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69552
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
68745
69553
|
*/
|
|
68746
69554
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceFluentBitTls | undefined>;
|
|
68747
69555
|
}
|
|
68748
69556
|
export interface ObservabilityPipelineConfigSourceFluentBitTls {
|
|
68749
69557
|
/**
|
|
68750
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69558
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
68751
69559
|
*/
|
|
68752
69560
|
caFile?: pulumi.Input<string | undefined>;
|
|
68753
69561
|
/**
|
|
68754
|
-
* Path to the TLS
|
|
69562
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
68755
69563
|
*/
|
|
68756
69564
|
crtFile: pulumi.Input<string>;
|
|
68757
69565
|
/**
|
|
68758
|
-
* Path to the private key file associated with the TLS
|
|
69566
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
68759
69567
|
*/
|
|
68760
69568
|
keyFile?: pulumi.Input<string | undefined>;
|
|
68761
69569
|
/**
|
|
68762
69570
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
68763
69571
|
*/
|
|
68764
69572
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
69573
|
+
/**
|
|
69574
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69575
|
+
*/
|
|
69576
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
68765
69577
|
}
|
|
68766
69578
|
export interface ObservabilityPipelineConfigSourceFluentd {
|
|
68767
69579
|
/**
|
|
@@ -68769,27 +69581,31 @@ export interface ObservabilityPipelineConfigSourceFluentd {
|
|
|
68769
69581
|
*/
|
|
68770
69582
|
addressKey?: pulumi.Input<string | undefined>;
|
|
68771
69583
|
/**
|
|
68772
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69584
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
68773
69585
|
*/
|
|
68774
69586
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceFluentdTls | undefined>;
|
|
68775
69587
|
}
|
|
68776
69588
|
export interface ObservabilityPipelineConfigSourceFluentdTls {
|
|
68777
69589
|
/**
|
|
68778
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69590
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
68779
69591
|
*/
|
|
68780
69592
|
caFile?: pulumi.Input<string | undefined>;
|
|
68781
69593
|
/**
|
|
68782
|
-
* Path to the TLS
|
|
69594
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
68783
69595
|
*/
|
|
68784
69596
|
crtFile: pulumi.Input<string>;
|
|
68785
69597
|
/**
|
|
68786
|
-
* Path to the private key file associated with the TLS
|
|
69598
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
68787
69599
|
*/
|
|
68788
69600
|
keyFile?: pulumi.Input<string | undefined>;
|
|
68789
69601
|
/**
|
|
68790
69602
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
68791
69603
|
*/
|
|
68792
69604
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
69605
|
+
/**
|
|
69606
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69607
|
+
*/
|
|
69608
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
68793
69609
|
}
|
|
68794
69610
|
export interface ObservabilityPipelineConfigSourceGooglePubsub {
|
|
68795
69611
|
/**
|
|
@@ -68915,31 +69731,77 @@ export interface ObservabilityPipelineConfigSourceHttpServer {
|
|
|
68915
69731
|
*/
|
|
68916
69732
|
passwordKey?: pulumi.Input<string | undefined>;
|
|
68917
69733
|
/**
|
|
68918
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69734
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
68919
69735
|
*/
|
|
68920
69736
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceHttpServerTls | undefined>;
|
|
68921
69737
|
/**
|
|
68922
69738
|
* Name of the environment variable or secret that holds the username.
|
|
68923
69739
|
*/
|
|
68924
69740
|
usernameKey?: pulumi.Input<string | undefined>;
|
|
69741
|
+
/**
|
|
69742
|
+
* A token accepted for authenticating incoming HTTP requests. Cannot be combined with the `plain` auth strategy.
|
|
69743
|
+
*/
|
|
69744
|
+
validTokens?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourceHttpServerValidToken>[] | undefined>;
|
|
68925
69745
|
}
|
|
68926
69746
|
export interface ObservabilityPipelineConfigSourceHttpServerTls {
|
|
68927
69747
|
/**
|
|
68928
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69748
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
68929
69749
|
*/
|
|
68930
69750
|
caFile?: pulumi.Input<string | undefined>;
|
|
68931
69751
|
/**
|
|
68932
|
-
* Path to the TLS
|
|
69752
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
68933
69753
|
*/
|
|
68934
69754
|
crtFile: pulumi.Input<string>;
|
|
68935
69755
|
/**
|
|
68936
|
-
* Path to the private key file associated with the TLS
|
|
69756
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
68937
69757
|
*/
|
|
68938
69758
|
keyFile?: pulumi.Input<string | undefined>;
|
|
68939
69759
|
/**
|
|
68940
69760
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
68941
69761
|
*/
|
|
68942
69762
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
69763
|
+
/**
|
|
69764
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69765
|
+
*/
|
|
69766
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69767
|
+
}
|
|
69768
|
+
export interface ObservabilityPipelineConfigSourceHttpServerValidToken {
|
|
69769
|
+
/**
|
|
69770
|
+
* Whether this token is currently accepted. Defaults to `true`.
|
|
69771
|
+
*/
|
|
69772
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
69773
|
+
/**
|
|
69774
|
+
* An optional metadata field attached to every event authenticated by the token. Both `key` and `value` must match `^[A-Za-z0-9_]+$`.
|
|
69775
|
+
*/
|
|
69776
|
+
fieldToAdd?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceHttpServerValidTokenFieldToAdd | undefined>;
|
|
69777
|
+
/**
|
|
69778
|
+
* 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.
|
|
69779
|
+
*/
|
|
69780
|
+
pathToToken?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceHttpServerValidTokenPathToToken | undefined>;
|
|
69781
|
+
/**
|
|
69782
|
+
* Name of the environment variable or secret that holds the expected token value.
|
|
69783
|
+
*/
|
|
69784
|
+
tokenKey: pulumi.Input<string>;
|
|
69785
|
+
}
|
|
69786
|
+
export interface ObservabilityPipelineConfigSourceHttpServerValidTokenFieldToAdd {
|
|
69787
|
+
/**
|
|
69788
|
+
* The metadata field name to add to incoming events.
|
|
69789
|
+
*/
|
|
69790
|
+
key: pulumi.Input<string>;
|
|
69791
|
+
/**
|
|
69792
|
+
* The metadata field value to add to incoming events.
|
|
69793
|
+
*/
|
|
69794
|
+
value: pulumi.Input<string>;
|
|
69795
|
+
}
|
|
69796
|
+
export interface ObservabilityPipelineConfigSourceHttpServerValidTokenPathToToken {
|
|
69797
|
+
/**
|
|
69798
|
+
* The name of the HTTP header that carries the token.
|
|
69799
|
+
*/
|
|
69800
|
+
header?: pulumi.Input<string | undefined>;
|
|
69801
|
+
/**
|
|
69802
|
+
* Built-in token location on the incoming HTTP request. One of `path`, `address`. Valid values are `path`, `address`.
|
|
69803
|
+
*/
|
|
69804
|
+
location?: pulumi.Input<string | undefined>;
|
|
68943
69805
|
}
|
|
68944
69806
|
export interface ObservabilityPipelineConfigSourceKafka {
|
|
68945
69807
|
/**
|
|
@@ -69015,27 +69877,31 @@ export interface ObservabilityPipelineConfigSourceLogstash {
|
|
|
69015
69877
|
*/
|
|
69016
69878
|
addressKey?: pulumi.Input<string | undefined>;
|
|
69017
69879
|
/**
|
|
69018
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69880
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69019
69881
|
*/
|
|
69020
69882
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceLogstashTls | undefined>;
|
|
69021
69883
|
}
|
|
69022
69884
|
export interface ObservabilityPipelineConfigSourceLogstashTls {
|
|
69023
69885
|
/**
|
|
69024
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69886
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69025
69887
|
*/
|
|
69026
69888
|
caFile?: pulumi.Input<string | undefined>;
|
|
69027
69889
|
/**
|
|
69028
|
-
* Path to the TLS
|
|
69890
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69029
69891
|
*/
|
|
69030
69892
|
crtFile: pulumi.Input<string>;
|
|
69031
69893
|
/**
|
|
69032
|
-
* Path to the private key file associated with the TLS
|
|
69894
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69033
69895
|
*/
|
|
69034
69896
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69035
69897
|
/**
|
|
69036
69898
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69037
69899
|
*/
|
|
69038
69900
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
69901
|
+
/**
|
|
69902
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69903
|
+
*/
|
|
69904
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69039
69905
|
}
|
|
69040
69906
|
export interface ObservabilityPipelineConfigSourceOpentelemetry {
|
|
69041
69907
|
/**
|
|
@@ -69047,27 +69913,31 @@ export interface ObservabilityPipelineConfigSourceOpentelemetry {
|
|
|
69047
69913
|
*/
|
|
69048
69914
|
httpAddressKey?: pulumi.Input<string | undefined>;
|
|
69049
69915
|
/**
|
|
69050
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69916
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69051
69917
|
*/
|
|
69052
69918
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceOpentelemetryTls | undefined>;
|
|
69053
69919
|
}
|
|
69054
69920
|
export interface ObservabilityPipelineConfigSourceOpentelemetryTls {
|
|
69055
69921
|
/**
|
|
69056
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69922
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69057
69923
|
*/
|
|
69058
69924
|
caFile?: pulumi.Input<string | undefined>;
|
|
69059
69925
|
/**
|
|
69060
|
-
* Path to the TLS
|
|
69926
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69061
69927
|
*/
|
|
69062
69928
|
crtFile: pulumi.Input<string>;
|
|
69063
69929
|
/**
|
|
69064
|
-
* Path to the private key file associated with the TLS
|
|
69930
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69065
69931
|
*/
|
|
69066
69932
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69067
69933
|
/**
|
|
69068
69934
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69069
69935
|
*/
|
|
69070
69936
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
69937
|
+
/**
|
|
69938
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69939
|
+
*/
|
|
69940
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69071
69941
|
}
|
|
69072
69942
|
export interface ObservabilityPipelineConfigSourceRsyslog {
|
|
69073
69943
|
/**
|
|
@@ -69079,27 +69949,31 @@ export interface ObservabilityPipelineConfigSourceRsyslog {
|
|
|
69079
69949
|
*/
|
|
69080
69950
|
mode?: pulumi.Input<string | undefined>;
|
|
69081
69951
|
/**
|
|
69082
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69952
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69083
69953
|
*/
|
|
69084
69954
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceRsyslogTls | undefined>;
|
|
69085
69955
|
}
|
|
69086
69956
|
export interface ObservabilityPipelineConfigSourceRsyslogTls {
|
|
69087
69957
|
/**
|
|
69088
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
69958
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69089
69959
|
*/
|
|
69090
69960
|
caFile?: pulumi.Input<string | undefined>;
|
|
69091
69961
|
/**
|
|
69092
|
-
* Path to the TLS
|
|
69962
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69093
69963
|
*/
|
|
69094
69964
|
crtFile: pulumi.Input<string>;
|
|
69095
69965
|
/**
|
|
69096
|
-
* Path to the private key file associated with the TLS
|
|
69966
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69097
69967
|
*/
|
|
69098
69968
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69099
69969
|
/**
|
|
69100
69970
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69101
69971
|
*/
|
|
69102
69972
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
69973
|
+
/**
|
|
69974
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
69975
|
+
*/
|
|
69976
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69103
69977
|
}
|
|
69104
69978
|
export interface ObservabilityPipelineConfigSourceSocket {
|
|
69105
69979
|
/**
|
|
@@ -69115,7 +69989,7 @@ export interface ObservabilityPipelineConfigSourceSocket {
|
|
|
69115
69989
|
*/
|
|
69116
69990
|
mode: pulumi.Input<string>;
|
|
69117
69991
|
/**
|
|
69118
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
69992
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69119
69993
|
*/
|
|
69120
69994
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceSocketTls | undefined>;
|
|
69121
69995
|
}
|
|
@@ -69137,21 +70011,25 @@ export interface ObservabilityPipelineConfigSourceSocketFramingCharacterDelimite
|
|
|
69137
70011
|
}
|
|
69138
70012
|
export interface ObservabilityPipelineConfigSourceSocketTls {
|
|
69139
70013
|
/**
|
|
69140
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70014
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69141
70015
|
*/
|
|
69142
70016
|
caFile?: pulumi.Input<string | undefined>;
|
|
69143
70017
|
/**
|
|
69144
|
-
* Path to the TLS
|
|
70018
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69145
70019
|
*/
|
|
69146
70020
|
crtFile: pulumi.Input<string>;
|
|
69147
70021
|
/**
|
|
69148
|
-
* Path to the private key file associated with the TLS
|
|
70022
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69149
70023
|
*/
|
|
69150
70024
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69151
70025
|
/**
|
|
69152
70026
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69153
70027
|
*/
|
|
69154
70028
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
70029
|
+
/**
|
|
70030
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70031
|
+
*/
|
|
70032
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69155
70033
|
}
|
|
69156
70034
|
export interface ObservabilityPipelineConfigSourceSplunkHec {
|
|
69157
70035
|
/**
|
|
@@ -69163,27 +70041,59 @@ export interface ObservabilityPipelineConfigSourceSplunkHec {
|
|
|
69163
70041
|
*/
|
|
69164
70042
|
storeHecToken?: pulumi.Input<boolean | undefined>;
|
|
69165
70043
|
/**
|
|
69166
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70044
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69167
70045
|
*/
|
|
69168
70046
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceSplunkHecTls | undefined>;
|
|
70047
|
+
/**
|
|
70048
|
+
* A HEC token accepted for authenticating incoming Splunk HEC requests.
|
|
70049
|
+
*/
|
|
70050
|
+
validTokens?: pulumi.Input<pulumi.Input<inputs.ObservabilityPipelineConfigSourceSplunkHecValidToken>[] | undefined>;
|
|
69169
70051
|
}
|
|
69170
70052
|
export interface ObservabilityPipelineConfigSourceSplunkHecTls {
|
|
69171
70053
|
/**
|
|
69172
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70054
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69173
70055
|
*/
|
|
69174
70056
|
caFile?: pulumi.Input<string | undefined>;
|
|
69175
70057
|
/**
|
|
69176
|
-
* Path to the TLS
|
|
70058
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69177
70059
|
*/
|
|
69178
70060
|
crtFile: pulumi.Input<string>;
|
|
69179
70061
|
/**
|
|
69180
|
-
* Path to the private key file associated with the TLS
|
|
70062
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69181
70063
|
*/
|
|
69182
70064
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69183
70065
|
/**
|
|
69184
70066
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69185
70067
|
*/
|
|
69186
70068
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
70069
|
+
/**
|
|
70070
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70071
|
+
*/
|
|
70072
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
70073
|
+
}
|
|
70074
|
+
export interface ObservabilityPipelineConfigSourceSplunkHecValidToken {
|
|
70075
|
+
/**
|
|
70076
|
+
* Whether this token is currently accepted. Defaults to `true`.
|
|
70077
|
+
*/
|
|
70078
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
70079
|
+
/**
|
|
70080
|
+
* An optional metadata field attached to every event authenticated by the token. Both `key` and `value` must match `^[A-Za-z0-9_]+$`.
|
|
70081
|
+
*/
|
|
70082
|
+
fieldToAdd?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceSplunkHecValidTokenFieldToAdd | undefined>;
|
|
70083
|
+
/**
|
|
70084
|
+
* Name of the environment variable or secret that holds the expected HEC token value.
|
|
70085
|
+
*/
|
|
70086
|
+
tokenKey: pulumi.Input<string>;
|
|
70087
|
+
}
|
|
70088
|
+
export interface ObservabilityPipelineConfigSourceSplunkHecValidTokenFieldToAdd {
|
|
70089
|
+
/**
|
|
70090
|
+
* The metadata field name to add to incoming events.
|
|
70091
|
+
*/
|
|
70092
|
+
key: pulumi.Input<string>;
|
|
70093
|
+
/**
|
|
70094
|
+
* The metadata field value to add to incoming events.
|
|
70095
|
+
*/
|
|
70096
|
+
value: pulumi.Input<string>;
|
|
69187
70097
|
}
|
|
69188
70098
|
export interface ObservabilityPipelineConfigSourceSplunkTcp {
|
|
69189
70099
|
/**
|
|
@@ -69191,27 +70101,31 @@ export interface ObservabilityPipelineConfigSourceSplunkTcp {
|
|
|
69191
70101
|
*/
|
|
69192
70102
|
addressKey?: pulumi.Input<string | undefined>;
|
|
69193
70103
|
/**
|
|
69194
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70104
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69195
70105
|
*/
|
|
69196
70106
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceSplunkTcpTls | undefined>;
|
|
69197
70107
|
}
|
|
69198
70108
|
export interface ObservabilityPipelineConfigSourceSplunkTcpTls {
|
|
69199
70109
|
/**
|
|
69200
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70110
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69201
70111
|
*/
|
|
69202
70112
|
caFile?: pulumi.Input<string | undefined>;
|
|
69203
70113
|
/**
|
|
69204
|
-
* Path to the TLS
|
|
70114
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69205
70115
|
*/
|
|
69206
70116
|
crtFile: pulumi.Input<string>;
|
|
69207
70117
|
/**
|
|
69208
|
-
* Path to the private key file associated with the TLS
|
|
70118
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69209
70119
|
*/
|
|
69210
70120
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69211
70121
|
/**
|
|
69212
70122
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69213
70123
|
*/
|
|
69214
70124
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
70125
|
+
/**
|
|
70126
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70127
|
+
*/
|
|
70128
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69215
70129
|
}
|
|
69216
70130
|
export interface ObservabilityPipelineConfigSourceSumoLogic {
|
|
69217
70131
|
/**
|
|
@@ -69229,27 +70143,31 @@ export interface ObservabilityPipelineConfigSourceSyslogNg {
|
|
|
69229
70143
|
*/
|
|
69230
70144
|
mode?: pulumi.Input<string | undefined>;
|
|
69231
70145
|
/**
|
|
69232
|
-
* Configuration for enabling TLS encryption between the pipeline component and external
|
|
70146
|
+
* Configuration for enabling TLS encryption between the pipeline component and external connecting clients.
|
|
69233
70147
|
*/
|
|
69234
70148
|
tls?: pulumi.Input<inputs.ObservabilityPipelineConfigSourceSyslogNgTls | undefined>;
|
|
69235
70149
|
}
|
|
69236
70150
|
export interface ObservabilityPipelineConfigSourceSyslogNgTls {
|
|
69237
70151
|
/**
|
|
69238
|
-
* Path to the Certificate Authority (CA) file used to validate
|
|
70152
|
+
* Path to the Certificate Authority (CA) file used to validate connecting clients' TLS certificates.
|
|
69239
70153
|
*/
|
|
69240
70154
|
caFile?: pulumi.Input<string | undefined>;
|
|
69241
70155
|
/**
|
|
69242
|
-
* Path to the TLS
|
|
70156
|
+
* Path to the TLS server certificate file used to identify the pipeline component to connecting clients.
|
|
69243
70157
|
*/
|
|
69244
70158
|
crtFile: pulumi.Input<string>;
|
|
69245
70159
|
/**
|
|
69246
|
-
* Path to the private key file associated with the TLS
|
|
70160
|
+
* Path to the private key file associated with the TLS server certificate.
|
|
69247
70161
|
*/
|
|
69248
70162
|
keyFile?: pulumi.Input<string | undefined>;
|
|
69249
70163
|
/**
|
|
69250
70164
|
* Name of the environment variable or secret that holds the passphrase for the private key file.
|
|
69251
70165
|
*/
|
|
69252
70166
|
keyPassKey?: pulumi.Input<string | undefined>;
|
|
70167
|
+
/**
|
|
70168
|
+
* When `true`, requires client connections to present a valid certificate, enabling mutual TLS authentication.
|
|
70169
|
+
*/
|
|
70170
|
+
verifyCertificate?: pulumi.Input<boolean | undefined>;
|
|
69253
70171
|
}
|
|
69254
70172
|
export interface OnCallEscalationPolicyStep {
|
|
69255
70173
|
/**
|
|
@@ -123509,6 +124427,10 @@ export interface SecurityMonitoringRuleOptionsImpossibleTravelOptions {
|
|
|
123509
124427
|
* 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`.
|
|
123510
124428
|
*/
|
|
123511
124429
|
baselineUserLocations?: pulumi.Input<boolean | undefined>;
|
|
124430
|
+
/**
|
|
124431
|
+
* 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.
|
|
124432
|
+
*/
|
|
124433
|
+
baselineUserLocationsDuration?: pulumi.Input<number | undefined>;
|
|
123512
124434
|
}
|
|
123513
124435
|
export interface SecurityMonitoringRuleOptionsNewValueOptions {
|
|
123514
124436
|
/**
|
|
@@ -124120,7 +125042,7 @@ export interface SyntheticsTestApiStep {
|
|
|
124120
125042
|
*/
|
|
124121
125043
|
subtestPublicId?: pulumi.Input<string | undefined>;
|
|
124122
125044
|
/**
|
|
124123
|
-
* 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"`.
|
|
125045
|
+
* 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"`.
|
|
124124
125046
|
*/
|
|
124125
125047
|
subtype?: pulumi.Input<string | undefined>;
|
|
124126
125048
|
/**
|
|
@@ -124145,6 +125067,10 @@ export interface SyntheticsTestApiStepAssertion {
|
|
|
124145
125067
|
* 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).
|
|
124146
125068
|
*/
|
|
124147
125069
|
target?: pulumi.Input<string | undefined>;
|
|
125070
|
+
/**
|
|
125071
|
+
* Expected MCP server capabilities if `type` is `mcpServerCapabilities`. Exactly one nested block is allowed with the structure below.
|
|
125072
|
+
*/
|
|
125073
|
+
targetMcpCapabilities?: pulumi.Input<inputs.SyntheticsTestApiStepAssertionTargetMcpCapabilities | undefined>;
|
|
124148
125074
|
/**
|
|
124149
125075
|
* Expected structure if `operator` is `validatesJSONPath`. Exactly one nested block is allowed with the structure below.
|
|
124150
125076
|
*/
|
|
@@ -124162,10 +125088,16 @@ export interface SyntheticsTestApiStepAssertion {
|
|
|
124162
125088
|
*/
|
|
124163
125089
|
timingsScope?: pulumi.Input<string | undefined>;
|
|
124164
125090
|
/**
|
|
124165
|
-
* 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`.
|
|
125091
|
+
* 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`.
|
|
124166
125092
|
*/
|
|
124167
125093
|
type: pulumi.Input<string>;
|
|
124168
125094
|
}
|
|
125095
|
+
export interface SyntheticsTestApiStepAssertionTargetMcpCapabilities {
|
|
125096
|
+
/**
|
|
125097
|
+
* List of MCP server capabilities to assert against.
|
|
125098
|
+
*/
|
|
125099
|
+
capabilities: pulumi.Input<pulumi.Input<string>[]>;
|
|
125100
|
+
}
|
|
124169
125101
|
export interface SyntheticsTestApiStepAssertionTargetjsonpath {
|
|
124170
125102
|
/**
|
|
124171
125103
|
* 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"`.
|
|
@@ -124346,7 +125278,7 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
124346
125278
|
*/
|
|
124347
125279
|
bodyType?: pulumi.Input<string | undefined>;
|
|
124348
125280
|
/**
|
|
124349
|
-
* The type of gRPC call to perform. Valid values are `healthcheck`, `unary`.
|
|
125281
|
+
* The type of gRPC call to perform, or the MCP step call (`init`, `toolList`, `toolCall`). Valid values are `healthcheck`, `unary`, `init`, `toolList`, `toolCall`.
|
|
124350
125282
|
*/
|
|
124351
125283
|
callType?: pulumi.Input<string | undefined>;
|
|
124352
125284
|
/**
|
|
@@ -124403,6 +125335,10 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
124403
125335
|
* For Network Path tests, the maximum time-to-live (max number of hops) used in outgoing probe packets.
|
|
124404
125336
|
*/
|
|
124405
125337
|
maxTtl?: pulumi.Input<number | undefined>;
|
|
125338
|
+
/**
|
|
125339
|
+
* For MCP API steps, the MCP protocol version used by the request.
|
|
125340
|
+
*/
|
|
125341
|
+
mcpProtocolVersion?: pulumi.Input<string | undefined>;
|
|
124406
125342
|
/**
|
|
124407
125343
|
* For gRPC, UDP, and Websocket tests, message to send with the request.
|
|
124408
125344
|
*/
|
|
@@ -124461,6 +125397,14 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
124461
125397
|
* Timeout in seconds for the test.
|
|
124462
125398
|
*/
|
|
124463
125399
|
timeout?: pulumi.Input<number | undefined>;
|
|
125400
|
+
/**
|
|
125401
|
+
* For MCP API steps, the JSON-encoded arguments to pass to the tool when `callType` is `toolCall`.
|
|
125402
|
+
*/
|
|
125403
|
+
toolArgs?: pulumi.Input<string | undefined>;
|
|
125404
|
+
/**
|
|
125405
|
+
* For MCP API steps, the name of the tool to call. Required when `callType` is `toolCall`.
|
|
125406
|
+
*/
|
|
125407
|
+
toolName?: pulumi.Input<string | undefined>;
|
|
124464
125408
|
/**
|
|
124465
125409
|
* For Network Path tests, the number of traceroute path tracings.
|
|
124466
125410
|
*/
|
|
@@ -124539,6 +125483,10 @@ export interface SyntheticsTestAssertion {
|
|
|
124539
125483
|
* 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).
|
|
124540
125484
|
*/
|
|
124541
125485
|
target?: pulumi.Input<string | undefined>;
|
|
125486
|
+
/**
|
|
125487
|
+
* Expected MCP server capabilities if `type` is `mcpServerCapabilities`. Exactly one nested block is allowed with the structure below.
|
|
125488
|
+
*/
|
|
125489
|
+
targetMcpCapabilities?: pulumi.Input<inputs.SyntheticsTestAssertionTargetMcpCapabilities | undefined>;
|
|
124542
125490
|
/**
|
|
124543
125491
|
* Expected structure if `operator` is `validatesJSONPath`. Exactly one nested block is allowed with the structure below.
|
|
124544
125492
|
*/
|
|
@@ -124556,10 +125504,16 @@ export interface SyntheticsTestAssertion {
|
|
|
124556
125504
|
*/
|
|
124557
125505
|
timingsScope?: pulumi.Input<string | undefined>;
|
|
124558
125506
|
/**
|
|
124559
|
-
* 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`.
|
|
125507
|
+
* 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`.
|
|
124560
125508
|
*/
|
|
124561
125509
|
type: pulumi.Input<string>;
|
|
124562
125510
|
}
|
|
125511
|
+
export interface SyntheticsTestAssertionTargetMcpCapabilities {
|
|
125512
|
+
/**
|
|
125513
|
+
* List of MCP server capabilities to assert against.
|
|
125514
|
+
*/
|
|
125515
|
+
capabilities: pulumi.Input<pulumi.Input<string>[]>;
|
|
125516
|
+
}
|
|
124563
125517
|
export interface SyntheticsTestAssertionTargetjsonpath {
|
|
124564
125518
|
/**
|
|
124565
125519
|
* 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"`.
|
|
@@ -125365,7 +126319,7 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
125365
126319
|
*/
|
|
125366
126320
|
bodyType?: pulumi.Input<string | undefined>;
|
|
125367
126321
|
/**
|
|
125368
|
-
* The type of gRPC call to perform. Valid values are `healthcheck`, `unary`.
|
|
126322
|
+
* The type of gRPC call to perform, or the MCP step call (`init`, `toolList`, `toolCall`). Valid values are `healthcheck`, `unary`, `init`, `toolList`, `toolCall`.
|
|
125369
126323
|
*/
|
|
125370
126324
|
callType?: pulumi.Input<string | undefined>;
|
|
125371
126325
|
/**
|
|
@@ -125412,6 +126366,10 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
125412
126366
|
* For Network Path tests, the maximum time-to-live (max number of hops) used in outgoing probe packets.
|
|
125413
126367
|
*/
|
|
125414
126368
|
maxTtl?: pulumi.Input<number | undefined>;
|
|
126369
|
+
/**
|
|
126370
|
+
* For MCP API steps, the MCP protocol version used by the request.
|
|
126371
|
+
*/
|
|
126372
|
+
mcpProtocolVersion?: pulumi.Input<string | undefined>;
|
|
125415
126373
|
/**
|
|
125416
126374
|
* For gRPC, UDP, and Websocket tests, message to send with the request.
|
|
125417
126375
|
*/
|
|
@@ -125470,6 +126428,14 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
125470
126428
|
* Timeout in seconds for the test.
|
|
125471
126429
|
*/
|
|
125472
126430
|
timeout?: pulumi.Input<number | undefined>;
|
|
126431
|
+
/**
|
|
126432
|
+
* For MCP API steps, the JSON-encoded arguments to pass to the tool when `callType` is `toolCall`.
|
|
126433
|
+
*/
|
|
126434
|
+
toolArgs?: pulumi.Input<string | undefined>;
|
|
126435
|
+
/**
|
|
126436
|
+
* For MCP API steps, the name of the tool to call. Required when `callType` is `toolCall`.
|
|
126437
|
+
*/
|
|
126438
|
+
toolName?: pulumi.Input<string | undefined>;
|
|
125473
126439
|
/**
|
|
125474
126440
|
* For Network Path tests, the number of traceroute path tracings.
|
|
125475
126441
|
*/
|
|
@@ -125751,6 +126717,31 @@ export declare namespace aws {
|
|
|
125751
126717
|
*/
|
|
125752
126718
|
includeOnlies?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
125753
126719
|
}
|
|
126720
|
+
interface IntegrationAccountCcmConfigCcmConfig {
|
|
126721
|
+
dataExportConfigs?: pulumi.Input<pulumi.Input<inputs.aws.IntegrationAccountCcmConfigCcmConfigDataExportConfig>[] | undefined>;
|
|
126722
|
+
}
|
|
126723
|
+
interface IntegrationAccountCcmConfigCcmConfigDataExportConfig {
|
|
126724
|
+
/**
|
|
126725
|
+
* Name of the S3 bucket where the Cost and Usage Report is stored.
|
|
126726
|
+
*/
|
|
126727
|
+
bucketName?: pulumi.Input<string | undefined>;
|
|
126728
|
+
/**
|
|
126729
|
+
* AWS region of the S3 bucket.
|
|
126730
|
+
*/
|
|
126731
|
+
bucketRegion?: pulumi.Input<string | undefined>;
|
|
126732
|
+
/**
|
|
126733
|
+
* Name of the Cost and Usage Report.
|
|
126734
|
+
*/
|
|
126735
|
+
reportName?: pulumi.Input<string | undefined>;
|
|
126736
|
+
/**
|
|
126737
|
+
* S3 prefix where the Cost and Usage Report is stored.
|
|
126738
|
+
*/
|
|
126739
|
+
reportPrefix?: pulumi.Input<string | undefined>;
|
|
126740
|
+
/**
|
|
126741
|
+
* Type of the Cost and Usage Report.
|
|
126742
|
+
*/
|
|
126743
|
+
reportType?: pulumi.Input<string | undefined>;
|
|
126744
|
+
}
|
|
125754
126745
|
interface IntegrationAccountLogsConfig {
|
|
125755
126746
|
/**
|
|
125756
126747
|
* Leave empty to omit logs config.
|
|
@@ -125868,56 +126859,6 @@ export declare namespace azure {
|
|
|
125868
126859
|
}
|
|
125869
126860
|
export declare namespace config {
|
|
125870
126861
|
}
|
|
125871
|
-
export declare namespace databricks {
|
|
125872
|
-
interface IntegrationAccountAuthConfig {
|
|
125873
|
-
/**
|
|
125874
|
-
* OAuth (service principal) authentication. Recommended for new deployments. `clientId`, `clientSecret`, and `databricksAccountId` must be provided together.
|
|
125875
|
-
*/
|
|
125876
|
-
oauth?: pulumi.Input<inputs.databricks.IntegrationAccountAuthConfigOauth | undefined>;
|
|
125877
|
-
/**
|
|
125878
|
-
* Personal Access Token authentication. Deprecated in favor of `oauth`; kept for backwards compatibility.
|
|
125879
|
-
*/
|
|
125880
|
-
pat?: pulumi.Input<inputs.databricks.IntegrationAccountAuthConfigPat | undefined>;
|
|
125881
|
-
}
|
|
125882
|
-
interface IntegrationAccountAuthConfigOauth {
|
|
125883
|
-
/**
|
|
125884
|
-
* Azure Tenant ID (UUID format) for authenticating via Microsoft Entra ID. Only set when using Azure Entra ID OAuth.
|
|
125885
|
-
*/
|
|
125886
|
-
azureTenantId?: pulumi.Input<string | undefined>;
|
|
125887
|
-
/**
|
|
125888
|
-
* OAuth Client ID for the Databricks service principal.
|
|
125889
|
-
*/
|
|
125890
|
-
clientId?: pulumi.Input<string | undefined>;
|
|
125891
|
-
/**
|
|
125892
|
-
* OAuth Client Secret for the Databricks service principal. This value is write-only; changes made outside of Terraform will not be drift-detected.
|
|
125893
|
-
*/
|
|
125894
|
-
clientSecret?: pulumi.Input<string | undefined>;
|
|
125895
|
-
/**
|
|
125896
|
-
* Databricks Account ID (UUID format). Found in your Databricks profile in the upper-right corner.
|
|
125897
|
-
*/
|
|
125898
|
-
databricksAccountId?: pulumi.Input<string | undefined>;
|
|
125899
|
-
}
|
|
125900
|
-
interface IntegrationAccountAuthConfigPat {
|
|
125901
|
-
/**
|
|
125902
|
-
* 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.
|
|
125903
|
-
*/
|
|
125904
|
-
token?: pulumi.Input<string | undefined>;
|
|
125905
|
-
}
|
|
125906
|
-
interface IntegrationAccountPrivateActionRunnerConfiguration {
|
|
125907
|
-
/**
|
|
125908
|
-
* Private Action Runner connection ID.
|
|
125909
|
-
*/
|
|
125910
|
-
connectionId?: pulumi.Input<string | undefined>;
|
|
125911
|
-
/**
|
|
125912
|
-
* Path to the stored secret holding Databricks credentials inside the Private Action Runner.
|
|
125913
|
-
*/
|
|
125914
|
-
secretPath?: pulumi.Input<string | undefined>;
|
|
125915
|
-
/**
|
|
125916
|
-
* Service Account UUID used to execute Private Action Runner actions.
|
|
125917
|
-
*/
|
|
125918
|
-
userUuid?: pulumi.Input<string | undefined>;
|
|
125919
|
-
}
|
|
125920
|
-
}
|
|
125921
126862
|
export declare namespace gcp {
|
|
125922
126863
|
interface IntegrationMonitoredResourceConfig {
|
|
125923
126864
|
filters: pulumi.Input<pulumi.Input<string>[]>;
|