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 b465864 commit 0a243bd
Show file tree
Hide file tree
Showing 58 changed files with 634 additions and 635 deletions.
16 changes: 8 additions & 8 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "salad-cloud-sdk",
"image": "mcr.microsoft.com/devcontainers/python:3.9-bullseye",
"postCreateCommand": "bash install.sh",
"customizations": {
"codespaces":{
"openFiles": ["examples/sample.py"]
}
}
"name": "salad-cloud-sdk",
"image": "mcr.microsoft.com/devcontainers/python:3.9-bullseye",
"postCreateCommand": "bash install.sh",
"customizations": {
"codespaces": {
"openFiles": ["examples/sample.py"]
}
}
}
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.371Z",
"date": "2024-09-01T16:26:41.730Z",
"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 @@ -298,7 +298,7 @@
}
],
"githubRepoName": "salad-cloud-sdk-python",
"ignoreFiles": ["LICENSE"],
"ignoreFiles": [".gitignore", "LICENSE"],
"targetBranch": "main",
"language": "python",
"deliveryMethod": "zip",
Expand Down Expand Up @@ -345,7 +345,6 @@
"src/salad_cloud_sdk/services/utils/validator.py",
"src/salad_cloud_sdk/services/utils/base_service.py",
"pyproject.toml",
".gitignore",
"src/salad_cloud_sdk/models/utils/cast_models.py",
"src/salad_cloud_sdk/net/transport/utils.py",
"src/salad_cloud_sdk/hooks/hook.py",
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ sdk = SaladCloudSdk(
timeout=10000
)

result = sdk.quotas.get_quotas(organization_name="b6n01-l4p5c2vk4867z")
result = sdk.quotas.get_quotas(organization_name="fl1mcxorfzr4rx2m8p8o1avm0cpka2159")

print(result)

Expand Down Expand Up @@ -128,9 +128,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 | str || |
| display_name | str || |
| description | str || The description |
| Name | Type | Required | Description |
| :----------- | :--- | :------- | :------------------------------------------------------------------------------------------- |
| name | str || The queue name. This must be unique within the project. |
| display_name | str || The display name. This may be used as a more human-readable name. |
| description | str || 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\_ | str || |
| name | str || |
| display_name | str || |
| container_groups | List[ContainerGroup] || |
| create_time | str || |
| update_time | str || |
| description | str || The description |
| Name | Type | Required | Description |
| :--------------- | :------------------- | :------- | :-------------------------------------------------------------------------------------------- |
| id\_ | str || The queue identifier. This is automatically generated and assigned when the queue is created. |
| name | str || The queue name. This must be unique within the project. |
| display_name | str || The display name. This may be used as a more human-readable name. |
| container_groups | List[ContainerGroup] || |
| create_time | str || The date and time the queue was created. |
| update_time | str || The date and time the queue was last updated. |
| description | str || 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 | List[Queue] || |
| Name | Type | Required | Description |
| :---- | :---------- | :------- | :------------------ |
| items | List[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 |
| :----------- | :--- | :------- | :-------------- |
| display_name | str || |
| description | str || The description |
| Name | Type | Required | Description |
| :----------- | :--- | :------- | :------------------------------------------------------------------------------------------- |
| display_name | str || The display name. This may be used as a more human-readable name. |
| description | str || The description. This may be used as a space for notes or other information about the queue. |
Loading

0 comments on commit 0a243bd

Please sign in to comment.