2
2
3
3
from __future__ import annotations
4
4
5
- from typing import Type , Optional , cast
5
+ from typing import Type , Union , Optional , cast
6
+ from datetime import datetime
6
7
from typing_extensions import Literal
7
8
8
9
import httpx
@@ -51,6 +52,9 @@ def create(
51
52
name : str ,
52
53
type : Literal ["identity_denied" , "forbidden" ],
53
54
app_count : int | NotGiven = NOT_GIVEN ,
55
+ created_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
56
+ uid : str | NotGiven = NOT_GIVEN ,
57
+ updated_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
54
58
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
55
59
# The extra values given here take precedence over values defined on the client or passed to this method.
56
60
extra_headers : Headers | None = None ,
@@ -72,6 +76,8 @@ def create(
72
76
73
77
app_count: Number of apps the custom page is assigned to.
74
78
79
+ uid: UUID
80
+
75
81
extra_headers: Send extra headers
76
82
77
83
extra_query: Add additional query parameters to the request
@@ -90,6 +96,9 @@ def create(
90
96
"name" : name ,
91
97
"type" : type ,
92
98
"app_count" : app_count ,
99
+ "created_at" : created_at ,
100
+ "uid" : uid ,
101
+ "updated_at" : updated_at ,
93
102
},
94
103
custom_page_create_params .CustomPageCreateParams ,
95
104
),
@@ -112,6 +121,9 @@ def update(
112
121
name : str ,
113
122
type : Literal ["identity_denied" , "forbidden" ],
114
123
app_count : int | NotGiven = NOT_GIVEN ,
124
+ created_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
125
+ uid : str | NotGiven = NOT_GIVEN ,
126
+ updated_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
115
127
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
116
128
# The extra values given here take precedence over values defined on the client or passed to this method.
117
129
extra_headers : Headers | None = None ,
@@ -135,6 +147,8 @@ def update(
135
147
136
148
app_count: Number of apps the custom page is assigned to.
137
149
150
+ uid: UUID
151
+
138
152
extra_headers: Send extra headers
139
153
140
154
extra_query: Add additional query parameters to the request
@@ -155,6 +169,9 @@ def update(
155
169
"name" : name ,
156
170
"type" : type ,
157
171
"app_count" : app_count ,
172
+ "created_at" : created_at ,
173
+ "uid" : uid ,
174
+ "updated_at" : updated_at ,
158
175
},
159
176
custom_page_update_params .CustomPageUpdateParams ,
160
177
),
@@ -310,6 +327,9 @@ async def create(
310
327
name : str ,
311
328
type : Literal ["identity_denied" , "forbidden" ],
312
329
app_count : int | NotGiven = NOT_GIVEN ,
330
+ created_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
331
+ uid : str | NotGiven = NOT_GIVEN ,
332
+ updated_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
313
333
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
314
334
# The extra values given here take precedence over values defined on the client or passed to this method.
315
335
extra_headers : Headers | None = None ,
@@ -331,6 +351,8 @@ async def create(
331
351
332
352
app_count: Number of apps the custom page is assigned to.
333
353
354
+ uid: UUID
355
+
334
356
extra_headers: Send extra headers
335
357
336
358
extra_query: Add additional query parameters to the request
@@ -349,6 +371,9 @@ async def create(
349
371
"name" : name ,
350
372
"type" : type ,
351
373
"app_count" : app_count ,
374
+ "created_at" : created_at ,
375
+ "uid" : uid ,
376
+ "updated_at" : updated_at ,
352
377
},
353
378
custom_page_create_params .CustomPageCreateParams ,
354
379
),
@@ -371,6 +396,9 @@ async def update(
371
396
name : str ,
372
397
type : Literal ["identity_denied" , "forbidden" ],
373
398
app_count : int | NotGiven = NOT_GIVEN ,
399
+ created_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
400
+ uid : str | NotGiven = NOT_GIVEN ,
401
+ updated_at : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
374
402
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
375
403
# The extra values given here take precedence over values defined on the client or passed to this method.
376
404
extra_headers : Headers | None = None ,
@@ -394,6 +422,8 @@ async def update(
394
422
395
423
app_count: Number of apps the custom page is assigned to.
396
424
425
+ uid: UUID
426
+
397
427
extra_headers: Send extra headers
398
428
399
429
extra_query: Add additional query parameters to the request
@@ -414,6 +444,9 @@ async def update(
414
444
"name" : name ,
415
445
"type" : type ,
416
446
"app_count" : app_count ,
447
+ "created_at" : created_at ,
448
+ "uid" : uid ,
449
+ "updated_at" : updated_at ,
417
450
},
418
451
custom_page_update_params .CustomPageUpdateParams ,
419
452
),
0 commit comments