luminesce-sdk 2.2.13__py3-none-any.whl → 2.2.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminesce/api/historically_executed_queries_api.py +16 -16
- luminesce/api/multi_query_execution_api.py +8 -8
- luminesce/api/sql_background_execution_api.py +92 -92
- luminesce/api/sql_design_api.py +6 -6
- luminesce/api/sql_execution_api.py +56 -56
- luminesce/configuration.py +1 -1
- luminesce/models/available_field.py +1 -1
- luminesce/models/available_parameter.py +1 -1
- luminesce/models/case_statement_item.py +4 -4
- luminesce/models/certificate_state.py +2 -2
- luminesce/models/convert_to_view_data.py +1 -1
- luminesce/models/error_highlight_request.py +1 -1
- luminesce/models/field_design.py +1 -1
- luminesce/models/mappable_field.py +1 -1
- luminesce/models/options_csv.py +1 -1
- luminesce/models/query_designer_version.py +1 -1
- luminesce/models/view_parameter.py +1 -1
- {luminesce_sdk-2.2.13.dist-info → luminesce_sdk-2.2.14.dist-info}/METADATA +1 -1
- {luminesce_sdk-2.2.13.dist-info → luminesce_sdk-2.2.14.dist-info}/RECORD +20 -20
- {luminesce_sdk-2.2.13.dist-info → luminesce_sdk-2.2.14.dist-info}/WHEEL +0 -0
luminesce/api/sql_design_api.py
CHANGED
|
@@ -2267,15 +2267,15 @@ class SqlDesignApi:
|
|
|
2267
2267
|
|
|
2268
2268
|
|
|
2269
2269
|
@overload
|
|
2270
|
-
async def put_sql_to_query_design(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions.
|
|
2270
|
+
async def put_sql_to_query_design(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions. Only some values will be allowed and this will change over time (as mentioned this whole method is largely internal to the Finbourne web user interfaces and evolves over time).")] = None, **kwargs) -> QueryDesign: # noqa: E501
|
|
2271
2271
|
...
|
|
2272
2272
|
|
|
2273
2273
|
@overload
|
|
2274
|
-
def put_sql_to_query_design(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions.
|
|
2274
|
+
def put_sql_to_query_design(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions. Only some values will be allowed and this will change over time (as mentioned this whole method is largely internal to the Finbourne web user interfaces and evolves over time).")] = None, async_req: Optional[bool]=True, **kwargs) -> QueryDesign: # noqa: E501
|
|
2275
2275
|
...
|
|
2276
2276
|
|
|
2277
2277
|
@validate_arguments
|
|
2278
|
-
def put_sql_to_query_design(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions.
|
|
2278
|
+
def put_sql_to_query_design(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions. Only some values will be allowed and this will change over time (as mentioned this whole method is largely internal to the Finbourne web user interfaces and evolves over time).")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[QueryDesign, Awaitable[QueryDesign]]: # noqa: E501
|
|
2279
2279
|
"""PutSqlToQueryDesign: Make a SQL-design object from SQL if possible # noqa: E501
|
|
2280
2280
|
|
|
2281
2281
|
Generates a QueryDesign object from simple SQL if possible > This method is generally only intended for IDE generation purposes. > It is largely internal to the Finbourne web user interfaces and subject to change without notice. # noqa: E501
|
|
@@ -2289,7 +2289,7 @@ class SqlDesignApi:
|
|
|
2289
2289
|
:type body: str
|
|
2290
2290
|
:param validate_with_metadata: Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?
|
|
2291
2291
|
:type validate_with_metadata: bool
|
|
2292
|
-
:param version: Designer version number used to support multiple web user interface versions.
|
|
2292
|
+
:param version: Designer version number used to support multiple web user interface versions. Only some values will be allowed and this will change over time (as mentioned this whole method is largely internal to the Finbourne web user interfaces and evolves over time).
|
|
2293
2293
|
:type version: QueryDesignerVersion
|
|
2294
2294
|
:param async_req: Whether to execute the request asynchronously.
|
|
2295
2295
|
:type async_req: bool, optional
|
|
@@ -2310,7 +2310,7 @@ class SqlDesignApi:
|
|
|
2310
2310
|
return self.put_sql_to_query_design_with_http_info(body, validate_with_metadata, version, **kwargs) # noqa: E501
|
|
2311
2311
|
|
|
2312
2312
|
@validate_arguments
|
|
2313
|
-
def put_sql_to_query_design_with_http_info(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions.
|
|
2313
|
+
def put_sql_to_query_design_with_http_info(self, body : Annotated[StrictStr, Field(..., description="SQL query to generate the design object from")], validate_with_metadata : Annotated[Optional[StrictBool], Field(description="Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?")] = None, version : Annotated[Optional[str], Field( description="Designer version number used to support multiple web user interface versions. Only some values will be allowed and this will change over time (as mentioned this whole method is largely internal to the Finbourne web user interfaces and evolves over time).")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
2314
2314
|
"""PutSqlToQueryDesign: Make a SQL-design object from SQL if possible # noqa: E501
|
|
2315
2315
|
|
|
2316
2316
|
Generates a QueryDesign object from simple SQL if possible > This method is generally only intended for IDE generation purposes. > It is largely internal to the Finbourne web user interfaces and subject to change without notice. # noqa: E501
|
|
@@ -2324,7 +2324,7 @@ class SqlDesignApi:
|
|
|
2324
2324
|
:type body: str
|
|
2325
2325
|
:param validate_with_metadata: Should the table be validated against the users' view of Sys.Field to fill in DataTypes, etc.?
|
|
2326
2326
|
:type validate_with_metadata: bool
|
|
2327
|
-
:param version: Designer version number used to support multiple web user interface versions.
|
|
2327
|
+
:param version: Designer version number used to support multiple web user interface versions. Only some values will be allowed and this will change over time (as mentioned this whole method is largely internal to the Finbourne web user interfaces and evolves over time).
|
|
2328
2328
|
:type version: QueryDesignerVersion
|
|
2329
2329
|
:param async_req: Whether to execute the request asynchronously.
|
|
2330
2330
|
:type async_req: bool, optional
|