-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from astuto-ai/query_execution
Query execution
- Loading branch information
Showing
27 changed files
with
2,026 additions
and
23 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# CreateRecommenadtionUnitPullResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**pr_link** | **str** | The recommendation unit pull request link. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.create_recommenadtion_unit_pull_response import CreateRecommenadtionUnitPullResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateRecommenadtionUnitPullResponse from a JSON string | ||
create_recommenadtion_unit_pull_response_instance = CreateRecommenadtionUnitPullResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateRecommenadtionUnitPullResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
create_recommenadtion_unit_pull_response_dict = create_recommenadtion_unit_pull_response_instance.to_dict() | ||
# create an instance of CreateRecommenadtionUnitPullResponse from a dict | ||
create_recommenadtion_unit_pull_response_form_dict = create_recommenadtion_unit_pull_response.from_dict(create_recommenadtion_unit_pull_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# CreateRecommendationUnitPullRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**title** | **str** | The title of the pull request. | | ||
**description** | **str** | The description of the pull request. | | ||
**source_branch** | **str** | The source branch of the pull request. | | ||
**branch_name** | **str** | The branch name of the pull request. | | ||
**id** | **str** | The unique identifier of the recommendation unit template by alias. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.create_recommendation_unit_pull_request import CreateRecommendationUnitPullRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateRecommendationUnitPullRequest from a JSON string | ||
create_recommendation_unit_pull_request_instance = CreateRecommendationUnitPullRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateRecommendationUnitPullRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
create_recommendation_unit_pull_request_dict = create_recommendation_unit_pull_request_instance.to_dict() | ||
# create an instance of CreateRecommendationUnitPullRequest from a dict | ||
create_recommendation_unit_pull_request_form_dict = create_recommendation_unit_pull_request.from_dict(create_recommendation_unit_pull_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# QueryExecutorRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**query** | **str** | sql query | | ||
**recommendation_unit_id** | **str** | Recommendation Unit ID | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.query_executor_request import QueryExecutorRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of QueryExecutorRequest from a JSON string | ||
query_executor_request_instance = QueryExecutorRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(QueryExecutorRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
query_executor_request_dict = query_executor_request_instance.to_dict() | ||
# create an instance of QueryExecutorRequest from a dict | ||
query_executor_request_form_dict = query_executor_request.from_dict(query_executor_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
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
Oops, something went wrong.