neurograph-core 1.202508112256__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.
- neurograph/__init__.py +0 -0
- neurograph/v1/__init__.py +227 -0
- neurograph/v1/api/__init__.py +15 -0
- neurograph/v1/api/atlas_api.py +588 -0
- neurograph/v1/api/authentication_api.py +830 -0
- neurograph/v1/api/client_api.py +1684 -0
- neurograph/v1/api/client_metadata_api.py +871 -0
- neurograph/v1/api/lookup_api.py +1049 -0
- neurograph/v1/api/organization_api.py +1975 -0
- neurograph/v1/api/organization_metadata_api.py +872 -0
- neurograph/v1/api/persona_api.py +1920 -0
- neurograph/v1/api/system_api.py +293 -0
- neurograph/v1/api/tasks_api.py +285 -0
- neurograph/v1/api/workbench_api.py +857 -0
- neurograph/v1/api_client.py +801 -0
- neurograph/v1/api_response.py +21 -0
- neurograph/v1/configuration.py +612 -0
- neurograph/v1/exceptions.py +216 -0
- neurograph/v1/models/__init__.py +96 -0
- neurograph/v1/models/atlas_atlas_version.py +99 -0
- neurograph/v1/models/atlas_atlas_version_many_response.py +97 -0
- neurograph/v1/models/atlas_atlas_version_response.py +101 -0
- neurograph/v1/models/atlas_atlas_version_upsert_request.py +95 -0
- neurograph/v1/models/auth_service_token_request.py +87 -0
- neurograph/v1/models/auth_test_service_token_response.py +89 -0
- neurograph/v1/models/auth_test_token_response.py +87 -0
- neurograph/v1/models/client_client.py +109 -0
- neurograph/v1/models/client_client_creat_response.py +111 -0
- neurograph/v1/models/client_client_create_request.py +95 -0
- neurograph/v1/models/client_client_get_detail_response.py +93 -0
- neurograph/v1/models/client_client_get_many_response.py +105 -0
- neurograph/v1/models/client_client_metadata_request.py +89 -0
- neurograph/v1/models/client_client_metadata_response.py +97 -0
- neurograph/v1/models/client_client_personas_response.py +99 -0
- neurograph/v1/models/client_client_url_upsert_request.py +99 -0
- neurograph/v1/models/client_client_url_upsert_response.py +101 -0
- neurograph/v1/models/client_client_urls_response.py +101 -0
- neurograph/v1/models/client_delete_metadata_request.py +87 -0
- neurograph/v1/models/client_kpi.py +93 -0
- neurograph/v1/models/client_metadata.py +93 -0
- neurograph/v1/models/client_persona.py +171 -0
- neurograph/v1/models/client_persona_factor.py +99 -0
- neurograph/v1/models/client_persona_insight.py +93 -0
- neurograph/v1/models/client_persona_personality_trait.py +93 -0
- neurograph/v1/models/client_query.py +93 -0
- neurograph/v1/models/db_client_url.py +99 -0
- neurograph/v1/models/db_persona_factor_create_params.py +97 -0
- neurograph/v1/models/lookup_language.py +97 -0
- neurograph/v1/models/lookup_lookup_language_response.py +97 -0
- neurograph/v1/models/lookup_lookup_state_response.py +97 -0
- neurograph/v1/models/lookup_state.py +91 -0
- neurograph/v1/models/lookup_state_response.py +93 -0
- neurograph/v1/models/organizations_atlas_config.py +97 -0
- neurograph/v1/models/organizations_brand_detail_response.py +109 -0
- neurograph/v1/models/organizations_brand_upsert_request.py +107 -0
- neurograph/v1/models/organizations_delete_metadata_request.py +87 -0
- neurograph/v1/models/organizations_delete_metadata_response.py +97 -0
- neurograph/v1/models/organizations_metadata.py +93 -0
- neurograph/v1/models/organizations_organization.py +103 -0
- neurograph/v1/models/organizations_organization_brand.py +107 -0
- neurograph/v1/models/organizations_organization_create_request.py +97 -0
- neurograph/v1/models/organizations_organization_detail_response.py +123 -0
- neurograph/v1/models/organizations_organization_get_many_response.py +103 -0
- neurograph/v1/models/organizations_organization_metadata_request.py +89 -0
- neurograph/v1/models/organizations_organization_metadata_response.py +97 -0
- neurograph/v1/models/organizations_organization_set_atlas_request.py +93 -0
- neurograph/v1/models/organizations_organization_set_atlas_response.py +99 -0
- neurograph/v1/models/organizations_organization_set_workbench_request.py +93 -0
- neurograph/v1/models/organizations_organization_set_workbench_response.py +99 -0
- neurograph/v1/models/organizations_organization_update_request.py +99 -0
- neurograph/v1/models/organizations_workbench_config.py +97 -0
- neurograph/v1/models/personas_match_criteria_row.py +97 -0
- neurograph/v1/models/personas_match_criteria_row_in.py +93 -0
- neurograph/v1/models/personas_persona_factor.py +101 -0
- neurograph/v1/models/personas_persona_factor_create_request.py +95 -0
- neurograph/v1/models/personas_persona_factor_create_response.py +97 -0
- neurograph/v1/models/personas_persona_insight_create_request.py +91 -0
- neurograph/v1/models/personas_persona_insight_create_response.py +95 -0
- neurograph/v1/models/personas_persona_instance_create_request.py +123 -0
- neurograph/v1/models/personas_persona_instance_create_response.py +127 -0
- neurograph/v1/models/personas_persona_kpi_create_request.py +95 -0
- neurograph/v1/models/personas_persona_kpi_create_response.py +97 -0
- neurograph/v1/models/personas_persona_kpi_req.py +91 -0
- neurograph/v1/models/personas_persona_kpi_resp.py +95 -0
- neurograph/v1/models/personas_persona_match_criteria_request.py +95 -0
- neurograph/v1/models/personas_persona_match_criteria_response.py +97 -0
- neurograph/v1/models/personas_persona_seed_create_request.py +89 -0
- neurograph/v1/models/personas_persona_seed_create_response.py +97 -0
- neurograph/v1/models/personas_persona_trait_create_request.py +95 -0
- neurograph/v1/models/personas_persona_trait_create_response.py +97 -0
- neurograph/v1/models/personas_personality_trait_in.py +91 -0
- neurograph/v1/models/personas_personality_trait_out.py +95 -0
- neurograph/v1/models/tasks_sync_from_firebase_result.py +87 -0
- neurograph/v1/models/workbench_workbench_url_check_request.py +87 -0
- neurograph/v1/models/workbench_workbench_url_check_response.py +111 -0
- neurograph/v1/models/workbench_workbench_version.py +99 -0
- neurograph/v1/models/workbench_workbench_version_many_response.py +97 -0
- neurograph/v1/models/workbench_workbench_version_response.py +101 -0
- neurograph/v1/models/workbench_workbench_version_upsert_request.py +95 -0
- neurograph/v1/py.typed +0 -0
- neurograph/v1/rest.py +258 -0
- neurograph_core-1.202508112256.dist-info/METADATA +62 -0
- neurograph_core-1.202508112256.dist-info/RECORD +105 -0
- neurograph_core-1.202508112256.dist-info/WHEEL +5 -0
- neurograph_core-1.202508112256.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,871 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Neurograph Core
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
import warnings
|
|
15
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
|
+
from typing_extensions import Annotated
|
|
18
|
+
|
|
19
|
+
from pydantic import Field, StrictInt
|
|
20
|
+
from typing_extensions import Annotated
|
|
21
|
+
from neurograph.v1.models.client_client_metadata_request import ClientClientMetadataRequest
|
|
22
|
+
from neurograph.v1.models.client_client_metadata_response import ClientClientMetadataResponse
|
|
23
|
+
from neurograph.v1.models.client_delete_metadata_request import ClientDeleteMetadataRequest
|
|
24
|
+
|
|
25
|
+
from neurograph.v1.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from neurograph.v1.api_response import ApiResponse
|
|
27
|
+
from neurograph.v1.rest import RESTResponseType
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class ClientMetadataApi:
|
|
31
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
32
|
+
Ref: https://openapi-generator.tech
|
|
33
|
+
|
|
34
|
+
Do not edit the class manually.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
def __init__(self, api_client=None) -> None:
|
|
38
|
+
if api_client is None:
|
|
39
|
+
api_client = ApiClient.get_default()
|
|
40
|
+
self.api_client = api_client
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
@validate_call
|
|
44
|
+
def api_v1_client_metadata_client_id_delete(
|
|
45
|
+
self,
|
|
46
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
47
|
+
request: Annotated[ClientDeleteMetadataRequest, Field(description="Body")],
|
|
48
|
+
_request_timeout: Union[
|
|
49
|
+
None,
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
51
|
+
Tuple[
|
|
52
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
53
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
54
|
+
]
|
|
55
|
+
] = None,
|
|
56
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_content_type: Optional[StrictStr] = None,
|
|
58
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
59
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
60
|
+
) -> ClientClientMetadataResponse:
|
|
61
|
+
"""Delete a metadata row
|
|
62
|
+
|
|
63
|
+
Delete's the given row and returns the remaining metadata
|
|
64
|
+
|
|
65
|
+
:param client_id: Client ID (required)
|
|
66
|
+
:type client_id: int
|
|
67
|
+
:param request: Body (required)
|
|
68
|
+
:type request: ClientDeleteMetadataRequest
|
|
69
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
70
|
+
number provided, it will be total request
|
|
71
|
+
timeout. It can also be a pair (tuple) of
|
|
72
|
+
(connection, read) timeouts.
|
|
73
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
74
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
75
|
+
request; this effectively ignores the
|
|
76
|
+
authentication in the spec for a single request.
|
|
77
|
+
:type _request_auth: dict, optional
|
|
78
|
+
:param _content_type: force content-type for the request.
|
|
79
|
+
:type _content_type: str, Optional
|
|
80
|
+
:param _headers: set to override the headers for a single
|
|
81
|
+
request; this effectively ignores the headers
|
|
82
|
+
in the spec for a single request.
|
|
83
|
+
:type _headers: dict, optional
|
|
84
|
+
:param _host_index: set to override the host_index for a single
|
|
85
|
+
request; this effectively ignores the host_index
|
|
86
|
+
in the spec for a single request.
|
|
87
|
+
:type _host_index: int, optional
|
|
88
|
+
:return: Returns the result object.
|
|
89
|
+
""" # noqa: E501
|
|
90
|
+
|
|
91
|
+
_param = self._api_v1_client_metadata_client_id_delete_serialize(
|
|
92
|
+
client_id=client_id,
|
|
93
|
+
request=request,
|
|
94
|
+
_request_auth=_request_auth,
|
|
95
|
+
_content_type=_content_type,
|
|
96
|
+
_headers=_headers,
|
|
97
|
+
_host_index=_host_index
|
|
98
|
+
)
|
|
99
|
+
|
|
100
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
101
|
+
'200': "ClientClientMetadataResponse",
|
|
102
|
+
'400': "ClientClientMetadataResponse",
|
|
103
|
+
'503': "ClientClientMetadataResponse",
|
|
104
|
+
}
|
|
105
|
+
response_data = self.api_client.call_api(
|
|
106
|
+
*_param,
|
|
107
|
+
_request_timeout=_request_timeout
|
|
108
|
+
)
|
|
109
|
+
response_data.read()
|
|
110
|
+
return self.api_client.response_deserialize(
|
|
111
|
+
response_data=response_data,
|
|
112
|
+
response_types_map=_response_types_map,
|
|
113
|
+
).data
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
@validate_call
|
|
117
|
+
def api_v1_client_metadata_client_id_delete_with_http_info(
|
|
118
|
+
self,
|
|
119
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
120
|
+
request: Annotated[ClientDeleteMetadataRequest, Field(description="Body")],
|
|
121
|
+
_request_timeout: Union[
|
|
122
|
+
None,
|
|
123
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
124
|
+
Tuple[
|
|
125
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
126
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
127
|
+
]
|
|
128
|
+
] = None,
|
|
129
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
130
|
+
_content_type: Optional[StrictStr] = None,
|
|
131
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
132
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
133
|
+
) -> ApiResponse[ClientClientMetadataResponse]:
|
|
134
|
+
"""Delete a metadata row
|
|
135
|
+
|
|
136
|
+
Delete's the given row and returns the remaining metadata
|
|
137
|
+
|
|
138
|
+
:param client_id: Client ID (required)
|
|
139
|
+
:type client_id: int
|
|
140
|
+
:param request: Body (required)
|
|
141
|
+
:type request: ClientDeleteMetadataRequest
|
|
142
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
143
|
+
number provided, it will be total request
|
|
144
|
+
timeout. It can also be a pair (tuple) of
|
|
145
|
+
(connection, read) timeouts.
|
|
146
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
147
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
148
|
+
request; this effectively ignores the
|
|
149
|
+
authentication in the spec for a single request.
|
|
150
|
+
:type _request_auth: dict, optional
|
|
151
|
+
:param _content_type: force content-type for the request.
|
|
152
|
+
:type _content_type: str, Optional
|
|
153
|
+
:param _headers: set to override the headers for a single
|
|
154
|
+
request; this effectively ignores the headers
|
|
155
|
+
in the spec for a single request.
|
|
156
|
+
:type _headers: dict, optional
|
|
157
|
+
:param _host_index: set to override the host_index for a single
|
|
158
|
+
request; this effectively ignores the host_index
|
|
159
|
+
in the spec for a single request.
|
|
160
|
+
:type _host_index: int, optional
|
|
161
|
+
:return: Returns the result object.
|
|
162
|
+
""" # noqa: E501
|
|
163
|
+
|
|
164
|
+
_param = self._api_v1_client_metadata_client_id_delete_serialize(
|
|
165
|
+
client_id=client_id,
|
|
166
|
+
request=request,
|
|
167
|
+
_request_auth=_request_auth,
|
|
168
|
+
_content_type=_content_type,
|
|
169
|
+
_headers=_headers,
|
|
170
|
+
_host_index=_host_index
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
174
|
+
'200': "ClientClientMetadataResponse",
|
|
175
|
+
'400': "ClientClientMetadataResponse",
|
|
176
|
+
'503': "ClientClientMetadataResponse",
|
|
177
|
+
}
|
|
178
|
+
response_data = self.api_client.call_api(
|
|
179
|
+
*_param,
|
|
180
|
+
_request_timeout=_request_timeout
|
|
181
|
+
)
|
|
182
|
+
response_data.read()
|
|
183
|
+
return self.api_client.response_deserialize(
|
|
184
|
+
response_data=response_data,
|
|
185
|
+
response_types_map=_response_types_map,
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
@validate_call
|
|
190
|
+
def api_v1_client_metadata_client_id_delete_without_preload_content(
|
|
191
|
+
self,
|
|
192
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
193
|
+
request: Annotated[ClientDeleteMetadataRequest, Field(description="Body")],
|
|
194
|
+
_request_timeout: Union[
|
|
195
|
+
None,
|
|
196
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
197
|
+
Tuple[
|
|
198
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
199
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
200
|
+
]
|
|
201
|
+
] = None,
|
|
202
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
203
|
+
_content_type: Optional[StrictStr] = None,
|
|
204
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
205
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
206
|
+
) -> RESTResponseType:
|
|
207
|
+
"""Delete a metadata row
|
|
208
|
+
|
|
209
|
+
Delete's the given row and returns the remaining metadata
|
|
210
|
+
|
|
211
|
+
:param client_id: Client ID (required)
|
|
212
|
+
:type client_id: int
|
|
213
|
+
:param request: Body (required)
|
|
214
|
+
:type request: ClientDeleteMetadataRequest
|
|
215
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
216
|
+
number provided, it will be total request
|
|
217
|
+
timeout. It can also be a pair (tuple) of
|
|
218
|
+
(connection, read) timeouts.
|
|
219
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
220
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
221
|
+
request; this effectively ignores the
|
|
222
|
+
authentication in the spec for a single request.
|
|
223
|
+
:type _request_auth: dict, optional
|
|
224
|
+
:param _content_type: force content-type for the request.
|
|
225
|
+
:type _content_type: str, Optional
|
|
226
|
+
:param _headers: set to override the headers for a single
|
|
227
|
+
request; this effectively ignores the headers
|
|
228
|
+
in the spec for a single request.
|
|
229
|
+
:type _headers: dict, optional
|
|
230
|
+
:param _host_index: set to override the host_index for a single
|
|
231
|
+
request; this effectively ignores the host_index
|
|
232
|
+
in the spec for a single request.
|
|
233
|
+
:type _host_index: int, optional
|
|
234
|
+
:return: Returns the result object.
|
|
235
|
+
""" # noqa: E501
|
|
236
|
+
|
|
237
|
+
_param = self._api_v1_client_metadata_client_id_delete_serialize(
|
|
238
|
+
client_id=client_id,
|
|
239
|
+
request=request,
|
|
240
|
+
_request_auth=_request_auth,
|
|
241
|
+
_content_type=_content_type,
|
|
242
|
+
_headers=_headers,
|
|
243
|
+
_host_index=_host_index
|
|
244
|
+
)
|
|
245
|
+
|
|
246
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
247
|
+
'200': "ClientClientMetadataResponse",
|
|
248
|
+
'400': "ClientClientMetadataResponse",
|
|
249
|
+
'503': "ClientClientMetadataResponse",
|
|
250
|
+
}
|
|
251
|
+
response_data = self.api_client.call_api(
|
|
252
|
+
*_param,
|
|
253
|
+
_request_timeout=_request_timeout
|
|
254
|
+
)
|
|
255
|
+
return response_data.response
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
def _api_v1_client_metadata_client_id_delete_serialize(
|
|
259
|
+
self,
|
|
260
|
+
client_id,
|
|
261
|
+
request,
|
|
262
|
+
_request_auth,
|
|
263
|
+
_content_type,
|
|
264
|
+
_headers,
|
|
265
|
+
_host_index,
|
|
266
|
+
) -> RequestSerialized:
|
|
267
|
+
|
|
268
|
+
_host = None
|
|
269
|
+
|
|
270
|
+
_collection_formats: Dict[str, str] = {
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
_path_params: Dict[str, str] = {}
|
|
274
|
+
_query_params: List[Tuple[str, str]] = []
|
|
275
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
276
|
+
_form_params: List[Tuple[str, str]] = []
|
|
277
|
+
_files: Dict[
|
|
278
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
279
|
+
] = {}
|
|
280
|
+
_body_params: Optional[bytes] = None
|
|
281
|
+
|
|
282
|
+
# process the path parameters
|
|
283
|
+
if client_id is not None:
|
|
284
|
+
_path_params['client_id'] = client_id
|
|
285
|
+
# process the query parameters
|
|
286
|
+
# process the header parameters
|
|
287
|
+
# process the form parameters
|
|
288
|
+
# process the body parameter
|
|
289
|
+
if request is not None:
|
|
290
|
+
_body_params = request
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
# set the HTTP header `Accept`
|
|
294
|
+
if 'Accept' not in _header_params:
|
|
295
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
296
|
+
[
|
|
297
|
+
'application/json'
|
|
298
|
+
]
|
|
299
|
+
)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
# authentication setting
|
|
303
|
+
_auth_settings: List[str] = [
|
|
304
|
+
'ApiKeyAuth'
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
return self.api_client.param_serialize(
|
|
308
|
+
method='DELETE',
|
|
309
|
+
resource_path='/api/v1/client/metadata/{client_id}',
|
|
310
|
+
path_params=_path_params,
|
|
311
|
+
query_params=_query_params,
|
|
312
|
+
header_params=_header_params,
|
|
313
|
+
body=_body_params,
|
|
314
|
+
post_params=_form_params,
|
|
315
|
+
files=_files,
|
|
316
|
+
auth_settings=_auth_settings,
|
|
317
|
+
collection_formats=_collection_formats,
|
|
318
|
+
_host=_host,
|
|
319
|
+
_request_auth=_request_auth
|
|
320
|
+
)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
@validate_call
|
|
326
|
+
def api_v1_client_metadata_client_id_get(
|
|
327
|
+
self,
|
|
328
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
329
|
+
_request_timeout: Union[
|
|
330
|
+
None,
|
|
331
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
332
|
+
Tuple[
|
|
333
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
334
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
335
|
+
]
|
|
336
|
+
] = None,
|
|
337
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
338
|
+
_content_type: Optional[StrictStr] = None,
|
|
339
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
340
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
341
|
+
) -> ClientClientMetadataResponse:
|
|
342
|
+
"""Get client metadata rows
|
|
343
|
+
|
|
344
|
+
Returns all metadata for a given client ID
|
|
345
|
+
|
|
346
|
+
:param client_id: Client ID (required)
|
|
347
|
+
:type client_id: int
|
|
348
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
349
|
+
number provided, it will be total request
|
|
350
|
+
timeout. It can also be a pair (tuple) of
|
|
351
|
+
(connection, read) timeouts.
|
|
352
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
353
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
354
|
+
request; this effectively ignores the
|
|
355
|
+
authentication in the spec for a single request.
|
|
356
|
+
:type _request_auth: dict, optional
|
|
357
|
+
:param _content_type: force content-type for the request.
|
|
358
|
+
:type _content_type: str, Optional
|
|
359
|
+
:param _headers: set to override the headers for a single
|
|
360
|
+
request; this effectively ignores the headers
|
|
361
|
+
in the spec for a single request.
|
|
362
|
+
:type _headers: dict, optional
|
|
363
|
+
:param _host_index: set to override the host_index for a single
|
|
364
|
+
request; this effectively ignores the host_index
|
|
365
|
+
in the spec for a single request.
|
|
366
|
+
:type _host_index: int, optional
|
|
367
|
+
:return: Returns the result object.
|
|
368
|
+
""" # noqa: E501
|
|
369
|
+
|
|
370
|
+
_param = self._api_v1_client_metadata_client_id_get_serialize(
|
|
371
|
+
client_id=client_id,
|
|
372
|
+
_request_auth=_request_auth,
|
|
373
|
+
_content_type=_content_type,
|
|
374
|
+
_headers=_headers,
|
|
375
|
+
_host_index=_host_index
|
|
376
|
+
)
|
|
377
|
+
|
|
378
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
379
|
+
'200': "ClientClientMetadataResponse",
|
|
380
|
+
'400': "ClientClientMetadataResponse",
|
|
381
|
+
'503': "ClientClientMetadataResponse",
|
|
382
|
+
}
|
|
383
|
+
response_data = self.api_client.call_api(
|
|
384
|
+
*_param,
|
|
385
|
+
_request_timeout=_request_timeout
|
|
386
|
+
)
|
|
387
|
+
response_data.read()
|
|
388
|
+
return self.api_client.response_deserialize(
|
|
389
|
+
response_data=response_data,
|
|
390
|
+
response_types_map=_response_types_map,
|
|
391
|
+
).data
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
@validate_call
|
|
395
|
+
def api_v1_client_metadata_client_id_get_with_http_info(
|
|
396
|
+
self,
|
|
397
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
398
|
+
_request_timeout: Union[
|
|
399
|
+
None,
|
|
400
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
401
|
+
Tuple[
|
|
402
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
403
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
404
|
+
]
|
|
405
|
+
] = None,
|
|
406
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
407
|
+
_content_type: Optional[StrictStr] = None,
|
|
408
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
409
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
410
|
+
) -> ApiResponse[ClientClientMetadataResponse]:
|
|
411
|
+
"""Get client metadata rows
|
|
412
|
+
|
|
413
|
+
Returns all metadata for a given client ID
|
|
414
|
+
|
|
415
|
+
:param client_id: Client ID (required)
|
|
416
|
+
:type client_id: int
|
|
417
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
418
|
+
number provided, it will be total request
|
|
419
|
+
timeout. It can also be a pair (tuple) of
|
|
420
|
+
(connection, read) timeouts.
|
|
421
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
422
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
423
|
+
request; this effectively ignores the
|
|
424
|
+
authentication in the spec for a single request.
|
|
425
|
+
:type _request_auth: dict, optional
|
|
426
|
+
:param _content_type: force content-type for the request.
|
|
427
|
+
:type _content_type: str, Optional
|
|
428
|
+
:param _headers: set to override the headers for a single
|
|
429
|
+
request; this effectively ignores the headers
|
|
430
|
+
in the spec for a single request.
|
|
431
|
+
:type _headers: dict, optional
|
|
432
|
+
:param _host_index: set to override the host_index for a single
|
|
433
|
+
request; this effectively ignores the host_index
|
|
434
|
+
in the spec for a single request.
|
|
435
|
+
:type _host_index: int, optional
|
|
436
|
+
:return: Returns the result object.
|
|
437
|
+
""" # noqa: E501
|
|
438
|
+
|
|
439
|
+
_param = self._api_v1_client_metadata_client_id_get_serialize(
|
|
440
|
+
client_id=client_id,
|
|
441
|
+
_request_auth=_request_auth,
|
|
442
|
+
_content_type=_content_type,
|
|
443
|
+
_headers=_headers,
|
|
444
|
+
_host_index=_host_index
|
|
445
|
+
)
|
|
446
|
+
|
|
447
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
448
|
+
'200': "ClientClientMetadataResponse",
|
|
449
|
+
'400': "ClientClientMetadataResponse",
|
|
450
|
+
'503': "ClientClientMetadataResponse",
|
|
451
|
+
}
|
|
452
|
+
response_data = self.api_client.call_api(
|
|
453
|
+
*_param,
|
|
454
|
+
_request_timeout=_request_timeout
|
|
455
|
+
)
|
|
456
|
+
response_data.read()
|
|
457
|
+
return self.api_client.response_deserialize(
|
|
458
|
+
response_data=response_data,
|
|
459
|
+
response_types_map=_response_types_map,
|
|
460
|
+
)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
@validate_call
|
|
464
|
+
def api_v1_client_metadata_client_id_get_without_preload_content(
|
|
465
|
+
self,
|
|
466
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
467
|
+
_request_timeout: Union[
|
|
468
|
+
None,
|
|
469
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
470
|
+
Tuple[
|
|
471
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
472
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
473
|
+
]
|
|
474
|
+
] = None,
|
|
475
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
476
|
+
_content_type: Optional[StrictStr] = None,
|
|
477
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
478
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
479
|
+
) -> RESTResponseType:
|
|
480
|
+
"""Get client metadata rows
|
|
481
|
+
|
|
482
|
+
Returns all metadata for a given client ID
|
|
483
|
+
|
|
484
|
+
:param client_id: Client ID (required)
|
|
485
|
+
:type client_id: int
|
|
486
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
487
|
+
number provided, it will be total request
|
|
488
|
+
timeout. It can also be a pair (tuple) of
|
|
489
|
+
(connection, read) timeouts.
|
|
490
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
491
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
492
|
+
request; this effectively ignores the
|
|
493
|
+
authentication in the spec for a single request.
|
|
494
|
+
:type _request_auth: dict, optional
|
|
495
|
+
:param _content_type: force content-type for the request.
|
|
496
|
+
:type _content_type: str, Optional
|
|
497
|
+
:param _headers: set to override the headers for a single
|
|
498
|
+
request; this effectively ignores the headers
|
|
499
|
+
in the spec for a single request.
|
|
500
|
+
:type _headers: dict, optional
|
|
501
|
+
:param _host_index: set to override the host_index for a single
|
|
502
|
+
request; this effectively ignores the host_index
|
|
503
|
+
in the spec for a single request.
|
|
504
|
+
:type _host_index: int, optional
|
|
505
|
+
:return: Returns the result object.
|
|
506
|
+
""" # noqa: E501
|
|
507
|
+
|
|
508
|
+
_param = self._api_v1_client_metadata_client_id_get_serialize(
|
|
509
|
+
client_id=client_id,
|
|
510
|
+
_request_auth=_request_auth,
|
|
511
|
+
_content_type=_content_type,
|
|
512
|
+
_headers=_headers,
|
|
513
|
+
_host_index=_host_index
|
|
514
|
+
)
|
|
515
|
+
|
|
516
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
517
|
+
'200': "ClientClientMetadataResponse",
|
|
518
|
+
'400': "ClientClientMetadataResponse",
|
|
519
|
+
'503': "ClientClientMetadataResponse",
|
|
520
|
+
}
|
|
521
|
+
response_data = self.api_client.call_api(
|
|
522
|
+
*_param,
|
|
523
|
+
_request_timeout=_request_timeout
|
|
524
|
+
)
|
|
525
|
+
return response_data.response
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
def _api_v1_client_metadata_client_id_get_serialize(
|
|
529
|
+
self,
|
|
530
|
+
client_id,
|
|
531
|
+
_request_auth,
|
|
532
|
+
_content_type,
|
|
533
|
+
_headers,
|
|
534
|
+
_host_index,
|
|
535
|
+
) -> RequestSerialized:
|
|
536
|
+
|
|
537
|
+
_host = None
|
|
538
|
+
|
|
539
|
+
_collection_formats: Dict[str, str] = {
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
_path_params: Dict[str, str] = {}
|
|
543
|
+
_query_params: List[Tuple[str, str]] = []
|
|
544
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
545
|
+
_form_params: List[Tuple[str, str]] = []
|
|
546
|
+
_files: Dict[
|
|
547
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
548
|
+
] = {}
|
|
549
|
+
_body_params: Optional[bytes] = None
|
|
550
|
+
|
|
551
|
+
# process the path parameters
|
|
552
|
+
if client_id is not None:
|
|
553
|
+
_path_params['client_id'] = client_id
|
|
554
|
+
# process the query parameters
|
|
555
|
+
# process the header parameters
|
|
556
|
+
# process the form parameters
|
|
557
|
+
# process the body parameter
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
# set the HTTP header `Accept`
|
|
561
|
+
if 'Accept' not in _header_params:
|
|
562
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
563
|
+
[
|
|
564
|
+
'application/json'
|
|
565
|
+
]
|
|
566
|
+
)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
# authentication setting
|
|
570
|
+
_auth_settings: List[str] = [
|
|
571
|
+
'ApiKeyAuth'
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
return self.api_client.param_serialize(
|
|
575
|
+
method='GET',
|
|
576
|
+
resource_path='/api/v1/client/metadata/{client_id}',
|
|
577
|
+
path_params=_path_params,
|
|
578
|
+
query_params=_query_params,
|
|
579
|
+
header_params=_header_params,
|
|
580
|
+
body=_body_params,
|
|
581
|
+
post_params=_form_params,
|
|
582
|
+
files=_files,
|
|
583
|
+
auth_settings=_auth_settings,
|
|
584
|
+
collection_formats=_collection_formats,
|
|
585
|
+
_host=_host,
|
|
586
|
+
_request_auth=_request_auth
|
|
587
|
+
)
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
@validate_call
|
|
593
|
+
def api_v1_client_metadata_client_id_post(
|
|
594
|
+
self,
|
|
595
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
596
|
+
request: Annotated[ClientClientMetadataRequest, Field(description="Body")],
|
|
597
|
+
_request_timeout: Union[
|
|
598
|
+
None,
|
|
599
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
600
|
+
Tuple[
|
|
601
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
602
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
603
|
+
]
|
|
604
|
+
] = None,
|
|
605
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
606
|
+
_content_type: Optional[StrictStr] = None,
|
|
607
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
608
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
609
|
+
) -> ClientClientMetadataResponse:
|
|
610
|
+
"""Upsert a client metadata row
|
|
611
|
+
|
|
612
|
+
Returns all of the client's urls for the given client id
|
|
613
|
+
|
|
614
|
+
:param client_id: Client ID (required)
|
|
615
|
+
:type client_id: int
|
|
616
|
+
:param request: Body (required)
|
|
617
|
+
:type request: ClientClientMetadataRequest
|
|
618
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
619
|
+
number provided, it will be total request
|
|
620
|
+
timeout. It can also be a pair (tuple) of
|
|
621
|
+
(connection, read) timeouts.
|
|
622
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
623
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
624
|
+
request; this effectively ignores the
|
|
625
|
+
authentication in the spec for a single request.
|
|
626
|
+
:type _request_auth: dict, optional
|
|
627
|
+
:param _content_type: force content-type for the request.
|
|
628
|
+
:type _content_type: str, Optional
|
|
629
|
+
:param _headers: set to override the headers for a single
|
|
630
|
+
request; this effectively ignores the headers
|
|
631
|
+
in the spec for a single request.
|
|
632
|
+
:type _headers: dict, optional
|
|
633
|
+
:param _host_index: set to override the host_index for a single
|
|
634
|
+
request; this effectively ignores the host_index
|
|
635
|
+
in the spec for a single request.
|
|
636
|
+
:type _host_index: int, optional
|
|
637
|
+
:return: Returns the result object.
|
|
638
|
+
""" # noqa: E501
|
|
639
|
+
|
|
640
|
+
_param = self._api_v1_client_metadata_client_id_post_serialize(
|
|
641
|
+
client_id=client_id,
|
|
642
|
+
request=request,
|
|
643
|
+
_request_auth=_request_auth,
|
|
644
|
+
_content_type=_content_type,
|
|
645
|
+
_headers=_headers,
|
|
646
|
+
_host_index=_host_index
|
|
647
|
+
)
|
|
648
|
+
|
|
649
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
650
|
+
'200': "ClientClientMetadataResponse",
|
|
651
|
+
'400': "ClientClientMetadataResponse",
|
|
652
|
+
'503': "ClientClientMetadataResponse",
|
|
653
|
+
}
|
|
654
|
+
response_data = self.api_client.call_api(
|
|
655
|
+
*_param,
|
|
656
|
+
_request_timeout=_request_timeout
|
|
657
|
+
)
|
|
658
|
+
response_data.read()
|
|
659
|
+
return self.api_client.response_deserialize(
|
|
660
|
+
response_data=response_data,
|
|
661
|
+
response_types_map=_response_types_map,
|
|
662
|
+
).data
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
@validate_call
|
|
666
|
+
def api_v1_client_metadata_client_id_post_with_http_info(
|
|
667
|
+
self,
|
|
668
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
669
|
+
request: Annotated[ClientClientMetadataRequest, Field(description="Body")],
|
|
670
|
+
_request_timeout: Union[
|
|
671
|
+
None,
|
|
672
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
673
|
+
Tuple[
|
|
674
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
675
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
676
|
+
]
|
|
677
|
+
] = None,
|
|
678
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
679
|
+
_content_type: Optional[StrictStr] = None,
|
|
680
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
681
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
682
|
+
) -> ApiResponse[ClientClientMetadataResponse]:
|
|
683
|
+
"""Upsert a client metadata row
|
|
684
|
+
|
|
685
|
+
Returns all of the client's urls for the given client id
|
|
686
|
+
|
|
687
|
+
:param client_id: Client ID (required)
|
|
688
|
+
:type client_id: int
|
|
689
|
+
:param request: Body (required)
|
|
690
|
+
:type request: ClientClientMetadataRequest
|
|
691
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
692
|
+
number provided, it will be total request
|
|
693
|
+
timeout. It can also be a pair (tuple) of
|
|
694
|
+
(connection, read) timeouts.
|
|
695
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
696
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
697
|
+
request; this effectively ignores the
|
|
698
|
+
authentication in the spec for a single request.
|
|
699
|
+
:type _request_auth: dict, optional
|
|
700
|
+
:param _content_type: force content-type for the request.
|
|
701
|
+
:type _content_type: str, Optional
|
|
702
|
+
:param _headers: set to override the headers for a single
|
|
703
|
+
request; this effectively ignores the headers
|
|
704
|
+
in the spec for a single request.
|
|
705
|
+
:type _headers: dict, optional
|
|
706
|
+
:param _host_index: set to override the host_index for a single
|
|
707
|
+
request; this effectively ignores the host_index
|
|
708
|
+
in the spec for a single request.
|
|
709
|
+
:type _host_index: int, optional
|
|
710
|
+
:return: Returns the result object.
|
|
711
|
+
""" # noqa: E501
|
|
712
|
+
|
|
713
|
+
_param = self._api_v1_client_metadata_client_id_post_serialize(
|
|
714
|
+
client_id=client_id,
|
|
715
|
+
request=request,
|
|
716
|
+
_request_auth=_request_auth,
|
|
717
|
+
_content_type=_content_type,
|
|
718
|
+
_headers=_headers,
|
|
719
|
+
_host_index=_host_index
|
|
720
|
+
)
|
|
721
|
+
|
|
722
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
723
|
+
'200': "ClientClientMetadataResponse",
|
|
724
|
+
'400': "ClientClientMetadataResponse",
|
|
725
|
+
'503': "ClientClientMetadataResponse",
|
|
726
|
+
}
|
|
727
|
+
response_data = self.api_client.call_api(
|
|
728
|
+
*_param,
|
|
729
|
+
_request_timeout=_request_timeout
|
|
730
|
+
)
|
|
731
|
+
response_data.read()
|
|
732
|
+
return self.api_client.response_deserialize(
|
|
733
|
+
response_data=response_data,
|
|
734
|
+
response_types_map=_response_types_map,
|
|
735
|
+
)
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
@validate_call
|
|
739
|
+
def api_v1_client_metadata_client_id_post_without_preload_content(
|
|
740
|
+
self,
|
|
741
|
+
client_id: Annotated[StrictInt, Field(description="Client ID")],
|
|
742
|
+
request: Annotated[ClientClientMetadataRequest, Field(description="Body")],
|
|
743
|
+
_request_timeout: Union[
|
|
744
|
+
None,
|
|
745
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
746
|
+
Tuple[
|
|
747
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
748
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
749
|
+
]
|
|
750
|
+
] = None,
|
|
751
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
752
|
+
_content_type: Optional[StrictStr] = None,
|
|
753
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
754
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
755
|
+
) -> RESTResponseType:
|
|
756
|
+
"""Upsert a client metadata row
|
|
757
|
+
|
|
758
|
+
Returns all of the client's urls for the given client id
|
|
759
|
+
|
|
760
|
+
:param client_id: Client ID (required)
|
|
761
|
+
:type client_id: int
|
|
762
|
+
:param request: Body (required)
|
|
763
|
+
:type request: ClientClientMetadataRequest
|
|
764
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
765
|
+
number provided, it will be total request
|
|
766
|
+
timeout. It can also be a pair (tuple) of
|
|
767
|
+
(connection, read) timeouts.
|
|
768
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
769
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
770
|
+
request; this effectively ignores the
|
|
771
|
+
authentication in the spec for a single request.
|
|
772
|
+
:type _request_auth: dict, optional
|
|
773
|
+
:param _content_type: force content-type for the request.
|
|
774
|
+
:type _content_type: str, Optional
|
|
775
|
+
:param _headers: set to override the headers for a single
|
|
776
|
+
request; this effectively ignores the headers
|
|
777
|
+
in the spec for a single request.
|
|
778
|
+
:type _headers: dict, optional
|
|
779
|
+
:param _host_index: set to override the host_index for a single
|
|
780
|
+
request; this effectively ignores the host_index
|
|
781
|
+
in the spec for a single request.
|
|
782
|
+
:type _host_index: int, optional
|
|
783
|
+
:return: Returns the result object.
|
|
784
|
+
""" # noqa: E501
|
|
785
|
+
|
|
786
|
+
_param = self._api_v1_client_metadata_client_id_post_serialize(
|
|
787
|
+
client_id=client_id,
|
|
788
|
+
request=request,
|
|
789
|
+
_request_auth=_request_auth,
|
|
790
|
+
_content_type=_content_type,
|
|
791
|
+
_headers=_headers,
|
|
792
|
+
_host_index=_host_index
|
|
793
|
+
)
|
|
794
|
+
|
|
795
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
796
|
+
'200': "ClientClientMetadataResponse",
|
|
797
|
+
'400': "ClientClientMetadataResponse",
|
|
798
|
+
'503': "ClientClientMetadataResponse",
|
|
799
|
+
}
|
|
800
|
+
response_data = self.api_client.call_api(
|
|
801
|
+
*_param,
|
|
802
|
+
_request_timeout=_request_timeout
|
|
803
|
+
)
|
|
804
|
+
return response_data.response
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
def _api_v1_client_metadata_client_id_post_serialize(
|
|
808
|
+
self,
|
|
809
|
+
client_id,
|
|
810
|
+
request,
|
|
811
|
+
_request_auth,
|
|
812
|
+
_content_type,
|
|
813
|
+
_headers,
|
|
814
|
+
_host_index,
|
|
815
|
+
) -> RequestSerialized:
|
|
816
|
+
|
|
817
|
+
_host = None
|
|
818
|
+
|
|
819
|
+
_collection_formats: Dict[str, str] = {
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
_path_params: Dict[str, str] = {}
|
|
823
|
+
_query_params: List[Tuple[str, str]] = []
|
|
824
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
825
|
+
_form_params: List[Tuple[str, str]] = []
|
|
826
|
+
_files: Dict[
|
|
827
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
828
|
+
] = {}
|
|
829
|
+
_body_params: Optional[bytes] = None
|
|
830
|
+
|
|
831
|
+
# process the path parameters
|
|
832
|
+
if client_id is not None:
|
|
833
|
+
_path_params['client_id'] = client_id
|
|
834
|
+
# process the query parameters
|
|
835
|
+
# process the header parameters
|
|
836
|
+
# process the form parameters
|
|
837
|
+
# process the body parameter
|
|
838
|
+
if request is not None:
|
|
839
|
+
_body_params = request
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
# set the HTTP header `Accept`
|
|
843
|
+
if 'Accept' not in _header_params:
|
|
844
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
845
|
+
[
|
|
846
|
+
'application/json'
|
|
847
|
+
]
|
|
848
|
+
)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
# authentication setting
|
|
852
|
+
_auth_settings: List[str] = [
|
|
853
|
+
'ApiKeyAuth'
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
return self.api_client.param_serialize(
|
|
857
|
+
method='POST',
|
|
858
|
+
resource_path='/api/v1/client/metadata/{client_id}',
|
|
859
|
+
path_params=_path_params,
|
|
860
|
+
query_params=_query_params,
|
|
861
|
+
header_params=_header_params,
|
|
862
|
+
body=_body_params,
|
|
863
|
+
post_params=_form_params,
|
|
864
|
+
files=_files,
|
|
865
|
+
auth_settings=_auth_settings,
|
|
866
|
+
collection_formats=_collection_formats,
|
|
867
|
+
_host=_host,
|
|
868
|
+
_request_auth=_request_auth
|
|
869
|
+
)
|
|
870
|
+
|
|
871
|
+
|