Skip to content

Commit 9594973

Browse files
Automatically update python client (ref: Cosmo-Tech/cosmotech-api@aa69614)
Co-authored-by: jreynard-code <jreynard-code@users.noreply.github.com>
1 parent 0d82d04 commit 9594973

File tree

2 files changed

+48
-48
lines changed

2 files changed

+48
-48
lines changed

cosmotech_api/api/dataset_api.py

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -4099,12 +4099,12 @@ def query_data(
40994099
workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
41004100
dataset_id: Annotated[StrictStr, Field(description="the Dataset identifier")],
41014101
dataset_part_id: Annotated[StrictStr, Field(description="the Dataset part identifier")],
4102-
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4103-
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4104-
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4105-
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4106-
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4107-
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4102+
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4103+
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4104+
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4105+
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4106+
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4107+
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
41084108
offset: Annotated[Optional[StrictInt], Field(description="The query offset")] = None,
41094109
limit: Annotated[Optional[StrictInt], Field(description="The query limit")] = None,
41104110
group_bys: Annotated[Optional[List[StrictStr]], Field(description="Column names to group by")] = None,
@@ -4133,17 +4133,17 @@ def query_data(
41334133
:type dataset_id: str
41344134
:param dataset_part_id: the Dataset part identifier (required)
41354135
:type dataset_part_id: str
4136-
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4136+
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*).
41374137
:type selects: List[str]
4138-
:param sums: Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4138+
:param sums: Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*).
41394139
:type sums: List[str]
4140-
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4140+
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*).
41414141
:type avgs: List[str]
4142-
:param counts: Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4142+
:param counts: Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*).
41434143
:type counts: List[str]
4144-
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4144+
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*).
41454145
:type mins: List[str]
4146-
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4146+
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*).
41474147
:type maxs: List[str]
41484148
:param offset: The query offset
41494149
:type offset: int
@@ -4221,12 +4221,12 @@ def query_data_with_http_info(
42214221
workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
42224222
dataset_id: Annotated[StrictStr, Field(description="the Dataset identifier")],
42234223
dataset_part_id: Annotated[StrictStr, Field(description="the Dataset part identifier")],
4224-
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4225-
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4226-
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4227-
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4228-
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4229-
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4224+
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4225+
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4226+
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4227+
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4228+
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4229+
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
42304230
offset: Annotated[Optional[StrictInt], Field(description="The query offset")] = None,
42314231
limit: Annotated[Optional[StrictInt], Field(description="The query limit")] = None,
42324232
group_bys: Annotated[Optional[List[StrictStr]], Field(description="Column names to group by")] = None,
@@ -4255,17 +4255,17 @@ def query_data_with_http_info(
42554255
:type dataset_id: str
42564256
:param dataset_part_id: the Dataset part identifier (required)
42574257
:type dataset_part_id: str
4258-
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4258+
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*).
42594259
:type selects: List[str]
4260-
:param sums: Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4260+
:param sums: Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*).
42614261
:type sums: List[str]
4262-
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4262+
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*).
42634263
:type avgs: List[str]
4264-
:param counts: Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4264+
:param counts: Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*).
42654265
:type counts: List[str]
4266-
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4266+
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*).
42674267
:type mins: List[str]
4268-
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4268+
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*).
42694269
:type maxs: List[str]
42704270
:param offset: The query offset
42714271
:type offset: int
@@ -4343,12 +4343,12 @@ def query_data_without_preload_content(
43434343
workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
43444344
dataset_id: Annotated[StrictStr, Field(description="the Dataset identifier")],
43454345
dataset_part_id: Annotated[StrictStr, Field(description="the Dataset part identifier")],
4346-
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4347-
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4348-
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4349-
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4350-
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4351-
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] = None,
4346+
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4347+
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4348+
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4349+
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4350+
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
4351+
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] = None,
43524352
offset: Annotated[Optional[StrictInt], Field(description="The query offset")] = None,
43534353
limit: Annotated[Optional[StrictInt], Field(description="The query limit")] = None,
43544354
group_bys: Annotated[Optional[List[StrictStr]], Field(description="Column names to group by")] = None,
@@ -4377,17 +4377,17 @@ def query_data_without_preload_content(
43774377
:type dataset_id: str
43784378
:param dataset_part_id: the Dataset part identifier (required)
43794379
:type dataset_part_id: str
4380-
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4380+
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*).
43814381
:type selects: List[str]
4382-
:param sums: Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4382+
:param sums: Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*).
43834383
:type sums: List[str]
4384-
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4384+
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*).
43854385
:type avgs: List[str]
4386-
:param counts: Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4386+
:param counts: Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*).
43874387
:type counts: List[str]
4388-
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4388+
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*).
43894389
:type mins: List[str]
4390-
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4390+
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*).
43914391
:type maxs: List[str]
43924392
:param offset: The query offset
43934393
:type offset: int

0 commit comments

Comments
 (0)