Skip to content

Commit

Permalink
liblab SDK update for version v0.9.0-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
seniorquico committed Oct 1, 2024
1 parent 2be63b7 commit 6fc6c9e
Show file tree
Hide file tree
Showing 53 changed files with 325 additions and 405 deletions.
24 changes: 11 additions & 13 deletions .manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"liblabVersion": "2.4.1",
"date": "2024-09-25T03:53:32.630Z",
"liblabVersion": "2.5.0",
"date": "2024-10-01T05:14:01.395Z",
"config": {
"apiId": 1172,
"apiId": 1228,
"sdkName": "salad-cloud-sdk",
"sdkVersion": "0.9.0-alpha.4",
"sdkVersion": "0.9.0-alpha.5",
"liblabVersion": "2",
"deliveryMethods": ["zip"],
"languages": ["typescript"],
Expand All @@ -26,15 +26,15 @@
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-dotnet",
"ignoreFiles": [".gitignore", "./LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.3",
"sdkVersion": "0.9.0-alpha.4",
"targetBranch": "main"
},
"go": {
"goModuleName": "github.com/saladtechnologies/salad-cloud-sdk-go",
"githubRepoName": "salad-cloud-sdk-go",
"ignoreFiles": [".gitignore", "./LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.3",
"sdkVersion": "0.9.0-alpha.4",
"targetBranch": "main"
},
"java": {
Expand All @@ -58,7 +58,7 @@
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-java",
"ignoreFiles": [".gitignore", "./LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.4",
"sdkVersion": "0.9.0-alpha.5",
"targetBranch": "main"
},
"python": {
Expand Down Expand Up @@ -101,7 +101,7 @@
"githubRepoName": "salad-cloud-sdk-python",
"ignoreFiles": [".gitignore", "./LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.3",
"sdkVersion": "0.9.0-alpha.4",
"targetBranch": "main"
},
"terraform": {
Expand All @@ -112,7 +112,7 @@
"providerSchemaConfig": {
"authTokenKey": "api_key"
},
"providerVersion": "0.9.0-alpha.3",
"providerVersion": "0.9.0-alpha.1",
"githubRepoName": "terraform-provider-salad-cloud",
"ignoreFiles": [".gitignore", "./LICENSE"],
"liblabVersion": "2",
Expand All @@ -138,7 +138,7 @@
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-javascript",
"ignoreFiles": [".gitignore", "./LICENSE"],
"liblabVersion": "2",
"sdkVersion": "0.9.0-alpha.4",
"sdkVersion": "0.9.0-alpha.5",
"targetBranch": "main",
"generateEnumAs": "enum"
}
Expand Down Expand Up @@ -233,7 +233,7 @@
}
],
"apiName": "SaladCloud API",
"apiVersion": "0.9.0-alpha.3",
"apiVersion": "0.9.0-alpha.4",
"authentication": {
"apiKey": {
"header": "Salad-Api-Key"
Expand Down Expand Up @@ -420,7 +420,6 @@
"src/services/queues/models/queue-job-event.ts",
"src/services/queues/models/queue-job-event-action.ts",
"src/services/quotas/models/container-groups-quotas.ts",
"src/services/quotas/models/recipes-quotas.ts",
"src/services/inference-endpoints/models/inference-endpoint-job-status.ts",
"src/services/inference-endpoints/models/inference-endpoint-job-event.ts",
"src/services/inference-endpoints/models/inference-endpoint-job-event-action.ts",
Expand Down Expand Up @@ -539,7 +538,6 @@
"documentation/models/UpdateContainerGroupNetworking.md",
"documentation/models/WorkloadError.md",
"documentation/models/ContainerGroupsQuotas.md",
"documentation/models/RecipesQuotas.md",
"documentation/models/GpuClass.md",
"documentation/models/GpuClassPrice.md",
"src/http/handlers/request-validation-handler.ts",
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# SaladCloudSdk TypeScript SDK 0.9.0-alpha.4
# SaladCloudSdk TypeScript SDK 0.9.0-alpha.5

Welcome to the SaladCloudSdk SDK documentation. This guide will help you get started with integrating and using the SaladCloudSdk SDK in your project.

## Versions

- API version: `0.9.0-alpha.3`
- SDK version: `0.9.0-alpha.4`
- API version: `0.9.0-alpha.4`
- SDK version: `0.9.0-alpha.5`

## About the API

Expand Down Expand Up @@ -79,7 +79,7 @@ import { SaladCloudSdk } from '@saladtechnologies-oss/salad-cloud-sdk';
apiKey: 'YOUR_API_KEY',
});

const { data } = await saladCloudSdk.quotas.getQuotas('o110sou');
const { data } = await saladCloudSdk.quotas.getQuotas('whf3imgjjp6z8');

console.log(data);
})();
Expand Down Expand Up @@ -163,7 +163,6 @@ The SDK includes several models that represent the data structures used in API r
| [WorkloadError](documentation/models/WorkloadError.md) | Represents a workload error |
| [QueueJobEvent](documentation/models/QueueJobEvent.md) | Represents an event for queue job |
| [ContainerGroupsQuotas](documentation/models/ContainerGroupsQuotas.md) | |
| [RecipesQuotas](documentation/models/RecipesQuotas.md) | |
| [InferenceEndpointJobEvent](documentation/models/InferenceEndpointJobEvent.md) | Represents an event for inference endpoint job |
| [GpuClass](documentation/models/GpuClass.md) | Represents a GPU Class |
| [GpuClassPrice](documentation/models/GpuClassPrice.md) | Represents the price of a GPU class for a given container group priority |
Expand Down
1 change: 0 additions & 1 deletion documentation/models/Quotas.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ Represents the organization quotas
| Name | Type | Required | Description |
| :-------------------- | :-------------------- | :------- | :------------------------------------- |
| containerGroupsQuotas | ContainerGroupsQuotas || |
| recipesQuotas | RecipesQuotas || |
| createTime | string || The time the resource was created |
| updateTime | string || The time the resource was last updated |
8 changes: 0 additions & 8 deletions documentation/models/RecipesQuotas.md

This file was deleted.

Loading

0 comments on commit 6fc6c9e

Please sign in to comment.