@pulumiverse/scaleway 1.37.0 → 1.38.0-alpha.1763458863
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/cockpitGrafanaUser.d.ts +0 -22
- package/cockpitGrafanaUser.js +0 -22
- package/cockpitGrafanaUser.js.map +1 -1
- package/edgeServicesDnsStage.d.ts +8 -0
- package/edgeServicesDnsStage.js +2 -0
- package/edgeServicesDnsStage.js.map +1 -1
- package/getK8sVersion.d.ts +1 -0
- package/getK8sVersion.js.map +1 -1
- package/getLoadbalancer.d.ts +1 -0
- package/getLoadbalancer.js.map +1 -1
- package/instance/volume.d.ts +6 -0
- package/instance/volume.js.map +1 -1
- package/instanceVolume.d.ts +6 -0
- package/instanceVolume.js.map +1 -1
- package/iot/device.d.ts +0 -23
- package/iot/device.js +0 -23
- package/iot/device.js.map +1 -1
- package/iotDevice.d.ts +0 -23
- package/iotDevice.js +0 -23
- package/iotDevice.js.map +1 -1
- package/kubernetes/cluster.d.ts +2 -2
- package/kubernetes/cluster.js +2 -2
- package/kubernetes/getVersion.d.ts +1 -0
- package/kubernetes/getVersion.js.map +1 -1
- package/kubernetesCluster.d.ts +2 -2
- package/kubernetesCluster.js +2 -2
- package/loadbalancer.d.ts +16 -1
- package/loadbalancer.js +2 -0
- package/loadbalancer.js.map +1 -1
- package/loadbalancers/getLoadBalancer.d.ts +1 -0
- package/loadbalancers/getLoadBalancer.js.map +1 -1
- package/loadbalancers/index.d.ts +3 -0
- package/loadbalancers/index.js +6 -1
- package/loadbalancers/index.js.map +1 -1
- package/loadbalancers/loadBalancer.d.ts +16 -1
- package/loadbalancers/loadBalancer.js +2 -0
- package/loadbalancers/loadBalancer.js.map +1 -1
- package/loadbalancers/privateNetwork.d.ts +167 -0
- package/loadbalancers/privateNetwork.js +116 -0
- package/loadbalancers/privateNetwork.js.map +1 -0
- package/observability/getGrafana.d.ts +35 -0
- package/observability/getGrafana.js +24 -0
- package/observability/getGrafana.js.map +1 -0
- package/observability/grafanaUser.d.ts +0 -22
- package/observability/grafanaUser.js +0 -22
- package/observability/grafanaUser.js.map +1 -1
- package/observability/index.d.ts +3 -0
- package/observability/index.js +4 -1
- package/observability/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +6 -4
- package/types/output.d.ts +6 -4
package/types/input.d.ts
CHANGED
|
@@ -1070,13 +1070,14 @@ export interface InstanceServerRootVolume {
|
|
|
1070
1070
|
*/
|
|
1071
1071
|
deleteOnTermination?: pulumi.Input<boolean>;
|
|
1072
1072
|
/**
|
|
1073
|
-
*
|
|
1073
|
+
* Name of the root volume.
|
|
1074
1074
|
*/
|
|
1075
1075
|
name?: pulumi.Input<string>;
|
|
1076
1076
|
/**
|
|
1077
1077
|
* Choose IOPS of your sbs volume, has to be used with `sbsVolume` for root volume type.
|
|
1078
1078
|
*
|
|
1079
|
-
* > **Important:**
|
|
1079
|
+
* > **Important:** It is not possible to change `root_volume.size_in_gb` for local volumes (`lSsd`). Changes to this field will recreate the server.
|
|
1080
|
+
* It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
|
|
1080
1081
|
*/
|
|
1081
1082
|
sbsIops?: pulumi.Input<number>;
|
|
1082
1083
|
/**
|
|
@@ -3843,13 +3844,14 @@ export declare namespace instance {
|
|
|
3843
3844
|
*/
|
|
3844
3845
|
deleteOnTermination?: pulumi.Input<boolean>;
|
|
3845
3846
|
/**
|
|
3846
|
-
*
|
|
3847
|
+
* Name of the root volume.
|
|
3847
3848
|
*/
|
|
3848
3849
|
name?: pulumi.Input<string>;
|
|
3849
3850
|
/**
|
|
3850
3851
|
* Choose IOPS of your sbs volume, has to be used with `sbsVolume` for root volume type.
|
|
3851
3852
|
*
|
|
3852
|
-
* > **Important:**
|
|
3853
|
+
* > **Important:** It is not possible to change `root_volume.size_in_gb` for local volumes (`lSsd`). Changes to this field will recreate the server.
|
|
3854
|
+
* It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
|
|
3853
3855
|
*/
|
|
3854
3856
|
sbsIops?: pulumi.Input<number>;
|
|
3855
3857
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -3377,13 +3377,14 @@ export interface InstanceServerRootVolume {
|
|
|
3377
3377
|
*/
|
|
3378
3378
|
deleteOnTermination?: boolean;
|
|
3379
3379
|
/**
|
|
3380
|
-
*
|
|
3380
|
+
* Name of the root volume.
|
|
3381
3381
|
*/
|
|
3382
3382
|
name: string;
|
|
3383
3383
|
/**
|
|
3384
3384
|
* Choose IOPS of your sbs volume, has to be used with `sbsVolume` for root volume type.
|
|
3385
3385
|
*
|
|
3386
|
-
* > **Important:**
|
|
3386
|
+
* > **Important:** It is not possible to change `root_volume.size_in_gb` for local volumes (`lSsd`). Changes to this field will recreate the server.
|
|
3387
|
+
* It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
|
|
3387
3388
|
*/
|
|
3388
3389
|
sbsIops: number;
|
|
3389
3390
|
/**
|
|
@@ -7277,13 +7278,14 @@ export declare namespace instance {
|
|
|
7277
7278
|
*/
|
|
7278
7279
|
deleteOnTermination?: boolean;
|
|
7279
7280
|
/**
|
|
7280
|
-
*
|
|
7281
|
+
* Name of the root volume.
|
|
7281
7282
|
*/
|
|
7282
7283
|
name: string;
|
|
7283
7284
|
/**
|
|
7284
7285
|
* Choose IOPS of your sbs volume, has to be used with `sbsVolume` for root volume type.
|
|
7285
7286
|
*
|
|
7286
|
-
* > **Important:**
|
|
7287
|
+
* > **Important:** It is not possible to change `root_volume.size_in_gb` for local volumes (`lSsd`). Changes to this field will recreate the server.
|
|
7288
|
+
* It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
|
|
7287
7289
|
*/
|
|
7288
7290
|
sbsIops: number;
|
|
7289
7291
|
/**
|