@pulumi/openstack 3.16.0-alpha.1710996567 → 3.16.0-alpha.1711029262
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/instance.d.ts +6 -6
- package/images/image.d.ts +2 -2
- package/loadbalancer/poolV1.d.ts +3 -3
- package/networking/getSubnet.d.ts +3 -3
- package/networking/router.d.ts +3 -3
- package/networking/subnet.d.ts +6 -6
- package/package.json +1 -1
- package/types/input.d.ts +1 -1
- package/types/output.d.ts +1 -1
package/compute/instance.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
82
82
|
*/
|
|
83
83
|
readonly flavorName: pulumi.Output<string>;
|
|
84
84
|
/**
|
|
85
|
-
* @deprecated Use the
|
|
85
|
+
* @deprecated Use the openstack.compute.FloatingIpAssociate resource instead
|
|
86
86
|
*/
|
|
87
87
|
readonly floatingIp: pulumi.Output<string | undefined>;
|
|
88
88
|
/**
|
|
@@ -193,7 +193,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
193
193
|
*/
|
|
194
194
|
readonly vendorOptions: pulumi.Output<outputs.compute.InstanceVendorOptions | undefined>;
|
|
195
195
|
/**
|
|
196
|
-
* @deprecated Use
|
|
196
|
+
* @deprecated Use blockDevice or openstack.compute.VolumeAttach instead
|
|
197
197
|
*/
|
|
198
198
|
readonly volumes: pulumi.Output<outputs.compute.InstanceVolume[] | undefined>;
|
|
199
199
|
/**
|
|
@@ -274,7 +274,7 @@ export interface InstanceState {
|
|
|
274
274
|
*/
|
|
275
275
|
flavorName?: pulumi.Input<string>;
|
|
276
276
|
/**
|
|
277
|
-
* @deprecated Use the
|
|
277
|
+
* @deprecated Use the openstack.compute.FloatingIpAssociate resource instead
|
|
278
278
|
*/
|
|
279
279
|
floatingIp?: pulumi.Input<string>;
|
|
280
280
|
/**
|
|
@@ -385,7 +385,7 @@ export interface InstanceState {
|
|
|
385
385
|
*/
|
|
386
386
|
vendorOptions?: pulumi.Input<inputs.compute.InstanceVendorOptions>;
|
|
387
387
|
/**
|
|
388
|
-
* @deprecated Use
|
|
388
|
+
* @deprecated Use blockDevice or openstack.compute.VolumeAttach instead
|
|
389
389
|
*/
|
|
390
390
|
volumes?: pulumi.Input<pulumi.Input<inputs.compute.InstanceVolume>[]>;
|
|
391
391
|
}
|
|
@@ -446,7 +446,7 @@ export interface InstanceArgs {
|
|
|
446
446
|
*/
|
|
447
447
|
flavorName?: pulumi.Input<string>;
|
|
448
448
|
/**
|
|
449
|
-
* @deprecated Use the
|
|
449
|
+
* @deprecated Use the openstack.compute.FloatingIpAssociate resource instead
|
|
450
450
|
*/
|
|
451
451
|
floatingIp?: pulumi.Input<string>;
|
|
452
452
|
/**
|
|
@@ -553,7 +553,7 @@ export interface InstanceArgs {
|
|
|
553
553
|
*/
|
|
554
554
|
vendorOptions?: pulumi.Input<inputs.compute.InstanceVendorOptions>;
|
|
555
555
|
/**
|
|
556
|
-
* @deprecated Use
|
|
556
|
+
* @deprecated Use blockDevice or openstack.compute.VolumeAttach instead
|
|
557
557
|
*/
|
|
558
558
|
volumes?: pulumi.Input<pulumi.Input<inputs.compute.InstanceVolume>[]>;
|
|
559
559
|
}
|
package/images/image.d.ts
CHANGED
|
@@ -195,7 +195,7 @@ export declare class Image extends pulumi.CustomResource {
|
|
|
195
195
|
/**
|
|
196
196
|
* (**Deprecated** - use `updatedAt` instead)
|
|
197
197
|
*
|
|
198
|
-
* @deprecated Use
|
|
198
|
+
* @deprecated Use updatedAt instead
|
|
199
199
|
*/
|
|
200
200
|
readonly updateAt: pulumi.Output<string>;
|
|
201
201
|
/**
|
|
@@ -364,7 +364,7 @@ export interface ImageState {
|
|
|
364
364
|
/**
|
|
365
365
|
* (**Deprecated** - use `updatedAt` instead)
|
|
366
366
|
*
|
|
367
|
-
* @deprecated Use
|
|
367
|
+
* @deprecated Use updatedAt instead
|
|
368
368
|
*/
|
|
369
369
|
updateAt?: pulumi.Input<string>;
|
|
370
370
|
/**
|
package/loadbalancer/poolV1.d.ts
CHANGED
|
@@ -144,7 +144,7 @@ export declare class PoolV1 extends pulumi.CustomResource {
|
|
|
144
144
|
* below. Please note that the `member` block is deprecated in favor of the
|
|
145
145
|
* `openstack.loadbalancer.MemberV1` resource.
|
|
146
146
|
*
|
|
147
|
-
* @deprecated Use
|
|
147
|
+
* @deprecated Use openstack.loadbalancer.MemberV1 instead
|
|
148
148
|
*/
|
|
149
149
|
readonly members: pulumi.Output<string[] | undefined>;
|
|
150
150
|
/**
|
|
@@ -210,7 +210,7 @@ export interface PoolV1State {
|
|
|
210
210
|
* below. Please note that the `member` block is deprecated in favor of the
|
|
211
211
|
* `openstack.loadbalancer.MemberV1` resource.
|
|
212
212
|
*
|
|
213
|
-
* @deprecated Use
|
|
213
|
+
* @deprecated Use openstack.loadbalancer.MemberV1 instead
|
|
214
214
|
*/
|
|
215
215
|
members?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216
216
|
/**
|
|
@@ -268,7 +268,7 @@ export interface PoolV1Args {
|
|
|
268
268
|
* below. Please note that the `member` block is deprecated in favor of the
|
|
269
269
|
* `openstack.loadbalancer.MemberV1` resource.
|
|
270
270
|
*
|
|
271
|
-
* @deprecated Use
|
|
271
|
+
* @deprecated Use openstack.loadbalancer.MemberV1 instead
|
|
272
272
|
*/
|
|
273
273
|
members?: pulumi.Input<pulumi.Input<string>[]>;
|
|
274
274
|
/**
|
|
@@ -30,7 +30,7 @@ export interface GetSubnetArgs {
|
|
|
30
30
|
*/
|
|
31
31
|
description?: string;
|
|
32
32
|
/**
|
|
33
|
-
* @deprecated use
|
|
33
|
+
* @deprecated use dhcpEnabled instead
|
|
34
34
|
*/
|
|
35
35
|
dhcpDisabled?: boolean;
|
|
36
36
|
/**
|
|
@@ -101,7 +101,7 @@ export interface GetSubnetResult {
|
|
|
101
101
|
readonly cidr: string;
|
|
102
102
|
readonly description: string;
|
|
103
103
|
/**
|
|
104
|
-
* @deprecated use
|
|
104
|
+
* @deprecated use dhcpEnabled instead
|
|
105
105
|
*/
|
|
106
106
|
readonly dhcpDisabled?: boolean;
|
|
107
107
|
readonly dhcpEnabled?: boolean;
|
|
@@ -170,7 +170,7 @@ export interface GetSubnetOutputArgs {
|
|
|
170
170
|
*/
|
|
171
171
|
description?: pulumi.Input<string>;
|
|
172
172
|
/**
|
|
173
|
-
* @deprecated use
|
|
173
|
+
* @deprecated use dhcpEnabled instead
|
|
174
174
|
*/
|
|
175
175
|
dhcpDisabled?: pulumi.Input<boolean>;
|
|
176
176
|
/**
|
package/networking/router.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export declare class Router extends pulumi.CustomResource {
|
|
|
92
92
|
* will be using floating IPs. Changing this updates the external gateway
|
|
93
93
|
* of an existing router.
|
|
94
94
|
*
|
|
95
|
-
* @deprecated use
|
|
95
|
+
* @deprecated use externalNetworkId instead
|
|
96
96
|
*/
|
|
97
97
|
readonly externalGateway: pulumi.Output<string>;
|
|
98
98
|
/**
|
|
@@ -205,7 +205,7 @@ export interface RouterState {
|
|
|
205
205
|
* will be using floating IPs. Changing this updates the external gateway
|
|
206
206
|
* of an existing router.
|
|
207
207
|
*
|
|
208
|
-
* @deprecated use
|
|
208
|
+
* @deprecated use externalNetworkId instead
|
|
209
209
|
*/
|
|
210
210
|
externalGateway?: pulumi.Input<string>;
|
|
211
211
|
/**
|
|
@@ -305,7 +305,7 @@ export interface RouterArgs {
|
|
|
305
305
|
* will be using floating IPs. Changing this updates the external gateway
|
|
306
306
|
* of an existing router.
|
|
307
307
|
*
|
|
308
|
-
* @deprecated use
|
|
308
|
+
* @deprecated use externalNetworkId instead
|
|
309
309
|
*/
|
|
310
310
|
externalGateway?: pulumi.Input<string>;
|
|
311
311
|
/**
|
package/networking/subnet.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare class Subnet extends pulumi.CustomResource {
|
|
|
62
62
|
* use with DHCP in this subnet.
|
|
63
63
|
* The `allocationPools` block is documented below.
|
|
64
64
|
*
|
|
65
|
-
* @deprecated use
|
|
65
|
+
* @deprecated use allocationPool instead
|
|
66
66
|
*/
|
|
67
67
|
readonly allocationPoolsCollection: pulumi.Output<outputs.networking.SubnetAllocationPoolsCollection[]>;
|
|
68
68
|
/**
|
|
@@ -102,7 +102,7 @@ export declare class Subnet extends pulumi.CustomResource {
|
|
|
102
102
|
* object structure is documented below. Changing this updates the host routes
|
|
103
103
|
* for the existing subnet.
|
|
104
104
|
*
|
|
105
|
-
* @deprecated Use
|
|
105
|
+
* @deprecated Use openstack.networking.SubnetRoute instead
|
|
106
106
|
*/
|
|
107
107
|
readonly hostRoutes: pulumi.Output<outputs.networking.SubnetHostRoute[] | undefined>;
|
|
108
108
|
/**
|
|
@@ -205,7 +205,7 @@ export interface SubnetState {
|
|
|
205
205
|
* use with DHCP in this subnet.
|
|
206
206
|
* The `allocationPools` block is documented below.
|
|
207
207
|
*
|
|
208
|
-
* @deprecated use
|
|
208
|
+
* @deprecated use allocationPool instead
|
|
209
209
|
*/
|
|
210
210
|
allocationPoolsCollection?: pulumi.Input<pulumi.Input<inputs.networking.SubnetAllocationPoolsCollection>[]>;
|
|
211
211
|
/**
|
|
@@ -245,7 +245,7 @@ export interface SubnetState {
|
|
|
245
245
|
* object structure is documented below. Changing this updates the host routes
|
|
246
246
|
* for the existing subnet.
|
|
247
247
|
*
|
|
248
|
-
* @deprecated Use
|
|
248
|
+
* @deprecated Use openstack.networking.SubnetRoute instead
|
|
249
249
|
*/
|
|
250
250
|
hostRoutes?: pulumi.Input<pulumi.Input<inputs.networking.SubnetHostRoute>[]>;
|
|
251
251
|
/**
|
|
@@ -335,7 +335,7 @@ export interface SubnetArgs {
|
|
|
335
335
|
* use with DHCP in this subnet.
|
|
336
336
|
* The `allocationPools` block is documented below.
|
|
337
337
|
*
|
|
338
|
-
* @deprecated use
|
|
338
|
+
* @deprecated use allocationPool instead
|
|
339
339
|
*/
|
|
340
340
|
allocationPoolsCollection?: pulumi.Input<pulumi.Input<inputs.networking.SubnetAllocationPoolsCollection>[]>;
|
|
341
341
|
/**
|
|
@@ -375,7 +375,7 @@ export interface SubnetArgs {
|
|
|
375
375
|
* object structure is documented below. Changing this updates the host routes
|
|
376
376
|
* for the existing subnet.
|
|
377
377
|
*
|
|
378
|
-
* @deprecated Use
|
|
378
|
+
* @deprecated Use openstack.networking.SubnetRoute instead
|
|
379
379
|
*/
|
|
380
380
|
hostRoutes?: pulumi.Input<pulumi.Input<inputs.networking.SubnetHostRoute>[]>;
|
|
381
381
|
/**
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -216,7 +216,7 @@ export declare namespace compute {
|
|
|
216
216
|
fixedIpV4?: pulumi.Input<string>;
|
|
217
217
|
fixedIpV6?: pulumi.Input<string>;
|
|
218
218
|
/**
|
|
219
|
-
* @deprecated Use the
|
|
219
|
+
* @deprecated Use the openstack.compute.FloatingIpAssociate resource instead
|
|
220
220
|
*/
|
|
221
221
|
floatingIp?: pulumi.Input<string>;
|
|
222
222
|
mac?: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -194,7 +194,7 @@ export declare namespace compute {
|
|
|
194
194
|
fixedIpV4: string;
|
|
195
195
|
fixedIpV6: string;
|
|
196
196
|
/**
|
|
197
|
-
* @deprecated Use the
|
|
197
|
+
* @deprecated Use the openstack.compute.FloatingIpAssociate resource instead
|
|
198
198
|
*/
|
|
199
199
|
floatingIp: string;
|
|
200
200
|
mac: string;
|