@pulumi/wavefront 3.1.2 → 3.1.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/wavefront",
3
- "version": "v3.1.2",
3
+ "version": "3.1.3",
4
4
  "description": "A Pulumi package for creating and managing wavefront cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,7 @@
22
22
  },
23
23
  "pulumi": {
24
24
  "resource": true,
25
- "name": "wavefront"
25
+ "name": "wavefront",
26
+ "version": "3.1.3"
26
27
  }
27
28
  }
package/types/input.d.ts CHANGED
@@ -463,6 +463,12 @@ export interface MetricsPolicyPolicyRule {
463
463
  userGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
464
464
  }
465
465
  export interface MetricsPolicyPolicyRuleTag {
466
+ /**
467
+ * The tag's key.
468
+ */
466
469
  key: pulumi.Input<string>;
470
+ /**
471
+ * The tag's value.
472
+ */
467
473
  value: pulumi.Input<string>;
468
474
  }
package/types/output.d.ts CHANGED
@@ -1620,6 +1620,12 @@ export interface MetricsPolicyPolicyRule {
1620
1620
  userGroupIds?: string[];
1621
1621
  }
1622
1622
  export interface MetricsPolicyPolicyRuleTag {
1623
+ /**
1624
+ * The tag's key.
1625
+ */
1623
1626
  key: string;
1627
+ /**
1628
+ * The tag's value.
1629
+ */
1624
1630
  value: string;
1625
1631
  }
package/package.json.bak DELETED
@@ -1,27 +0,0 @@
1
- {
2
- "name": "@pulumi/wavefront",
3
- "version": "${VERSION}",
4
- "description": "A Pulumi package for creating and managing wavefront cloud resources.",
5
- "keywords": [
6
- "pulumi",
7
- "wavefront"
8
- ],
9
- "homepage": "https://pulumi.io",
10
- "repository": "https://github.com/pulumi/pulumi-wavefront",
11
- "license": "Apache-2.0",
12
- "scripts": {
13
- "build": "tsc"
14
- },
15
- "dependencies": {
16
- "@pulumi/pulumi": "^3.0.0"
17
- },
18
- "devDependencies": {
19
- "@types/mime": "^2.0.0",
20
- "@types/node": "^10.0.0",
21
- "typescript": "^4.3.5"
22
- },
23
- "pulumi": {
24
- "resource": true,
25
- "name": "wavefront"
26
- }
27
- }