@pulumi/scm 0.1.2 → 0.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/addressGroup.d.ts +1 -1
- package/addressGroup.js +1 -1
- package/addressObject.d.ts +1 -1
- package/addressObject.js +1 -1
- package/package.json +2 -2
- package/tag.d.ts +1 -1
- package/tag.js +1 -1
package/addressGroup.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as outputs from "./types/output";
|
|
|
13
13
|
* const x = new scm.AddressObject("x", {
|
|
14
14
|
* folder: "Shared",
|
|
15
15
|
* name: "foo",
|
|
16
|
-
* description: "Made by
|
|
16
|
+
* description: "Made by Pulumi",
|
|
17
17
|
* fqdn: "www.example.com",
|
|
18
18
|
* });
|
|
19
19
|
* const example = new scm.AddressGroup("example", {
|
package/addressGroup.js
CHANGED
|
@@ -17,7 +17,7 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* const x = new scm.AddressObject("x", {
|
|
18
18
|
* folder: "Shared",
|
|
19
19
|
* name: "foo",
|
|
20
|
-
* description: "Made by
|
|
20
|
+
* description: "Made by Pulumi",
|
|
21
21
|
* fqdn: "www.example.com",
|
|
22
22
|
* });
|
|
23
23
|
* const example = new scm.AddressGroup("example", {
|
package/addressObject.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
11
11
|
* const example = new scm.AddressObject("example", {
|
|
12
12
|
* folder: "Shared",
|
|
13
13
|
* name: "example",
|
|
14
|
-
* description: "Made by
|
|
14
|
+
* description: "Made by Pulumi",
|
|
15
15
|
* ipNetmask: "10.2.3.4",
|
|
16
16
|
* });
|
|
17
17
|
* ```
|
package/addressObject.js
CHANGED
|
@@ -17,7 +17,7 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* const example = new scm.AddressObject("example", {
|
|
18
18
|
* folder: "Shared",
|
|
19
19
|
* name: "example",
|
|
20
|
-
* description: "Made by
|
|
20
|
+
* description: "Made by Pulumi",
|
|
21
21
|
* ipNetmask: "10.2.3.4",
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/scm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "scm",
|
|
28
|
-
"version": "0.1.
|
|
28
|
+
"version": "0.1.3"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/tag.d.ts
CHANGED