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 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** | [**&#39;d2-4&#39; | &#39;d2-8&#39; | &#39;b2-30&#39;**]**Array<&#39;d2-4&#39; &#124; &#39;d2-8&#39; &#124; &#39;b2-30&#39;>** | Instance Spec | defaults to undefined|
459
+ | **size** | [**&#39;d2-4&#39; | &#39;d2-8&#39; | &#39;b2-30&#39; | &#39;s-2vcpu-4gb&#39; | &#39;s-4vcpu-8gb&#39;**]**Array<&#39;d2-4&#39; &#124; &#39;d2-8&#39; &#124; &#39;b2-30&#39; &#124; &#39;s-2vcpu-4gb&#39; &#124; &#39;s-4vcpu-8gb&#39;>** | Instance Spec | defaults to undefined|
460
460
  | **schedule** | [**string**] | Scheduled Task (Date &amp; Time) | (optional) defaults to undefined|
461
461
 
462
462
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.25",
3
+ "version": "3.2.26",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {