volcengine-python-sdk 4.0.27__py2.py3-none-any.whl → 4.0.28__py2.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.

Potentially problematic release.


This version of volcengine-python-sdk might be problematic. Click here for more details.

Files changed (267) hide show
  1. {volcengine_python_sdk-4.0.27.dist-info → volcengine_python_sdk-4.0.28.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.27.dist-info → volcengine_python_sdk-4.0.28.dist-info}/RECORD +267 -8
  3. {volcengine_python_sdk-4.0.27.dist-info → volcengine_python_sdk-4.0.28.dist-info}/top_level.txt +1 -0
  4. volcenginesdkcore/api_client.py +1 -1
  5. volcenginesdkcore/configuration.py +1 -1
  6. volcenginesdkid/__init__.py +276 -0
  7. volcenginesdkid/api/__init__.py +6 -0
  8. volcenginesdkid/api/id_api.py +7891 -0
  9. volcenginesdkid/models/__init__.py +272 -0
  10. volcenginesdkid/models/api_key_auth_config_for_batch_get_inbound_auth_config_output.py +201 -0
  11. volcenginesdkid/models/api_key_auth_config_for_create_api_key_input.py +201 -0
  12. volcenginesdkid/models/api_key_auth_config_for_create_inbound_auth_config_input.py +201 -0
  13. volcenginesdkid/models/api_key_auth_config_for_create_inbound_auth_config_output.py +201 -0
  14. volcenginesdkid/models/api_key_auth_config_for_get_inbound_auth_config_output.py +201 -0
  15. volcenginesdkid/models/api_key_auth_config_for_list_inbound_auth_configs_output.py +201 -0
  16. volcenginesdkid/models/api_key_auth_config_for_update_inbound_auth_config_input.py +201 -0
  17. volcenginesdkid/models/api_key_credential_provider_for_batch_get_api_key_credential_providers_output.py +201 -0
  18. volcenginesdkid/models/api_key_credential_provider_for_list_api_key_credential_providers_output.py +201 -0
  19. volcenginesdkid/models/api_key_metadata_for_batch_get_inbound_auth_config_output.py +149 -0
  20. volcenginesdkid/models/api_key_metadata_for_create_api_key_credential_provider_input.py +149 -0
  21. volcenginesdkid/models/api_key_metadata_for_create_api_key_input.py +149 -0
  22. volcenginesdkid/models/api_key_metadata_for_create_inbound_auth_config_input.py +149 -0
  23. volcenginesdkid/models/api_key_metadata_for_create_inbound_auth_config_output.py +149 -0
  24. volcenginesdkid/models/api_key_metadata_for_get_api_key_credential_provider_output.py +149 -0
  25. volcenginesdkid/models/api_key_metadata_for_get_inbound_auth_config_output.py +149 -0
  26. volcenginesdkid/models/api_key_metadata_for_get_resource_api_key_output.py +149 -0
  27. volcenginesdkid/models/api_key_metadata_for_list_inbound_auth_configs_output.py +149 -0
  28. volcenginesdkid/models/api_key_metadata_for_update_api_key_credential_provider_input.py +149 -0
  29. volcenginesdkid/models/api_key_metadata_for_update_inbound_auth_config_input.py +149 -0
  30. volcenginesdkid/models/attach_inbound_auth_config_request.py +151 -0
  31. volcenginesdkid/models/attach_inbound_auth_config_response.py +95 -0
  32. volcenginesdkid/models/authorization_server_metadata_for_create_oauth2_credential_provider_input.py +201 -0
  33. volcenginesdkid/models/authorization_server_metadata_for_get_oauth2_credential_provider_output.py +201 -0
  34. volcenginesdkid/models/authorization_server_metadata_for_update_oauth2_credential_provider_input.py +201 -0
  35. volcenginesdkid/models/batch_get_api_key_credential_providers_request.py +149 -0
  36. volcenginesdkid/models/batch_get_api_key_credential_providers_response.py +123 -0
  37. volcenginesdkid/models/batch_get_inbound_auth_config_request.py +123 -0
  38. volcenginesdkid/models/batch_get_inbound_auth_config_response.py +123 -0
  39. volcenginesdkid/models/batch_get_oauth2_credential_providers_request.py +149 -0
  40. volcenginesdkid/models/batch_get_oauth2_credential_providers_response.py +123 -0
  41. volcenginesdkid/models/check_api_key_request.py +124 -0
  42. volcenginesdkid/models/check_api_key_response.py +95 -0
  43. volcenginesdkid/models/check_permission_request.py +254 -0
  44. volcenginesdkid/models/check_permission_response.py +149 -0
  45. volcenginesdkid/models/config_for_create_oauth2_credential_provider_input.py +331 -0
  46. volcenginesdkid/models/config_for_get_oauth2_credential_provider_output.py +331 -0
  47. volcenginesdkid/models/config_for_update_oauth2_credential_provider_input.py +331 -0
  48. volcenginesdkid/models/create_api_key_credential_provider_request.py +203 -0
  49. volcenginesdkid/models/create_api_key_credential_provider_response.py +175 -0
  50. volcenginesdkid/models/create_api_key_request.py +150 -0
  51. volcenginesdkid/models/create_api_key_response.py +95 -0
  52. volcenginesdkid/models/create_identity_provider_o_auth_request.py +419 -0
  53. volcenginesdkid/models/create_identity_provider_o_auth_response.py +409 -0
  54. volcenginesdkid/models/create_identity_provider_oidc_request.py +365 -0
  55. volcenginesdkid/models/create_identity_provider_oidc_response.py +357 -0
  56. volcenginesdkid/models/create_inbound_auth_config_request.py +254 -0
  57. volcenginesdkid/models/create_inbound_auth_config_response.py +357 -0
  58. volcenginesdkid/models/create_namespace_request.py +149 -0
  59. volcenginesdkid/models/create_namespace_response.py +175 -0
  60. volcenginesdkid/models/create_oauth2_credential_provider_request.py +206 -0
  61. volcenginesdkid/models/create_oauth2_credential_provider_response.py +175 -0
  62. volcenginesdkid/models/create_policy_request.py +149 -0
  63. volcenginesdkid/models/create_policy_response.py +175 -0
  64. volcenginesdkid/models/create_user_pool_client_request.py +230 -0
  65. volcenginesdkid/models/create_user_pool_client_response.py +461 -0
  66. volcenginesdkid/models/create_user_pool_request.py +150 -0
  67. volcenginesdkid/models/create_user_pool_response.py +383 -0
  68. volcenginesdkid/models/create_user_request.py +410 -0
  69. volcenginesdkid/models/create_user_response.py +773 -0
  70. volcenginesdkid/models/create_users_csv_request.py +124 -0
  71. volcenginesdkid/models/create_users_csv_response.py +201 -0
  72. volcenginesdkid/models/create_users_request.py +150 -0
  73. volcenginesdkid/models/create_users_response.py +201 -0
  74. volcenginesdkid/models/create_workload_identity_request.py +228 -0
  75. volcenginesdkid/models/create_workload_identity_response.py +305 -0
  76. volcenginesdkid/models/create_workload_pool_request.py +149 -0
  77. volcenginesdkid/models/create_workload_pool_response.py +253 -0
  78. volcenginesdkid/models/credential_provider_for_list_credential_providers_output.py +253 -0
  79. volcenginesdkid/models/custom_parameters_for_create_oauth2_credential_provider_input.py +123 -0
  80. volcenginesdkid/models/custom_parameters_for_get_oauth2_credential_provider_output.py +123 -0
  81. volcenginesdkid/models/custom_parameters_for_get_resource_oauth2_token_input.py +123 -0
  82. volcenginesdkid/models/custom_parameters_for_update_oauth2_credential_provider_input.py +123 -0
  83. volcenginesdkid/models/data_for_list_identity_providers_o_auth_output.py +409 -0
  84. volcenginesdkid/models/data_for_list_identity_providers_oidc_output.py +357 -0
  85. volcenginesdkid/models/data_for_list_identity_providers_output.py +227 -0
  86. volcenginesdkid/models/data_for_list_policies_output.py +175 -0
  87. volcenginesdkid/models/data_for_list_user_pool_clients_output.py +253 -0
  88. volcenginesdkid/models/data_for_list_user_pools_output.py +279 -0
  89. volcenginesdkid/models/data_for_list_users_output.py +773 -0
  90. volcenginesdkid/models/delete_api_key_credential_provider_request.py +150 -0
  91. volcenginesdkid/models/delete_api_key_credential_provider_response.py +95 -0
  92. volcenginesdkid/models/delete_api_key_request.py +151 -0
  93. volcenginesdkid/models/delete_api_key_response.py +95 -0
  94. volcenginesdkid/models/delete_identity_provider_o_auth_request.py +151 -0
  95. volcenginesdkid/models/delete_identity_provider_o_auth_response.py +123 -0
  96. volcenginesdkid/models/delete_identity_provider_oidc_request.py +151 -0
  97. volcenginesdkid/models/delete_identity_provider_oidc_response.py +123 -0
  98. volcenginesdkid/models/delete_identity_provider_request.py +151 -0
  99. volcenginesdkid/models/delete_identity_provider_response.py +123 -0
  100. volcenginesdkid/models/delete_inbound_auth_config_request.py +124 -0
  101. volcenginesdkid/models/delete_inbound_auth_config_response.py +95 -0
  102. volcenginesdkid/models/delete_namespace_request.py +123 -0
  103. volcenginesdkid/models/delete_namespace_response.py +149 -0
  104. volcenginesdkid/models/delete_oauth2_credential_provider_request.py +150 -0
  105. volcenginesdkid/models/delete_oauth2_credential_provider_response.py +95 -0
  106. volcenginesdkid/models/delete_policy_request.py +149 -0
  107. volcenginesdkid/models/delete_policy_response.py +149 -0
  108. volcenginesdkid/models/delete_user_pool_client_request.py +151 -0
  109. volcenginesdkid/models/delete_user_pool_client_response.py +123 -0
  110. volcenginesdkid/models/delete_user_pool_request.py +124 -0
  111. volcenginesdkid/models/delete_user_pool_response.py +123 -0
  112. volcenginesdkid/models/delete_users_request.py +150 -0
  113. volcenginesdkid/models/delete_users_response.py +201 -0
  114. volcenginesdkid/models/delete_workload_identity_request.py +150 -0
  115. volcenginesdkid/models/delete_workload_identity_response.py +95 -0
  116. volcenginesdkid/models/delete_workload_pool_request.py +123 -0
  117. volcenginesdkid/models/delete_workload_pool_response.py +95 -0
  118. volcenginesdkid/models/detach_inbound_auth_config_request.py +151 -0
  119. volcenginesdkid/models/detach_inbound_auth_config_response.py +95 -0
  120. volcenginesdkid/models/entity_for_check_permission_input.py +149 -0
  121. volcenginesdkid/models/entry_for_create_oauth2_credential_provider_input.py +149 -0
  122. volcenginesdkid/models/entry_for_get_oauth2_credential_provider_output.py +149 -0
  123. volcenginesdkid/models/entry_for_get_resource_oauth2_token_input.py +149 -0
  124. volcenginesdkid/models/entry_for_update_oauth2_credential_provider_input.py +149 -0
  125. volcenginesdkid/models/filter_for_list_identity_providers_input.py +149 -0
  126. volcenginesdkid/models/filter_for_list_user_pool_clients_input.py +175 -0
  127. volcenginesdkid/models/filter_for_list_user_pools_input.py +201 -0
  128. volcenginesdkid/models/filter_for_list_users_input.py +435 -0
  129. volcenginesdkid/models/get_api_key_credential_provider_request.py +150 -0
  130. volcenginesdkid/models/get_api_key_credential_provider_response.py +279 -0
  131. volcenginesdkid/models/get_identity_provider_o_auth_request.py +151 -0
  132. volcenginesdkid/models/get_identity_provider_o_auth_response.py +409 -0
  133. volcenginesdkid/models/get_identity_provider_oidc_request.py +151 -0
  134. volcenginesdkid/models/get_identity_provider_oidc_response.py +357 -0
  135. volcenginesdkid/models/get_inbound_auth_config_request.py +124 -0
  136. volcenginesdkid/models/get_inbound_auth_config_response.py +357 -0
  137. volcenginesdkid/models/get_namespace_request.py +149 -0
  138. volcenginesdkid/models/get_namespace_response.py +201 -0
  139. volcenginesdkid/models/get_oauth2_credential_provider_request.py +150 -0
  140. volcenginesdkid/models/get_oauth2_credential_provider_response.py +305 -0
  141. volcenginesdkid/models/get_policy_request.py +149 -0
  142. volcenginesdkid/models/get_policy_response.py +175 -0
  143. volcenginesdkid/models/get_resource_api_key_request.py +177 -0
  144. volcenginesdkid/models/get_resource_api_key_response.py +149 -0
  145. volcenginesdkid/models/get_resource_oauth2_token_request.py +307 -0
  146. volcenginesdkid/models/get_resource_oauth2_token_response.py +149 -0
  147. volcenginesdkid/models/get_user_csv_template_request.py +124 -0
  148. volcenginesdkid/models/get_user_csv_template_response.py +95 -0
  149. volcenginesdkid/models/get_user_pool_client_request.py +151 -0
  150. volcenginesdkid/models/get_user_pool_client_response.py +461 -0
  151. volcenginesdkid/models/get_user_pool_request.py +124 -0
  152. volcenginesdkid/models/get_user_pool_response.py +383 -0
  153. volcenginesdkid/models/get_user_request.py +151 -0
  154. volcenginesdkid/models/get_user_response.py +773 -0
  155. volcenginesdkid/models/get_workload_access_token_for_jwt_request.py +176 -0
  156. volcenginesdkid/models/get_workload_access_token_for_jwt_response.py +149 -0
  157. volcenginesdkid/models/get_workload_access_token_for_user_id_request.py +176 -0
  158. volcenginesdkid/models/get_workload_access_token_for_user_id_response.py +149 -0
  159. volcenginesdkid/models/get_workload_access_token_request.py +149 -0
  160. volcenginesdkid/models/get_workload_access_token_response.py +149 -0
  161. volcenginesdkid/models/get_workload_identity_request.py +150 -0
  162. volcenginesdkid/models/get_workload_identity_response.py +305 -0
  163. volcenginesdkid/models/get_workload_pool_request.py +149 -0
  164. volcenginesdkid/models/get_workload_pool_response.py +253 -0
  165. volcenginesdkid/models/grant_permission_request.py +228 -0
  166. volcenginesdkid/models/grant_permission_response.py +175 -0
  167. volcenginesdkid/models/id_token_for_create_user_pool_client_output.py +123 -0
  168. volcenginesdkid/models/id_token_for_get_user_pool_client_output.py +123 -0
  169. volcenginesdkid/models/id_token_for_update_user_pool_client_input.py +123 -0
  170. volcenginesdkid/models/id_token_for_update_user_pool_client_output.py +123 -0
  171. volcenginesdkid/models/inbound_auth_config_for_batch_get_inbound_auth_config_output.py +357 -0
  172. volcenginesdkid/models/inbound_auth_config_for_list_inbound_auth_configs_output.py +357 -0
  173. volcenginesdkid/models/jwt_auth_config_for_batch_get_inbound_auth_config_output.py +175 -0
  174. volcenginesdkid/models/jwt_auth_config_for_create_inbound_auth_config_input.py +175 -0
  175. volcenginesdkid/models/jwt_auth_config_for_create_inbound_auth_config_output.py +175 -0
  176. volcenginesdkid/models/jwt_auth_config_for_get_inbound_auth_config_output.py +175 -0
  177. volcenginesdkid/models/jwt_auth_config_for_list_inbound_auth_configs_output.py +175 -0
  178. volcenginesdkid/models/jwt_auth_config_for_update_inbound_auth_config_input.py +175 -0
  179. volcenginesdkid/models/list_api_key_credential_providers_request.py +177 -0
  180. volcenginesdkid/models/list_api_key_credential_providers_response.py +201 -0
  181. volcenginesdkid/models/list_credential_providers_request.py +177 -0
  182. volcenginesdkid/models/list_credential_providers_response.py +201 -0
  183. volcenginesdkid/models/list_identity_providers_o_auth_request.py +124 -0
  184. volcenginesdkid/models/list_identity_providers_o_auth_response.py +201 -0
  185. volcenginesdkid/models/list_identity_providers_oidc_request.py +124 -0
  186. volcenginesdkid/models/list_identity_providers_oidc_response.py +201 -0
  187. volcenginesdkid/models/list_identity_providers_request.py +204 -0
  188. volcenginesdkid/models/list_identity_providers_response.py +201 -0
  189. volcenginesdkid/models/list_inbound_auth_configs_request.py +203 -0
  190. volcenginesdkid/models/list_inbound_auth_configs_response.py +201 -0
  191. volcenginesdkid/models/list_namespaces_request.py +149 -0
  192. volcenginesdkid/models/list_namespaces_response.py +201 -0
  193. volcenginesdkid/models/list_oauth2_credential_providers_request.py +177 -0
  194. volcenginesdkid/models/list_oauth2_credential_providers_response.py +201 -0
  195. volcenginesdkid/models/list_policies_request.py +123 -0
  196. volcenginesdkid/models/list_policies_response.py +123 -0
  197. volcenginesdkid/models/list_user_pool_clients_request.py +256 -0
  198. volcenginesdkid/models/list_user_pool_clients_response.py +201 -0
  199. volcenginesdkid/models/list_user_pools_request.py +229 -0
  200. volcenginesdkid/models/list_user_pools_response.py +201 -0
  201. volcenginesdkid/models/list_users_request.py +256 -0
  202. volcenginesdkid/models/list_users_response.py +201 -0
  203. volcenginesdkid/models/list_workload_identities_request.py +209 -0
  204. volcenginesdkid/models/list_workload_identities_response.py +201 -0
  205. volcenginesdkid/models/list_workload_pools_request.py +157 -0
  206. volcenginesdkid/models/list_workload_pools_response.py +201 -0
  207. volcenginesdkid/models/oauth2_callback_request.py +178 -0
  208. volcenginesdkid/models/oauth2_callback_response.py +123 -0
  209. volcenginesdkid/models/oauth2_credential_provider_for_batch_get_oauth2_credential_providers_output.py +227 -0
  210. volcenginesdkid/models/oauth2_credential_provider_for_list_oauth2_credential_providers_output.py +227 -0
  211. volcenginesdkid/models/oauth2_discovery_for_create_oauth2_credential_provider_input.py +149 -0
  212. volcenginesdkid/models/oauth2_discovery_for_get_oauth2_credential_provider_output.py +149 -0
  213. volcenginesdkid/models/oauth2_discovery_for_update_oauth2_credential_provider_input.py +149 -0
  214. volcenginesdkid/models/operation_for_check_permission_input.py +149 -0
  215. volcenginesdkid/models/operation_for_grant_permission_input.py +175 -0
  216. volcenginesdkid/models/original_caller_for_check_permission_input.py +149 -0
  217. volcenginesdkid/models/original_caller_for_grant_permission_input.py +175 -0
  218. volcenginesdkid/models/parent_for_check_permission_input.py +149 -0
  219. volcenginesdkid/models/principal_for_check_permission_input.py +149 -0
  220. volcenginesdkid/models/principal_for_grant_permission_input.py +175 -0
  221. volcenginesdkid/models/provider_options_for_create_identity_provider_o_auth_input.py +227 -0
  222. volcenginesdkid/models/provider_options_for_create_identity_provider_o_auth_output.py +227 -0
  223. volcenginesdkid/models/provider_options_for_create_identity_provider_oidc_input.py +227 -0
  224. volcenginesdkid/models/provider_options_for_create_identity_provider_oidc_output.py +227 -0
  225. volcenginesdkid/models/provider_options_for_get_identity_provider_o_auth_output.py +227 -0
  226. volcenginesdkid/models/provider_options_for_get_identity_provider_oidc_output.py +227 -0
  227. volcenginesdkid/models/provider_options_for_list_identity_providers_o_auth_output.py +227 -0
  228. volcenginesdkid/models/provider_options_for_list_identity_providers_oidc_output.py +227 -0
  229. volcenginesdkid/models/provider_options_for_update_identity_provider_o_auth_input.py +227 -0
  230. volcenginesdkid/models/provider_options_for_update_identity_provider_o_auth_output.py +227 -0
  231. volcenginesdkid/models/provider_options_for_update_identity_provider_oidc_input.py +227 -0
  232. volcenginesdkid/models/provider_options_for_update_identity_provider_oidc_output.py +227 -0
  233. volcenginesdkid/models/reference_for_check_permission_input.py +149 -0
  234. volcenginesdkid/models/refresh_token_for_create_user_pool_client_output.py +227 -0
  235. volcenginesdkid/models/refresh_token_for_get_user_pool_client_output.py +227 -0
  236. volcenginesdkid/models/refresh_token_for_update_user_pool_client_input.py +227 -0
  237. volcenginesdkid/models/refresh_token_for_update_user_pool_client_output.py +227 -0
  238. volcenginesdkid/models/resource_for_check_permission_input.py +149 -0
  239. volcenginesdkid/models/resource_for_grant_permission_input.py +175 -0
  240. volcenginesdkid/models/update_api_key_credential_provider_request.py +202 -0
  241. volcenginesdkid/models/update_api_key_credential_provider_response.py +227 -0
  242. volcenginesdkid/models/update_identity_provider_o_auth_request.py +440 -0
  243. volcenginesdkid/models/update_identity_provider_o_auth_response.py +409 -0
  244. volcenginesdkid/models/update_identity_provider_oidc_request.py +388 -0
  245. volcenginesdkid/models/update_identity_provider_oidc_response.py +357 -0
  246. volcenginesdkid/models/update_inbound_auth_config_request.py +202 -0
  247. volcenginesdkid/models/update_inbound_auth_config_response.py +95 -0
  248. volcenginesdkid/models/update_namespace_request.py +149 -0
  249. volcenginesdkid/models/update_namespace_response.py +149 -0
  250. volcenginesdkid/models/update_oauth2_credential_provider_request.py +176 -0
  251. volcenginesdkid/models/update_oauth2_credential_provider_response.py +227 -0
  252. volcenginesdkid/models/update_user_pool_client_request.py +359 -0
  253. volcenginesdkid/models/update_user_pool_client_response.py +461 -0
  254. volcenginesdkid/models/update_user_pool_request.py +176 -0
  255. volcenginesdkid/models/update_user_pool_response.py +383 -0
  256. volcenginesdkid/models/update_user_request.py +411 -0
  257. volcenginesdkid/models/update_user_response.py +773 -0
  258. volcenginesdkid/models/update_workload_identity_request.py +202 -0
  259. volcenginesdkid/models/update_workload_identity_response.py +95 -0
  260. volcenginesdkid/models/update_workload_pool_request.py +149 -0
  261. volcenginesdkid/models/update_workload_pool_response.py +95 -0
  262. volcenginesdkid/models/user_for_create_users_input.py +383 -0
  263. volcenginesdkid/models/workload_identity_for_list_workload_identities_output.py +305 -0
  264. volcenginesdkid/models/workload_pool_for_list_workload_pools_output.py +253 -0
  265. {volcengine_python_sdk-4.0.27.dist-info → volcengine_python_sdk-4.0.28.dist-info}/WHEEL +0 -0
  266. {volcengine_python_sdk-4.0.27.dist-info → volcengine_python_sdk-4.0.28.dist-info}/licenses/LICENSE.txt +0 -0
  267. {volcengine_python_sdk-4.0.27.dist-info → volcengine_python_sdk-4.0.28.dist-info}/licenses/NOTICE.md +0 -0
