Skip to content

Commit

Permalink
liblab SDK update for version v0.9.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seniorquico committed Sep 1, 2024
1 parent edd4813 commit 7c4529f
Show file tree
Hide file tree
Showing 57 changed files with 608 additions and 589 deletions.
17 changes: 8 additions & 9 deletions .manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"liblabVersion": "2.1.30",
"date": "2024-08-31T20:15:31.053Z",
"date": "2024-09-01T16:26:45.727Z",
"config": {
"apiId": 1094,
"sdkName": "salad-cloud-sdk",
Expand All @@ -24,15 +24,15 @@
],
"githubRepoName": "salad-cloud-sdk-dotnet",
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-dotnet",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.1",
"targetBranch": "main"
},
"go": {
"goModuleName": "github.com/saladtechnologies/salad-cloud-sdk-go",
"githubRepoName": "salad-cloud-sdk-go",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.1",
"targetBranch": "main"
Expand All @@ -56,7 +56,7 @@
],
"githubRepoName": "salad-cloud-sdk-java",
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-java",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.1",
"targetBranch": "main"
Expand Down Expand Up @@ -99,7 +99,7 @@
}
],
"githubRepoName": "salad-cloud-sdk-python",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.1",
"targetBranch": "main"
Expand All @@ -114,7 +114,7 @@
},
"providerVersion": "0.9.0-alpha.1",
"githubRepoName": "terraform-provider-salad-cloud",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"liblabVersion": "2",
"targetBranch": "main"
},
Expand All @@ -136,7 +136,7 @@
],
"githubRepoName": "salad-cloud-sdk-javascript",
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-javascript",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.1",
"targetBranch": "main"
Expand Down Expand Up @@ -284,7 +284,7 @@
],
"githubRepoName": "salad-cloud-sdk-javascript",
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-javascript",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"targetBranch": "main",
"typescriptVersion": "5.3.3",
"zodVersion": "3.22.0",
Expand Down Expand Up @@ -423,7 +423,6 @@
"src/services/inference-endpoints/models/inference-endpoint-job-event-action.ts",
"src/services/organization-data/models/gpu-class.ts",
"src/services/organization-data/models/gpu-class-price.ts",
".gitignore",
"src/services/base-service.ts",
"src/services/container-groups/container-groups.ts",
"src/services/workload-errors/workload-errors.ts",
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ import { SaladCloudSdk } from '@saladtechnologies-oss/salad-cloud-sdk';
apiKey: 'YOUR_API_KEY',
});

const { data } = await saladCloudSdk.quotas.getQuotas('y-7yhh5v70xusg163gdfs9vma6wkyd2rcvosdiwny-k');
const { data } = await saladCloudSdk.quotas.getQuotas('o110sou');

console.log(data);
})();
Expand Down Expand Up @@ -121,9 +121,9 @@ The SDK includes several models that represent the data structures used in API r
| [ContainerGroupInstance](documentation/models/ContainerGroupInstance.md) | Represents the details of a single container group instance |
| [WorkloadErrorList](documentation/models/WorkloadErrorList.md) | Represents a list of workload errors |
| [QueueList](documentation/models/QueueList.md) | Represents a list of queues |
| [CreateQueue](documentation/models/CreateQueue.md) | Represents a request to create a queue |
| [Queue](documentation/models/Queue.md) | Represents a queue |
| [UpdateQueue](documentation/models/UpdateQueue.md) | Represents a request to update a queue |
| [CreateQueue](documentation/models/CreateQueue.md) | Represents a request to create a new queue. |
| [Queue](documentation/models/Queue.md) | Represents a queue. |
| [UpdateQueue](documentation/models/UpdateQueue.md) | Represents a request to update an existing queue. |
| [QueueJobList](documentation/models/QueueJobList.md) | Represents a list of queue jobs |
| [CreateQueueJob](documentation/models/CreateQueueJob.md) | Represents a request to create a queue job |
| [QueueJob](documentation/models/QueueJob.md) | Represents a queue job |
Expand Down
12 changes: 6 additions & 6 deletions documentation/models/CreateQueue.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# CreateQueue

Represents a request to create a queue
Represents a request to create a new queue.

**Properties**

| Name | Type | Required | Description |
| :---------- | :----- | :------- | :-------------- |
| name | string || |
| displayName | string || |
| description | string || The description |
| Name | Type | Required | Description |
| :---------- | :----- | :------- | :------------------------------------------------------------------------------------------- |
| name | string || The queue name. This must be unique within the project. |
| displayName | string || The display name. This may be used as a more human-readable name. |
| description | string || The description. This may be used as a space for notes or other information about the queue. |
20 changes: 10 additions & 10 deletions documentation/models/Queue.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Queue

Represents a queue
Represents a queue.

**Properties**

| Name | Type | Required | Description |
| :-------------- | :--------------- | :------- | :-------------- |
| id | string || |
| name | string || |
| displayName | string || |
| containerGroups | ContainerGroup[] || |
| createTime | string || |
| updateTime | string || |
| description | string || The description |
| Name | Type | Required | Description |
| :-------------- | :--------------- | :------- | :-------------------------------------------------------------------------------------------- |
| id | string || The queue identifier. This is automatically generated and assigned when the queue is created. |
| name | string || The queue name. This must be unique within the project. |
| displayName | string || The display name. This may be used as a more human-readable name. |
| containerGroups | ContainerGroup[] || |
| createTime | string || The date and time the queue was created. |
| updateTime | string || The date and time the queue was last updated. |
| description | string || The description. This may be used as a space for notes or other information about the queue. |
6 changes: 3 additions & 3 deletions documentation/models/QueueList.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Represents a list of queues

**Properties**

| Name | Type | Required | Description |
| :---- | :------ | :------- | :---------- |
| items | Queue[] || |
| Name | Type | Required | Description |
| :---- | :------ | :------- | :------------------ |
| items | Queue[] || The list of queues. |
10 changes: 5 additions & 5 deletions documentation/models/UpdateQueue.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# UpdateQueue

Represents a request to update a queue
Represents a request to update an existing queue.

**Properties**

| Name | Type | Required | Description |
| :---------- | :----- | :------- | :-------------- |
| displayName | string || |
| description | string || The description |
| Name | Type | Required | Description |
| :---------- | :----- | :------- | :------------------------------------------------------------------------------------------- |
| displayName | string || The display name. This may be used as a more human-readable name. |
| description | string || The description. This may be used as a space for notes or other information about the queue. |
Loading

0 comments on commit 7c4529f

Please sign in to comment.