@pulumiverse/scaleway 1.12.0 → 1.12.1
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/databaseInstance.d.ts +2 -2
- package/loadbalancerBackend.d.ts +3 -3
- package/objectBucket.d.ts +3 -3
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/types/input.d.ts +4 -4
- package/types/output.d.ts +4 -4
package/databaseInstance.d.ts
CHANGED
|
@@ -184,7 +184,7 @@ export declare class DatabaseInstance extends pulumi.CustomResource {
|
|
|
184
184
|
/**
|
|
185
185
|
* (Deprecated) The IP of the Database Instance.
|
|
186
186
|
*
|
|
187
|
-
* @deprecated Please use the
|
|
187
|
+
* @deprecated Please use the privateNetwork or the loadBalancer attribute
|
|
188
188
|
*/
|
|
189
189
|
readonly endpointIp: pulumi.Output<string>;
|
|
190
190
|
/**
|
|
@@ -320,7 +320,7 @@ export interface DatabaseInstanceState {
|
|
|
320
320
|
/**
|
|
321
321
|
* (Deprecated) The IP of the Database Instance.
|
|
322
322
|
*
|
|
323
|
-
* @deprecated Please use the
|
|
323
|
+
* @deprecated Please use the privateNetwork or the loadBalancer attribute
|
|
324
324
|
*/
|
|
325
325
|
endpointIp?: pulumi.Input<string>;
|
|
326
326
|
/**
|
package/loadbalancerBackend.d.ts
CHANGED
|
@@ -156,7 +156,7 @@ export declare class LoadbalancerBackend extends pulumi.CustomResource {
|
|
|
156
156
|
/**
|
|
157
157
|
* DEPRECATED please use `proxyProtocol` instead - (Default: `false`) Enables PROXY protocol version 2.
|
|
158
158
|
*
|
|
159
|
-
* @deprecated Please use
|
|
159
|
+
* @deprecated Please use proxyProtocol instead
|
|
160
160
|
*/
|
|
161
161
|
readonly sendProxyV2: pulumi.Output<boolean>;
|
|
162
162
|
/**
|
|
@@ -294,7 +294,7 @@ export interface LoadbalancerBackendState {
|
|
|
294
294
|
/**
|
|
295
295
|
* DEPRECATED please use `proxyProtocol` instead - (Default: `false`) Enables PROXY protocol version 2.
|
|
296
296
|
*
|
|
297
|
-
* @deprecated Please use
|
|
297
|
+
* @deprecated Please use proxyProtocol instead
|
|
298
298
|
*/
|
|
299
299
|
sendProxyV2?: pulumi.Input<boolean>;
|
|
300
300
|
/**
|
|
@@ -424,7 +424,7 @@ export interface LoadbalancerBackendArgs {
|
|
|
424
424
|
/**
|
|
425
425
|
* DEPRECATED please use `proxyProtocol` instead - (Default: `false`) Enables PROXY protocol version 2.
|
|
426
426
|
*
|
|
427
|
-
* @deprecated Please use
|
|
427
|
+
* @deprecated Please use proxyProtocol instead
|
|
428
428
|
*/
|
|
429
429
|
sendProxyV2?: pulumi.Input<boolean>;
|
|
430
430
|
/**
|
package/objectBucket.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ export declare class ObjectBucket extends pulumi.CustomResource {
|
|
|
128
128
|
/**
|
|
129
129
|
* (Deprecated) The canned ACL you want to apply to the bucket.
|
|
130
130
|
*
|
|
131
|
-
* @deprecated ACL attribute is deprecated. Please use the resource
|
|
131
|
+
* @deprecated ACL attribute is deprecated. Please use the resource scaleway.ObjectBucketAcl instead.
|
|
132
132
|
*/
|
|
133
133
|
readonly acl: pulumi.Output<string | undefined>;
|
|
134
134
|
/**
|
|
@@ -199,7 +199,7 @@ export interface ObjectBucketState {
|
|
|
199
199
|
/**
|
|
200
200
|
* (Deprecated) The canned ACL you want to apply to the bucket.
|
|
201
201
|
*
|
|
202
|
-
* @deprecated ACL attribute is deprecated. Please use the resource
|
|
202
|
+
* @deprecated ACL attribute is deprecated. Please use the resource scaleway.ObjectBucketAcl instead.
|
|
203
203
|
*/
|
|
204
204
|
acl?: pulumi.Input<string>;
|
|
205
205
|
/**
|
|
@@ -262,7 +262,7 @@ export interface ObjectBucketArgs {
|
|
|
262
262
|
/**
|
|
263
263
|
* (Deprecated) The canned ACL you want to apply to the bucket.
|
|
264
264
|
*
|
|
265
|
-
* @deprecated ACL attribute is deprecated. Please use the resource
|
|
265
|
+
* @deprecated ACL attribute is deprecated. Please use the resource scaleway.ObjectBucketAcl instead.
|
|
266
266
|
*/
|
|
267
267
|
acl?: pulumi.Input<string>;
|
|
268
268
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/scaleway",
|
|
3
|
-
"version": "v1.12.
|
|
3
|
+
"version": "v1.12.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Scaleway cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource scaleway --server github://api.github.com/pulumiverse v1.12.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource scaleway --server github://api.github.com/pulumiverse v1.12.1"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -643,7 +643,7 @@ export interface InstanceSecurityGroupInboundRule {
|
|
|
643
643
|
/**
|
|
644
644
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
645
645
|
*
|
|
646
|
-
* @deprecated Ip address is deprecated. Please use
|
|
646
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
647
647
|
*/
|
|
648
648
|
ip?: pulumi.Input<string>;
|
|
649
649
|
/**
|
|
@@ -671,7 +671,7 @@ export interface InstanceSecurityGroupOutboundRule {
|
|
|
671
671
|
/**
|
|
672
672
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
673
673
|
*
|
|
674
|
-
* @deprecated Ip address is deprecated. Please use
|
|
674
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
675
675
|
*/
|
|
676
676
|
ip?: pulumi.Input<string>;
|
|
677
677
|
/**
|
|
@@ -699,7 +699,7 @@ export interface InstanceSecurityGroupRulesInboundRule {
|
|
|
699
699
|
/**
|
|
700
700
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
701
701
|
*
|
|
702
|
-
* @deprecated Ip address is deprecated. Please use
|
|
702
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
703
703
|
*/
|
|
704
704
|
ip?: pulumi.Input<string>;
|
|
705
705
|
/**
|
|
@@ -727,7 +727,7 @@ export interface InstanceSecurityGroupRulesOutboundRule {
|
|
|
727
727
|
/**
|
|
728
728
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
729
729
|
*
|
|
730
|
-
* @deprecated Ip address is deprecated. Please use
|
|
730
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
731
731
|
*/
|
|
732
732
|
ip?: pulumi.Input<string>;
|
|
733
733
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -2406,7 +2406,7 @@ export interface InstanceSecurityGroupInboundRule {
|
|
|
2406
2406
|
/**
|
|
2407
2407
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
2408
2408
|
*
|
|
2409
|
-
* @deprecated Ip address is deprecated. Please use
|
|
2409
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
2410
2410
|
*/
|
|
2411
2411
|
ip?: string;
|
|
2412
2412
|
/**
|
|
@@ -2434,7 +2434,7 @@ export interface InstanceSecurityGroupOutboundRule {
|
|
|
2434
2434
|
/**
|
|
2435
2435
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
2436
2436
|
*
|
|
2437
|
-
* @deprecated Ip address is deprecated. Please use
|
|
2437
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
2438
2438
|
*/
|
|
2439
2439
|
ip?: string;
|
|
2440
2440
|
/**
|
|
@@ -2462,7 +2462,7 @@ export interface InstanceSecurityGroupRulesInboundRule {
|
|
|
2462
2462
|
/**
|
|
2463
2463
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
2464
2464
|
*
|
|
2465
|
-
* @deprecated Ip address is deprecated. Please use
|
|
2465
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
2466
2466
|
*/
|
|
2467
2467
|
ip?: string;
|
|
2468
2468
|
/**
|
|
@@ -2490,7 +2490,7 @@ export interface InstanceSecurityGroupRulesOutboundRule {
|
|
|
2490
2490
|
/**
|
|
2491
2491
|
* The ip this rule apply to. If no `ip` nor `ipRange` are specified, rule will apply to all ip. Only one of `ip` and `ipRange` should be specified.
|
|
2492
2492
|
*
|
|
2493
|
-
* @deprecated Ip address is deprecated. Please use
|
|
2493
|
+
* @deprecated Ip address is deprecated. Please use ipRange instead
|
|
2494
2494
|
*/
|
|
2495
2495
|
ip?: string;
|
|
2496
2496
|
/**
|