-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
liblab SDK update for version v0.9.0-alpha.1
- Loading branch information
1 parent
01298cd
commit 7470c38
Showing
18 changed files
with
266 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | []shared.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 | []shared.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. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
Oops, something went wrong.