@pulumi/openstack 3.9.0-alpha.1654086724 → 3.9.0-alpha.1659603007

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.
Files changed (38) hide show
  1. package/compute/getLimitsV2.d.ts +138 -0
  2. package/compute/getLimitsV2.js +37 -0
  3. package/compute/getLimitsV2.js.map +1 -0
  4. package/compute/index.d.ts +1 -0
  5. package/compute/index.js +1 -0
  6. package/compute/index.js.map +1 -1
  7. package/compute/instance.d.ts +12 -9
  8. package/compute/instance.js.map +1 -1
  9. package/compute/keypair.d.ts +18 -0
  10. package/compute/keypair.js +2 -0
  11. package/compute/keypair.js.map +1 -1
  12. package/containerinfra/cluster.d.ts +1 -1
  13. package/containerinfra/getNodeGroup.d.ts +121 -0
  14. package/containerinfra/getNodeGroup.js +39 -0
  15. package/containerinfra/getNodeGroup.js.map +1 -0
  16. package/containerinfra/index.d.ts +2 -0
  17. package/containerinfra/index.js +6 -0
  18. package/containerinfra/index.js.map +1 -1
  19. package/containerinfra/nodeGroup.d.ts +257 -0
  20. package/containerinfra/nodeGroup.js +122 -0
  21. package/containerinfra/nodeGroup.js.map +1 -0
  22. package/loadbalancer/member.d.ts +45 -0
  23. package/loadbalancer/member.js +6 -0
  24. package/loadbalancer/member.js.map +1 -1
  25. package/networking/getQuotaV2.d.ts +10 -0
  26. package/networking/getQuotaV2.js +1 -0
  27. package/networking/getQuotaV2.js.map +1 -1
  28. package/networking/portSecGroupAssociate.d.ts +8 -0
  29. package/networking/portSecGroupAssociate.js +8 -0
  30. package/networking/portSecGroupAssociate.js.map +1 -1
  31. package/objectstorage/container.d.ts +15 -0
  32. package/objectstorage/container.js +2 -0
  33. package/objectstorage/container.js.map +1 -1
  34. package/package.json +4 -3
  35. package/package.json.bak +2 -1
  36. package/package.json.dev +4 -3
  37. package/types/input.d.ts +10 -0
  38. package/types/output.d.ts +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/openstack",
3
- "version": "v3.9.0-alpha.1654086724+007bb9de",
3
+ "version": "v3.9.0-alpha.1659603007+e0710191",
4
4
  "description": "A Pulumi package for creating and managing OpenStack cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource openstack v3.9.0-alpha.1654086724+007bb9de"
14
+ "install": "node scripts/install-pulumi-plugin.js resource openstack v3.9.0-alpha.1659603007+e0710191"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
@@ -21,6 +21,7 @@
21
21
  "typescript": "^4.3.5"
22
22
  },
23
23
  "pulumi": {
24
- "resource": true
24
+ "resource": true,
25
+ "name": "openstack"
25
26
  }
26
27
  }
package/package.json.bak CHANGED
@@ -21,6 +21,7 @@
21
21
  "typescript": "^4.3.5"
22
22
  },
23
23
  "pulumi": {
24
- "resource": true
24
+ "resource": true,
25
+ "name": "openstack"
25
26
  }
26
27
  }
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/openstack",
3
- "version": "v3.9.0-alpha.1654086724+007bb9de",
3
+ "version": "v3.9.0-alpha.1659603007+e0710191",
4
4
  "description": "A Pulumi package for creating and managing OpenStack cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource openstack v3.9.0-alpha.1654086724+007bb9de"
14
+ "install": "node scripts/install-pulumi-plugin.js resource openstack v3.9.0-alpha.1659603007+e0710191"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
@@ -21,6 +21,7 @@
21
21
  "typescript": "^4.3.5"
22
22
  },
23
23
  "pulumi": {
24
- "resource": true
24
+ "resource": true,
25
+ "name": "openstack"
25
26
  }
26
27
  }
package/types/input.d.ts CHANGED
@@ -599,6 +599,16 @@ export declare namespace loadbalancer {
599
599
  * The unique ID for the members.
600
600
  */
601
601
  id?: pulumi.Input<string>;
602
+ /**
603
+ * An alternate IP address used for health
604
+ * monitoring a backend member.
605
+ */
606
+ monitorAddress?: pulumi.Input<string>;
607
+ /**
608
+ * An alternate protocol port used for health
609
+ * monitoring a backend member.
610
+ */
611
+ monitorPort?: pulumi.Input<number>;
602
612
  /**
603
613
  * Human-readable name for the member.
604
614
  */
package/types/output.d.ts CHANGED
@@ -689,6 +689,16 @@ export declare namespace loadbalancer {
689
689
  * The unique ID for the members.
690
690
  */
691
691
  id: string;
692
+ /**
693
+ * An alternate IP address used for health
694
+ * monitoring a backend member.
695
+ */
696
+ monitorAddress?: string;
697
+ /**
698
+ * An alternate protocol port used for health
699
+ * monitoring a backend member.
700
+ */
701
+ monitorPort?: number;
692
702
  /**
693
703
  * Human-readable name for the member.
694
704
  */