Skip to content

Commit f64159b

Browse files
committed
Support cleaned-up /compute API
1 parent a903fb0 commit f64159b

File tree

102 files changed

+419
-449
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+419
-449
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ DelveClientSdk - JavaScript client for delve_client_sdk
44
This is a Client SDK for Delve API
55
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
66

7-
- API version: 1.0.10
8-
- Package version: 1.0.10
7+
- API version: 1.1.0
8+
- Package version: 1.1.0
99
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
1010
For more information, please visit [https://www.relational.ai/support](https://www.relational.ai/support)
1111

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
# RaiCloudSdk.ComputeData
1+
# RaiCloudSdk.ComputeInfoProtocol
22

33
## Properties
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**id** | **String** | | [optional]
8-
**getEtag** | **String** | | [optional]
97
**accountName** | **String** | | [optional]
10-
**computeId** | **String** | | [optional]
8+
**id** | **String** | | [optional]
119
**createdBy** | **String** | | [optional]
12-
**computeName** | **String** | | [optional]
13-
**computeSize** | **String** | | [optional]
14-
**computeRegion** | **String** | | [optional]
10+
**name** | **String** | | [optional]
11+
**size** | **String** | | [optional]
12+
**region** | **String** | | [optional]
1513
**infrastructure** | **String** | | [optional]
16-
**computeState** | **String** | | [optional]
14+
**state** | **String** | | [optional]
1715
**requestedOn** | **String** | | [optional]
1816
**createdOn** | **String** | | [optional]
1917
**deletedOn** | **String** | | [optional]

docs/CreateComputeRequestProtocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**region** | **String** | | [optional]
8-
**displayName** | **String** | | [optional]
8+
**name** | **String** | | [optional]
99
**size** | **String** | | [optional]
1010
**dryrun** | **Boolean** | | [optional]
1111

docs/CreateComputeResponseProtocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**computeData** | [**ComputeData**](ComputeData.md) | | [optional]
7+
**compute** | [**ComputeInfoProtocol**](ComputeInfoProtocol.md) | | [optional]
88

99

docs/DeleteComputeRequestProtocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**computeName** | **String** | | [optional]
7+
**name** | **String** | | [optional]
88
**dryrun** | **Boolean** | | [optional]
99

1010

docs/DeleteComputeResponseProtocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**deleteStatus** | [**DeleteComputeStatus**](DeleteComputeStatus.md) | | [optional]
7+
**status** | [**DeleteComputeStatus**](DeleteComputeStatus.md) | | [optional]
88

99

docs/DeleteComputeStatus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**computeName** | **String** | | [optional]
8-
**status** | **String** | | [optional]
7+
**name** | **String** | | [optional]
8+
**state** | **String** | | [optional]
99
**message** | **String** | | [optional]
1010

1111

docs/ListComputesResponseProtocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**computeRequestsList** | [**[ComputeData]**](ComputeData.md) | | [optional]
7+
**computes** | [**[ComputeInfoProtocol]**](ComputeInfoProtocol.md) | | [optional]
88

99

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "delve_client_sdk",
3-
"version": "1.0.10",
3+
"version": "1.1.0",
44
"description": "This_is_a_Client_SDK_for_Delve_API",
55
"license": "Apache 2.0",
66
"main": "dist/index.js",

src/ApiClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Delve Client SDK
33
* This is a Client SDK for Delve API
44
*
5-
* The version of the OpenAPI document: 1.0.10
5+
* The version of the OpenAPI document: 1.1.0
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@ import querystring from "querystring";
1717

1818
/**
1919
* @module ApiClient
20-
* @version 1.0.10
20+
* @version 1.1.0
2121
*/
2222

2323
/**

0 commit comments

Comments
 (0)