From 2314648af74faf487866d2f0c4d0f76ef8108596 Mon Sep 17 00:00:00 2001 From: SaladTechnologies <415806+seniorquico@users.noreply.github.com> Date: Tue, 17 Sep 2024 04:36:25 +0000 Subject: [PATCH] liblab SDK update for version v0.9.0-alpha.3 --- .manifest.json | 18 +++++++++--------- README.md | 4 ++-- documentation/models/container_status.md | 8 ++++---- documentation/models/container_token.md | 6 +++--- documentation/models/reallocate_container.md | 6 +++--- documentation/services/metadata_service.md | 20 ++++++++++---------- 6 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.manifest.json b/.manifest.json index 801d0e8..96cbaaf 100644 --- a/.manifest.json +++ b/.manifest.json @@ -1,11 +1,11 @@ { - "liblabVersion": "2.3.1", - "date": "2024-09-11T23:34:37.047Z", + "liblabVersion": "2.4.0", + "date": "2024-09-17T04:36:03.787Z", "config": { "language": "go", "apiId": 1126, "sdkName": "salad-cloud-imds-sdk", - "sdkVersion": "0.9.0-alpha.2", + "sdkVersion": "0.9.0-alpha.3", "liblabVersion": "2", "deliveryMethods": ["zip"], "languages": ["go"], @@ -26,7 +26,7 @@ "homepage": "https://github.com/saladtechnologies/salad-cloud-imds-sdk-dotnet", "ignoreFiles": [".gitignore", "./LICENSE"], "liblabVersion": "2", - "sdkVersion": "0.9.0-alpha.2", + "sdkVersion": "0.9.0-alpha.3", "targetBranch": "main" }, "go": { @@ -34,7 +34,7 @@ "githubRepoName": "salad-cloud-imds-sdk-go", "ignoreFiles": [".gitignore", "./LICENSE"], "liblabVersion": "2", - "sdkVersion": "0.9.0-alpha.2", + "sdkVersion": "0.9.0-alpha.3", "targetBranch": "main" }, "java": { @@ -58,7 +58,7 @@ "homepage": "https://github.com/saladtechnologies/salad-cloud-imds-sdk-java", "ignoreFiles": [".gitignore", "./LICENSE"], "liblabVersion": "2", - "sdkVersion": "0.9.0-alpha.2", + "sdkVersion": "0.9.0-alpha.3", "targetBranch": "main" }, "python": { @@ -101,7 +101,7 @@ "githubRepoName": "salad-cloud-imds-sdk-python", "ignoreFiles": [".gitignore", "./LICENSE"], "liblabVersion": "2", - "sdkVersion": "0.9.0-alpha.2", + "sdkVersion": "0.9.0-alpha.3", "targetBranch": "main" }, "typescript": { @@ -124,7 +124,7 @@ "homepage": "https://github.com/saladtechnologies/salad-cloud-imds-sdk-javascript", "ignoreFiles": [".gitignore", "./LICENSE"], "liblabVersion": "2", - "sdkVersion": "0.9.0-alpha.2", + "sdkVersion": "0.9.0-alpha.3", "targetBranch": "main" } }, @@ -156,7 +156,7 @@ }, "multiTenant": true, "hooksLocation": { - "bucketKey": "7096/hooks.zip", + "bucketKey": "7207/hooks.zip", "bucketName": "prod-liblab-api-stack-hooks" }, "includeWatermark": false, diff --git a/README.md b/README.md index c9eda44..800576d 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# SaladCloudImdsSdk Go SDK 0.9.0-alpha.2 +# SaladCloudImdsSdk Go SDK 0.9.0-alpha.3 Welcome to the SaladCloudImdsSdk SDK documentation. This guide will help you get started with integrating and using the SaladCloudImdsSdk SDK in your project. ## Versions - API version: `0.9.0-alpha.1` -- SDK version: `0.9.0-alpha.2` +- SDK version: `0.9.0-alpha.3` ## About the API diff --git a/documentation/models/container_status.md b/documentation/models/container_status.md index 09fba87..bf9ffa7 100644 --- a/documentation/models/container_status.md +++ b/documentation/models/container_status.md @@ -4,7 +4,7 @@ Represents the health statuses of the running container. **Properties** -| Name | Type | Required | Description | -| :------ | :----- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Ready | `bool` | ✅ | `true` if the running container is ready. If a readiness probe is defined, this returns the latest result of the probe. If a readiness probe is not defined but a startup probe is defined, this returns the same value as the `started` property. If neither a readiness probe nor a startup probe are defined, returns `true`. | -| Started | `bool` | ✅ | `true` if the running container is started. If a startup probe is defined, this returns the latest result of the probe. If a startup probe is not defined, returns `true`. | +| Name | Type | Required | Description | +| :------ | :--- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Ready | bool | ✅ | `true` if the running container is ready. If a readiness probe is defined, this returns the latest result of the probe. If a readiness probe is not defined but a startup probe is defined, this returns the same value as the `started` property. If neither a readiness probe nor a startup probe are defined, returns `true`. | +| Started | bool | ✅ | `true` if the running container is started. If a startup probe is defined, this returns the latest result of the probe. If a startup probe is not defined, returns `true`. | diff --git a/documentation/models/container_token.md b/documentation/models/container_token.md index 7eee9e7..7c78a3f 100644 --- a/documentation/models/container_token.md +++ b/documentation/models/container_token.md @@ -4,6 +4,6 @@ Represents the identity token of the running container. **Properties** -| Name | Type | Required | Description | -| :--- | :------- | :------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Jwt | `string` | ✅ | The JSON Web Token (JWT) that may be used to identify the running container. The JWT may be verified using the JSON Web Key Set (JWKS) available at https://matrix-rest-api.salad.com/.well-known/stash-jwks.json. | +| Name | Type | Required | Description | +| :--- | :----- | :------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Jwt | string | ✅ | The JSON Web Token (JWT) that may be used to identify the running container. The JWT may be verified using the JSON Web Key Set (JWKS) available at https://matrix-rest-api.salad.com/.well-known/stash-jwks.json. | diff --git a/documentation/models/reallocate_container.md b/documentation/models/reallocate_container.md index eb3a3cf..b55427c 100644 --- a/documentation/models/reallocate_container.md +++ b/documentation/models/reallocate_container.md @@ -4,6 +4,6 @@ Represents a request to reallocate a container. **Properties** -| Name | Type | Required | Description | -| :----- | :------- | :------- | :---------------------------------------------------------------------------------------------------------------------------- | -| Reason | `string` | ✅ | The reason for reallocating the container. This value is reported to SaladCloud support for quality assurance of Salad Nodes. | +| Name | Type | Required | Description | +| :----- | :----- | :------- | :---------------------------------------------------------------------------------------------------------------------------- | +| Reason | string | ✅ | The reason for reallocating the container. This value is reported to SaladCloud support for quality assurance of Salad Nodes. | diff --git a/documentation/services/metadata_service.md b/documentation/services/metadata_service.md index 01005ca..878929f 100644 --- a/documentation/services/metadata_service.md +++ b/documentation/services/metadata_service.md @@ -17,10 +17,10 @@ Reallocates the running container to another Salad Node **Parameters** -| Name | Type | Required | Description | -| :------------------ | :-------------------- | :------- | :-------------------------- | -| ctx | `Context` | ✅ | Default go language context | -| reallocateContainer | `ReallocateContainer` | ✅ | | +| Name | Type | Required | Description | +| :------------------ | :------------------ | :------- | :-------------------------- | +| ctx | Context | ✅ | Default go language context | +| reallocateContainer | ReallocateContainer | ✅ | | **Return Type** @@ -61,9 +61,9 @@ Gets the health statuses of the running container **Parameters** -| Name | Type | Required | Description | -| :--- | :-------- | :------- | :-------------------------- | -| ctx | `Context` | ✅ | Default go language context | +| Name | Type | Required | Description | +| :--- | :------ | :------- | :-------------------------- | +| ctx | Context | ✅ | Default go language context | **Return Type** @@ -99,9 +99,9 @@ Gets the identity token of the running container **Parameters** -| Name | Type | Required | Description | -| :--- | :-------- | :------- | :-------------------------- | -| ctx | `Context` | ✅ | Default go language context | +| Name | Type | Required | Description | +| :--- | :------ | :------- | :-------------------------- | +| ctx | Context | ✅ | Default go language context | **Return Type**