@pulumi/openstack 3.15.0-alpha.1706308609 → 3.15.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/blockstorage/getVolumeV3.d.ts +7 -0
- package/blockstorage/getVolumeV3.js.map +1 -1
- package/blockstorage/volume.d.ts +45 -12
- package/blockstorage/volume.js +2 -0
- package/blockstorage/volume.js.map +1 -1
- package/networking/port.d.ts +25 -0
- package/networking/port.js +25 -0
- package/networking/port.js.map +1 -1
- package/networking/secGroupRule.d.ts +3 -0
- package/networking/secGroupRule.js +3 -0
- package/networking/secGroupRule.js.map +1 -1
- package/package.json +1 -1
- package/provider.d.ts +2 -0
- package/types/input.d.ts +1 -1
- package/types/output.d.ts +6 -1
|
@@ -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 information about an existing volume.
|
|
4
5
|
*
|
|
@@ -54,6 +55,12 @@ export interface GetVolumeV3Args {
|
|
|
54
55
|
* A collection of values returned by getVolumeV3.
|
|
55
56
|
*/
|
|
56
57
|
export interface GetVolumeV3Result {
|
|
58
|
+
/**
|
|
59
|
+
* If a volume is attached to an instance, this attribute will
|
|
60
|
+
* display the Attachment ID, Instance ID, and the Device as the Instance
|
|
61
|
+
* sees it.
|
|
62
|
+
*/
|
|
63
|
+
readonly attachments: outputs.blockstorage.GetVolumeV3Attachment[];
|
|
57
64
|
/**
|
|
58
65
|
* Indicates if the volume is bootable.
|
|
59
66
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVolumeV3.js","sourceRoot":"","sources":["../../blockstorage/getVolumeV3.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getVolumeV3.js","sourceRoot":"","sources":["../../blockstorage/getVolumeV3.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,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,gDAAgD,EAAE;QAC3E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kCAaC;AA4FD;;;;;;;;;;;;;GAaG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/blockstorage/volume.d.ts
CHANGED
|
@@ -52,6 +52,12 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
52
52
|
* Changing this creates a new volume.
|
|
53
53
|
*/
|
|
54
54
|
readonly availabilityZone: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* The backup ID from which to create the volume.
|
|
57
|
+
* Conflicts with `snapshotId`, `sourceVolId`, `imageId`. Changing this
|
|
58
|
+
* creates a new volume. Requires microversion >= 3.47.
|
|
59
|
+
*/
|
|
60
|
+
readonly backupId: pulumi.Output<string | undefined>;
|
|
55
61
|
/**
|
|
56
62
|
* The consistency group to place the volume
|
|
57
63
|
* in.
|
|
@@ -70,7 +76,8 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
70
76
|
readonly enableOnlineResize: pulumi.Output<boolean | undefined>;
|
|
71
77
|
/**
|
|
72
78
|
* The image ID from which to create the volume.
|
|
73
|
-
*
|
|
79
|
+
* Conflicts with `snapshotId`, `sourceVolId`, `backupId`. Changing this
|
|
80
|
+
* creates a new volume.
|
|
74
81
|
*/
|
|
75
82
|
readonly imageId: pulumi.Output<string | undefined>;
|
|
76
83
|
/**
|
|
@@ -81,7 +88,9 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
81
88
|
[key: string]: any;
|
|
82
89
|
}>;
|
|
83
90
|
/**
|
|
84
|
-
* Allow the volume to be attached to more than one Compute instance.
|
|
91
|
+
* (Optional) Allow the volume to be attached to more than one Compute instance.
|
|
92
|
+
*
|
|
93
|
+
* @deprecated multiattach parameter has been deprecated and removed on Openstack Bobcat. The default behavior is to use multiattach enabled volume types
|
|
85
94
|
*/
|
|
86
95
|
readonly multiattach: pulumi.Output<boolean | undefined>;
|
|
87
96
|
/**
|
|
@@ -106,7 +115,8 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
106
115
|
readonly size: pulumi.Output<number>;
|
|
107
116
|
/**
|
|
108
117
|
* The snapshot ID from which to create the volume.
|
|
109
|
-
*
|
|
118
|
+
* Conflicts with `sourceVolId`, `imageId`, `backupId`. Changing this
|
|
119
|
+
* creates a new volume.
|
|
110
120
|
*/
|
|
111
121
|
readonly snapshotId: pulumi.Output<string | undefined>;
|
|
112
122
|
/**
|
|
@@ -115,7 +125,8 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
115
125
|
readonly sourceReplica: pulumi.Output<string | undefined>;
|
|
116
126
|
/**
|
|
117
127
|
* The volume ID from which to create the volume.
|
|
118
|
-
*
|
|
128
|
+
* Conflicts with `snapshotId`, `imageId`, `backupId`. Changing this
|
|
129
|
+
* creates a new volume.
|
|
119
130
|
*/
|
|
120
131
|
readonly sourceVolId: pulumi.Output<string | undefined>;
|
|
121
132
|
/**
|
|
@@ -147,6 +158,12 @@ export interface VolumeState {
|
|
|
147
158
|
* Changing this creates a new volume.
|
|
148
159
|
*/
|
|
149
160
|
availabilityZone?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* The backup ID from which to create the volume.
|
|
163
|
+
* Conflicts with `snapshotId`, `sourceVolId`, `imageId`. Changing this
|
|
164
|
+
* creates a new volume. Requires microversion >= 3.47.
|
|
165
|
+
*/
|
|
166
|
+
backupId?: pulumi.Input<string>;
|
|
150
167
|
/**
|
|
151
168
|
* The consistency group to place the volume
|
|
152
169
|
* in.
|
|
@@ -165,7 +182,8 @@ export interface VolumeState {
|
|
|
165
182
|
enableOnlineResize?: pulumi.Input<boolean>;
|
|
166
183
|
/**
|
|
167
184
|
* The image ID from which to create the volume.
|
|
168
|
-
*
|
|
185
|
+
* Conflicts with `snapshotId`, `sourceVolId`, `backupId`. Changing this
|
|
186
|
+
* creates a new volume.
|
|
169
187
|
*/
|
|
170
188
|
imageId?: pulumi.Input<string>;
|
|
171
189
|
/**
|
|
@@ -176,7 +194,9 @@ export interface VolumeState {
|
|
|
176
194
|
[key: string]: any;
|
|
177
195
|
}>;
|
|
178
196
|
/**
|
|
179
|
-
* Allow the volume to be attached to more than one Compute instance.
|
|
197
|
+
* (Optional) Allow the volume to be attached to more than one Compute instance.
|
|
198
|
+
*
|
|
199
|
+
* @deprecated multiattach parameter has been deprecated and removed on Openstack Bobcat. The default behavior is to use multiattach enabled volume types
|
|
180
200
|
*/
|
|
181
201
|
multiattach?: pulumi.Input<boolean>;
|
|
182
202
|
/**
|
|
@@ -201,7 +221,8 @@ export interface VolumeState {
|
|
|
201
221
|
size?: pulumi.Input<number>;
|
|
202
222
|
/**
|
|
203
223
|
* The snapshot ID from which to create the volume.
|
|
204
|
-
*
|
|
224
|
+
* Conflicts with `sourceVolId`, `imageId`, `backupId`. Changing this
|
|
225
|
+
* creates a new volume.
|
|
205
226
|
*/
|
|
206
227
|
snapshotId?: pulumi.Input<string>;
|
|
207
228
|
/**
|
|
@@ -210,7 +231,8 @@ export interface VolumeState {
|
|
|
210
231
|
sourceReplica?: pulumi.Input<string>;
|
|
211
232
|
/**
|
|
212
233
|
* The volume ID from which to create the volume.
|
|
213
|
-
*
|
|
234
|
+
* Conflicts with `snapshotId`, `imageId`, `backupId`. Changing this
|
|
235
|
+
* creates a new volume.
|
|
214
236
|
*/
|
|
215
237
|
sourceVolId?: pulumi.Input<string>;
|
|
216
238
|
/**
|
|
@@ -228,6 +250,12 @@ export interface VolumeArgs {
|
|
|
228
250
|
* Changing this creates a new volume.
|
|
229
251
|
*/
|
|
230
252
|
availabilityZone?: pulumi.Input<string>;
|
|
253
|
+
/**
|
|
254
|
+
* The backup ID from which to create the volume.
|
|
255
|
+
* Conflicts with `snapshotId`, `sourceVolId`, `imageId`. Changing this
|
|
256
|
+
* creates a new volume. Requires microversion >= 3.47.
|
|
257
|
+
*/
|
|
258
|
+
backupId?: pulumi.Input<string>;
|
|
231
259
|
/**
|
|
232
260
|
* The consistency group to place the volume
|
|
233
261
|
* in.
|
|
@@ -246,7 +274,8 @@ export interface VolumeArgs {
|
|
|
246
274
|
enableOnlineResize?: pulumi.Input<boolean>;
|
|
247
275
|
/**
|
|
248
276
|
* The image ID from which to create the volume.
|
|
249
|
-
*
|
|
277
|
+
* Conflicts with `snapshotId`, `sourceVolId`, `backupId`. Changing this
|
|
278
|
+
* creates a new volume.
|
|
250
279
|
*/
|
|
251
280
|
imageId?: pulumi.Input<string>;
|
|
252
281
|
/**
|
|
@@ -257,7 +286,9 @@ export interface VolumeArgs {
|
|
|
257
286
|
[key: string]: any;
|
|
258
287
|
}>;
|
|
259
288
|
/**
|
|
260
|
-
* Allow the volume to be attached to more than one Compute instance.
|
|
289
|
+
* (Optional) Allow the volume to be attached to more than one Compute instance.
|
|
290
|
+
*
|
|
291
|
+
* @deprecated multiattach parameter has been deprecated and removed on Openstack Bobcat. The default behavior is to use multiattach enabled volume types
|
|
261
292
|
*/
|
|
262
293
|
multiattach?: pulumi.Input<boolean>;
|
|
263
294
|
/**
|
|
@@ -282,7 +313,8 @@ export interface VolumeArgs {
|
|
|
282
313
|
size: pulumi.Input<number>;
|
|
283
314
|
/**
|
|
284
315
|
* The snapshot ID from which to create the volume.
|
|
285
|
-
*
|
|
316
|
+
* Conflicts with `sourceVolId`, `imageId`, `backupId`. Changing this
|
|
317
|
+
* creates a new volume.
|
|
286
318
|
*/
|
|
287
319
|
snapshotId?: pulumi.Input<string>;
|
|
288
320
|
/**
|
|
@@ -291,7 +323,8 @@ export interface VolumeArgs {
|
|
|
291
323
|
sourceReplica?: pulumi.Input<string>;
|
|
292
324
|
/**
|
|
293
325
|
* The volume ID from which to create the volume.
|
|
294
|
-
*
|
|
326
|
+
* Conflicts with `snapshotId`, `imageId`, `backupId`. Changing this
|
|
327
|
+
* creates a new volume.
|
|
295
328
|
*/
|
|
296
329
|
sourceVolId?: pulumi.Input<string>;
|
|
297
330
|
/**
|
package/blockstorage/volume.js
CHANGED
|
@@ -59,6 +59,7 @@ class Volume extends pulumi.CustomResource {
|
|
|
59
59
|
const state = argsOrState;
|
|
60
60
|
resourceInputs["attachments"] = state ? state.attachments : undefined;
|
|
61
61
|
resourceInputs["availabilityZone"] = state ? state.availabilityZone : undefined;
|
|
62
|
+
resourceInputs["backupId"] = state ? state.backupId : undefined;
|
|
62
63
|
resourceInputs["consistencyGroupId"] = state ? state.consistencyGroupId : undefined;
|
|
63
64
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
64
65
|
resourceInputs["enableOnlineResize"] = state ? state.enableOnlineResize : undefined;
|
|
@@ -80,6 +81,7 @@ class Volume extends pulumi.CustomResource {
|
|
|
80
81
|
throw new Error("Missing required property 'size'");
|
|
81
82
|
}
|
|
82
83
|
resourceInputs["availabilityZone"] = args ? args.availabilityZone : undefined;
|
|
84
|
+
resourceInputs["backupId"] = args ? args.backupId : undefined;
|
|
83
85
|
resourceInputs["consistencyGroupId"] = args ? args.consistencyGroupId : undefined;
|
|
84
86
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
85
87
|
resourceInputs["enableOnlineResize"] = args ? args.enableOnlineResize : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../../blockstorage/volume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../../blockstorage/volume.ts"],"names":[],"mappings":"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"}
|
package/networking/port.d.ts
CHANGED
|
@@ -4,6 +4,12 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Manages a V2 port resource within OpenStack.
|
|
6
6
|
*
|
|
7
|
+
* > **Note:** Ports do not get an IP if the network they are attached
|
|
8
|
+
* to does not have a subnet. If you create the subnet resource in the
|
|
9
|
+
* same run as the port, make sure to use `fixed_ip.subnet_id` or
|
|
10
|
+
* `dependsOn` to enforce the subnet resource creation before the port
|
|
11
|
+
* creation is triggered. More info here
|
|
12
|
+
*
|
|
7
13
|
* ## Example Usage
|
|
8
14
|
* ### Simple port
|
|
9
15
|
*
|
|
@@ -17,6 +23,25 @@ import * as outputs from "../types/output";
|
|
|
17
23
|
* adminStateUp: true,
|
|
18
24
|
* });
|
|
19
25
|
* ```
|
|
26
|
+
* ### Port defining fixed_ip.subnet_id
|
|
27
|
+
*
|
|
28
|
+
* ```typescript
|
|
29
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
30
|
+
* import * as openstack from "@pulumi/openstack";
|
|
31
|
+
*
|
|
32
|
+
* const network1 = new openstack.networking.Network("network1", {adminStateUp: true});
|
|
33
|
+
* const subnet1 = new openstack.networking.Subnet("subnet1", {
|
|
34
|
+
* networkId: network1.id,
|
|
35
|
+
* cidr: "192.168.199.0/24",
|
|
36
|
+
* });
|
|
37
|
+
* const port1 = new openstack.networking.Port("port1", {
|
|
38
|
+
* networkId: network1.id,
|
|
39
|
+
* adminStateUp: true,
|
|
40
|
+
* fixedIps: [{
|
|
41
|
+
* subnetId: subnet1.id,
|
|
42
|
+
* }],
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
20
45
|
* ### Port with physical binding information
|
|
21
46
|
*
|
|
22
47
|
* ```typescript
|
package/networking/port.js
CHANGED
|
@@ -8,6 +8,12 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages a V2 port resource within OpenStack.
|
|
10
10
|
*
|
|
11
|
+
* > **Note:** Ports do not get an IP if the network they are attached
|
|
12
|
+
* to does not have a subnet. If you create the subnet resource in the
|
|
13
|
+
* same run as the port, make sure to use `fixed_ip.subnet_id` or
|
|
14
|
+
* `dependsOn` to enforce the subnet resource creation before the port
|
|
15
|
+
* creation is triggered. More info here
|
|
16
|
+
*
|
|
11
17
|
* ## Example Usage
|
|
12
18
|
* ### Simple port
|
|
13
19
|
*
|
|
@@ -21,6 +27,25 @@ const utilities = require("../utilities");
|
|
|
21
27
|
* adminStateUp: true,
|
|
22
28
|
* });
|
|
23
29
|
* ```
|
|
30
|
+
* ### Port defining fixed_ip.subnet_id
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as openstack from "@pulumi/openstack";
|
|
35
|
+
*
|
|
36
|
+
* const network1 = new openstack.networking.Network("network1", {adminStateUp: true});
|
|
37
|
+
* const subnet1 = new openstack.networking.Subnet("subnet1", {
|
|
38
|
+
* networkId: network1.id,
|
|
39
|
+
* cidr: "192.168.199.0/24",
|
|
40
|
+
* });
|
|
41
|
+
* const port1 = new openstack.networking.Port("port1", {
|
|
42
|
+
* networkId: network1.id,
|
|
43
|
+
* adminStateUp: true,
|
|
44
|
+
* fixedIps: [{
|
|
45
|
+
* subnetId: subnet1.id,
|
|
46
|
+
* }],
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
24
49
|
* ### Port with physical binding information
|
|
25
50
|
*
|
|
26
51
|
* ```typescript
|
package/networking/port.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"port.js","sourceRoot":"","sources":["../../networking/port.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"port.js","sourceRoot":"","sources":["../../networking/port.ts"],"names":[],"mappings":"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"}
|
|
@@ -22,6 +22,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
|
24
24
|
*
|
|
25
|
+
* > **Note:** To expose the full port-range 1:65535, use `0` for `portRangeMin`
|
|
26
|
+
* and `portRangeMax`.
|
|
27
|
+
*
|
|
25
28
|
* ## Import
|
|
26
29
|
*
|
|
27
30
|
* Security Group Rules can be imported using the `id`, e.g.
|
|
@@ -28,6 +28,9 @@ const utilities = require("../utilities");
|
|
|
28
28
|
* });
|
|
29
29
|
* ```
|
|
30
30
|
*
|
|
31
|
+
* > **Note:** To expose the full port-range 1:65535, use `0` for `portRangeMin`
|
|
32
|
+
* and `portRangeMax`.
|
|
33
|
+
*
|
|
31
34
|
* ## Import
|
|
32
35
|
*
|
|
33
36
|
* Security Group Rules can be imported using the `id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secGroupRule.js","sourceRoot":"","sources":["../../networking/secGroupRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"secGroupRule.js","sourceRoot":"","sources":["../../networking/secGroupRule.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/provider.d.ts
CHANGED
|
@@ -228,6 +228,8 @@ export interface ProviderArgs {
|
|
|
228
228
|
token?: pulumi.Input<string>;
|
|
229
229
|
/**
|
|
230
230
|
* If set to `true`, API requests will go the Load Balancer service (Octavia) instead of the Networking service (Neutron).
|
|
231
|
+
*
|
|
232
|
+
* @deprecated This option will be removed in the next major release. Support for neutron-lbaas will be removed in next major release. Octavia will be the only option supported.
|
|
231
233
|
*/
|
|
232
234
|
useOctavia?: pulumi.Input<boolean>;
|
|
233
235
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -704,7 +704,7 @@ export declare namespace networking {
|
|
|
704
704
|
/**
|
|
705
705
|
* VNIC type for the port. Can either be `direct`,
|
|
706
706
|
* `direct-physical`, `macvtap`, `normal`, `baremetal` or `virtio-forwarder`.
|
|
707
|
-
* Default value is `normal`.
|
|
707
|
+
* Default value is `normal`. It can be updated on unbound ports only.
|
|
708
708
|
*/
|
|
709
709
|
vnicType?: pulumi.Input<string>;
|
|
710
710
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export declare namespace blockstorage {
|
|
3
|
+
interface GetVolumeV3Attachment {
|
|
4
|
+
device: string;
|
|
5
|
+
id: string;
|
|
6
|
+
instanceId: string;
|
|
7
|
+
}
|
|
3
8
|
interface VolumeAttachment {
|
|
4
9
|
device: string;
|
|
5
10
|
id: string;
|
|
@@ -880,7 +885,7 @@ export declare namespace networking {
|
|
|
880
885
|
/**
|
|
881
886
|
* VNIC type for the port. Can either be `direct`,
|
|
882
887
|
* `direct-physical`, `macvtap`, `normal`, `baremetal` or `virtio-forwarder`.
|
|
883
|
-
* Default value is `normal`.
|
|
888
|
+
* Default value is `normal`. It can be updated on unbound ports only.
|
|
884
889
|
*/
|
|
885
890
|
vnicType?: string;
|
|
886
891
|
}
|