@@ -0,0 +1,175 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ id
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class DataForListPoliciesOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'namespace': 'str',
37
+ 'policy': 'str',
38
+ 'policy_id': 'str'
39
+ }
40
+
41
+ attribute_map = {
42
+ 'namespace': 'Namespace',
43
+ 'policy': 'Policy',
44
+ 'policy_id': 'PolicyId'
45
+ }
46
+
47
+ def __init__(self, namespace=None, policy=None, policy_id=None, _configuration=None): # noqa: E501
48
+ """DataForListPoliciesOutput - a model defined in Swagger""" # noqa: E501
49
+ if _configuration is None:
50
+ _configuration = Configuration()
51
+ self._configuration = _configuration
52
+
53
+ self._namespace = None
54
+ self._policy = None
55
+ self._policy_id = None
56
+ self.discriminator = None
57
+
58
+ if namespace is not None:
59
+ self.namespace = namespace
60
+ if policy is not None:
61
+ self.policy = policy
62
+ if policy_id is not None:
63
+ self.policy_id = policy_id
64
+
65
+ @property
66
+ def namespace(self):
67
+ """Gets the namespace of this DataForListPoliciesOutput. # noqa: E501
68
+
69
+
70
+ :return: The namespace of this DataForListPoliciesOutput. # noqa: E501
71
+ :rtype: str
72
+ """
73
+ return self._namespace
74
+
75
+ @namespace.setter
76
+ def namespace(self, namespace):
77
+ """Sets the namespace of this DataForListPoliciesOutput.
78
+
79
+
80
+ :param namespace: The namespace of this DataForListPoliciesOutput. # noqa: E501
81
+ :type: str
82
+ """
83
+
84
+ self._namespace = namespace
85
+
86
+ @property
87
+ def policy(self):
88
+ """Gets the policy of this DataForListPoliciesOutput. # noqa: E501
89
+
90
+
91
+ :return: The policy of this DataForListPoliciesOutput. # noqa: E501
92
+ :rtype: str
93
+ """
94
+ return self._policy
95
+
96
+ @policy.setter
97
+ def policy(self, policy):
98
+ """Sets the policy of this DataForListPoliciesOutput.
99
+
100
+
101
+ :param policy: The policy of this DataForListPoliciesOutput. # noqa: E501
102
+ :type: str
103
+ """
104
+
105
+ self._policy = policy
106
+
107
+ @property
108
+ def policy_id(self):
109
+ """Gets the policy_id of this DataForListPoliciesOutput. # noqa: E501
110
+
111
+
112
+ :return: The policy_id of this DataForListPoliciesOutput. # noqa: E501
113
+ :rtype: str
114
+ """
115
+ return self._policy_id
116
+
117
+ @policy_id.setter
118
+ def policy_id(self, policy_id):
119
+ """Sets the policy_id of this DataForListPoliciesOutput.
120
+
121
+
122
+ :param policy_id: The policy_id of this DataForListPoliciesOutput. # noqa: E501
123
+ :type: str
124
+ """
125
+
126
+ self._policy_id = policy_id
127
+
128
+ def to_dict(self):
129
+ """Returns the model properties as a dict"""
130
+ result = {}
131
+
132
+ for attr, _ in six.iteritems(self.swagger_types):
133
+ value = getattr(self, attr)
134
+ if isinstance(value, list):
135
+ result[attr] = list(map(
136
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
137
+ value
138
+ ))
139
+ elif hasattr(value, "to_dict"):
140
+ result[attr] = value.to_dict()
141
+ elif isinstance(value, dict):
142
+ result[attr] = dict(map(
143
+ lambda item: (item[0], item[1].to_dict())
144
+ if hasattr(item[1], "to_dict") else item,
145
+ value.items()
146
+ ))
147
+ else:
148
+ result[attr] = value
149
+ if issubclass(DataForListPoliciesOutput, dict):
150
+ for key, value in self.items():
151
+ result[key] = value
152
+
153
+ return result
154
+
155
+ def to_str(self):
156
+ """Returns the string representation of the model"""
157
+ return pprint.pformat(self.to_dict())
158
+
159
+ def __repr__(self):
160
+ """For `print` and `pprint`"""
161
+ return self.to_str()
162
+
163
+ def __eq__(self, other):
164
+ """Returns true if both objects are equal"""
165
+ if not isinstance(other, DataForListPoliciesOutput):
166
+ return False
167
+
168
+ return self.to_dict() == other.to_dict()
169
+
170
+ def __ne__(self, other):
171
+ """Returns true if both objects are not equal"""
172
+ if not isinstance(other, DataForListPoliciesOutput):
173
+ return True
174
+
175
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,253 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ id
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class DataForListUserPoolClientsOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'client_type': 'str',
37
+ 'create_time': 'str',
38
+ 'description': 'str',
39
+ 'name': 'str',
40
+ 'uid': 'str',
41
+ 'update_time': 'str'
42
+ }
43
+
44
+ attribute_map = {
45
+ 'client_type': 'ClientType',
46
+ 'create_time': 'CreateTime',
47
+ 'description': 'Description',
48
+ 'name': 'Name',
49
+ 'uid': 'Uid',
50
+ 'update_time': 'UpdateTime'
51
+ }
52
+
53
+ def __init__(self, client_type=None, create_time=None, description=None, name=None, uid=None, update_time=None, _configuration=None): # noqa: E501
54
+ """DataForListUserPoolClientsOutput - a model defined in Swagger""" # noqa: E501
55
+ if _configuration is None:
56
+ _configuration = Configuration()
57
+ self._configuration = _configuration
58
+
59
+ self._client_type = None
60
+ self._create_time = None
61
+ self._description = None
62
+ self._name = None
63
+ self._uid = None
64
+ self._update_time = None
65
+ self.discriminator = None
66
+
67
+ if client_type is not None:
68
+ self.client_type = client_type
69
+ if create_time is not None:
70
+ self.create_time = create_time
71
+ if description is not None:
72
+ self.description = description
73
+ if name is not None:
74
+ self.name = name
75
+ if uid is not None:
76
+ self.uid = uid
77
+ if update_time is not None:
78
+ self.update_time = update_time
79
+
80
+ @property
81
+ def client_type(self):
82
+ """Gets the client_type of this DataForListUserPoolClientsOutput. # noqa: E501
83
+
84
+
85
+ :return: The client_type of this DataForListUserPoolClientsOutput. # noqa: E501
86
+ :rtype: str
87
+ """
88
+ return self._client_type
89
+
90
+ @client_type.setter
91
+ def client_type(self, client_type):
92
+ """Sets the client_type of this DataForListUserPoolClientsOutput.
93
+
94
+
95
+ :param client_type: The client_type of this DataForListUserPoolClientsOutput. # noqa: E501
96
+ :type: str
97
+ """
98
+
99
+ self._client_type = client_type
100
+
101
+ @property
102
+ def create_time(self):
103
+ """Gets the create_time of this DataForListUserPoolClientsOutput. # noqa: E501
104
+
105
+
106
+ :return: The create_time of this DataForListUserPoolClientsOutput. # noqa: E501
107
+ :rtype: str
108
+ """
109
+ return self._create_time
110
+
111
+ @create_time.setter
112
+ def create_time(self, create_time):
113
+ """Sets the create_time of this DataForListUserPoolClientsOutput.
114
+
115
+
116
+ :param create_time: The create_time of this DataForListUserPoolClientsOutput. # noqa: E501
117
+ :type: str
118
+ """
119
+
120
+ self._create_time = create_time
121
+
122
+ @property
123
+ def description(self):
124
+ """Gets the description of this DataForListUserPoolClientsOutput. # noqa: E501
125
+
126
+
127
+ :return: The description of this DataForListUserPoolClientsOutput. # noqa: E501
128
+ :rtype: str
129
+ """
130
+ return self._description
131
+
132
+ @description.setter
133
+ def description(self, description):
134
+ """Sets the description of this DataForListUserPoolClientsOutput.
135
+
136
+
137
+ :param description: The description of this DataForListUserPoolClientsOutput. # noqa: E501
138
+ :type: str
139
+ """
140
+
141
+ self._description = description
142
+
143
+ @property
144
+ def name(self):
145
+ """Gets the name of this DataForListUserPoolClientsOutput. # noqa: E501
146
+
147
+
148
+ :return: The name of this DataForListUserPoolClientsOutput. # noqa: E501
149
+ :rtype: str
150
+ """
151
+ return self._name
152
+
153
+ @name.setter
154
+ def name(self, name):
155
+ """Sets the name of this DataForListUserPoolClientsOutput.
156
+
157
+
158
+ :param name: The name of this DataForListUserPoolClientsOutput. # noqa: E501
159
+ :type: str
160
+ """
161
+
162
+ self._name = name
163
+
164
+ @property
165
+ def uid(self):
166
+ """Gets the uid of this DataForListUserPoolClientsOutput. # noqa: E501
167
+
168
+
169
+ :return: The uid of this DataForListUserPoolClientsOutput. # noqa: E501
170
+ :rtype: str
171
+ """
172
+ return self._uid
173
+
174
+ @uid.setter
175
+ def uid(self, uid):
176
+ """Sets the uid of this DataForListUserPoolClientsOutput.
177
+
178
+
179
+ :param uid: The uid of this DataForListUserPoolClientsOutput. # noqa: E501
180
+ :type: str
181
+ """
182
+
183
+ self._uid = uid
184
+
185
+ @property
186
+ def update_time(self):
187
+ """Gets the update_time of this DataForListUserPoolClientsOutput. # noqa: E501
188
+
189
+
190
+ :return: The update_time of this DataForListUserPoolClientsOutput. # noqa: E501
191
+ :rtype: str
192
+ """
193
+ return self._update_time
194
+
195
+ @update_time.setter
196
+ def update_time(self, update_time):
197
+ """Sets the update_time of this DataForListUserPoolClientsOutput.
198
+
199
+
200
+ :param update_time: The update_time of this DataForListUserPoolClientsOutput. # noqa: E501
201
+ :type: str
202
+ """
203
+
204
+ self._update_time = update_time
205
+
206
+ def to_dict(self):
207
+ """Returns the model properties as a dict"""
208
+ result = {}
209
+
210
+ for attr, _ in six.iteritems(self.swagger_types):
211
+ value = getattr(self, attr)
212
+ if isinstance(value, list):
213
+ result[attr] = list(map(
214
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
215
+ value
216
+ ))
217
+ elif hasattr(value, "to_dict"):
218
+ result[attr] = value.to_dict()
219
+ elif isinstance(value, dict):
220
+ result[attr] = dict(map(
221
+ lambda item: (item[0], item[1].to_dict())
222
+ if hasattr(item[1], "to_dict") else item,
223
+ value.items()
224
+ ))
225
+ else:
226
+ result[attr] = value
227
+ if issubclass(DataForListUserPoolClientsOutput, dict):
228
+ for key, value in self.items():
229
+ result[key] = value
230
+
231
+ return result
232
+
233
+ def to_str(self):
234
+ """Returns the string representation of the model"""
235
+ return pprint.pformat(self.to_dict())
236
+
237
+ def __repr__(self):
238
+ """For `print` and `pprint`"""
239
+ return self.to_str()
240
+
241
+ def __eq__(self, other):
242
+ """Returns true if both objects are equal"""
243
+ if not isinstance(other, DataForListUserPoolClientsOutput):
244
+ return False
245
+
246
+ return self.to_dict() == other.to_dict()
247
+
248
+ def __ne__(self, other):
249
+ """Returns true if both objects are not equal"""
250
+ if not isinstance(other, DataForListUserPoolClientsOutput):
251
+ return True
252
+
253
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,279 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ id
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class DataForListUserPoolsOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'create_time': 'str',
37
+ 'description': 'str',
38
+ 'domain': 'str',
39
+ 'name': 'str',
40
+ 'trn': 'str',
41
+ 'uid': 'str',
42
+ 'update_time': 'str'
43
+ }
44
+
45
+ attribute_map = {
46
+ 'create_time': 'CreateTime',
47
+ 'description': 'Description',
48
+ 'domain': 'Domain',
49
+ 'name': 'Name',
50
+ 'trn': 'Trn',
51
+ 'uid': 'Uid',
52
+ 'update_time': 'UpdateTime'
53
+ }
54
+
55
+ def __init__(self, create_time=None, description=None, domain=None, name=None, trn=None, uid=None, update_time=None, _configuration=None): # noqa: E501
56
+ """DataForListUserPoolsOutput - a model defined in Swagger""" # noqa: E501
57
+ if _configuration is None:
58
+ _configuration = Configuration()
59
+ self._configuration = _configuration
60
+
61
+ self._create_time = None
62
+ self._description = None
63
+ self._domain = None
64
+ self._name = None
65
+ self._trn = None
66
+ self._uid = None
67
+ self._update_time = None
68
+ self.discriminator = None
69
+
70
+ if create_time is not None:
71
+ self.create_time = create_time
72
+ if description is not None:
73
+ self.description = description
74
+ if domain is not None:
75
+ self.domain = domain
76
+ if name is not None:
77
+ self.name = name
78
+ if trn is not None:
79
+ self.trn = trn
80
+ if uid is not None:
81
+ self.uid = uid
82
+ if update_time is not None:
83
+ self.update_time = update_time
84
+
85
+ @property
86
+ def create_time(self):
87
+ """Gets the create_time of this DataForListUserPoolsOutput. # noqa: E501
88
+
89
+
90
+ :return: The create_time of this DataForListUserPoolsOutput. # noqa: E501
91
+ :rtype: str
92
+ """
93
+ return self._create_time
94
+
95
+ @create_time.setter
96
+ def create_time(self, create_time):
97
+ """Sets the create_time of this DataForListUserPoolsOutput.
98
+
99
+
100
+ :param create_time: The create_time of this DataForListUserPoolsOutput. # noqa: E501
101
+ :type: str
102
+ """
103
+
104
+ self._create_time = create_time
105
+
106
+ @property
107
+ def description(self):
108
+ """Gets the description of this DataForListUserPoolsOutput. # noqa: E501
109
+
110
+
111
+ :return: The description of this DataForListUserPoolsOutput. # noqa: E501
112
+ :rtype: str
113
+ """
114
+ return self._description
115
+
116
+ @description.setter
117
+ def description(self, description):
118
+ """Sets the description of this DataForListUserPoolsOutput.
119
+
120
+
121
+ :param description: The description of this DataForListUserPoolsOutput. # noqa: E501
122
+ :type: str
123
+ """
124
+
125
+ self._description = description
126
+
127
+ @property
128
+ def domain(self):
129
+ """Gets the domain of this DataForListUserPoolsOutput. # noqa: E501
130
+
131
+
132
+ :return: The domain of this DataForListUserPoolsOutput. # noqa: E501
133
+ :rtype: str
134
+ """
135
+ return self._domain
136
+
137
+ @domain.setter
138
+ def domain(self, domain):
139
+ """Sets the domain of this DataForListUserPoolsOutput.
140
+
141
+
142
+ :param domain: The domain of this DataForListUserPoolsOutput. # noqa: E501
143
+ :type: str
144
+ """
145
+
146
+ self._domain = domain
147
+
148
+ @property
149
+ def name(self):
150
+ """Gets the name of this DataForListUserPoolsOutput. # noqa: E501
151
+
152
+
153
+ :return: The name of this DataForListUserPoolsOutput. # noqa: E501
154
+ :rtype: str
155
+ """
156
+ return self._name
157
+
158
+ @name.setter
159
+ def name(self, name):
160
+ """Sets the name of this DataForListUserPoolsOutput.
161
+
162
+
163
+ :param name: The name of this DataForListUserPoolsOutput. # noqa: E501
164
+ :type: str
165
+ """
166
+
167
+ self._name = name
168
+
169
+ @property
170
+ def trn(self):
171
+ """Gets the trn of this DataForListUserPoolsOutput. # noqa: E501
172
+
173
+
174
+ :return: The trn of this DataForListUserPoolsOutput. # noqa: E501
175
+ :rtype: str
176
+ """
177
+ return self._trn
178
+
179
+ @trn.setter
180
+ def trn(self, trn):
181
+ """Sets the trn of this DataForListUserPoolsOutput.
182
+
183
+
184
+ :param trn: The trn of this DataForListUserPoolsOutput. # noqa: E501
185
+ :type: str
186
+ """
187
+
188
+ self._trn = trn
189
+
190
+ @property
191
+ def uid(self):
192
+ """Gets the uid of this DataForListUserPoolsOutput. # noqa: E501
193
+
194
+
195
+ :return: The uid of this DataForListUserPoolsOutput. # noqa: E501
196
+ :rtype: str
197
+ """
198
+ return self._uid
199
+
200
+ @uid.setter
201
+ def uid(self, uid):
202
+ """Sets the uid of this DataForListUserPoolsOutput.
203
+
204
+
205
+ :param uid: The uid of this DataForListUserPoolsOutput. # noqa: E501
206
+ :type: str
207
+ """
208
+
209
+ self._uid = uid
210
+
211
+ @property
212
+ def update_time(self):
213
+ """Gets the update_time of this DataForListUserPoolsOutput. # noqa: E501
214
+
215
+
216
+ :return: The update_time of this DataForListUserPoolsOutput. # noqa: E501
217
+ :rtype: str
218
+ """
219
+ return self._update_time
220
+
221
+ @update_time.setter
222
+ def update_time(self, update_time):
223
+ """Sets the update_time of this DataForListUserPoolsOutput.
224
+
225
+
226
+ :param update_time: The update_time of this DataForListUserPoolsOutput. # noqa: E501
227
+ :type: str
228
+ """
229
+
230
+ self._update_time = update_time
231
+
232
+ def to_dict(self):
233
+ """Returns the model properties as a dict"""
234
+ result = {}
235
+
236
+ for attr, _ in six.iteritems(self.swagger_types):
237
+ value = getattr(self, attr)
238
+ if isinstance(value, list):
239
+ result[attr] = list(map(
240
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
241
+ value
242
+ ))
243
+ elif hasattr(value, "to_dict"):
244
+ result[attr] = value.to_dict()
245
+ elif isinstance(value, dict):
246
+ result[attr] = dict(map(
247
+ lambda item: (item[0], item[1].to_dict())
248
+ if hasattr(item[1], "to_dict") else item,
249
+ value.items()
250
+ ))
251
+ else:
252
+ result[attr] = value
253
+ if issubclass(DataForListUserPoolsOutput, dict):
254
+ for key, value in self.items():
255
+ result[key] = value
256
+
257
+ return result
258
+
259
+ def to_str(self):
260
+ """Returns the string representation of the model"""
261
+ return pprint.pformat(self.to_dict())
262
+
263
+ def __repr__(self):
264
+ """For `print` and `pprint`"""
265
+ return self.to_str()
266
+
267
+ def __eq__(self, other):
268
+ """Returns true if both objects are equal"""
269
+ if not isinstance(other, DataForListUserPoolsOutput):
270
+ return False
271
+
272
+ return self.to_dict() == other.to_dict()
273
+
274
+ def __ne__(self, other):
275
+ """Returns true if both objects are not equal"""
276
+ if not isinstance(other, DataForListUserPoolsOutput):
277
+ return True
278
+
279
+ return self.to_dict() != other.to_dict()