Skip to content

Commit 6fa2ccb

Browse files
committed
Merge branch 'master' into md-javascript-client-sdk
# Conflicts: # .gitignore
2 parents 2060834 + b9b1313 commit 6fa2ccb

15 files changed

+33
-33
lines changed

cloud_client/docs/DatabaseInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Name | Type | Description | Notes
1010
**id** | **String** | | [optional]
1111
**createdBy** | **String** | | [optional]
1212
**defaultComputeName** | **String** | | [optional]
13-
**status** | **String** | | [optional]
13+
**state** | **String** | | [optional]
1414

1515

cloud_client/src/model/ComputeInfoProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The ComputeInfoProtocol model module.
1818
* @module model/ComputeInfoProtocol
19-
* @version 1.3.1
19+
* @version 1.3.2
2020
*/
2121
class ComputeInfoProtocol {
2222
/**

cloud_client/src/model/CreateComputeRequestProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The CreateComputeRequestProtocol model module.
1818
* @module model/CreateComputeRequestProtocol
19-
* @version 1.3.1
19+
* @version 1.3.2
2020
*/
2121
class CreateComputeRequestProtocol {
2222
/**

cloud_client/src/model/CreateComputeResponseProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
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 ComputeInfoProtocol from './ComputeInfoProtocol';
1717
/**
1818
* The CreateComputeResponseProtocol model module.
1919
* @module model/CreateComputeResponseProtocol
20-
* @version 1.3.1
20+
* @version 1.3.2
2121
*/
2222
class CreateComputeResponseProtocol {
2323
/**

cloud_client/src/model/CreateUserRequestProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The CreateUserRequestProtocol model module.
1818
* @module model/CreateUserRequestProtocol
19-
* @version 1.3.1
19+
* @version 1.3.2
2020
*/
2121
class CreateUserRequestProtocol {
2222
/**

cloud_client/src/model/CreateUserResponseProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
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 UserInfoProtocol from './UserInfoProtocol';
1717
/**
1818
* The CreateUserResponseProtocol model module.
1919
* @module model/CreateUserResponseProtocol
20-
* @version 1.3.1
20+
* @version 1.3.2
2121
*/
2222
class CreateUserResponseProtocol {
2323
/**

cloud_client/src/model/DatabaseInfo.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The DatabaseInfo model module.
1818
* @module model/DatabaseInfo
19-
* @version 1.3.1
19+
* @version 1.3.2
2020
*/
2121
class DatabaseInfo {
2222
/**
@@ -65,8 +65,8 @@ class DatabaseInfo {
6565
if (data.hasOwnProperty('default_compute_name')) {
6666
obj['default_compute_name'] = ApiClient.convertToType(data['default_compute_name'], 'String');
6767
}
68-
if (data.hasOwnProperty('status')) {
69-
obj['status'] = ApiClient.convertToType(data['status'], 'String');
68+
if (data.hasOwnProperty('state')) {
69+
obj['state'] = ApiClient.convertToType(data['state'], 'String');
7070
}
7171
}
7272
return obj;
@@ -106,9 +106,9 @@ DatabaseInfo.prototype['created_by'] = undefined;
106106
DatabaseInfo.prototype['default_compute_name'] = undefined;
107107

108108
/**
109-
* @member {String} status
109+
* @member {String} state
110110
*/
111-
DatabaseInfo.prototype['status'] = undefined;
111+
DatabaseInfo.prototype['state'] = undefined;
112112

113113

114114

cloud_client/src/model/DeleteComputeRequestProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The DeleteComputeRequestProtocol model module.
1818
* @module model/DeleteComputeRequestProtocol
19-
* @version 1.3.1
19+
* @version 1.3.2
2020
*/
2121
class DeleteComputeRequestProtocol {
2222
/**

cloud_client/src/model/DeleteComputeResponseProtocol.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
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 DeleteComputeStatus from './DeleteComputeStatus';
1717
/**
1818
* The DeleteComputeResponseProtocol model module.
1919
* @module model/DeleteComputeResponseProtocol
20-
* @version 1.3.1
20+
* @version 1.3.2
2121
*/
2222
class DeleteComputeResponseProtocol {
2323
/**

cloud_client/src/model/DeleteComputeStatus.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RAI Cloud SDK
33
* This is a Client SDK for RAI Cloud
44
*
5-
* The version of the OpenAPI document: 1.3.1
5+
* The version of the OpenAPI document: 1.3.2
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The DeleteComputeStatus model module.
1818
* @module model/DeleteComputeStatus
19-
* @version 1.3.1
19+
* @version 1.3.2
2020
*/
2121
class DeleteComputeStatus {
2222
/**

0 commit comments

Comments
 (0)