@pulumi/signalfx 7.2.0-alpha.1725948203 → 7.2.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/package.json +2 -2
- package/types/input.d.ts +5 -1
- package/types/output.d.ts +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/signalfx",
|
|
3
|
-
"version": "7.2.0
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing SignalFx resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "signalfx",
|
|
26
|
-
"version": "7.2.0
|
|
26
|
+
"version": "7.2.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -649,7 +649,11 @@ export interface MetricRulesetExceptionRuleRestoration {
|
|
|
649
649
|
/**
|
|
650
650
|
* Time from which the restoration job will restore archived data, in the form of *nix time in milliseconds
|
|
651
651
|
*/
|
|
652
|
-
startTime
|
|
652
|
+
startTime: pulumi.Input<string>;
|
|
653
|
+
/**
|
|
654
|
+
* Time to which the restoration job will restore archived data, in the form of *nix time in milliseconds
|
|
655
|
+
*/
|
|
656
|
+
stopTime?: pulumi.Input<string>;
|
|
653
657
|
}
|
|
654
658
|
export interface MetricRulesetRoutingRule {
|
|
655
659
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -648,7 +648,11 @@ export interface MetricRulesetExceptionRuleRestoration {
|
|
|
648
648
|
/**
|
|
649
649
|
* Time from which the restoration job will restore archived data, in the form of *nix time in milliseconds
|
|
650
650
|
*/
|
|
651
|
-
startTime
|
|
651
|
+
startTime: string;
|
|
652
|
+
/**
|
|
653
|
+
* Time to which the restoration job will restore archived data, in the form of *nix time in milliseconds
|
|
654
|
+
*/
|
|
655
|
+
stopTime?: string;
|
|
652
656
|
}
|
|
653
657
|
export interface MetricRulesetRoutingRule {
|
|
654
658
|
/**
|