@volcengine/pulumi-volcenginecc 0.0.49 → 0.0.51
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/ecs/getInstance.d.ts +1 -0
- package/ecs/getInstance.d.ts.map +1 -1
- package/ecs/getInstance.js.map +1 -1
- package/ecs/instance.d.ts +15 -0
- package/ecs/instance.d.ts.map +1 -1
- package/ecs/instance.js +5 -0
- package/ecs/instance.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +11 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +22 -0
- package/types/output.d.ts.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -10505,6 +10505,17 @@ export declare namespace ecs {
|
|
|
10505
10505
|
*/
|
|
10506
10506
|
threadsPerCore: number;
|
|
10507
10507
|
}
|
|
10508
|
+
interface GetInstanceCpuOptions {
|
|
10509
|
+
/**
|
|
10510
|
+
* CPU topology mode. Available values:
|
|
10511
|
+
* - ContinuousCoreToHTMapping: Continuous HT mode
|
|
10512
|
+
* - DiscreteCoreToHTMapping (default): Discrete HT mode
|
|
10513
|
+
*
|
|
10514
|
+
* **Note:**
|
|
10515
|
+
* This feature is currently in invitation-only testing. To use it, please contact your account manager to apply.
|
|
10516
|
+
*/
|
|
10517
|
+
topologyType: string;
|
|
10518
|
+
}
|
|
10508
10519
|
interface GetInstanceDataVolume {
|
|
10509
10520
|
/**
|
|
10510
10521
|
* Whether the attached resources are deleted along with the instance.
|
|
@@ -11333,6 +11344,17 @@ export declare namespace ecs {
|
|
|
11333
11344
|
*/
|
|
11334
11345
|
threadsPerCore: number;
|
|
11335
11346
|
}
|
|
11347
|
+
interface InstanceCpuOptions {
|
|
11348
|
+
/**
|
|
11349
|
+
* CPU topology mode. Available values:
|
|
11350
|
+
* - ContinuousCoreToHTMapping: Continuous HT mode
|
|
11351
|
+
* - DiscreteCoreToHTMapping (default): Discrete HT mode
|
|
11352
|
+
*
|
|
11353
|
+
* **Note:**
|
|
11354
|
+
* This feature is currently in invitation-only testing. To use it, please contact your account manager to apply.
|
|
11355
|
+
*/
|
|
11356
|
+
topologyType: string;
|
|
11357
|
+
}
|
|
11336
11358
|
interface InstanceDataVolume {
|
|
11337
11359
|
/**
|
|
11338
11360
|
* Whether the attached resources are deleted along with the instance.
|