@pulumi/openstack 3.12.0-alpha.1679335633 → 3.12.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/compute/serverGroup.d.ts +44 -13
- package/compute/serverGroup.js +17 -1
- package/compute/serverGroup.js.map +1 -1
- package/identity/getAuthScope.d.ts +25 -8
- package/identity/getAuthScope.js +3 -8
- package/identity/getAuthScope.js.map +1 -1
- package/keymanager/secretV1.d.ts +1 -1
- package/loadbalancer/listener.d.ts +3 -0
- package/loadbalancer/listener.js +2 -0
- package/loadbalancer/listener.js.map +1 -1
- package/networking/getNetwork.d.ts +5 -0
- package/networking/getNetwork.js.map +1 -1
- package/networking/network.d.ts +10 -1
- package/networking/network.js.map +1 -1
- package/networking/routerInterface.d.ts +18 -0
- package/networking/routerInterface.js +2 -0
- package/networking/routerInterface.js.map +1 -1
- package/objectstorage/container.d.ts +18 -6
- package/objectstorage/container.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +3 -0
- package/types/output.d.ts +8 -0
package/compute/serverGroup.d.ts
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
2
4
|
/**
|
|
3
5
|
* Manages a V2 Server Group resource within OpenStack.
|
|
4
6
|
*
|
|
5
7
|
* ## Example Usage
|
|
8
|
+
* ### Compute service API version 2.63 or below:
|
|
6
9
|
*
|
|
7
10
|
* ```typescript
|
|
8
11
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
12
|
* import * as openstack from "@pulumi/openstack";
|
|
10
13
|
*
|
|
11
|
-
* const test_sg = new openstack.compute.ServerGroup("test-sg", {policies:
|
|
14
|
+
* const test_sg = new openstack.compute.ServerGroup("test-sg", {policies: "anti-affinity"});
|
|
15
|
+
* ```
|
|
16
|
+
* ### Compute service API version 2.64 or above:
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as openstack from "@pulumi/openstack";
|
|
21
|
+
*
|
|
22
|
+
* const test_sg = new openstack.compute.ServerGroup("test-sg", {
|
|
23
|
+
* policies: "anti-affinity",
|
|
24
|
+
* rules: {
|
|
25
|
+
* maxServerPerHost: 3,
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
12
28
|
* ```
|
|
13
29
|
* ## Policies
|
|
14
30
|
*
|
|
@@ -62,17 +78,22 @@ export declare class ServerGroup extends pulumi.CustomResource {
|
|
|
62
78
|
*/
|
|
63
79
|
readonly name: pulumi.Output<string>;
|
|
64
80
|
/**
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
81
|
+
* A list of exactly one policy name to associate with
|
|
82
|
+
* the server group. See the Policies section for more information. Changing this
|
|
83
|
+
* creates a new server group.
|
|
68
84
|
*/
|
|
69
|
-
readonly policies: pulumi.Output<string
|
|
85
|
+
readonly policies: pulumi.Output<string | undefined>;
|
|
70
86
|
/**
|
|
71
87
|
* The region in which to obtain the V2 Compute client.
|
|
72
88
|
* If omitted, the `region` argument of the provider is used. Changing
|
|
73
89
|
* this creates a new server group.
|
|
74
90
|
*/
|
|
75
91
|
readonly region: pulumi.Output<string>;
|
|
92
|
+
/**
|
|
93
|
+
* The rules which are applied to specified `policy`. Currently,
|
|
94
|
+
* only the `maxServerPerHost` rule is supported for the `anti-affinity` policy.
|
|
95
|
+
*/
|
|
96
|
+
readonly rules: pulumi.Output<outputs.compute.ServerGroupRules>;
|
|
76
97
|
/**
|
|
77
98
|
* Map of additional options.
|
|
78
99
|
*/
|
|
@@ -102,17 +123,22 @@ export interface ServerGroupState {
|
|
|
102
123
|
*/
|
|
103
124
|
name?: pulumi.Input<string>;
|
|
104
125
|
/**
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
126
|
+
* A list of exactly one policy name to associate with
|
|
127
|
+
* the server group. See the Policies section for more information. Changing this
|
|
128
|
+
* creates a new server group.
|
|
108
129
|
*/
|
|
109
|
-
policies?: pulumi.Input<
|
|
130
|
+
policies?: pulumi.Input<string>;
|
|
110
131
|
/**
|
|
111
132
|
* The region in which to obtain the V2 Compute client.
|
|
112
133
|
* If omitted, the `region` argument of the provider is used. Changing
|
|
113
134
|
* this creates a new server group.
|
|
114
135
|
*/
|
|
115
136
|
region?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* The rules which are applied to specified `policy`. Currently,
|
|
139
|
+
* only the `maxServerPerHost` rule is supported for the `anti-affinity` policy.
|
|
140
|
+
*/
|
|
141
|
+
rules?: pulumi.Input<inputs.compute.ServerGroupRules>;
|
|
116
142
|
/**
|
|
117
143
|
* Map of additional options.
|
|
118
144
|
*/
|
|
@@ -130,17 +156,22 @@ export interface ServerGroupArgs {
|
|
|
130
156
|
*/
|
|
131
157
|
name?: pulumi.Input<string>;
|
|
132
158
|
/**
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
159
|
+
* A list of exactly one policy name to associate with
|
|
160
|
+
* the server group. See the Policies section for more information. Changing this
|
|
161
|
+
* creates a new server group.
|
|
136
162
|
*/
|
|
137
|
-
policies?: pulumi.Input<
|
|
163
|
+
policies?: pulumi.Input<string>;
|
|
138
164
|
/**
|
|
139
165
|
* The region in which to obtain the V2 Compute client.
|
|
140
166
|
* If omitted, the `region` argument of the provider is used. Changing
|
|
141
167
|
* this creates a new server group.
|
|
142
168
|
*/
|
|
143
169
|
region?: pulumi.Input<string>;
|
|
170
|
+
/**
|
|
171
|
+
* The rules which are applied to specified `policy`. Currently,
|
|
172
|
+
* only the `maxServerPerHost` rule is supported for the `anti-affinity` policy.
|
|
173
|
+
*/
|
|
174
|
+
rules?: pulumi.Input<inputs.compute.ServerGroupRules>;
|
|
144
175
|
/**
|
|
145
176
|
* Map of additional options.
|
|
146
177
|
*/
|
package/compute/serverGroup.js
CHANGED
|
@@ -9,12 +9,26 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages a V2 Server Group resource within OpenStack.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
|
+
* ### Compute service API version 2.63 or below:
|
|
12
13
|
*
|
|
13
14
|
* ```typescript
|
|
14
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
16
|
* import * as openstack from "@pulumi/openstack";
|
|
16
17
|
*
|
|
17
|
-
* const test_sg = new openstack.compute.ServerGroup("test-sg", {policies:
|
|
18
|
+
* const test_sg = new openstack.compute.ServerGroup("test-sg", {policies: "anti-affinity"});
|
|
19
|
+
* ```
|
|
20
|
+
* ### Compute service API version 2.64 or above:
|
|
21
|
+
*
|
|
22
|
+
* ```typescript
|
|
23
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
24
|
+
* import * as openstack from "@pulumi/openstack";
|
|
25
|
+
*
|
|
26
|
+
* const test_sg = new openstack.compute.ServerGroup("test-sg", {
|
|
27
|
+
* policies: "anti-affinity",
|
|
28
|
+
* rules: {
|
|
29
|
+
* maxServerPerHost: 3,
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
18
32
|
* ```
|
|
19
33
|
* ## Policies
|
|
20
34
|
*
|
|
@@ -74,6 +88,7 @@ class ServerGroup extends pulumi.CustomResource {
|
|
|
74
88
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
75
89
|
resourceInputs["policies"] = state ? state.policies : undefined;
|
|
76
90
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
91
|
+
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
77
92
|
resourceInputs["valueSpecs"] = state ? state.valueSpecs : undefined;
|
|
78
93
|
}
|
|
79
94
|
else {
|
|
@@ -81,6 +96,7 @@ class ServerGroup extends pulumi.CustomResource {
|
|
|
81
96
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
82
97
|
resourceInputs["policies"] = args ? args.policies : undefined;
|
|
83
98
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
99
|
+
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
84
100
|
resourceInputs["valueSpecs"] = args ? args.valueSpecs : undefined;
|
|
85
101
|
resourceInputs["members"] = undefined /*out*/;
|
|
86
102
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serverGroup.js","sourceRoot":"","sources":["../../compute/serverGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"serverGroup.js","sourceRoot":"","sources":["../../compute/serverGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAyCD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAzFL,kCA0FC;AA5EG,gBAAgB;AACO,wBAAY,GAAG,2CAA2C,CAAC"}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "../types/output";
|
|
3
3
|
/**
|
|
4
|
-
* Use this data source to get authentication information about the current
|
|
5
|
-
* auth scope in use. This can be used as self-discovery or introspection of
|
|
6
|
-
* the username or project name currently in use as well as the service catalog.
|
|
7
|
-
*
|
|
8
4
|
* ## Example Usage
|
|
5
|
+
* ### Simple
|
|
9
6
|
*
|
|
10
7
|
* ```typescript
|
|
11
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -43,6 +40,15 @@ export interface GetAuthScopeArgs {
|
|
|
43
40
|
* `region` argument of the provider is used.
|
|
44
41
|
*/
|
|
45
42
|
region?: string;
|
|
43
|
+
/**
|
|
44
|
+
* A boolean argument that determines whether to
|
|
45
|
+
* export the current auth scope token ID. When set to `true`, the `tokenId`
|
|
46
|
+
* attribute will contain an unencrypted token that can be used for further API
|
|
47
|
+
* calls. **Warning**: please note that the leaked token may allow unauthorized
|
|
48
|
+
* access to other OpenStack services within the current auth scope, so use this
|
|
49
|
+
* option with caution.
|
|
50
|
+
*/
|
|
51
|
+
setTokenId?: boolean;
|
|
46
52
|
}
|
|
47
53
|
/**
|
|
48
54
|
* A collection of values returned by getAuthScope.
|
|
@@ -92,6 +98,11 @@ export interface GetAuthScopeResult {
|
|
|
92
98
|
* A list of service catalog entries returned with the token.
|
|
93
99
|
*/
|
|
94
100
|
readonly serviceCatalogs: outputs.identity.GetAuthScopeServiceCatalog[];
|
|
101
|
+
readonly setTokenId?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* The token ID of the scope.
|
|
104
|
+
*/
|
|
105
|
+
readonly tokenId: string;
|
|
95
106
|
/**
|
|
96
107
|
* The domain ID of the user.
|
|
97
108
|
*/
|
|
@@ -110,11 +121,8 @@ export interface GetAuthScopeResult {
|
|
|
110
121
|
readonly userName: string;
|
|
111
122
|
}
|
|
112
123
|
/**
|
|
113
|
-
* Use this data source to get authentication information about the current
|
|
114
|
-
* auth scope in use. This can be used as self-discovery or introspection of
|
|
115
|
-
* the username or project name currently in use as well as the service catalog.
|
|
116
|
-
*
|
|
117
124
|
* ## Example Usage
|
|
125
|
+
* ### Simple
|
|
118
126
|
*
|
|
119
127
|
* ```typescript
|
|
120
128
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -152,4 +160,13 @@ export interface GetAuthScopeOutputArgs {
|
|
|
152
160
|
* `region` argument of the provider is used.
|
|
153
161
|
*/
|
|
154
162
|
region?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* A boolean argument that determines whether to
|
|
165
|
+
* export the current auth scope token ID. When set to `true`, the `tokenId`
|
|
166
|
+
* attribute will contain an unencrypted token that can be used for further API
|
|
167
|
+
* calls. **Warning**: please note that the leaked token may allow unauthorized
|
|
168
|
+
* access to other OpenStack services within the current auth scope, so use this
|
|
169
|
+
* option with caution.
|
|
170
|
+
*/
|
|
171
|
+
setTokenId?: pulumi.Input<boolean>;
|
|
155
172
|
}
|
package/identity/getAuthScope.js
CHANGED
|
@@ -6,11 +6,8 @@ exports.getAuthScopeOutput = exports.getAuthScope = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Use this data source to get authentication information about the current
|
|
10
|
-
* auth scope in use. This can be used as self-discovery or introspection of
|
|
11
|
-
* the username or project name currently in use as well as the service catalog.
|
|
12
|
-
*
|
|
13
9
|
* ## Example Usage
|
|
10
|
+
* ### Simple
|
|
14
11
|
*
|
|
15
12
|
* ```typescript
|
|
16
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -37,15 +34,13 @@ function getAuthScope(args, opts) {
|
|
|
37
34
|
return pulumi.runtime.invoke("openstack:identity/getAuthScope:getAuthScope", {
|
|
38
35
|
"name": args.name,
|
|
39
36
|
"region": args.region,
|
|
37
|
+
"setTokenId": args.setTokenId,
|
|
40
38
|
}, opts);
|
|
41
39
|
}
|
|
42
40
|
exports.getAuthScope = getAuthScope;
|
|
43
41
|
/**
|
|
44
|
-
* Use this data source to get authentication information about the current
|
|
45
|
-
* auth scope in use. This can be used as self-discovery or introspection of
|
|
46
|
-
* the username or project name currently in use as well as the service catalog.
|
|
47
|
-
*
|
|
48
42
|
* ## Example Usage
|
|
43
|
+
* ### Simple
|
|
49
44
|
*
|
|
50
45
|
* ```typescript
|
|
51
46
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAuthScope.js","sourceRoot":"","sources":["../../identity/getAuthScope.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getAuthScope.js","sourceRoot":"","sources":["../../identity/getAuthScope.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oCAQC;AAkGD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
|
package/keymanager/secretV1.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export declare class SecretV1 extends pulumi.CustomResource {
|
|
|
127
127
|
/**
|
|
128
128
|
* The secret's data to be stored. **payload\_content\_type** must also be supplied if **payload** is included.
|
|
129
129
|
*/
|
|
130
|
-
readonly payload: pulumi.Output<string>;
|
|
130
|
+
readonly payload: pulumi.Output<string | undefined>;
|
|
131
131
|
/**
|
|
132
132
|
* (required if **payload** is encoded) The encoding used for the payload to be able to include it in the JSON request. Must be either `base64` or `binary`.
|
|
133
133
|
*/
|
|
@@ -121,6 +121,7 @@ export declare class Listener extends pulumi.CustomResource {
|
|
|
121
121
|
* for more information.
|
|
122
122
|
*/
|
|
123
123
|
readonly sniContainerRefs: pulumi.Output<string[] | undefined>;
|
|
124
|
+
readonly tags: pulumi.Output<string[] | undefined>;
|
|
124
125
|
/**
|
|
125
126
|
* Required for admins. The UUID of the tenant who owns
|
|
126
127
|
* the Listener. Only administrative users can specify a tenant UUID
|
|
@@ -233,6 +234,7 @@ export interface ListenerState {
|
|
|
233
234
|
* for more information.
|
|
234
235
|
*/
|
|
235
236
|
sniContainerRefs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
237
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
236
238
|
/**
|
|
237
239
|
* Required for admins. The UUID of the tenant who owns
|
|
238
240
|
* the Listener. Only administrative users can specify a tenant UUID
|
|
@@ -337,6 +339,7 @@ export interface ListenerArgs {
|
|
|
337
339
|
* for more information.
|
|
338
340
|
*/
|
|
339
341
|
sniContainerRefs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
342
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
340
343
|
/**
|
|
341
344
|
* Required for admins. The UUID of the tenant who owns
|
|
342
345
|
* the Listener. Only administrative users can specify a tenant UUID
|
package/loadbalancer/listener.js
CHANGED
|
@@ -76,6 +76,7 @@ class Listener extends pulumi.CustomResource {
|
|
|
76
76
|
resourceInputs["protocolPort"] = state ? state.protocolPort : undefined;
|
|
77
77
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
78
78
|
resourceInputs["sniContainerRefs"] = state ? state.sniContainerRefs : undefined;
|
|
79
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
79
80
|
resourceInputs["tenantId"] = state ? state.tenantId : undefined;
|
|
80
81
|
resourceInputs["timeoutClientData"] = state ? state.timeoutClientData : undefined;
|
|
81
82
|
resourceInputs["timeoutMemberConnect"] = state ? state.timeoutMemberConnect : undefined;
|
|
@@ -106,6 +107,7 @@ class Listener extends pulumi.CustomResource {
|
|
|
106
107
|
resourceInputs["protocolPort"] = args ? args.protocolPort : undefined;
|
|
107
108
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
108
109
|
resourceInputs["sniContainerRefs"] = args ? args.sniContainerRefs : undefined;
|
|
110
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
109
111
|
resourceInputs["tenantId"] = args ? args.tenantId : undefined;
|
|
110
112
|
resourceInputs["timeoutClientData"] = args ? args.timeoutClientData : undefined;
|
|
111
113
|
resourceInputs["timeoutMemberConnect"] = args ? args.timeoutMemberConnect : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"listener.js","sourceRoot":"","sources":["../../loadbalancer/listener.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"listener.js","sourceRoot":"","sources":["../../loadbalancer/listener.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
2
3
|
/**
|
|
3
4
|
* Use this data source to get the ID of an available OpenStack network.
|
|
4
5
|
*
|
|
@@ -114,6 +115,10 @@ export interface GetNetworkResult {
|
|
|
114
115
|
* See Argument Reference above.
|
|
115
116
|
*/
|
|
116
117
|
readonly region: string;
|
|
118
|
+
/**
|
|
119
|
+
* An array of one or more provider segment objects.
|
|
120
|
+
*/
|
|
121
|
+
readonly segments: outputs.networking.GetNetworkSegment[];
|
|
117
122
|
/**
|
|
118
123
|
* Specifies whether the network resource can be accessed by any
|
|
119
124
|
* tenant or not.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../../networking/getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../../networking/getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,gCAiBC;AA4HD;;;;;;;;;;;;;GAaG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/networking/network.d.ts
CHANGED
|
@@ -134,8 +134,11 @@ export declare class Network extends pulumi.CustomResource {
|
|
|
134
134
|
readonly region: pulumi.Output<string>;
|
|
135
135
|
/**
|
|
136
136
|
* An array of one or more provider segment objects.
|
|
137
|
+
* Note: most Networking plug-ins (e.g. ML2 Plugin) and drivers do not support
|
|
138
|
+
* updating any provider related segments attributes. Check your plug-in whether
|
|
139
|
+
* it supports updating.
|
|
137
140
|
*/
|
|
138
|
-
readonly segments: pulumi.Output<outputs.networking.NetworkSegment[]
|
|
141
|
+
readonly segments: pulumi.Output<outputs.networking.NetworkSegment[]>;
|
|
139
142
|
/**
|
|
140
143
|
* Specifies whether the network resource can be accessed
|
|
141
144
|
* by any tenant or not. Changing this updates the sharing capabilities of the
|
|
@@ -245,6 +248,9 @@ export interface NetworkState {
|
|
|
245
248
|
region?: pulumi.Input<string>;
|
|
246
249
|
/**
|
|
247
250
|
* An array of one or more provider segment objects.
|
|
251
|
+
* Note: most Networking plug-ins (e.g. ML2 Plugin) and drivers do not support
|
|
252
|
+
* updating any provider related segments attributes. Check your plug-in whether
|
|
253
|
+
* it supports updating.
|
|
248
254
|
*/
|
|
249
255
|
segments?: pulumi.Input<pulumi.Input<inputs.networking.NetworkSegment>[]>;
|
|
250
256
|
/**
|
|
@@ -343,6 +349,9 @@ export interface NetworkArgs {
|
|
|
343
349
|
region?: pulumi.Input<string>;
|
|
344
350
|
/**
|
|
345
351
|
* An array of one or more provider segment objects.
|
|
352
|
+
* Note: most Networking plug-ins (e.g. ML2 Plugin) and drivers do not support
|
|
353
|
+
* updating any provider related segments attributes. Check your plug-in whether
|
|
354
|
+
* it supports updating.
|
|
346
355
|
*/
|
|
347
356
|
segments?: pulumi.Input<pulumi.Input<inputs.networking.NetworkSegment>[]>;
|
|
348
357
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"network.js","sourceRoot":"","sources":["../../networking/network.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"network.js","sourceRoot":"","sources":["../../networking/network.ts"],"names":[],"mappings":"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"}
|
|
@@ -45,6 +45,12 @@ export declare class RouterInterface extends pulumi.CustomResource {
|
|
|
45
45
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
46
46
|
*/
|
|
47
47
|
static isInstance(obj: any): obj is RouterInterface;
|
|
48
|
+
/**
|
|
49
|
+
* A boolean indicating whether the routes from the
|
|
50
|
+
* corresponding router ID should be deleted so that the router interface can
|
|
51
|
+
* be destroyed without any errors. The default value is `false`.
|
|
52
|
+
*/
|
|
53
|
+
readonly forceDestroy: pulumi.Output<boolean | undefined>;
|
|
48
54
|
/**
|
|
49
55
|
* ID of the port this interface connects to. Changing
|
|
50
56
|
* this creates a new router interface.
|
|
@@ -80,6 +86,12 @@ export declare class RouterInterface extends pulumi.CustomResource {
|
|
|
80
86
|
* Input properties used for looking up and filtering RouterInterface resources.
|
|
81
87
|
*/
|
|
82
88
|
export interface RouterInterfaceState {
|
|
89
|
+
/**
|
|
90
|
+
* A boolean indicating whether the routes from the
|
|
91
|
+
* corresponding router ID should be deleted so that the router interface can
|
|
92
|
+
* be destroyed without any errors. The default value is `false`.
|
|
93
|
+
*/
|
|
94
|
+
forceDestroy?: pulumi.Input<boolean>;
|
|
83
95
|
/**
|
|
84
96
|
* ID of the port this interface connects to. Changing
|
|
85
97
|
* this creates a new router interface.
|
|
@@ -107,6 +119,12 @@ export interface RouterInterfaceState {
|
|
|
107
119
|
* The set of arguments for constructing a RouterInterface resource.
|
|
108
120
|
*/
|
|
109
121
|
export interface RouterInterfaceArgs {
|
|
122
|
+
/**
|
|
123
|
+
* A boolean indicating whether the routes from the
|
|
124
|
+
* corresponding router ID should be deleted so that the router interface can
|
|
125
|
+
* be destroyed without any errors. The default value is `false`.
|
|
126
|
+
*/
|
|
127
|
+
forceDestroy?: pulumi.Input<boolean>;
|
|
110
128
|
/**
|
|
111
129
|
* ID of the port this interface connects to. Changing
|
|
112
130
|
* this creates a new router interface.
|
|
@@ -63,6 +63,7 @@ class RouterInterface extends pulumi.CustomResource {
|
|
|
63
63
|
opts = opts || {};
|
|
64
64
|
if (opts.id) {
|
|
65
65
|
const state = argsOrState;
|
|
66
|
+
resourceInputs["forceDestroy"] = state ? state.forceDestroy : undefined;
|
|
66
67
|
resourceInputs["portId"] = state ? state.portId : undefined;
|
|
67
68
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
68
69
|
resourceInputs["routerId"] = state ? state.routerId : undefined;
|
|
@@ -73,6 +74,7 @@ class RouterInterface extends pulumi.CustomResource {
|
|
|
73
74
|
if ((!args || args.routerId === undefined) && !opts.urn) {
|
|
74
75
|
throw new Error("Missing required property 'routerId'");
|
|
75
76
|
}
|
|
77
|
+
resourceInputs["forceDestroy"] = args ? args.forceDestroy : undefined;
|
|
76
78
|
resourceInputs["portId"] = args ? args.portId : undefined;
|
|
77
79
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
78
80
|
resourceInputs["routerId"] = args ? args.routerId : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routerInterface.js","sourceRoot":"","sources":["../../networking/routerInterface.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"routerInterface.js","sourceRoot":"","sources":["../../networking/routerInterface.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAuCD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAxFL,0CAyFC;AA3EG,gBAAgB;AACO,4BAAY,GAAG,sDAAsD,CAAC"}
|
|
@@ -155,8 +155,12 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
155
155
|
*/
|
|
156
156
|
readonly storagePolicy: pulumi.Output<string>;
|
|
157
157
|
/**
|
|
158
|
-
* A boolean that
|
|
159
|
-
*
|
|
158
|
+
* A boolean that can enable or disable object
|
|
159
|
+
* versioning. The default value is `false`. To use this feature, your Swift
|
|
160
|
+
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri release notes](https://docs.openstack.org/releasenotes/swift/ussuri.html#relnotes-2-24-0-stable-ussuri)),
|
|
161
|
+
* and a cloud administrator must have set the `allowObjectVersioning = true`
|
|
162
|
+
* configuration option in Swift. If you cannot set this versioning type, you may
|
|
163
|
+
* want to consider using `versioningLegacy` instead.
|
|
160
164
|
*/
|
|
161
165
|
readonly versioning: pulumi.Output<boolean | undefined>;
|
|
162
166
|
/**
|
|
@@ -233,8 +237,12 @@ export interface ContainerState {
|
|
|
233
237
|
*/
|
|
234
238
|
storagePolicy?: pulumi.Input<string>;
|
|
235
239
|
/**
|
|
236
|
-
* A boolean that
|
|
237
|
-
*
|
|
240
|
+
* A boolean that can enable or disable object
|
|
241
|
+
* versioning. The default value is `false`. To use this feature, your Swift
|
|
242
|
+
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri release notes](https://docs.openstack.org/releasenotes/swift/ussuri.html#relnotes-2-24-0-stable-ussuri)),
|
|
243
|
+
* and a cloud administrator must have set the `allowObjectVersioning = true`
|
|
244
|
+
* configuration option in Swift. If you cannot set this versioning type, you may
|
|
245
|
+
* want to consider using `versioningLegacy` instead.
|
|
238
246
|
*/
|
|
239
247
|
versioning?: pulumi.Input<boolean>;
|
|
240
248
|
/**
|
|
@@ -303,8 +311,12 @@ export interface ContainerArgs {
|
|
|
303
311
|
*/
|
|
304
312
|
storagePolicy?: pulumi.Input<string>;
|
|
305
313
|
/**
|
|
306
|
-
* A boolean that
|
|
307
|
-
*
|
|
314
|
+
* A boolean that can enable or disable object
|
|
315
|
+
* versioning. The default value is `false`. To use this feature, your Swift
|
|
316
|
+
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri release notes](https://docs.openstack.org/releasenotes/swift/ussuri.html#relnotes-2-24-0-stable-ussuri)),
|
|
317
|
+
* and a cloud administrator must have set the `allowObjectVersioning = true`
|
|
318
|
+
* configuration option in Swift. If you cannot set this versioning type, you may
|
|
319
|
+
* want to consider using `versioningLegacy` instead.
|
|
308
320
|
*/
|
|
309
321
|
versioning?: pulumi.Input<boolean>;
|
|
310
322
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.js","sourceRoot":"","sources":["../../objectstorage/container.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkFG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"container.js","sourceRoot":"","sources":["../../objectstorage/container.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/openstack",
|
|
3
|
-
"version": "v3.12.0
|
|
3
|
+
"version": "v3.12.0",
|
|
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.12.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource openstack v3.12.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/openstack",
|
|
3
|
-
"version": "v3.12.0
|
|
3
|
+
"version": "v3.12.0",
|
|
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.12.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource openstack v3.12.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
package/types/output.d.ts
CHANGED
|
@@ -317,6 +317,9 @@ export declare namespace compute {
|
|
|
317
317
|
*/
|
|
318
318
|
toPort: number;
|
|
319
319
|
}
|
|
320
|
+
interface ServerGroupRules {
|
|
321
|
+
maxServerPerHost?: number;
|
|
322
|
+
}
|
|
320
323
|
interface VolumeAttachVendorOptions {
|
|
321
324
|
/**
|
|
322
325
|
* Boolean to control whether
|
|
@@ -738,6 +741,11 @@ export declare namespace loadbalancer {
|
|
|
738
741
|
}
|
|
739
742
|
}
|
|
740
743
|
export declare namespace networking {
|
|
744
|
+
interface GetNetworkSegment {
|
|
745
|
+
networkType: string;
|
|
746
|
+
physicalNetwork: string;
|
|
747
|
+
segmentationId: number;
|
|
748
|
+
}
|
|
741
749
|
interface GetPortAllowedAddressPair {
|
|
742
750
|
/**
|
|
743
751
|
* The additional IP address.
|