yellowgrid-api-ts 3.2.25 → 3.2.26
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/api.ts +3 -1
- package/dist/api.d.ts +2 -0
- package/dist/api.js +3 -1
- package/docs/Class3CXInstallationsApi.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -14691,7 +14691,9 @@ export type PostFailoverInstanceTypeEnum = typeof PostFailoverInstanceTypeEnum[k
|
|
|
14691
14691
|
export const PostResizeInstanceSizeEnum = {
|
|
14692
14692
|
D24: 'd2-4',
|
|
14693
14693
|
D28: 'd2-8',
|
|
14694
|
-
B230: 'b2-30'
|
|
14694
|
+
B230: 'b2-30',
|
|
14695
|
+
S2vcpu4gb: 's-2vcpu-4gb',
|
|
14696
|
+
S4vcpu8gb: 's-4vcpu-8gb'
|
|
14695
14697
|
} as const;
|
|
14696
14698
|
export type PostResizeInstanceSizeEnum = typeof PostResizeInstanceSizeEnum[keyof typeof PostResizeInstanceSizeEnum];
|
|
14697
14699
|
|
package/dist/api.d.ts
CHANGED
|
@@ -12030,6 +12030,8 @@ export declare const PostResizeInstanceSizeEnum: {
|
|
|
12030
12030
|
readonly D24: "d2-4";
|
|
12031
12031
|
readonly D28: "d2-8";
|
|
12032
12032
|
readonly B230: "b2-30";
|
|
12033
|
+
readonly S2vcpu4gb: "s-2vcpu-4gb";
|
|
12034
|
+
readonly S4vcpu8gb: "s-4vcpu-8gb";
|
|
12033
12035
|
};
|
|
12034
12036
|
export type PostResizeInstanceSizeEnum = typeof PostResizeInstanceSizeEnum[keyof typeof PostResizeInstanceSizeEnum];
|
|
12035
12037
|
/**
|
package/dist/api.js
CHANGED
|
@@ -6113,7 +6113,9 @@ exports.PostFailoverInstanceTypeEnum = {
|
|
|
6113
6113
|
exports.PostResizeInstanceSizeEnum = {
|
|
6114
6114
|
D24: 'd2-4',
|
|
6115
6115
|
D28: 'd2-8',
|
|
6116
|
-
B230: 'b2-30'
|
|
6116
|
+
B230: 'b2-30',
|
|
6117
|
+
S2vcpu4gb: 's-2vcpu-4gb',
|
|
6118
|
+
S4vcpu8gb: 's-4vcpu-8gb'
|
|
6117
6119
|
};
|
|
6118
6120
|
/**
|
|
6119
6121
|
* Class3CXIntegrationsApi - axios parameter creator
|
|
@@ -441,7 +441,7 @@ const configuration = new Configuration();
|
|
|
441
441
|
const apiInstance = new Class3CXInstallationsApi(configuration);
|
|
442
442
|
|
|
443
443
|
let instanceId: string; //Instance ID (default to undefined)
|
|
444
|
-
let size: 'd2-4' | 'd2-8' | 'b2-30'; //Instance Spec (default to undefined)
|
|
444
|
+
let size: 'd2-4' | 'd2-8' | 'b2-30' | 's-2vcpu-4gb' | 's-4vcpu-8gb'; //Instance Spec (default to undefined)
|
|
445
445
|
let schedule: string; //Scheduled Task (Date & Time) (optional) (default to undefined)
|
|
446
446
|
|
|
447
447
|
const { status, data } = await apiInstance.postResizeInstance(
|
|
@@ -456,7 +456,7 @@ const { status, data } = await apiInstance.postResizeInstance(
|
|
|
456
456
|
|Name | Type | Description | Notes|
|
|
457
457
|
|------------- | ------------- | ------------- | -------------|
|
|
458
458
|
| **instanceId** | [**string**] | Instance ID | defaults to undefined|
|
|
459
|
-
| **size** | [**'d2-4' | 'd2-8' | 'b2-30'**]**Array<'d2-4' | 'd2-8' | 'b2-30'>** | Instance Spec | defaults to undefined|
|
|
459
|
+
| **size** | [**'d2-4' | 'd2-8' | 'b2-30' | 's-2vcpu-4gb' | 's-4vcpu-8gb'**]**Array<'d2-4' | 'd2-8' | 'b2-30' | 's-2vcpu-4gb' | 's-4vcpu-8gb'>** | Instance Spec | defaults to undefined|
|
|
460
460
|
| **schedule** | [**string**] | Scheduled Task (Date & Time) | (optional) defaults to undefined|
|
|
461
461
|
|
|
462
462
|
|