ubx-sdk-google 0.1.0__tar.gz

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.
Files changed (1458) hide show
  1. ubx_sdk_google-0.1.0/PKG-INFO +5 -0
  2. ubx_sdk_google-0.1.0/README.md +77 -0
  3. ubx_sdk_google-0.1.0/pyproject.toml +14 -0
  4. ubx_sdk_google-0.1.0/setup.cfg +4 -0
  5. ubx_sdk_google-0.1.0/ubx/google/__init__.py +5 -0
  6. ubx_sdk_google-0.1.0/ubx/google/access/__init__.py +25 -0
  7. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_level.py +182 -0
  8. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_level_condition.py +114 -0
  9. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_levels.py +192 -0
  10. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy.py +44 -0
  11. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy_iam_binding.py +42 -0
  12. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy_iam_member.py +42 -0
  13. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy_iam_policy.py +22 -0
  14. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_authorized_orgs_desc.py +50 -0
  15. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_egress_policy.py +40 -0
  16. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_gcp_user_access_binding.py +152 -0
  17. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_ingress_policy.py +40 -0
  18. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter.py +304 -0
  19. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_dry_run_egress_policy.py +136 -0
  20. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_dry_run_ingress_policy.py +132 -0
  21. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_dry_run_resource.py +40 -0
  22. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_egress_policy.py +138 -0
  23. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_ingress_policy.py +134 -0
  24. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_resource.py +40 -0
  25. ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeters.py +350 -0
  26. ubx_sdk_google-0.1.0/ubx/google/active/__init__.py +8 -0
  27. ubx_sdk_google-0.1.0/ubx/google/active/directory_domain.py +54 -0
  28. ubx_sdk_google-0.1.0/ubx/google/active/directory_domain_trust.py +54 -0
  29. ubx_sdk_google-0.1.0/ubx/google/agent/__init__.py +9 -0
  30. ubx_sdk_google-0.1.0/ubx/google/agent/identity_auth_provider.py +145 -0
  31. ubx_sdk_google-0.1.0/ubx/google/agent/registry_binding.py +86 -0
  32. ubx_sdk_google-0.1.0/ubx/google/agent/registry_service.py +100 -0
  33. ubx_sdk_google-0.1.0/ubx/google/alloydb/__init__.py +10 -0
  34. ubx_sdk_google-0.1.0/ubx/google/alloydb/backup.py +70 -0
  35. ubx_sdk_google-0.1.0/ubx/google/alloydb/cluster.py +358 -0
  36. ubx_sdk_google-0.1.0/ubx/google/alloydb/instance.py +240 -0
  37. ubx_sdk_google-0.1.0/ubx/google/alloydb/user.py +52 -0
  38. ubx_sdk_google-0.1.0/ubx/google/apigee/__init__.py +48 -0
  39. ubx_sdk_google-0.1.0/ubx/google/apigee/addons_config.py +100 -0
  40. ubx_sdk_google-0.1.0/ubx/google/apigee/api.py +46 -0
  41. ubx_sdk_google-0.1.0/ubx/google/apigee/api_deployment.py +42 -0
  42. ubx_sdk_google-0.1.0/ubx/google/apigee/api_product.py +248 -0
  43. ubx_sdk_google-0.1.0/ubx/google/apigee/app_group.py +66 -0
  44. ubx_sdk_google-0.1.0/ubx/google/apigee/control_plane_access.py +42 -0
  45. ubx_sdk_google-0.1.0/ubx/google/apigee/data_collector.py +46 -0
  46. ubx_sdk_google-0.1.0/ubx/google/apigee/datastore.py +66 -0
  47. ubx_sdk_google-0.1.0/ubx/google/apigee/developer.py +64 -0
  48. ubx_sdk_google-0.1.0/ubx/google/apigee/developer_app.py +76 -0
  49. ubx_sdk_google-0.1.0/ubx/google/apigee/dns_zone.py +60 -0
  50. ubx_sdk_google-0.1.0/ubx/google/apigee/endpoint_attachment.py +44 -0
  51. ubx_sdk_google-0.1.0/ubx/google/apigee/env_keystore.py +40 -0
  52. ubx_sdk_google-0.1.0/ubx/google/apigee/env_references.py +48 -0
  53. ubx_sdk_google-0.1.0/ubx/google/apigee/envgroup.py +44 -0
  54. ubx_sdk_google-0.1.0/ubx/google/apigee/envgroup_attachment.py +40 -0
  55. ubx_sdk_google-0.1.0/ubx/google/apigee/environment.py +128 -0
  56. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_addons_config.py +40 -0
  57. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_api_revision_deployment.py +50 -0
  58. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_debugmask.py +52 -0
  59. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_iam_binding.py +44 -0
  60. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_iam_member.py +44 -0
  61. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_iam_policy.py +24 -0
  62. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_keyvaluemaps.py +40 -0
  63. ubx_sdk_google-0.1.0/ubx/google/apigee/environment_keyvaluemaps_entries.py +42 -0
  64. ubx_sdk_google-0.1.0/ubx/google/apigee/flowhook.py +48 -0
  65. ubx_sdk_google-0.1.0/ubx/google/apigee/instance.py +72 -0
  66. ubx_sdk_google-0.1.0/ubx/google/apigee/instance_attachment.py +40 -0
  67. ubx_sdk_google-0.1.0/ubx/google/apigee/keystores_aliases_key_cert_file.py +50 -0
  68. ubx_sdk_google-0.1.0/ubx/google/apigee/keystores_aliases_pkcs12.py +50 -0
  69. ubx_sdk_google-0.1.0/ubx/google/apigee/keystores_aliases_self_signed_cert.py +90 -0
  70. ubx_sdk_google-0.1.0/ubx/google/apigee/nat_address.py +44 -0
  71. ubx_sdk_google-0.1.0/ubx/google/apigee/organization.py +92 -0
  72. ubx_sdk_google-0.1.0/ubx/google/apigee/security_action.py +143 -0
  73. ubx_sdk_google-0.1.0/ubx/google/apigee/security_feedback.py +66 -0
  74. ubx_sdk_google-0.1.0/ubx/google/apigee/security_monitoring_condition.py +59 -0
  75. ubx_sdk_google-0.1.0/ubx/google/apigee/security_profile_v2.py +60 -0
  76. ubx_sdk_google-0.1.0/ubx/google/apigee/sharedflow.py +46 -0
  77. ubx_sdk_google-0.1.0/ubx/google/apigee/sharedflow_deployment.py +48 -0
  78. ubx_sdk_google-0.1.0/ubx/google/apigee/space.py +44 -0
  79. ubx_sdk_google-0.1.0/ubx/google/apigee/sync_authorization.py +40 -0
  80. ubx_sdk_google-0.1.0/ubx/google/apigee/target_server.py +98 -0
  81. ubx_sdk_google-0.1.0/ubx/google/apihub/__init__.py +12 -0
  82. ubx_sdk_google-0.1.0/ubx/google/apihub/api_hub_instance.py +66 -0
  83. ubx_sdk_google-0.1.0/ubx/google/apihub/curation.py +76 -0
  84. ubx_sdk_google-0.1.0/ubx/google/apihub/host_project_registration.py +42 -0
  85. ubx_sdk_google-0.1.0/ubx/google/apihub/plugin.py +182 -0
  86. ubx_sdk_google-0.1.0/ubx/google/apihub/plugin_instance.py +230 -0
  87. ubx_sdk_google-0.1.0/ubx/google/apihub/runtime_project_attachment.py +44 -0
  88. ubx_sdk_google-0.1.0/ubx/google/apikeys/__init__.py +7 -0
  89. ubx_sdk_google-0.1.0/ubx/google/apikeys/key.py +144 -0
  90. ubx_sdk_google-0.1.0/ubx/google/app/__init__.py +14 -0
  91. ubx_sdk_google-0.1.0/ubx/google/app/engine_application.py +80 -0
  92. ubx_sdk_google-0.1.0/ubx/google/app/engine_application_url_dispatch_rules.py +58 -0
  93. ubx_sdk_google-0.1.0/ubx/google/app/engine_domain_mapping.py +62 -0
  94. ubx_sdk_google-0.1.0/ubx/google/app/engine_firewall_rule.py +48 -0
  95. ubx_sdk_google-0.1.0/ubx/google/app/engine_flexible_app_version.py +520 -0
  96. ubx_sdk_google-0.1.0/ubx/google/app/engine_service_network_settings.py +54 -0
  97. ubx_sdk_google-0.1.0/ubx/google/app/engine_service_split_traffic.py +58 -0
  98. ubx_sdk_google-0.1.0/ubx/google/app/engine_standard_app_version.py +292 -0
  99. ubx_sdk_google-0.1.0/ubx/google/apphub/__init__.py +11 -0
  100. ubx_sdk_google-0.1.0/ubx/google/apphub/application.py +114 -0
  101. ubx_sdk_google-0.1.0/ubx/google/apphub/boundary.py +42 -0
  102. ubx_sdk_google-0.1.0/ubx/google/apphub/service.py +112 -0
  103. ubx_sdk_google-0.1.0/ubx/google/apphub/service_project_attachment.py +42 -0
  104. ubx_sdk_google-0.1.0/ubx/google/apphub/workload.py +112 -0
  105. ubx_sdk_google-0.1.0/ubx/google/artifact/__init__.py +12 -0
  106. ubx_sdk_google-0.1.0/ubx/google/artifact/registry_project_config.py +56 -0
  107. ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository.py +320 -0
  108. ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository_iam_binding.py +46 -0
  109. ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository_iam_member.py +46 -0
  110. ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository_iam_policy.py +26 -0
  111. ubx_sdk_google-0.1.0/ubx/google/artifact/registry_rule.py +72 -0
  112. ubx_sdk_google-0.1.0/ubx/google/assured/__init__.py +7 -0
  113. ubx_sdk_google-0.1.0/ubx/google/assured/workloads_workload.py +126 -0
  114. ubx_sdk_google-0.1.0/ubx/google/backup/__init__.py +12 -0
  115. ubx_sdk_google-0.1.0/ubx/google/backup/dr_backup_plan.py +146 -0
  116. ubx_sdk_google-0.1.0/ubx/google/backup/dr_backup_plan_association.py +50 -0
  117. ubx_sdk_google-0.1.0/ubx/google/backup/dr_backup_vault.py +84 -0
  118. ubx_sdk_google-0.1.0/ubx/google/backup/dr_management_server.py +60 -0
  119. ubx_sdk_google-0.1.0/ubx/google/backup/dr_restore_workload.py +628 -0
  120. ubx_sdk_google-0.1.0/ubx/google/backup/dr_service_config.py +40 -0
  121. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/__init__.py +17 -0
  122. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/app_connection.py +88 -0
  123. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/app_connector.py +74 -0
  124. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/app_gateway.py +52 -0
  125. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway.py +185 -0
  126. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application.py +192 -0
  127. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application_iam_binding.py +46 -0
  128. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application_iam_member.py +46 -0
  129. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application_iam_policy.py +26 -0
  130. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_iam_binding.py +46 -0
  131. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_iam_member.py +46 -0
  132. ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_iam_policy.py +26 -0
  133. ubx_sdk_google-0.1.0/ubx/google/biglake/__init__.py +21 -0
  134. ubx_sdk_google-0.1.0/ubx/google/biglake/catalog.py +42 -0
  135. ubx_sdk_google-0.1.0/ubx/google/biglake/database.py +60 -0
  136. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog.py +190 -0
  137. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog_iam_binding.py +44 -0
  138. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog_iam_member.py +44 -0
  139. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog_iam_policy.py +24 -0
  140. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace.py +46 -0
  141. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace_iam_binding.py +46 -0
  142. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace_iam_member.py +46 -0
  143. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace_iam_policy.py +26 -0
  144. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table.py +158 -0
  145. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table_iam_binding.py +48 -0
  146. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table_iam_member.py +48 -0
  147. ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table_iam_policy.py +28 -0
  148. ubx_sdk_google-0.1.0/ubx/google/biglake/table.py +78 -0
  149. ubx_sdk_google-0.1.0/ubx/google/bigquery/__init__.py +48 -0
  150. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange.py +89 -0
  151. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange_iam_binding.py +46 -0
  152. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange_iam_member.py +46 -0
  153. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange_iam_policy.py +26 -0
  154. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing.py +174 -0
  155. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_iam_binding.py +48 -0
  156. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_iam_member.py +48 -0
  157. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_iam_policy.py +28 -0
  158. ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_subscription.py +82 -0
  159. ubx_sdk_google-0.1.0/ubx/google/bigquery/bi_reservation.py +62 -0
  160. ubx_sdk_google-0.1.0/ubx/google/bigquery/capacity_commitment.py +54 -0
  161. ubx_sdk_google-0.1.0/ubx/google/bigquery/connection.py +334 -0
  162. ubx_sdk_google-0.1.0/ubx/google/bigquery/connection_iam_binding.py +46 -0
  163. ubx_sdk_google-0.1.0/ubx/google/bigquery/connection_iam_member.py +46 -0
  164. ubx_sdk_google-0.1.0/ubx/google/bigquery/connection_iam_policy.py +26 -0
  165. ubx_sdk_google-0.1.0/ubx/google/bigquery/data_transfer_config.py +124 -0
  166. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy.py +64 -0
  167. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy_iam_binding.py +46 -0
  168. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy_iam_member.py +46 -0
  169. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy_iam_policy.py +26 -0
  170. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy.py +66 -0
  171. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy_iam_binding.py +46 -0
  172. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy_iam_member.py +46 -0
  173. ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy_iam_policy.py +26 -0
  174. ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset.py +222 -0
  175. ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_access.py +138 -0
  176. ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_iam_binding.py +44 -0
  177. ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_iam_member.py +44 -0
  178. ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_iam_policy.py +24 -0
  179. ubx_sdk_google-0.1.0/ubx/google/bigquery/job.py +356 -0
  180. ubx_sdk_google-0.1.0/ubx/google/bigquery/reservation.py +72 -0
  181. ubx_sdk_google-0.1.0/ubx/google/bigquery/reservation_assignment.py +46 -0
  182. ubx_sdk_google-0.1.0/ubx/google/bigquery/reservation_group.py +42 -0
  183. ubx_sdk_google-0.1.0/ubx/google/bigquery/routine.py +164 -0
  184. ubx_sdk_google-0.1.0/ubx/google/bigquery/routine_iam_binding.py +46 -0
  185. ubx_sdk_google-0.1.0/ubx/google/bigquery/routine_iam_member.py +46 -0
  186. ubx_sdk_google-0.1.0/ubx/google/bigquery/routine_iam_policy.py +26 -0
  187. ubx_sdk_google-0.1.0/ubx/google/bigquery/row_access_policy.py +50 -0
  188. ubx_sdk_google-0.1.0/ubx/google/bigquery/table.py +542 -0
  189. ubx_sdk_google-0.1.0/ubx/google/bigquery/table_iam_binding.py +46 -0
  190. ubx_sdk_google-0.1.0/ubx/google/bigquery/table_iam_member.py +46 -0
  191. ubx_sdk_google-0.1.0/ubx/google/bigquery/table_iam_policy.py +26 -0
  192. ubx_sdk_google-0.1.0/ubx/google/bigtable/__init__.py +20 -0
  193. ubx_sdk_google-0.1.0/ubx/google/bigtable/app_profile.py +98 -0
  194. ubx_sdk_google-0.1.0/ubx/google/bigtable/authorized_view.py +78 -0
  195. ubx_sdk_google-0.1.0/ubx/google/bigtable/gc_policy.py +80 -0
  196. ubx_sdk_google-0.1.0/ubx/google/bigtable/instance.py +102 -0
  197. ubx_sdk_google-0.1.0/ubx/google/bigtable/instance_iam_binding.py +44 -0
  198. ubx_sdk_google-0.1.0/ubx/google/bigtable/instance_iam_member.py +44 -0
  199. ubx_sdk_google-0.1.0/ubx/google/bigtable/instance_iam_policy.py +24 -0
  200. ubx_sdk_google-0.1.0/ubx/google/bigtable/logical_view.py +48 -0
  201. ubx_sdk_google-0.1.0/ubx/google/bigtable/materialized_view.py +48 -0
  202. ubx_sdk_google-0.1.0/ubx/google/bigtable/schema_bundle.py +62 -0
  203. ubx_sdk_google-0.1.0/ubx/google/bigtable/table.py +84 -0
  204. ubx_sdk_google-0.1.0/ubx/google/bigtable/table_iam_binding.py +46 -0
  205. ubx_sdk_google-0.1.0/ubx/google/bigtable/table_iam_member.py +46 -0
  206. ubx_sdk_google-0.1.0/ubx/google/bigtable/table_iam_policy.py +26 -0
  207. ubx_sdk_google-0.1.0/ubx/google/billing/__init__.py +12 -0
  208. ubx_sdk_google-0.1.0/ubx/google/billing/account_iam_binding.py +42 -0
  209. ubx_sdk_google-0.1.0/ubx/google/billing/account_iam_member.py +42 -0
  210. ubx_sdk_google-0.1.0/ubx/google/billing/account_iam_policy.py +22 -0
  211. ubx_sdk_google-0.1.0/ubx/google/billing/budget.py +178 -0
  212. ubx_sdk_google-0.1.0/ubx/google/billing/project_info.py +42 -0
  213. ubx_sdk_google-0.1.0/ubx/google/billing/subaccount.py +24 -0
  214. ubx_sdk_google-0.1.0/ubx/google/binary/__init__.py +11 -0
  215. ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor.py +94 -0
  216. ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor_iam_binding.py +44 -0
  217. ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor_iam_member.py +44 -0
  218. ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor_iam_policy.py +24 -0
  219. ubx_sdk_google-0.1.0/ubx/google/binary/authorization_policy.py +96 -0
  220. ubx_sdk_google-0.1.0/ubx/google/blockchain/__init__.py +7 -0
  221. ubx_sdk_google-0.1.0/ubx/google/blockchain/node_engine_blockchain_nodes.py +120 -0
  222. ubx_sdk_google-0.1.0/ubx/google/certificate/__init__.py +12 -0
  223. ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate.py +126 -0
  224. ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate_issuance_config.py +80 -0
  225. ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate_map.py +46 -0
  226. ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate_map_entry.py +54 -0
  227. ubx_sdk_google-0.1.0/ubx/google/certificate/manager_dns_authorization.py +52 -0
  228. ubx_sdk_google-0.1.0/ubx/google/certificate/manager_trust_config.py +86 -0
  229. ubx_sdk_google-0.1.0/ubx/google/ces/__init__.py +15 -0
  230. ubx_sdk_google-0.1.0/ubx/google/ces/agent.py +175 -0
  231. ubx_sdk_google-0.1.0/ubx/google/ces/app.py +476 -0
  232. ubx_sdk_google-0.1.0/ubx/google/ces/app_root_agent_association.py +46 -0
  233. ubx_sdk_google-0.1.0/ubx/google/ces/app_version.py +48 -0
  234. ubx_sdk_google-0.1.0/ubx/google/ces/deployment.py +120 -0
  235. ubx_sdk_google-0.1.0/ubx/google/ces/example.py +176 -0
  236. ubx_sdk_google-0.1.0/ubx/google/ces/guardrail.py +290 -0
  237. ubx_sdk_google-0.1.0/ubx/google/ces/tool.py +552 -0
  238. ubx_sdk_google-0.1.0/ubx/google/ces/toolset.py +269 -0
  239. ubx_sdk_google-0.1.0/ubx/google/chronicle/__init__.py +27 -0
  240. ubx_sdk_google-0.1.0/ubx/google/chronicle/big_query_export.py +90 -0
  241. ubx_sdk_google-0.1.0/ubx/google/chronicle/custom_list.py +50 -0
  242. ubx_sdk_google-0.1.0/ubx/google/chronicle/dashboard_chart.py +886 -0
  243. ubx_sdk_google-0.1.0/ubx/google/chronicle/data_access_label.py +50 -0
  244. ubx_sdk_google-0.1.0/ubx/google/chronicle/data_access_scope.py +92 -0
  245. ubx_sdk_google-0.1.0/ubx/google/chronicle/data_export.py +66 -0
  246. ubx_sdk_google-0.1.0/ubx/google/chronicle/data_table.py +88 -0
  247. ubx_sdk_google-0.1.0/ubx/google/chronicle/data_table_row.py +50 -0
  248. ubx_sdk_google-0.1.0/ubx/google/chronicle/environment.py +62 -0
  249. ubx_sdk_google-0.1.0/ubx/google/chronicle/environment_group.py +50 -0
  250. ubx_sdk_google-0.1.0/ubx/google/chronicle/feed.py +1709 -0
  251. ubx_sdk_google-0.1.0/ubx/google/chronicle/findings_refinement.py +66 -0
  252. ubx_sdk_google-0.1.0/ubx/google/chronicle/findings_refinement_deployment.py +68 -0
  253. ubx_sdk_google-0.1.0/ubx/google/chronicle/native_dashboard.py +134 -0
  254. ubx_sdk_google-0.1.0/ubx/google/chronicle/parser.py +146 -0
  255. ubx_sdk_google-0.1.0/ubx/google/chronicle/parser_extension.py +136 -0
  256. ubx_sdk_google-0.1.0/ubx/google/chronicle/reference_list.py +88 -0
  257. ubx_sdk_google-0.1.0/ubx/google/chronicle/retrohunt.py +60 -0
  258. ubx_sdk_google-0.1.0/ubx/google/chronicle/rule.py +52 -0
  259. ubx_sdk_google-0.1.0/ubx/google/chronicle/rule_deployment.py +52 -0
  260. ubx_sdk_google-0.1.0/ubx/google/chronicle/watchlist.py +91 -0
  261. ubx_sdk_google-0.1.0/ubx/google/cloud/__init__.py +39 -0
  262. ubx_sdk_google-0.1.0/ubx/google/cloud/asset_folder_feed.py +96 -0
  263. ubx_sdk_google-0.1.0/ubx/google/cloud/asset_organization_feed.py +96 -0
  264. ubx_sdk_google-0.1.0/ubx/google/cloud/asset_project_feed.py +96 -0
  265. ubx_sdk_google-0.1.0/ubx/google/cloud/identity_group.py +64 -0
  266. ubx_sdk_google-0.1.0/ubx/google/cloud/identity_group_membership.py +86 -0
  267. ubx_sdk_google-0.1.0/ubx/google/cloud/ids_endpoint.py +52 -0
  268. ubx_sdk_google-0.1.0/ubx/google/cloud/quotas_quota_adjuster_settings.py +40 -0
  269. ubx_sdk_google-0.1.0/ubx/google/cloud/quotas_quota_preference.py +76 -0
  270. ubx_sdk_google-0.1.0/ubx/google/cloud/run_domain_mapping.py +92 -0
  271. ubx_sdk_google-0.1.0/ubx/google/cloud/run_service.py +584 -0
  272. ubx_sdk_google-0.1.0/ubx/google/cloud/run_service_iam_binding.py +46 -0
  273. ubx_sdk_google-0.1.0/ubx/google/cloud/run_service_iam_member.py +46 -0
  274. ubx_sdk_google-0.1.0/ubx/google/cloud/run_service_iam_policy.py +26 -0
  275. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job.py +484 -0
  276. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job_iam_binding.py +46 -0
  277. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job_iam_member.py +46 -0
  278. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job_iam_policy.py +26 -0
  279. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service.py +654 -0
  280. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service_iam_binding.py +46 -0
  281. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service_iam_member.py +46 -0
  282. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service_iam_policy.py +26 -0
  283. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool.py +500 -0
  284. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool_iam_binding.py +46 -0
  285. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool_iam_member.py +46 -0
  286. ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool_iam_policy.py +26 -0
  287. ubx_sdk_google-0.1.0/ubx/google/cloud/scheduler_job.py +184 -0
  288. ubx_sdk_google-0.1.0/ubx/google/cloud/security_compliance_cloud_control.py +320 -0
  289. ubx_sdk_google-0.1.0/ubx/google/cloud/security_compliance_framework.py +150 -0
  290. ubx_sdk_google-0.1.0/ubx/google/cloud/security_compliance_framework_deployment.py +236 -0
  291. ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue.py +242 -0
  292. ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue_iam_binding.py +46 -0
  293. ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue_iam_member.py +46 -0
  294. ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue_iam_policy.py +26 -0
  295. ubx_sdk_google-0.1.0/ubx/google/cloudbuild/__init__.py +9 -0
  296. ubx_sdk_google-0.1.0/ubx/google/cloudbuild/bitbucket_server_config.py +88 -0
  297. ubx_sdk_google-0.1.0/ubx/google/cloudbuild/trigger.py +648 -0
  298. ubx_sdk_google-0.1.0/ubx/google/cloudbuild/worker_pool.py +100 -0
  299. ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/__init__.py +11 -0
  300. ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection.py +200 -0
  301. ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection_iam_binding.py +46 -0
  302. ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection_iam_member.py +46 -0
  303. ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection_iam_policy.py +26 -0
  304. ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/repository.py +48 -0
  305. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/__init__.py +20 -0
  306. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/automation.py +220 -0
  307. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type.py +182 -0
  308. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type_iam_binding.py +46 -0
  309. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type_iam_member.py +46 -0
  310. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type_iam_policy.py +26 -0
  311. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline.py +478 -0
  312. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline_iam_binding.py +46 -0
  313. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline_iam_member.py +46 -0
  314. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline_iam_policy.py +26 -0
  315. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/deploy_policy.py +218 -0
  316. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target.py +226 -0
  317. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target_iam_binding.py +46 -0
  318. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target_iam_member.py +46 -0
  319. ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target_iam_policy.py +26 -0
  320. ubx_sdk_google-0.1.0/ubx/google/clouddomains/__init__.py +7 -0
  321. ubx_sdk_google-0.1.0/ubx/google/clouddomains/registration.py +216 -0
  322. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/__init__.py +10 -0
  323. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function.py +221 -0
  324. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function_iam_binding.py +46 -0
  325. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function_iam_member.py +46 -0
  326. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function_iam_policy.py +26 -0
  327. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/__init__.py +10 -0
  328. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function.py +319 -0
  329. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function_iam_binding.py +46 -0
  330. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function_iam_member.py +46 -0
  331. ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function_iam_policy.py +26 -0
  332. ubx_sdk_google-0.1.0/ubx/google/colab/__init__.py +13 -0
  333. ubx_sdk_google-0.1.0/ubx/google/colab/notebook_execution.py +164 -0
  334. ubx_sdk_google-0.1.0/ubx/google/colab/runtime.py +68 -0
  335. ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template.py +220 -0
  336. ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template_iam_binding.py +46 -0
  337. ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template_iam_member.py +46 -0
  338. ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template_iam_policy.py +26 -0
  339. ubx_sdk_google-0.1.0/ubx/google/colab/schedule.py +389 -0
  340. ubx_sdk_google-0.1.0/ubx/google/composer/__init__.py +9 -0
  341. ubx_sdk_google-0.1.0/ubx/google/composer/environment.py +502 -0
  342. ubx_sdk_google-0.1.0/ubx/google/composer/user_workloads_config_map.py +48 -0
  343. ubx_sdk_google-0.1.0/ubx/google/composer/user_workloads_secret.py +48 -0
  344. ubx_sdk_google-0.1.0/ubx/google/compute/__init__.py +177 -0
  345. ubx_sdk_google-0.1.0/ubx/google/compute/address.py +68 -0
  346. ubx_sdk_google-0.1.0/ubx/google/compute/attached_disk.py +50 -0
  347. ubx_sdk_google-0.1.0/ubx/google/compute/autoscaler.py +178 -0
  348. ubx_sdk_google-0.1.0/ubx/google/compute/backend_bucket.py +144 -0
  349. ubx_sdk_google-0.1.0/ubx/google/compute/backend_bucket_signed_url_key.py +44 -0
  350. ubx_sdk_google-0.1.0/ubx/google/compute/backend_service.py +546 -0
  351. ubx_sdk_google-0.1.0/ubx/google/compute/backend_service_signed_url_key.py +44 -0
  352. ubx_sdk_google-0.1.0/ubx/google/compute/bulk_per_instance_config.py +56 -0
  353. ubx_sdk_google-0.1.0/ubx/google/compute/cross_site_network.py +44 -0
  354. ubx_sdk_google-0.1.0/ubx/google/compute/disk.py +172 -0
  355. ubx_sdk_google-0.1.0/ubx/google/compute/disk_async_replication.py +54 -0
  356. ubx_sdk_google-0.1.0/ubx/google/compute/disk_iam_binding.py +46 -0
  357. ubx_sdk_google-0.1.0/ubx/google/compute/disk_iam_member.py +46 -0
  358. ubx_sdk_google-0.1.0/ubx/google/compute/disk_iam_policy.py +26 -0
  359. ubx_sdk_google-0.1.0/ubx/google/compute/disk_resource_policy_attachment.py +44 -0
  360. ubx_sdk_google-0.1.0/ubx/google/compute/external_vpn_gateway.py +80 -0
  361. ubx_sdk_google-0.1.0/ubx/google/compute/firewall.py +116 -0
  362. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy.py +44 -0
  363. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_association.py +44 -0
  364. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_iam_binding.py +42 -0
  365. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_iam_member.py +42 -0
  366. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_iam_policy.py +22 -0
  367. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_rule.py +136 -0
  368. ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_with_rules.py +148 -0
  369. ubx_sdk_google-0.1.0/ubx/google/compute/forwarding_rule.py +104 -0
  370. ubx_sdk_google-0.1.0/ubx/google/compute/global_address.py +58 -0
  371. ubx_sdk_google-0.1.0/ubx/google/compute/global_forwarding_rule.py +118 -0
  372. ubx_sdk_google-0.1.0/ubx/google/compute/global_network_endpoint.py +46 -0
  373. ubx_sdk_google-0.1.0/ubx/google/compute/global_network_endpoint_group.py +46 -0
  374. ubx_sdk_google-0.1.0/ubx/google/compute/global_vm_extension_policy.py +172 -0
  375. ubx_sdk_google-0.1.0/ubx/google/compute/ha_vpn_gateway.py +86 -0
  376. ubx_sdk_google-0.1.0/ubx/google/compute/health_check.py +174 -0
  377. ubx_sdk_google-0.1.0/ubx/google/compute/http_health_check.py +58 -0
  378. ubx_sdk_google-0.1.0/ubx/google/compute/https_health_check.py +58 -0
  379. ubx_sdk_google-0.1.0/ubx/google/compute/image.py +190 -0
  380. ubx_sdk_google-0.1.0/ubx/google/compute/image_iam_binding.py +44 -0
  381. ubx_sdk_google-0.1.0/ubx/google/compute/image_iam_member.py +44 -0
  382. ubx_sdk_google-0.1.0/ubx/google/compute/image_iam_policy.py +24 -0
  383. ubx_sdk_google-0.1.0/ubx/google/compute/instance.py +586 -0
  384. ubx_sdk_google-0.1.0/ubx/google/compute/instance_from_template.py +588 -0
  385. ubx_sdk_google-0.1.0/ubx/google/compute/instance_group.py +66 -0
  386. ubx_sdk_google-0.1.0/ubx/google/compute/instance_group_manager.py +284 -0
  387. ubx_sdk_google-0.1.0/ubx/google/compute/instance_group_membership.py +44 -0
  388. ubx_sdk_google-0.1.0/ubx/google/compute/instance_group_named_port.py +46 -0
  389. ubx_sdk_google-0.1.0/ubx/google/compute/instance_iam_binding.py +46 -0
  390. ubx_sdk_google-0.1.0/ubx/google/compute/instance_iam_member.py +46 -0
  391. ubx_sdk_google-0.1.0/ubx/google/compute/instance_iam_policy.py +26 -0
  392. ubx_sdk_google-0.1.0/ubx/google/compute/instance_settings.py +56 -0
  393. ubx_sdk_google-0.1.0/ubx/google/compute/instance_template.py +490 -0
  394. ubx_sdk_google-0.1.0/ubx/google/compute/instance_template_iam_binding.py +44 -0
  395. ubx_sdk_google-0.1.0/ubx/google/compute/instance_template_iam_member.py +44 -0
  396. ubx_sdk_google-0.1.0/ubx/google/compute/instance_template_iam_policy.py +24 -0
  397. ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot.py +64 -0
  398. ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot_iam_binding.py +46 -0
  399. ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot_iam_member.py +46 -0
  400. ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot_iam_policy.py +26 -0
  401. ubx_sdk_google-0.1.0/ubx/google/compute/interconnect.py +112 -0
  402. ubx_sdk_google-0.1.0/ubx/google/compute/interconnect_attachment.py +162 -0
  403. ubx_sdk_google-0.1.0/ubx/google/compute/interconnect_attachment_group.py +76 -0
  404. ubx_sdk_google-0.1.0/ubx/google/compute/interconnect_group.py +74 -0
  405. ubx_sdk_google-0.1.0/ubx/google/compute/managed_ssl_certificate.py +58 -0
  406. ubx_sdk_google-0.1.0/ubx/google/compute/network.py +82 -0
  407. ubx_sdk_google-0.1.0/ubx/google/compute/network_attachment.py +52 -0
  408. ubx_sdk_google-0.1.0/ubx/google/compute/network_endpoint.py +48 -0
  409. ubx_sdk_google-0.1.0/ubx/google/compute/network_endpoint_group.py +52 -0
  410. ubx_sdk_google-0.1.0/ubx/google/compute/network_endpoints.py +62 -0
  411. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy.py +46 -0
  412. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_association.py +44 -0
  413. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_iam_binding.py +44 -0
  414. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_iam_member.py +44 -0
  415. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_iam_policy.py +24 -0
  416. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_rule.py +142 -0
  417. ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_with_rules.py +148 -0
  418. ubx_sdk_google-0.1.0/ubx/google/compute/network_peering.py +56 -0
  419. ubx_sdk_google-0.1.0/ubx/google/compute/network_peering_routes_config.py +50 -0
  420. ubx_sdk_google-0.1.0/ubx/google/compute/node_group.py +114 -0
  421. ubx_sdk_google-0.1.0/ubx/google/compute/node_template.py +116 -0
  422. ubx_sdk_google-0.1.0/ubx/google/compute/organization_security_policy.py +82 -0
  423. ubx_sdk_google-0.1.0/ubx/google/compute/organization_security_policy_association.py +46 -0
  424. ubx_sdk_google-0.1.0/ubx/google/compute/organization_security_policy_rule.py +198 -0
  425. ubx_sdk_google-0.1.0/ubx/google/compute/packet_mirroring.py +114 -0
  426. ubx_sdk_google-0.1.0/ubx/google/compute/per_instance_config.py +124 -0
  427. ubx_sdk_google-0.1.0/ubx/google/compute/preview_feature.py +68 -0
  428. ubx_sdk_google-0.1.0/ubx/google/compute/project_cloud_armor_tier.py +42 -0
  429. ubx_sdk_google-0.1.0/ubx/google/compute/project_default_network_tier.py +36 -0
  430. ubx_sdk_google-0.1.0/ubx/google/compute/project_metadata.py +40 -0
  431. ubx_sdk_google-0.1.0/ubx/google/compute/project_metadata_item.py +44 -0
  432. ubx_sdk_google-0.1.0/ubx/google/compute/public_advertised_prefix.py +50 -0
  433. ubx_sdk_google-0.1.0/ubx/google/compute/public_delegated_prefix.py +54 -0
  434. ubx_sdk_google-0.1.0/ubx/google/compute/region_autoscaler.py +178 -0
  435. ubx_sdk_google-0.1.0/ubx/google/compute/region_backend_service.py +538 -0
  436. ubx_sdk_google-0.1.0/ubx/google/compute/region_commitment.py +102 -0
  437. ubx_sdk_google-0.1.0/ubx/google/compute/region_composite_health_check.py +48 -0
  438. ubx_sdk_google-0.1.0/ubx/google/compute/region_disk.py +160 -0
  439. ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_iam_binding.py +46 -0
  440. ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_iam_member.py +46 -0
  441. ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_iam_policy.py +26 -0
  442. ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_resource_policy_attachment.py +44 -0
  443. ubx_sdk_google-0.1.0/ubx/google/compute/region_health_aggregation_policy.py +50 -0
  444. ubx_sdk_google-0.1.0/ubx/google/compute/region_health_check.py +174 -0
  445. ubx_sdk_google-0.1.0/ubx/google/compute/region_health_source.py +50 -0
  446. ubx_sdk_google-0.1.0/ubx/google/compute/region_instance_group_manager.py +320 -0
  447. ubx_sdk_google-0.1.0/ubx/google/compute/region_instance_template.py +492 -0
  448. ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot.py +64 -0
  449. ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot_iam_binding.py +46 -0
  450. ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot_iam_member.py +46 -0
  451. ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot_iam_policy.py +26 -0
  452. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_endpoint.py +52 -0
  453. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_endpoint_group.py +118 -0
  454. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy.py +48 -0
  455. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_association.py +46 -0
  456. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_iam_binding.py +46 -0
  457. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_iam_member.py +46 -0
  458. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_iam_policy.py +26 -0
  459. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_rule.py +144 -0
  460. ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_with_rules.py +154 -0
  461. ubx_sdk_google-0.1.0/ubx/google/compute/region_per_instance_config.py +124 -0
  462. ubx_sdk_google-0.1.0/ubx/google/compute/region_resize_request.py +64 -0
  463. ubx_sdk_google-0.1.0/ubx/google/compute/region_security_policy.py +342 -0
  464. ubx_sdk_google-0.1.0/ubx/google/compute/region_security_policy_rule.py +258 -0
  465. ubx_sdk_google-0.1.0/ubx/google/compute/region_ssl_certificate.py +54 -0
  466. ubx_sdk_google-0.1.0/ubx/google/compute/region_ssl_policy.py +54 -0
  467. ubx_sdk_google-0.1.0/ubx/google/compute/region_target_http_proxy.py +50 -0
  468. ubx_sdk_google-0.1.0/ubx/google/compute/region_target_https_proxy.py +58 -0
  469. ubx_sdk_google-0.1.0/ubx/google/compute/region_target_tcp_proxy.py +50 -0
  470. ubx_sdk_google-0.1.0/ubx/google/compute/region_url_map.py +654 -0
  471. ubx_sdk_google-0.1.0/ubx/google/compute/reservation.py +192 -0
  472. ubx_sdk_google-0.1.0/ubx/google/compute/resize_request.py +64 -0
  473. ubx_sdk_google-0.1.0/ubx/google/compute/resource_policy.py +256 -0
  474. ubx_sdk_google-0.1.0/ubx/google/compute/resource_policy_attachment.py +44 -0
  475. ubx_sdk_google-0.1.0/ubx/google/compute/rollout_plan.py +166 -0
  476. ubx_sdk_google-0.1.0/ubx/google/compute/route.py +76 -0
  477. ubx_sdk_google-0.1.0/ubx/google/compute/router.py +118 -0
  478. ubx_sdk_google-0.1.0/ubx/google/compute/router_interface.py +58 -0
  479. ubx_sdk_google-0.1.0/ubx/google/compute/router_named_set.py +70 -0
  480. ubx_sdk_google-0.1.0/ubx/google/compute/router_nat.py +168 -0
  481. ubx_sdk_google-0.1.0/ubx/google/compute/router_nat_address.py +50 -0
  482. ubx_sdk_google-0.1.0/ubx/google/compute/router_peer.py +152 -0
  483. ubx_sdk_google-0.1.0/ubx/google/compute/router_route_policy.py +88 -0
  484. ubx_sdk_google-0.1.0/ubx/google/compute/security_policy.py +432 -0
  485. ubx_sdk_google-0.1.0/ubx/google/compute/security_policy_rule.py +292 -0
  486. ubx_sdk_google-0.1.0/ubx/google/compute/service_attachment.py +86 -0
  487. ubx_sdk_google-0.1.0/ubx/google/compute/shared_vpc_host_project.py +38 -0
  488. ubx_sdk_google-0.1.0/ubx/google/compute/shared_vpc_service_project.py +40 -0
  489. ubx_sdk_google-0.1.0/ubx/google/compute/snapshot.py +114 -0
  490. ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_iam_binding.py +44 -0
  491. ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_iam_member.py +44 -0
  492. ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_iam_policy.py +24 -0
  493. ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_settings.py +68 -0
  494. ubx_sdk_google-0.1.0/ubx/google/compute/ssl_certificate.py +52 -0
  495. ubx_sdk_google-0.1.0/ubx/google/compute/ssl_policy.py +52 -0
  496. ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool.py +74 -0
  497. ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool_iam_binding.py +46 -0
  498. ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool_iam_member.py +46 -0
  499. ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool_iam_policy.py +26 -0
  500. ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork.py +130 -0
  501. ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork_iam_binding.py +46 -0
  502. ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork_iam_member.py +46 -0
  503. ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork_iam_policy.py +26 -0
  504. ubx_sdk_google-0.1.0/ubx/google/compute/target_grpc_proxy.py +48 -0
  505. ubx_sdk_google-0.1.0/ubx/google/compute/target_http_proxy.py +50 -0
  506. ubx_sdk_google-0.1.0/ubx/google/compute/target_https_proxy.py +64 -0
  507. ubx_sdk_google-0.1.0/ubx/google/compute/target_instance.py +48 -0
  508. ubx_sdk_google-0.1.0/ubx/google/compute/target_pool.py +56 -0
  509. ubx_sdk_google-0.1.0/ubx/google/compute/target_ssl_proxy.py +54 -0
  510. ubx_sdk_google-0.1.0/ubx/google/compute/target_tcp_proxy.py +50 -0
  511. ubx_sdk_google-0.1.0/ubx/google/compute/url_map.py +766 -0
  512. ubx_sdk_google-0.1.0/ubx/google/compute/vpn_gateway.py +60 -0
  513. ubx_sdk_google-0.1.0/ubx/google/compute/vpn_tunnel.py +140 -0
  514. ubx_sdk_google-0.1.0/ubx/google/compute/wire_group.py +98 -0
  515. ubx_sdk_google-0.1.0/ubx/google/compute/zone_vm_extension_policy.py +90 -0
  516. ubx_sdk_google-0.1.0/ubx/google/config/__init__.py +7 -0
  517. ubx_sdk_google-0.1.0/ubx/google/config/deployment.py +110 -0
  518. ubx_sdk_google-0.1.0/ubx/google/contact/__init__.py +14 -0
  519. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_analysis_rule.py +126 -0
  520. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_assessment_rule.py +88 -0
  521. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_auto_labeling_rule.py +70 -0
  522. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_encryption_spec.py +40 -0
  523. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_qa_question.py +154 -0
  524. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_qa_scorecard.py +52 -0
  525. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_qa_scorecard_revision.py +42 -0
  526. ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_view.py +46 -0
  527. ubx_sdk_google-0.1.0/ubx/google/container/__init__.py +20 -0
  528. ubx_sdk_google-0.1.0/ubx/google/container/analysis_note.py +92 -0
  529. ubx_sdk_google-0.1.0/ubx/google/container/analysis_note_iam_binding.py +44 -0
  530. ubx_sdk_google-0.1.0/ubx/google/container/analysis_note_iam_member.py +44 -0
  531. ubx_sdk_google-0.1.0/ubx/google/container/analysis_note_iam_policy.py +24 -0
  532. ubx_sdk_google-0.1.0/ubx/google/container/analysis_occurrence.py +76 -0
  533. ubx_sdk_google-0.1.0/ubx/google/container/attached_cluster.py +208 -0
  534. ubx_sdk_google-0.1.0/ubx/google/container/aws_cluster.py +258 -0
  535. ubx_sdk_google-0.1.0/ubx/google/container/aws_node_pool.py +266 -0
  536. ubx_sdk_google-0.1.0/ubx/google/container/azure_client.py +46 -0
  537. ubx_sdk_google-0.1.0/ubx/google/container/azure_cluster.py +244 -0
  538. ubx_sdk_google-0.1.0/ubx/google/container/azure_node_pool.py +160 -0
  539. ubx_sdk_google-0.1.0/ubx/google/container/cluster.py +2520 -0
  540. ubx_sdk_google-0.1.0/ubx/google/container/node_pool.py +1132 -0
  541. ubx_sdk_google-0.1.0/ubx/google/container/registry.py +22 -0
  542. ubx_sdk_google-0.1.0/ubx/google/data/__init__.py +35 -0
  543. ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry.py +86 -0
  544. ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group.py +48 -0
  545. ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group_iam_binding.py +46 -0
  546. ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group_iam_member.py +46 -0
  547. ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group_iam_policy.py +26 -0
  548. ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag.py +46 -0
  549. ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag_iam_binding.py +42 -0
  550. ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag_iam_member.py +42 -0
  551. ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag_iam_policy.py +22 -0
  552. ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag.py +72 -0
  553. ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template.py +112 -0
  554. ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template_iam_binding.py +46 -0
  555. ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template_iam_member.py +46 -0
  556. ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template_iam_policy.py +26 -0
  557. ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy.py +48 -0
  558. ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy_iam_binding.py +46 -0
  559. ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy_iam_member.py +46 -0
  560. ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy_iam_policy.py +26 -0
  561. ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance.py +208 -0
  562. ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance_iam_binding.py +46 -0
  563. ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance_iam_member.py +46 -0
  564. ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance_iam_policy.py +26 -0
  565. ubx_sdk_google-0.1.0/ubx/google/data/lineage_config.py +94 -0
  566. ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_deidentify_template.py +1029 -0
  567. ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_discovery_config.py +1007 -0
  568. ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_inspect_template.py +423 -0
  569. ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_job_trigger.py +807 -0
  570. ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_stored_info_type.py +178 -0
  571. ubx_sdk_google-0.1.0/ubx/google/data/pipeline_pipeline.py +254 -0
  572. ubx_sdk_google-0.1.0/ubx/google/database/__init__.py +9 -0
  573. ubx_sdk_google-0.1.0/ubx/google/database/migration_service_connection_profile.py +397 -0
  574. ubx_sdk_google-0.1.0/ubx/google/database/migration_service_migration_job.py +225 -0
  575. ubx_sdk_google-0.1.0/ubx/google/database/migration_service_private_connection.py +80 -0
  576. ubx_sdk_google-0.1.0/ubx/google/dataflow/__init__.py +7 -0
  577. ubx_sdk_google-0.1.0/ubx/google/dataflow/job.py +74 -0
  578. ubx_sdk_google-0.1.0/ubx/google/dataform/__init__.py +8 -0
  579. ubx_sdk_google-0.1.0/ubx/google/dataform/folder.py +46 -0
  580. ubx_sdk_google-0.1.0/ubx/google/dataform/team_folder.py +44 -0
  581. ubx_sdk_google-0.1.0/ubx/google/dataplex/__init__.py +52 -0
  582. ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type.py +54 -0
  583. ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type_iam_binding.py +46 -0
  584. ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type_iam_member.py +46 -0
  585. ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type_iam_policy.py +26 -0
  586. ubx_sdk_google-0.1.0/ubx/google/dataplex/asset.py +128 -0
  587. ubx_sdk_google-0.1.0/ubx/google/dataplex/asset_iam_binding.py +50 -0
  588. ubx_sdk_google-0.1.0/ubx/google/dataplex/asset_iam_member.py +50 -0
  589. ubx_sdk_google-0.1.0/ubx/google/dataplex/asset_iam_policy.py +30 -0
  590. ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product.py +104 -0
  591. ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_data_asset.py +66 -0
  592. ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_iam_binding.py +46 -0
  593. ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_iam_member.py +46 -0
  594. ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_iam_policy.py +26 -0
  595. ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan.py +601 -0
  596. ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan_iam_binding.py +46 -0
  597. ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan_iam_member.py +46 -0
  598. ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan_iam_policy.py +26 -0
  599. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry.py +134 -0
  600. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group.py +50 -0
  601. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group_iam_binding.py +46 -0
  602. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group_iam_member.py +46 -0
  603. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group_iam_policy.py +26 -0
  604. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_link.py +102 -0
  605. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type.py +70 -0
  606. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type_iam_binding.py +46 -0
  607. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type_iam_member.py +46 -0
  608. ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type_iam_policy.py +26 -0
  609. ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary.py +50 -0
  610. ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_category.py +54 -0
  611. ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_iam_binding.py +46 -0
  612. ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_iam_member.py +46 -0
  613. ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_iam_policy.py +26 -0
  614. ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_term.py +54 -0
  615. ubx_sdk_google-0.1.0/ubx/google/dataplex/lake.py +64 -0
  616. ubx_sdk_google-0.1.0/ubx/google/dataplex/lake_iam_binding.py +46 -0
  617. ubx_sdk_google-0.1.0/ubx/google/dataplex/lake_iam_member.py +46 -0
  618. ubx_sdk_google-0.1.0/ubx/google/dataplex/lake_iam_policy.py +26 -0
  619. ubx_sdk_google-0.1.0/ubx/google/dataplex/metadata_feed.py +84 -0
  620. ubx_sdk_google-0.1.0/ubx/google/dataplex/task.py +212 -0
  621. ubx_sdk_google-0.1.0/ubx/google/dataplex/task_iam_binding.py +48 -0
  622. ubx_sdk_google-0.1.0/ubx/google/dataplex/task_iam_member.py +48 -0
  623. ubx_sdk_google-0.1.0/ubx/google/dataplex/task_iam_policy.py +28 -0
  624. ubx_sdk_google-0.1.0/ubx/google/dataplex/zone.py +124 -0
  625. ubx_sdk_google-0.1.0/ubx/google/dataplex/zone_iam_binding.py +48 -0
  626. ubx_sdk_google-0.1.0/ubx/google/dataplex/zone_iam_member.py +48 -0
  627. ubx_sdk_google-0.1.0/ubx/google/dataplex/zone_iam_policy.py +28 -0
  628. ubx_sdk_google-0.1.0/ubx/google/dataproc/__init__.py +38 -0
  629. ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy.py +104 -0
  630. ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy_iam_binding.py +46 -0
  631. ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy_iam_member.py +46 -0
  632. ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy_iam_policy.py +26 -0
  633. ubx_sdk_google-0.1.0/ubx/google/dataproc/batch.py +248 -0
  634. ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster.py +818 -0
  635. ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster_iam_binding.py +46 -0
  636. ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster_iam_member.py +46 -0
  637. ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster_iam_policy.py +26 -0
  638. ubx_sdk_google-0.1.0/ubx/google/dataproc/gdc_application_environment.py +70 -0
  639. ubx_sdk_google-0.1.0/ubx/google/dataproc/gdc_service_instance.py +77 -0
  640. ubx_sdk_google-0.1.0/ubx/google/dataproc/gdc_spark_application.py +162 -0
  641. ubx_sdk_google-0.1.0/ubx/google/dataproc/job.py +282 -0
  642. ubx_sdk_google-0.1.0/ubx/google/dataproc/job_iam_binding.py +46 -0
  643. ubx_sdk_google-0.1.0/ubx/google/dataproc/job_iam_member.py +46 -0
  644. ubx_sdk_google-0.1.0/ubx/google/dataproc/job_iam_policy.py +26 -0
  645. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_database_iam_binding.py +48 -0
  646. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_database_iam_member.py +48 -0
  647. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_database_iam_policy.py +28 -0
  648. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation.py +70 -0
  649. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation_iam_binding.py +46 -0
  650. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation_iam_member.py +46 -0
  651. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation_iam_policy.py +26 -0
  652. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service.py +292 -0
  653. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service_iam_binding.py +46 -0
  654. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service_iam_member.py +46 -0
  655. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service_iam_policy.py +26 -0
  656. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_table_iam_binding.py +50 -0
  657. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_table_iam_member.py +50 -0
  658. ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_table_iam_policy.py +30 -0
  659. ubx_sdk_google-0.1.0/ubx/google/dataproc/session_template.py +175 -0
  660. ubx_sdk_google-0.1.0/ubx/google/dataproc/workflow_template.py +778 -0
  661. ubx_sdk_google-0.1.0/ubx/google/datastream/__init__.py +9 -0
  662. ubx_sdk_google-0.1.0/ubx/google/datastream/connection_profile.py +363 -0
  663. ubx_sdk_google-0.1.0/ubx/google/datastream/private_connection.py +80 -0
  664. ubx_sdk_google-0.1.0/ubx/google/datastream/stream.py +1089 -0
  665. ubx_sdk_google-0.1.0/ubx/google/deployment/__init__.py +7 -0
  666. ubx_sdk_google-0.1.0/ubx/google/deployment/manager_deployment.py +108 -0
  667. ubx_sdk_google-0.1.0/ubx/google/developer/__init__.py +10 -0
  668. ubx_sdk_google-0.1.0/ubx/google/developer/connect_account_connector.py +126 -0
  669. ubx_sdk_google-0.1.0/ubx/google/developer/connect_connection.py +304 -0
  670. ubx_sdk_google-0.1.0/ubx/google/developer/connect_git_repository_link.py +54 -0
  671. ubx_sdk_google-0.1.0/ubx/google/developer/connect_insights_config.py +108 -0
  672. ubx_sdk_google-0.1.0/ubx/google/dialogflow/__init__.py +31 -0
  673. ubx_sdk_google-0.1.0/ubx/google/dialogflow/agent.py +62 -0
  674. ubx_sdk_google-0.1.0/ubx/google/dialogflow/conversation_profile.py +532 -0
  675. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_agent.py +272 -0
  676. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_entity_type.py +82 -0
  677. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_environment.py +58 -0
  678. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_flow.py +593 -0
  679. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_generative_settings.py +142 -0
  680. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_generator.py +110 -0
  681. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_intent.py +108 -0
  682. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_page.py +585 -0
  683. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_playbook.py +94 -0
  684. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_security_settings.py +92 -0
  685. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_test_case.py +202 -0
  686. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_tool.py +245 -0
  687. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_tool_version.py +261 -0
  688. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_version.py +44 -0
  689. ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_webhook.py +154 -0
  690. ubx_sdk_google-0.1.0/ubx/google/dialogflow/encryption_spec.py +52 -0
  691. ubx_sdk_google-0.1.0/ubx/google/dialogflow/entity_type.py +62 -0
  692. ubx_sdk_google-0.1.0/ubx/google/dialogflow/environment.py +154 -0
  693. ubx_sdk_google-0.1.0/ubx/google/dialogflow/fulfillment.py +78 -0
  694. ubx_sdk_google-0.1.0/ubx/google/dialogflow/generator.py +208 -0
  695. ubx_sdk_google-0.1.0/ubx/google/dialogflow/intent.py +62 -0
  696. ubx_sdk_google-0.1.0/ubx/google/dialogflow/sip_trunk.py +46 -0
  697. ubx_sdk_google-0.1.0/ubx/google/dialogflow/version.py +42 -0
  698. ubx_sdk_google-0.1.0/ubx/google/discovery/__init__.py +25 -0
  699. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_acl_config.py +68 -0
  700. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_assistant.py +130 -0
  701. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_chat_engine.py +102 -0
  702. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_cmek_config.py +62 -0
  703. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_control.py +234 -0
  704. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_data_connector.py +156 -0
  705. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_data_store.py +215 -0
  706. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_license_config.py +76 -0
  707. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_recommendation_engine.py +138 -0
  708. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_schema.py +46 -0
  709. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine.py +130 -0
  710. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine_iam_binding.py +48 -0
  711. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine_iam_member.py +48 -0
  712. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine_iam_policy.py +28 -0
  713. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_serving_config.py +56 -0
  714. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_sitemap.py +44 -0
  715. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_target_site.py +48 -0
  716. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_user_store.py +48 -0
  717. ubx_sdk_google-0.1.0/ubx/google/discovery/engine_widget_config.py +244 -0
  718. ubx_sdk_google-0.1.0/ubx/google/dns/__init__.py +14 -0
  719. ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone.py +194 -0
  720. ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone_iam_binding.py +44 -0
  721. ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone_iam_member.py +44 -0
  722. ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone_iam_policy.py +24 -0
  723. ubx_sdk_google-0.1.0/ubx/google/dns/policy.py +116 -0
  724. ubx_sdk_google-0.1.0/ubx/google/dns/record_set.py +154 -0
  725. ubx_sdk_google-0.1.0/ubx/google/dns/response_policy.py +72 -0
  726. ubx_sdk_google-0.1.0/ubx/google/dns/response_policy_rule.py +78 -0
  727. ubx_sdk_google-0.1.0/ubx/google/document/__init__.py +11 -0
  728. ubx_sdk_google-0.1.0/ubx/google/document/ai_processor.py +46 -0
  729. ubx_sdk_google-0.1.0/ubx/google/document/ai_processor_default_version.py +38 -0
  730. ubx_sdk_google-0.1.0/ubx/google/document/ai_schema.py +46 -0
  731. ubx_sdk_google-0.1.0/ubx/google/document/ai_warehouse_document_schema.py +235 -0
  732. ubx_sdk_google-0.1.0/ubx/google/document/ai_warehouse_location.py +46 -0
  733. ubx_sdk_google-0.1.0/ubx/google/edgecontainer/__init__.py +9 -0
  734. ubx_sdk_google-0.1.0/ubx/google/edgecontainer/cluster.py +300 -0
  735. ubx_sdk_google-0.1.0/ubx/google/edgecontainer/node_pool.py +86 -0
  736. ubx_sdk_google-0.1.0/ubx/google/edgecontainer/vpn_connection.py +70 -0
  737. ubx_sdk_google-0.1.0/ubx/google/edgenetwork/__init__.py +9 -0
  738. ubx_sdk_google-0.1.0/ubx/google/edgenetwork/interconnect_attachment.py +58 -0
  739. ubx_sdk_google-0.1.0/ubx/google/edgenetwork/network.py +52 -0
  740. ubx_sdk_google-0.1.0/ubx/google/edgenetwork/subnet.py +58 -0
  741. ubx_sdk_google-0.1.0/ubx/google/endpoints/__init__.py +13 -0
  742. ubx_sdk_google-0.1.0/ubx/google/endpoints/service.py +48 -0
  743. ubx_sdk_google-0.1.0/ubx/google/endpoints/service_consumers_iam_binding.py +44 -0
  744. ubx_sdk_google-0.1.0/ubx/google/endpoints/service_consumers_iam_member.py +44 -0
  745. ubx_sdk_google-0.1.0/ubx/google/endpoints/service_consumers_iam_policy.py +24 -0
  746. ubx_sdk_google-0.1.0/ubx/google/endpoints/service_iam_binding.py +42 -0
  747. ubx_sdk_google-0.1.0/ubx/google/endpoints/service_iam_member.py +42 -0
  748. ubx_sdk_google-0.1.0/ubx/google/endpoints/service_iam_policy.py +22 -0
  749. ubx_sdk_google-0.1.0/ubx/google/essential/__init__.py +7 -0
  750. ubx_sdk_google-0.1.0/ubx/google/essential/contacts_contact.py +46 -0
  751. ubx_sdk_google-0.1.0/ubx/google/eventarc/__init__.py +13 -0
  752. ubx_sdk_google-0.1.0/ubx/google/eventarc/channel.py +50 -0
  753. ubx_sdk_google-0.1.0/ubx/google/eventarc/enrollment.py +56 -0
  754. ubx_sdk_google-0.1.0/ubx/google/eventarc/google_api_source.py +68 -0
  755. ubx_sdk_google-0.1.0/ubx/google/eventarc/google_channel_config.py +44 -0
  756. ubx_sdk_google-0.1.0/ubx/google/eventarc/message_bus.py +66 -0
  757. ubx_sdk_google-0.1.0/ubx/google/eventarc/pipeline.py +253 -0
  758. ubx_sdk_google-0.1.0/ubx/google/eventarc/trigger.py +196 -0
  759. ubx_sdk_google-0.1.0/ubx/google/filestore/__init__.py +9 -0
  760. ubx_sdk_google-0.1.0/ubx/google/filestore/backup.py +54 -0
  761. ubx_sdk_google-0.1.0/ubx/google/filestore/instance.py +244 -0
  762. ubx_sdk_google-0.1.0/ubx/google/filestore/snapshot.py +50 -0
  763. ubx_sdk_google-0.1.0/ubx/google/firebase/__init__.py +21 -0
  764. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_app_attest_config.py +42 -0
  765. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_debug_token.py +46 -0
  766. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_device_check_config.py +46 -0
  767. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_play_integrity_config.py +42 -0
  768. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_recaptcha_enterprise_config.py +44 -0
  769. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_recaptcha_v3_config.py +44 -0
  770. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_resource_policy.py +46 -0
  771. ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_service_config.py +44 -0
  772. ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_backend.py +74 -0
  773. ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_build.py +120 -0
  774. ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_default_domain.py +46 -0
  775. ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_domain.py +74 -0
  776. ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_traffic.py +88 -0
  777. ubx_sdk_google-0.1.0/ubx/google/firebase/data_connect_service.py +50 -0
  778. ubx_sdk_google-0.1.0/ubx/google/firebase/remote_config_remote_config.py +130 -0
  779. ubx_sdk_google-0.1.0/ubx/google/firebaserules/__init__.py +8 -0
  780. ubx_sdk_google-0.1.0/ubx/google/firebaserules/release.py +42 -0
  781. ubx_sdk_google-0.1.0/ubx/google/firebaserules/ruleset.py +70 -0
  782. ubx_sdk_google-0.1.0/ubx/google/firestore/__init__.py +12 -0
  783. ubx_sdk_google-0.1.0/ubx/google/firestore/backup_schedule.py +71 -0
  784. ubx_sdk_google-0.1.0/ubx/google/firestore/database.py +80 -0
  785. ubx_sdk_google-0.1.0/ubx/google/firestore/document.py +48 -0
  786. ubx_sdk_google-0.1.0/ubx/google/firestore/field.py +94 -0
  787. ubx_sdk_google-0.1.0/ubx/google/firestore/index.py +155 -0
  788. ubx_sdk_google-0.1.0/ubx/google/firestore/user_creds.py +42 -0
  789. ubx_sdk_google-0.1.0/ubx/google/folder/__init__.py +13 -0
  790. ubx_sdk_google-0.1.0/ubx/google/folder/access_approval_settings.py +60 -0
  791. ubx_sdk_google-0.1.0/ubx/google/folder/folder.py +48 -0
  792. ubx_sdk_google-0.1.0/ubx/google/folder/iam_audit_config.py +38 -0
  793. ubx_sdk_google-0.1.0/ubx/google/folder/iam_binding.py +42 -0
  794. ubx_sdk_google-0.1.0/ubx/google/folder/iam_member.py +42 -0
  795. ubx_sdk_google-0.1.0/ubx/google/folder/iam_policy.py +22 -0
  796. ubx_sdk_google-0.1.0/ubx/google/folder/organization_policy.py +112 -0
  797. ubx_sdk_google-0.1.0/ubx/google/gemini/__init__.py +21 -0
  798. ubx_sdk_google-0.1.0/ubx/google/gemini/code_repository_index.py +50 -0
  799. ubx_sdk_google-0.1.0/ubx/google/gemini/code_tools_setting.py +82 -0
  800. ubx_sdk_google-0.1.0/ubx/google/gemini/code_tools_setting_binding.py +52 -0
  801. ubx_sdk_google-0.1.0/ubx/google/gemini/data_sharing_with_google_setting.py +50 -0
  802. ubx_sdk_google-0.1.0/ubx/google/gemini/data_sharing_with_google_setting_binding.py +52 -0
  803. ubx_sdk_google-0.1.0/ubx/google/gemini/gemini_gcp_enablement_setting.py +52 -0
  804. ubx_sdk_google-0.1.0/ubx/google/gemini/gemini_gcp_enablement_setting_binding.py +52 -0
  805. ubx_sdk_google-0.1.0/ubx/google/gemini/logging_setting.py +50 -0
  806. ubx_sdk_google-0.1.0/ubx/google/gemini/logging_setting_binding.py +52 -0
  807. ubx_sdk_google-0.1.0/ubx/google/gemini/release_channel_setting.py +48 -0
  808. ubx_sdk_google-0.1.0/ubx/google/gemini/release_channel_setting_binding.py +52 -0
  809. ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group.py +64 -0
  810. ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group_iam_binding.py +48 -0
  811. ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group_iam_member.py +48 -0
  812. ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group_iam_policy.py +28 -0
  813. ubx_sdk_google-0.1.0/ubx/google/gke/__init__.py +34 -0
  814. ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_channel.py +50 -0
  815. ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan.py +272 -0
  816. ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan_iam_binding.py +46 -0
  817. ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan_iam_member.py +46 -0
  818. ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan_iam_policy.py +26 -0
  819. ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_channel.py +50 -0
  820. ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan.py +268 -0
  821. ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan_iam_binding.py +46 -0
  822. ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan_iam_member.py +46 -0
  823. ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan_iam_policy.py +26 -0
  824. ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature.py +488 -0
  825. ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_iam_binding.py +46 -0
  826. ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_iam_member.py +46 -0
  827. ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_iam_policy.py +26 -0
  828. ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_membership.py +408 -0
  829. ubx_sdk_google-0.1.0/ubx/google/gke/hub_fleet.py +98 -0
  830. ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership.py +86 -0
  831. ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_binding.py +50 -0
  832. ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_iam_binding.py +46 -0
  833. ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_iam_member.py +46 -0
  834. ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_iam_policy.py +26 -0
  835. ubx_sdk_google-0.1.0/ubx/google/gke/hub_namespace.py +50 -0
  836. ubx_sdk_google-0.1.0/ubx/google/gke/hub_rollout_sequence.py +112 -0
  837. ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope.py +46 -0
  838. ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_iam_binding.py +44 -0
  839. ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_iam_member.py +44 -0
  840. ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_iam_policy.py +24 -0
  841. ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_rbac_role_binding.py +66 -0
  842. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/__init__.py +12 -0
  843. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/bare_metal_admin_cluster.py +496 -0
  844. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/bare_metal_cluster.py +576 -0
  845. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/bare_metal_node_pool.py +100 -0
  846. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/vmware_admin_cluster.py +456 -0
  847. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/vmware_cluster.py +432 -0
  848. ubx_sdk_google-0.1.0/ubx/google/gkeonprem/vmware_node_pool.py +146 -0
  849. ubx_sdk_google-0.1.0/ubx/google/healthcare/__init__.py +28 -0
  850. ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store.py +48 -0
  851. ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store_iam_binding.py +44 -0
  852. ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store_iam_member.py +44 -0
  853. ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store_iam_policy.py +24 -0
  854. ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset.py +60 -0
  855. ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset_iam_binding.py +42 -0
  856. ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset_iam_member.py +42 -0
  857. ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset_iam_policy.py +22 -0
  858. ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store.py +60 -0
  859. ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store_iam_binding.py +42 -0
  860. ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store_iam_member.py +42 -0
  861. ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store_iam_policy.py +22 -0
  862. ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store.py +172 -0
  863. ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store_iam_binding.py +42 -0
  864. ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store_iam_member.py +42 -0
  865. ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store_iam_policy.py +22 -0
  866. ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store.py +96 -0
  867. ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store_iam_binding.py +42 -0
  868. ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store_iam_member.py +42 -0
  869. ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store_iam_policy.py +22 -0
  870. ubx_sdk_google-0.1.0/ubx/google/healthcare/pipeline_job.py +146 -0
  871. ubx_sdk_google-0.1.0/ubx/google/healthcare/workspace.py +58 -0
  872. ubx_sdk_google-0.1.0/ubx/google/hypercomputecluster/__init__.py +7 -0
  873. ubx_sdk_google-0.1.0/ubx/google/hypercomputecluster/cluster.py +560 -0
  874. ubx_sdk_google-0.1.0/ubx/google/iam/__init__.py +29 -0
  875. ubx_sdk_google-0.1.0/ubx/google/iam/access_boundary_policy.py +94 -0
  876. ubx_sdk_google-0.1.0/ubx/google/iam/deny_policy.py +98 -0
  877. ubx_sdk_google-0.1.0/ubx/google/iam/folders_policy_binding.py +86 -0
  878. ubx_sdk_google-0.1.0/ubx/google/iam/oauth_client.py +58 -0
  879. ubx_sdk_google-0.1.0/ubx/google/iam/oauth_client_credential.py +50 -0
  880. ubx_sdk_google-0.1.0/ubx/google/iam/organizations_policy_binding.py +86 -0
  881. ubx_sdk_google-0.1.0/ubx/google/iam/principal_access_boundary_policy.py +80 -0
  882. ubx_sdk_google-0.1.0/ubx/google/iam/projects_policy_binding.py +86 -0
  883. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool.py +80 -0
  884. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_iam_binding.py +44 -0
  885. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_iam_member.py +44 -0
  886. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_iam_policy.py +24 -0
  887. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider.py +184 -0
  888. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider_key.py +68 -0
  889. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider_scim_tenant.py +54 -0
  890. ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider_scim_token.py +50 -0
  891. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool.py +128 -0
  892. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_iam_binding.py +44 -0
  893. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_iam_member.py +44 -0
  894. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_iam_policy.py +24 -0
  895. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_managed_identity.py +64 -0
  896. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_namespace.py +48 -0
  897. ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_provider.py +144 -0
  898. ubx_sdk_google-0.1.0/ubx/google/iap/__init__.py +64 -0
  899. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_agent_iam_binding.py +46 -0
  900. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_agent_iam_member.py +46 -0
  901. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_agent_iam_policy.py +26 -0
  902. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_endpoint_iam_binding.py +46 -0
  903. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_endpoint_iam_member.py +46 -0
  904. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_endpoint_iam_policy.py +26 -0
  905. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_iam_binding.py +44 -0
  906. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_iam_member.py +44 -0
  907. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_iam_policy.py +24 -0
  908. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_mcp_server_iam_binding.py +46 -0
  909. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_mcp_server_iam_member.py +46 -0
  910. ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_mcp_server_iam_policy.py +26 -0
  911. ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_service_iam_binding.py +46 -0
  912. ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_service_iam_member.py +46 -0
  913. ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_service_iam_policy.py +26 -0
  914. ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_version_iam_binding.py +48 -0
  915. ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_version_iam_member.py +48 -0
  916. ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_version_iam_policy.py +28 -0
  917. ubx_sdk_google-0.1.0/ubx/google/iap/brand.py +40 -0
  918. ubx_sdk_google-0.1.0/ubx/google/iap/client.py +40 -0
  919. ubx_sdk_google-0.1.0/ubx/google/iap/location_web_iam_binding.py +44 -0
  920. ubx_sdk_google-0.1.0/ubx/google/iap/location_web_iam_member.py +44 -0
  921. ubx_sdk_google-0.1.0/ubx/google/iap/location_web_iam_policy.py +24 -0
  922. ubx_sdk_google-0.1.0/ubx/google/iap/settings.py +236 -0
  923. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group.py +48 -0
  924. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group_iam_binding.py +46 -0
  925. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group_iam_member.py +46 -0
  926. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group_iam_policy.py +26 -0
  927. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_iam_binding.py +42 -0
  928. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_iam_member.py +42 -0
  929. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_iam_policy.py +22 -0
  930. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_instance_iam_binding.py +46 -0
  931. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_instance_iam_member.py +46 -0
  932. ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_instance_iam_policy.py +26 -0
  933. ubx_sdk_google-0.1.0/ubx/google/iap/web_backend_service_iam_binding.py +44 -0
  934. ubx_sdk_google-0.1.0/ubx/google/iap/web_backend_service_iam_member.py +44 -0
  935. ubx_sdk_google-0.1.0/ubx/google/iap/web_backend_service_iam_policy.py +24 -0
  936. ubx_sdk_google-0.1.0/ubx/google/iap/web_cloud_run_service_iam_binding.py +46 -0
  937. ubx_sdk_google-0.1.0/ubx/google/iap/web_cloud_run_service_iam_member.py +46 -0
  938. ubx_sdk_google-0.1.0/ubx/google/iap/web_cloud_run_service_iam_policy.py +26 -0
  939. ubx_sdk_google-0.1.0/ubx/google/iap/web_forwarding_rule_service_iam_binding.py +44 -0
  940. ubx_sdk_google-0.1.0/ubx/google/iap/web_forwarding_rule_service_iam_member.py +44 -0
  941. ubx_sdk_google-0.1.0/ubx/google/iap/web_forwarding_rule_service_iam_policy.py +24 -0
  942. ubx_sdk_google-0.1.0/ubx/google/iap/web_iam_binding.py +42 -0
  943. ubx_sdk_google-0.1.0/ubx/google/iap/web_iam_member.py +42 -0
  944. ubx_sdk_google-0.1.0/ubx/google/iap/web_iam_policy.py +22 -0
  945. ubx_sdk_google-0.1.0/ubx/google/iap/web_region_backend_service_iam_binding.py +46 -0
  946. ubx_sdk_google-0.1.0/ubx/google/iap/web_region_backend_service_iam_member.py +46 -0
  947. ubx_sdk_google-0.1.0/ubx/google/iap/web_region_backend_service_iam_policy.py +26 -0
  948. ubx_sdk_google-0.1.0/ubx/google/iap/web_region_forwarding_rule_service_iam_binding.py +46 -0
  949. ubx_sdk_google-0.1.0/ubx/google/iap/web_region_forwarding_rule_service_iam_member.py +46 -0
  950. ubx_sdk_google-0.1.0/ubx/google/iap/web_region_forwarding_rule_service_iam_policy.py +26 -0
  951. ubx_sdk_google-0.1.0/ubx/google/iap/web_type_app_engine_iam_binding.py +44 -0
  952. ubx_sdk_google-0.1.0/ubx/google/iap/web_type_app_engine_iam_member.py +44 -0
  953. ubx_sdk_google-0.1.0/ubx/google/iap/web_type_app_engine_iam_policy.py +24 -0
  954. ubx_sdk_google-0.1.0/ubx/google/iap/web_type_compute_iam_binding.py +42 -0
  955. ubx_sdk_google-0.1.0/ubx/google/iap/web_type_compute_iam_member.py +42 -0
  956. ubx_sdk_google-0.1.0/ubx/google/iap/web_type_compute_iam_policy.py +22 -0
  957. ubx_sdk_google-0.1.0/ubx/google/identity/__init__.py +14 -0
  958. ubx_sdk_google-0.1.0/ubx/google/identity/platform_config.py +352 -0
  959. ubx_sdk_google-0.1.0/ubx/google/identity/platform_default_supported_idp_config.py +48 -0
  960. ubx_sdk_google-0.1.0/ubx/google/identity/platform_inbound_saml_config.py +100 -0
  961. ubx_sdk_google-0.1.0/ubx/google/identity/platform_oauth_idp_config.py +68 -0
  962. ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant.py +76 -0
  963. ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant_default_supported_idp_config.py +50 -0
  964. ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant_inbound_saml_config.py +102 -0
  965. ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant_oauth_idp_config.py +54 -0
  966. ubx_sdk_google-0.1.0/ubx/google/integration/__init__.py +9 -0
  967. ubx_sdk_google-0.1.0/ubx/google/integration/connectors_connection.py +444 -0
  968. ubx_sdk_google-0.1.0/ubx/google/integration/connectors_endpoint_attachment.py +52 -0
  969. ubx_sdk_google-0.1.0/ubx/google/integration/connectors_managed_zone.py +52 -0
  970. ubx_sdk_google-0.1.0/ubx/google/integrations/__init__.py +8 -0
  971. ubx_sdk_google-0.1.0/ubx/google/integrations/auth_config.py +272 -0
  972. ubx_sdk_google-0.1.0/ubx/google/integrations/client.py +66 -0
  973. ubx_sdk_google-0.1.0/ubx/google/kms/__init__.py +24 -0
  974. ubx_sdk_google-0.1.0/ubx/google/kms/autokey_config.py +44 -0
  975. ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key.py +72 -0
  976. ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_iam_binding.py +42 -0
  977. ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_iam_member.py +42 -0
  978. ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_iam_policy.py +22 -0
  979. ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_version.py +58 -0
  980. ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection.py +96 -0
  981. ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection_iam_binding.py +46 -0
  982. ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection_iam_member.py +46 -0
  983. ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection_iam_policy.py +26 -0
  984. ubx_sdk_google-0.1.0/ubx/google/kms/key_handle.py +42 -0
  985. ubx_sdk_google-0.1.0/ubx/google/kms/key_ring.py +40 -0
  986. ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_iam_binding.py +42 -0
  987. ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_iam_member.py +42 -0
  988. ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_iam_policy.py +22 -0
  989. ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_import_job.py +44 -0
  990. ubx_sdk_google-0.1.0/ubx/google/kms/project_autokey_config.py +42 -0
  991. ubx_sdk_google-0.1.0/ubx/google/kms/secret_ciphertext.py +40 -0
  992. ubx_sdk_google-0.1.0/ubx/google/license/__init__.py +7 -0
  993. ubx_sdk_google-0.1.0/ubx/google/license/manager_configuration.py +52 -0
  994. ubx_sdk_google-0.1.0/ubx/google/logging/__init__.py +28 -0
  995. ubx_sdk_google-0.1.0/ubx/google/logging/billing_account_bucket_config.py +66 -0
  996. ubx_sdk_google-0.1.0/ubx/google/logging/billing_account_exclusion.py +28 -0
  997. ubx_sdk_google-0.1.0/ubx/google/logging/billing_account_sink.py +66 -0
  998. ubx_sdk_google-0.1.0/ubx/google/logging/folder_bucket_config.py +66 -0
  999. ubx_sdk_google-0.1.0/ubx/google/logging/folder_exclusion.py +28 -0
  1000. ubx_sdk_google-0.1.0/ubx/google/logging/folder_settings.py +44 -0
  1001. ubx_sdk_google-0.1.0/ubx/google/logging/folder_sink.py +70 -0
  1002. ubx_sdk_google-0.1.0/ubx/google/logging/linked_dataset.py +60 -0
  1003. ubx_sdk_google-0.1.0/ubx/google/logging/log_scope.py +48 -0
  1004. ubx_sdk_google-0.1.0/ubx/google/logging/log_view.py +50 -0
  1005. ubx_sdk_google-0.1.0/ubx/google/logging/log_view_iam_binding.py +48 -0
  1006. ubx_sdk_google-0.1.0/ubx/google/logging/log_view_iam_member.py +48 -0
  1007. ubx_sdk_google-0.1.0/ubx/google/logging/log_view_iam_policy.py +28 -0
  1008. ubx_sdk_google-0.1.0/ubx/google/logging/metric.py +154 -0
  1009. ubx_sdk_google-0.1.0/ubx/google/logging/organization_bucket_config.py +66 -0
  1010. ubx_sdk_google-0.1.0/ubx/google/logging/organization_exclusion.py +28 -0
  1011. ubx_sdk_google-0.1.0/ubx/google/logging/organization_settings.py +44 -0
  1012. ubx_sdk_google-0.1.0/ubx/google/logging/organization_sink.py +70 -0
  1013. ubx_sdk_google-0.1.0/ubx/google/logging/project_bucket_config.py +70 -0
  1014. ubx_sdk_google-0.1.0/ubx/google/logging/project_exclusion.py +28 -0
  1015. ubx_sdk_google-0.1.0/ubx/google/logging/project_sink.py +70 -0
  1016. ubx_sdk_google-0.1.0/ubx/google/logging/saved_query.py +96 -0
  1017. ubx_sdk_google-0.1.0/ubx/google/looker/__init__.py +7 -0
  1018. ubx_sdk_google-0.1.0/ubx/google/looker/instance.py +292 -0
  1019. ubx_sdk_google-0.1.0/ubx/google/lustre/__init__.py +7 -0
  1020. ubx_sdk_google-0.1.0/ubx/google/lustre/instance.py +200 -0
  1021. ubx_sdk_google-0.1.0/ubx/google/managed/__init__.py +11 -0
  1022. ubx_sdk_google-0.1.0/ubx/google/managed/kafka_acl.py +66 -0
  1023. ubx_sdk_google-0.1.0/ubx/google/managed/kafka_cluster.py +170 -0
  1024. ubx_sdk_google-0.1.0/ubx/google/managed/kafka_connect_cluster.py +106 -0
  1025. ubx_sdk_google-0.1.0/ubx/google/managed/kafka_connector.py +64 -0
  1026. ubx_sdk_google-0.1.0/ubx/google/managed/kafka_topic.py +52 -0
  1027. ubx_sdk_google-0.1.0/ubx/google/memcache/__init__.py +7 -0
  1028. ubx_sdk_google-0.1.0/ubx/google/memcache/instance.py +146 -0
  1029. ubx_sdk_google-0.1.0/ubx/google/memorystore/__init__.py +8 -0
  1030. ubx_sdk_google-0.1.0/ubx/google/memorystore/instance.py +336 -0
  1031. ubx_sdk_google-0.1.0/ubx/google/memorystore/instance_desired_user_created_endpoints.py +96 -0
  1032. ubx_sdk_google-0.1.0/ubx/google/migration/__init__.py +16 -0
  1033. ubx_sdk_google-0.1.0/ubx/google/migration/center_assets_export_job.py +90 -0
  1034. ubx_sdk_google-0.1.0/ubx/google/migration/center_discovery_client.py +58 -0
  1035. ubx_sdk_google-0.1.0/ubx/google/migration/center_group.py +50 -0
  1036. ubx_sdk_google-0.1.0/ubx/google/migration/center_import_data_file.py +48 -0
  1037. ubx_sdk_google-0.1.0/ubx/google/migration/center_import_job.py +50 -0
  1038. ubx_sdk_google-0.1.0/ubx/google/migration/center_preference_set.py +174 -0
  1039. ubx_sdk_google-0.1.0/ubx/google/migration/center_report.py +50 -0
  1040. ubx_sdk_google-0.1.0/ubx/google/migration/center_report_config.py +62 -0
  1041. ubx_sdk_google-0.1.0/ubx/google/migration/center_settings.py +46 -0
  1042. ubx_sdk_google-0.1.0/ubx/google/migration/center_source.py +54 -0
  1043. ubx_sdk_google-0.1.0/ubx/google/ml/__init__.py +7 -0
  1044. ubx_sdk_google-0.1.0/ubx/google/ml/engine_model.py +66 -0
  1045. ubx_sdk_google-0.1.0/ubx/google/model/__init__.py +8 -0
  1046. ubx_sdk_google-0.1.0/ubx/google/model/armor_floorsetting.py +198 -0
  1047. ubx_sdk_google-0.1.0/ubx/google/model/armor_template.py +208 -0
  1048. ubx_sdk_google-0.1.0/ubx/google/monitoring/__init__.py +16 -0
  1049. ubx_sdk_google-0.1.0/ubx/google/monitoring/alert_policy.py +430 -0
  1050. ubx_sdk_google-0.1.0/ubx/google/monitoring/custom_service.py +60 -0
  1051. ubx_sdk_google-0.1.0/ubx/google/monitoring/dashboard.py +42 -0
  1052. ubx_sdk_google-0.1.0/ubx/google/monitoring/group.py +48 -0
  1053. ubx_sdk_google-0.1.0/ubx/google/monitoring/metric_descriptor.py +88 -0
  1054. ubx_sdk_google-0.1.0/ubx/google/monitoring/monitored_project.py +40 -0
  1055. ubx_sdk_google-0.1.0/ubx/google/monitoring/notification_channel.py +84 -0
  1056. ubx_sdk_google-0.1.0/ubx/google/monitoring/service.py +62 -0
  1057. ubx_sdk_google-0.1.0/ubx/google/monitoring/slo.py +228 -0
  1058. ubx_sdk_google-0.1.0/ubx/google/monitoring/uptime_check_config.py +260 -0
  1059. ubx_sdk_google-0.1.0/ubx/google/netapp/__init__.py +17 -0
  1060. ubx_sdk_google-0.1.0/ubx/google/netapp/active_directory.py +80 -0
  1061. ubx_sdk_google-0.1.0/ubx/google/netapp/backup.py +72 -0
  1062. ubx_sdk_google-0.1.0/ubx/google/netapp/backup_policy.py +56 -0
  1063. ubx_sdk_google-0.1.0/ubx/google/netapp/backup_vault.py +76 -0
  1064. ubx_sdk_google-0.1.0/ubx/google/netapp/host_group.py +54 -0
  1065. ubx_sdk_google-0.1.0/ubx/google/netapp/kmsconfig.py +50 -0
  1066. ubx_sdk_google-0.1.0/ubx/google/netapp/storage_pool.py +84 -0
  1067. ubx_sdk_google-0.1.0/ubx/google/netapp/volume.py +380 -0
  1068. ubx_sdk_google-0.1.0/ubx/google/netapp/volume_quota_rule.py +56 -0
  1069. ubx_sdk_google-0.1.0/ubx/google/netapp/volume_replication.py +96 -0
  1070. ubx_sdk_google-0.1.0/ubx/google/netapp/volume_snapshot.py +50 -0
  1071. ubx_sdk_google-0.1.0/ubx/google/network/__init__.py +77 -0
  1072. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_destination.py +72 -0
  1073. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_group.py +62 -0
  1074. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub.py +52 -0
  1075. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub_iam_binding.py +44 -0
  1076. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub_iam_member.py +44 -0
  1077. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub_iam_policy.py +24 -0
  1078. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_internal_range.py +96 -0
  1079. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_multicloud_data_transfer_config.py +78 -0
  1080. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_policy_based_route.py +102 -0
  1081. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_regional_endpoint.py +58 -0
  1082. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_service_connection_policy.py +72 -0
  1083. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_spoke.py +160 -0
  1084. ubx_sdk_google-0.1.0/ubx/google/network/connectivity_transport.py +64 -0
  1085. ubx_sdk_google-0.1.0/ubx/google/network/management_connectivity_test.py +146 -0
  1086. ubx_sdk_google-0.1.0/ubx/google/network/management_organization_vpc_flow_logs_config.py +62 -0
  1087. ubx_sdk_google-0.1.0/ubx/google/network/management_vpc_flow_logs_config.py +68 -0
  1088. ubx_sdk_google-0.1.0/ubx/google/network/security_address_group.py +54 -0
  1089. ubx_sdk_google-0.1.0/ubx/google/network/security_address_group_iam_binding.py +46 -0
  1090. ubx_sdk_google-0.1.0/ubx/google/network/security_address_group_iam_member.py +46 -0
  1091. ubx_sdk_google-0.1.0/ubx/google/network/security_address_group_iam_policy.py +26 -0
  1092. ubx_sdk_google-0.1.0/ubx/google/network/security_authz_policy.py +488 -0
  1093. ubx_sdk_google-0.1.0/ubx/google/network/security_backend_authentication_config.py +54 -0
  1094. ubx_sdk_google-0.1.0/ubx/google/network/security_client_tls_policy.py +96 -0
  1095. ubx_sdk_google-0.1.0/ubx/google/network/security_dns_threat_detector.py +50 -0
  1096. ubx_sdk_google-0.1.0/ubx/google/network/security_firewall_endpoint.py +62 -0
  1097. ubx_sdk_google-0.1.0/ubx/google/network/security_firewall_endpoint_association.py +54 -0
  1098. ubx_sdk_google-0.1.0/ubx/google/network/security_gateway_security_policy.py +48 -0
  1099. ubx_sdk_google-0.1.0/ubx/google/network/security_gateway_security_policy_rule.py +60 -0
  1100. ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_deployment.py +52 -0
  1101. ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_deployment_group.py +50 -0
  1102. ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_endpoint_group.py +50 -0
  1103. ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_endpoint_group_association.py +50 -0
  1104. ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_deployment.py +52 -0
  1105. ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_deployment_group.py +50 -0
  1106. ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_endpoint.py +50 -0
  1107. ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_endpoint_group.py +54 -0
  1108. ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_endpoint_group_association.py +50 -0
  1109. ubx_sdk_google-0.1.0/ubx/google/network/security_security_profile.py +174 -0
  1110. ubx_sdk_google-0.1.0/ubx/google/network/security_security_profile_group.py +56 -0
  1111. ubx_sdk_google-0.1.0/ubx/google/network/security_server_tls_policy.py +112 -0
  1112. ubx_sdk_google-0.1.0/ubx/google/network/security_tls_inspection_policy.py +58 -0
  1113. ubx_sdk_google-0.1.0/ubx/google/network/security_ull_mirroring_collector.py +50 -0
  1114. ubx_sdk_google-0.1.0/ubx/google/network/security_ull_mirroring_collector_rule.py +68 -0
  1115. ubx_sdk_google-0.1.0/ubx/google/network/security_ull_mirroring_engine.py +46 -0
  1116. ubx_sdk_google-0.1.0/ubx/google/network/security_url_lists.py +48 -0
  1117. ubx_sdk_google-0.1.0/ubx/google/network/services_agent_gateway.py +124 -0
  1118. ubx_sdk_google-0.1.0/ubx/google/network/services_authz_extension.py +64 -0
  1119. ubx_sdk_google-0.1.0/ubx/google/network/services_edge_cache_keyset.py +78 -0
  1120. ubx_sdk_google-0.1.0/ubx/google/network/services_edge_cache_origin.py +180 -0
  1121. ubx_sdk_google-0.1.0/ubx/google/network/services_edge_cache_service.py +446 -0
  1122. ubx_sdk_google-0.1.0/ubx/google/network/services_endpoint_policy.py +110 -0
  1123. ubx_sdk_google-0.1.0/ubx/google/network/services_gateway.py +76 -0
  1124. ubx_sdk_google-0.1.0/ubx/google/network/services_grpc_route.py +204 -0
  1125. ubx_sdk_google-0.1.0/ubx/google/network/services_http_route.py +350 -0
  1126. ubx_sdk_google-0.1.0/ubx/google/network/services_lb_edge_extension.py +104 -0
  1127. ubx_sdk_google-0.1.0/ubx/google/network/services_lb_route_extension.py +114 -0
  1128. ubx_sdk_google-0.1.0/ubx/google/network/services_lb_traffic_extension.py +110 -0
  1129. ubx_sdk_google-0.1.0/ubx/google/network/services_mesh.py +50 -0
  1130. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_consumer_association.py +52 -0
  1131. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_domain.py +82 -0
  1132. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_domain_activation.py +74 -0
  1133. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_domain_group.py +48 -0
  1134. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_consumer_activation.py +66 -0
  1135. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_producer_activation.py +52 -0
  1136. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_range.py +72 -0
  1137. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_range_activation.py +66 -0
  1138. ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_producer_association.py +52 -0
  1139. ubx_sdk_google-0.1.0/ubx/google/network/services_service_binding.py +48 -0
  1140. ubx_sdk_google-0.1.0/ubx/google/network/services_tcp_route.py +110 -0
  1141. ubx_sdk_google-0.1.0/ubx/google/network/services_tls_route.py +108 -0
  1142. ubx_sdk_google-0.1.0/ubx/google/network/services_wasm_plugin.py +100 -0
  1143. ubx_sdk_google-0.1.0/ubx/google/notebooks/__init__.py +15 -0
  1144. ubx_sdk_google-0.1.0/ubx/google/notebooks/environment.py +84 -0
  1145. ubx_sdk_google-0.1.0/ubx/google/notebooks/instance.py +180 -0
  1146. ubx_sdk_google-0.1.0/ubx/google/notebooks/instance_iam_binding.py +46 -0
  1147. ubx_sdk_google-0.1.0/ubx/google/notebooks/instance_iam_member.py +46 -0
  1148. ubx_sdk_google-0.1.0/ubx/google/notebooks/instance_iam_policy.py +26 -0
  1149. ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime.py +270 -0
  1150. ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime_iam_binding.py +46 -0
  1151. ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime_iam_member.py +46 -0
  1152. ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime_iam_policy.py +26 -0
  1153. ubx_sdk_google-0.1.0/ubx/google/observability/__init__.py +7 -0
  1154. ubx_sdk_google-0.1.0/ubx/google/observability/trace_scope.py +48 -0
  1155. ubx_sdk_google-0.1.0/ubx/google/oracle/__init__.py +18 -0
  1156. ubx_sdk_google-0.1.0/ubx/google/oracle/database_autonomous_database.py +380 -0
  1157. ubx_sdk_google-0.1.0/ubx/google/oracle/database_cloud_exadata_infrastructure.py +158 -0
  1158. ubx_sdk_google-0.1.0/ubx/google/oracle/database_cloud_exadata_infrastructure_exascale_config.py +44 -0
  1159. ubx_sdk_google-0.1.0/ubx/google/oracle/database_cloud_vm_cluster.py +174 -0
  1160. ubx_sdk_google-0.1.0/ubx/google/oracle/database_db_system.py +276 -0
  1161. ubx_sdk_google-0.1.0/ubx/google/oracle/database_exadb_vm_cluster.py +148 -0
  1162. ubx_sdk_google-0.1.0/ubx/google/oracle/database_exascale_db_storage_vault.py +114 -0
  1163. ubx_sdk_google-0.1.0/ubx/google/oracle/database_goldengate_connection.py +1038 -0
  1164. ubx_sdk_google-0.1.0/ubx/google/oracle/database_goldengate_connection_assignment.py +72 -0
  1165. ubx_sdk_google-0.1.0/ubx/google/oracle/database_goldengate_deployment.py +322 -0
  1166. ubx_sdk_google-0.1.0/ubx/google/oracle/database_odb_network.py +52 -0
  1167. ubx_sdk_google-0.1.0/ubx/google/oracle/database_odb_subnet.py +54 -0
  1168. ubx_sdk_google-0.1.0/ubx/google/org/__init__.py +8 -0
  1169. ubx_sdk_google-0.1.0/ubx/google/org/policy_custom_constraint.py +54 -0
  1170. ubx_sdk_google-0.1.0/ubx/google/org/policy_policy.py +124 -0
  1171. ubx_sdk_google-0.1.0/ubx/google/organization/__init__.py +13 -0
  1172. ubx_sdk_google-0.1.0/ubx/google/organization/access_approval_settings.py +60 -0
  1173. ubx_sdk_google-0.1.0/ubx/google/organization/iam_audit_config.py +38 -0
  1174. ubx_sdk_google-0.1.0/ubx/google/organization/iam_binding.py +42 -0
  1175. ubx_sdk_google-0.1.0/ubx/google/organization/iam_custom_role.py +32 -0
  1176. ubx_sdk_google-0.1.0/ubx/google/organization/iam_member.py +42 -0
  1177. ubx_sdk_google-0.1.0/ubx/google/organization/iam_policy.py +22 -0
  1178. ubx_sdk_google-0.1.0/ubx/google/organization/policy.py +112 -0
  1179. ubx_sdk_google-0.1.0/ubx/google/os/__init__.py +12 -0
  1180. ubx_sdk_google-0.1.0/ubx/google/os/config_os_policy_assignment.py +462 -0
  1181. ubx_sdk_google-0.1.0/ubx/google/os/config_patch_deployment.py +396 -0
  1182. ubx_sdk_google-0.1.0/ubx/google/os/config_v2_policy_orchestrator.py +562 -0
  1183. ubx_sdk_google-0.1.0/ubx/google/os/config_v2_policy_orchestrator_for_folder.py +564 -0
  1184. ubx_sdk_google-0.1.0/ubx/google/os/config_v2_policy_orchestrator_for_organization.py +564 -0
  1185. ubx_sdk_google-0.1.0/ubx/google/os/login_ssh_public_key.py +46 -0
  1186. ubx_sdk_google-0.1.0/ubx/google/parallelstore/__init__.py +7 -0
  1187. ubx_sdk_google-0.1.0/ubx/google/parallelstore/instance.py +60 -0
  1188. ubx_sdk_google-0.1.0/ubx/google/parameter/__init__.py +10 -0
  1189. ubx_sdk_google-0.1.0/ubx/google/parameter/manager_parameter.py +48 -0
  1190. ubx_sdk_google-0.1.0/ubx/google/parameter/manager_parameter_version.py +46 -0
  1191. ubx_sdk_google-0.1.0/ubx/google/parameter/manager_regional_parameter.py +50 -0
  1192. ubx_sdk_google-0.1.0/ubx/google/parameter/manager_regional_parameter_version.py +46 -0
  1193. ubx_sdk_google-0.1.0/ubx/google/privateca/__init__.py +16 -0
  1194. ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool.py +362 -0
  1195. ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool_iam_binding.py +46 -0
  1196. ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool_iam_member.py +46 -0
  1197. ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool_iam_policy.py +26 -0
  1198. ubx_sdk_google-0.1.0/ubx/google/privateca/certificate.py +330 -0
  1199. ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_authority.py +382 -0
  1200. ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template.py +278 -0
  1201. ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template_iam_binding.py +46 -0
  1202. ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template_iam_member.py +46 -0
  1203. ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template_iam_policy.py +26 -0
  1204. ubx_sdk_google-0.1.0/ubx/google/privileged/__init__.py +7 -0
  1205. ubx_sdk_google-0.1.0/ubx/google/privileged/access_manager_entitlement.py +199 -0
  1206. ubx_sdk_google-0.1.0/ubx/google/project/__init__.py +18 -0
  1207. ubx_sdk_google-0.1.0/ubx/google/project/access_approval_settings.py +62 -0
  1208. ubx_sdk_google-0.1.0/ubx/google/project/default_service_accounts.py +42 -0
  1209. ubx_sdk_google-0.1.0/ubx/google/project/iam_audit_config.py +38 -0
  1210. ubx_sdk_google-0.1.0/ubx/google/project/iam_binding.py +42 -0
  1211. ubx_sdk_google-0.1.0/ubx/google/project/iam_custom_role.py +32 -0
  1212. ubx_sdk_google-0.1.0/ubx/google/project/iam_member.py +42 -0
  1213. ubx_sdk_google-0.1.0/ubx/google/project/iam_member_remove.py +24 -0
  1214. ubx_sdk_google-0.1.0/ubx/google/project/iam_policy.py +22 -0
  1215. ubx_sdk_google-0.1.0/ubx/google/project/organization_policy.py +112 -0
  1216. ubx_sdk_google-0.1.0/ubx/google/project/project.py +56 -0
  1217. ubx_sdk_google-0.1.0/ubx/google/project/service.py +48 -0
  1218. ubx_sdk_google-0.1.0/ubx/google/project/usage_export_bucket.py +42 -0
  1219. ubx_sdk_google-0.1.0/ubx/google/public/__init__.py +7 -0
  1220. ubx_sdk_google-0.1.0/ubx/google/public/ca_external_account_key.py +38 -0
  1221. ubx_sdk_google-0.1.0/ubx/google/pubsub/__init__.py +21 -0
  1222. ubx_sdk_google-0.1.0/ubx/google/pubsub/lite_reservation.py +46 -0
  1223. ubx_sdk_google-0.1.0/ubx/google/pubsub/lite_subscription.py +62 -0
  1224. ubx_sdk_google-0.1.0/ubx/google/pubsub/lite_topic.py +106 -0
  1225. ubx_sdk_google-0.1.0/ubx/google/pubsub/schema.py +46 -0
  1226. ubx_sdk_google-0.1.0/ubx/google/pubsub/schema_iam_binding.py +44 -0
  1227. ubx_sdk_google-0.1.0/ubx/google/pubsub/schema_iam_member.py +44 -0
  1228. ubx_sdk_google-0.1.0/ubx/google/pubsub/schema_iam_policy.py +24 -0
  1229. ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription.py +296 -0
  1230. ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription_iam_binding.py +44 -0
  1231. ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription_iam_member.py +44 -0
  1232. ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription_iam_policy.py +24 -0
  1233. ubx_sdk_google-0.1.0/ubx/google/pubsub/topic.py +311 -0
  1234. ubx_sdk_google-0.1.0/ubx/google/pubsub/topic_iam_binding.py +44 -0
  1235. ubx_sdk_google-0.1.0/ubx/google/pubsub/topic_iam_member.py +44 -0
  1236. ubx_sdk_google-0.1.0/ubx/google/pubsub/topic_iam_policy.py +24 -0
  1237. ubx_sdk_google-0.1.0/ubx/google/recaptcha/__init__.py +7 -0
  1238. ubx_sdk_google-0.1.0/ubx/google/recaptcha/enterprise_key.py +172 -0
  1239. ubx_sdk_google-0.1.0/ubx/google/redis/__init__.py +9 -0
  1240. ubx_sdk_google-0.1.0/ubx/google/redis/cluster.py +324 -0
  1241. ubx_sdk_google-0.1.0/ubx/google/redis/cluster_user_created_connections.py +96 -0
  1242. ubx_sdk_google-0.1.0/ubx/google/redis/instance.py +156 -0
  1243. ubx_sdk_google-0.1.0/ubx/google/resource/__init__.py +8 -0
  1244. ubx_sdk_google-0.1.0/ubx/google/resource/manager_capability.py +42 -0
  1245. ubx_sdk_google-0.1.0/ubx/google/resource/manager_lien.py +44 -0
  1246. ubx_sdk_google-0.1.0/ubx/google/scc/__init__.py +39 -0
  1247. ubx_sdk_google-0.1.0/ubx/google/scc/event_threat_detection_custom_module.py +48 -0
  1248. ubx_sdk_google-0.1.0/ubx/google/scc/folder_custom_module.py +128 -0
  1249. ubx_sdk_google-0.1.0/ubx/google/scc/folder_notification_config.py +60 -0
  1250. ubx_sdk_google-0.1.0/ubx/google/scc/folder_scc_big_query_export.py +48 -0
  1251. ubx_sdk_google-0.1.0/ubx/google/scc/management_folder_security_health_analytics_custom_module.py +130 -0
  1252. ubx_sdk_google-0.1.0/ubx/google/scc/management_organization_event_threat_detection_custom_module.py +50 -0
  1253. ubx_sdk_google-0.1.0/ubx/google/scc/management_organization_security_health_analytics_custom_module.py +130 -0
  1254. ubx_sdk_google-0.1.0/ubx/google/scc/management_project_security_health_analytics_custom_module.py +130 -0
  1255. ubx_sdk_google-0.1.0/ubx/google/scc/mute_config.py +50 -0
  1256. ubx_sdk_google-0.1.0/ubx/google/scc/notification_config.py +60 -0
  1257. ubx_sdk_google-0.1.0/ubx/google/scc/organization_custom_module.py +128 -0
  1258. ubx_sdk_google-0.1.0/ubx/google/scc/organization_scc_big_query_export.py +48 -0
  1259. ubx_sdk_google-0.1.0/ubx/google/scc/project_custom_module.py +128 -0
  1260. ubx_sdk_google-0.1.0/ubx/google/scc/project_notification_config.py +60 -0
  1261. ubx_sdk_google-0.1.0/ubx/google/scc/project_scc_big_query_export.py +48 -0
  1262. ubx_sdk_google-0.1.0/ubx/google/scc/source.py +42 -0
  1263. ubx_sdk_google-0.1.0/ubx/google/scc/source_iam_binding.py +44 -0
  1264. ubx_sdk_google-0.1.0/ubx/google/scc/source_iam_member.py +44 -0
  1265. ubx_sdk_google-0.1.0/ubx/google/scc/source_iam_policy.py +24 -0
  1266. ubx_sdk_google-0.1.0/ubx/google/scc/v2_folder_mute_config.py +50 -0
  1267. ubx_sdk_google-0.1.0/ubx/google/scc/v2_folder_notification_config.py +62 -0
  1268. ubx_sdk_google-0.1.0/ubx/google/scc/v2_folder_scc_big_query_export.py +50 -0
  1269. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_mute_config.py +50 -0
  1270. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_notification_config.py +62 -0
  1271. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_scc_big_query_export.py +52 -0
  1272. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_scc_big_query_exports.py +52 -0
  1273. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source.py +42 -0
  1274. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source_iam_binding.py +44 -0
  1275. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source_iam_member.py +44 -0
  1276. ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source_iam_policy.py +24 -0
  1277. ubx_sdk_google-0.1.0/ubx/google/scc/v2_project_mute_config.py +50 -0
  1278. ubx_sdk_google-0.1.0/ubx/google/scc/v2_project_notification_config.py +62 -0
  1279. ubx_sdk_google-0.1.0/ubx/google/scc/v2_project_scc_big_query_export.py +50 -0
  1280. ubx_sdk_google-0.1.0/ubx/google/secret/__init__.py +16 -0
  1281. ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret.py +104 -0
  1282. ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_iam_binding.py +46 -0
  1283. ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_iam_member.py +46 -0
  1284. ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_iam_policy.py +26 -0
  1285. ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_version.py +46 -0
  1286. ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret.py +158 -0
  1287. ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_iam_binding.py +44 -0
  1288. ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_iam_member.py +44 -0
  1289. ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_iam_policy.py +24 -0
  1290. ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_version.py +52 -0
  1291. ubx_sdk_google-0.1.0/ubx/google/secure/__init__.py +16 -0
  1292. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_branch_rule.py +62 -0
  1293. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_hook.py +68 -0
  1294. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance.py +104 -0
  1295. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance_iam_binding.py +46 -0
  1296. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance_iam_member.py +46 -0
  1297. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance_iam_policy.py +26 -0
  1298. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository.py +68 -0
  1299. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository_iam_binding.py +46 -0
  1300. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository_iam_member.py +46 -0
  1301. ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository_iam_policy.py +26 -0
  1302. ubx_sdk_google-0.1.0/ubx/google/securityposture/__init__.py +8 -0
  1303. ubx_sdk_google-0.1.0/ubx/google/securityposture/posture.py +324 -0
  1304. ubx_sdk_google-0.1.0/ubx/google/securityposture/posture_deployment.py +52 -0
  1305. ubx_sdk_google-0.1.0/ubx/google/service/__init__.py +23 -0
  1306. ubx_sdk_google-0.1.0/ubx/google/service/account.py +46 -0
  1307. ubx_sdk_google-0.1.0/ubx/google/service/account_iam_binding.py +42 -0
  1308. ubx_sdk_google-0.1.0/ubx/google/service/account_iam_member.py +42 -0
  1309. ubx_sdk_google-0.1.0/ubx/google/service/account_iam_policy.py +22 -0
  1310. ubx_sdk_google-0.1.0/ubx/google/service/account_key.py +32 -0
  1311. ubx_sdk_google-0.1.0/ubx/google/service/directory_endpoint.py +50 -0
  1312. ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace.py +46 -0
  1313. ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace_iam_binding.py +42 -0
  1314. ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace_iam_member.py +42 -0
  1315. ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace_iam_policy.py +22 -0
  1316. ubx_sdk_google-0.1.0/ubx/google/service/directory_service.py +44 -0
  1317. ubx_sdk_google-0.1.0/ubx/google/service/directory_service_iam_binding.py +42 -0
  1318. ubx_sdk_google-0.1.0/ubx/google/service/directory_service_iam_member.py +42 -0
  1319. ubx_sdk_google-0.1.0/ubx/google/service/directory_service_iam_policy.py +22 -0
  1320. ubx_sdk_google-0.1.0/ubx/google/service/networking_connection.py +46 -0
  1321. ubx_sdk_google-0.1.0/ubx/google/service/networking_peered_dns_domain.py +48 -0
  1322. ubx_sdk_google-0.1.0/ubx/google/service/networking_vpc_service_controls.py +44 -0
  1323. ubx_sdk_google-0.1.0/ubx/google/site/__init__.py +8 -0
  1324. ubx_sdk_google-0.1.0/ubx/google/site/verification_owner.py +40 -0
  1325. ubx_sdk_google-0.1.0/ubx/google/site/verification_web_resource.py +54 -0
  1326. ubx_sdk_google-0.1.0/ubx/google/sourcerepo/__init__.py +10 -0
  1327. ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository.py +62 -0
  1328. ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository_iam_binding.py +44 -0
  1329. ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository_iam_member.py +44 -0
  1330. ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository_iam_policy.py +24 -0
  1331. ubx_sdk_google-0.1.0/ubx/google/spanner/__init__.py +17 -0
  1332. ubx_sdk_google-0.1.0/ubx/google/spanner/backup_schedule.py +111 -0
  1333. ubx_sdk_google-0.1.0/ubx/google/spanner/database.py +72 -0
  1334. ubx_sdk_google-0.1.0/ubx/google/spanner/database_iam_binding.py +46 -0
  1335. ubx_sdk_google-0.1.0/ubx/google/spanner/database_iam_member.py +46 -0
  1336. ubx_sdk_google-0.1.0/ubx/google/spanner/database_iam_policy.py +26 -0
  1337. ubx_sdk_google-0.1.0/ubx/google/spanner/instance.py +162 -0
  1338. ubx_sdk_google-0.1.0/ubx/google/spanner/instance_config.py +66 -0
  1339. ubx_sdk_google-0.1.0/ubx/google/spanner/instance_iam_binding.py +44 -0
  1340. ubx_sdk_google-0.1.0/ubx/google/spanner/instance_iam_member.py +44 -0
  1341. ubx_sdk_google-0.1.0/ubx/google/spanner/instance_iam_policy.py +24 -0
  1342. ubx_sdk_google-0.1.0/ubx/google/spanner/instance_partition.py +102 -0
  1343. ubx_sdk_google-0.1.0/ubx/google/sql/__init__.py +12 -0
  1344. ubx_sdk_google-0.1.0/ubx/google/sql/database.py +48 -0
  1345. ubx_sdk_google-0.1.0/ubx/google/sql/database_instance.py +678 -0
  1346. ubx_sdk_google-0.1.0/ubx/google/sql/provision_script.py +30 -0
  1347. ubx_sdk_google-0.1.0/ubx/google/sql/source_representation_instance.py +60 -0
  1348. ubx_sdk_google-0.1.0/ubx/google/sql/ssl_cert.py +42 -0
  1349. ubx_sdk_google-0.1.0/ubx/google/sql/user.py +92 -0
  1350. ubx_sdk_google-0.1.0/ubx/google/storage/__init__.py +33 -0
  1351. ubx_sdk_google-0.1.0/ubx/google/storage/anywhere_cache.py +48 -0
  1352. ubx_sdk_google-0.1.0/ubx/google/storage/batch_operations_job.py +170 -0
  1353. ubx_sdk_google-0.1.0/ubx/google/storage/bucket.py +360 -0
  1354. ubx_sdk_google-0.1.0/ubx/google/storage/bucket_access_control.py +44 -0
  1355. ubx_sdk_google-0.1.0/ubx/google/storage/bucket_acl.py +28 -0
  1356. ubx_sdk_google-0.1.0/ubx/google/storage/bucket_iam_binding.py +56 -0
  1357. ubx_sdk_google-0.1.0/ubx/google/storage/bucket_iam_member.py +56 -0
  1358. ubx_sdk_google-0.1.0/ubx/google/storage/bucket_iam_policy.py +36 -0
  1359. ubx_sdk_google-0.1.0/ubx/google/storage/bucket_object.py +136 -0
  1360. ubx_sdk_google-0.1.0/ubx/google/storage/control_folder_intelligence_config.py +92 -0
  1361. ubx_sdk_google-0.1.0/ubx/google/storage/control_organization_intelligence_config.py +92 -0
  1362. ubx_sdk_google-0.1.0/ubx/google/storage/control_project_intelligence_config.py +92 -0
  1363. ubx_sdk_google-0.1.0/ubx/google/storage/default_object_access_control.py +46 -0
  1364. ubx_sdk_google-0.1.0/ubx/google/storage/default_object_acl.py +24 -0
  1365. ubx_sdk_google-0.1.0/ubx/google/storage/folder.py +44 -0
  1366. ubx_sdk_google-0.1.0/ubx/google/storage/hmac_key.py +44 -0
  1367. ubx_sdk_google-0.1.0/ubx/google/storage/insights_dataset_config.py +156 -0
  1368. ubx_sdk_google-0.1.0/ubx/google/storage/insights_report_config.py +159 -0
  1369. ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder.py +44 -0
  1370. ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder_iam_binding.py +44 -0
  1371. ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder_iam_member.py +44 -0
  1372. ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder_iam_policy.py +24 -0
  1373. ubx_sdk_google-0.1.0/ubx/google/storage/notification.py +28 -0
  1374. ubx_sdk_google-0.1.0/ubx/google/storage/object_access_control.py +46 -0
  1375. ubx_sdk_google-0.1.0/ubx/google/storage/object_acl.py +28 -0
  1376. ubx_sdk_google-0.1.0/ubx/google/storage/transfer_agent_pool.py +58 -0
  1377. ubx_sdk_google-0.1.0/ubx/google/storage/transfer_job.py +484 -0
  1378. ubx_sdk_google-0.1.0/ubx/google/tags/__init__.py +16 -0
  1379. ubx_sdk_google-0.1.0/ubx/google/tags/location_tag_binding.py +42 -0
  1380. ubx_sdk_google-0.1.0/ubx/google/tags/tag_binding.py +40 -0
  1381. ubx_sdk_google-0.1.0/ubx/google/tags/tag_key.py +50 -0
  1382. ubx_sdk_google-0.1.0/ubx/google/tags/tag_key_iam_binding.py +42 -0
  1383. ubx_sdk_google-0.1.0/ubx/google/tags/tag_key_iam_member.py +42 -0
  1384. ubx_sdk_google-0.1.0/ubx/google/tags/tag_key_iam_policy.py +22 -0
  1385. ubx_sdk_google-0.1.0/ubx/google/tags/tag_value.py +44 -0
  1386. ubx_sdk_google-0.1.0/ubx/google/tags/tag_value_iam_binding.py +42 -0
  1387. ubx_sdk_google-0.1.0/ubx/google/tags/tag_value_iam_member.py +42 -0
  1388. ubx_sdk_google-0.1.0/ubx/google/tags/tag_value_iam_policy.py +22 -0
  1389. ubx_sdk_google-0.1.0/ubx/google/transcoder/__init__.py +8 -0
  1390. ubx_sdk_google-0.1.0/ubx/google/transcoder/job.py +447 -0
  1391. ubx_sdk_google-0.1.0/ubx/google/transcoder/job_template.py +447 -0
  1392. ubx_sdk_google-0.1.0/ubx/google/vector/__init__.py +9 -0
  1393. ubx_sdk_google-0.1.0/ubx/google/vector/search_collection.py +125 -0
  1394. ubx_sdk_google-0.1.0/ubx/google/vector/search_data_object.py +94 -0
  1395. ubx_sdk_google-0.1.0/ubx/google/vector/search_index.py +104 -0
  1396. ubx_sdk_google-0.1.0/ubx/google/vertex/__init__.py +32 -0
  1397. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_cache_config.py +40 -0
  1398. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_dataset.py +62 -0
  1399. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_deployment_resource_pool.py +92 -0
  1400. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_endpoint.py +142 -0
  1401. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_endpoint_with_model_garden_deployment.py +384 -0
  1402. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_group.py +76 -0
  1403. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_group_feature.py +52 -0
  1404. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_online_store.py +141 -0
  1405. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_online_store_featureview.py +110 -0
  1406. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_featurestore.py +92 -0
  1407. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_featurestore_entitytype.py +112 -0
  1408. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_featurestore_entitytype_feature.py +48 -0
  1409. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_index.py +143 -0
  1410. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_index_endpoint.py +98 -0
  1411. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_index_endpoint_deployed_index.py +128 -0
  1412. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_persistent_resource.py +192 -0
  1413. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_rag_engine_config.py +79 -0
  1414. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine.py +306 -0
  1415. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine_iam_binding.py +46 -0
  1416. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine_iam_member.py +46 -0
  1417. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine_iam_policy.py +26 -0
  1418. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_schedule.py +405 -0
  1419. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_semantic_governance_policy_engine.py +42 -0
  1420. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_tensorboard.py +62 -0
  1421. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_tensorboard_experiment.py +54 -0
  1422. ubx_sdk_google-0.1.0/ubx/google/vertex/ai_tensorboard_run.py +54 -0
  1423. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/__init__.py +15 -0
  1424. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/cluster.py +168 -0
  1425. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/datastore.py +92 -0
  1426. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/external_access_rule.py +86 -0
  1427. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/external_address.py +46 -0
  1428. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/network.py +48 -0
  1429. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/network_peering.py +58 -0
  1430. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/network_policy.py +72 -0
  1431. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/private_cloud.py +186 -0
  1432. ubx_sdk_google-0.1.0/ubx/google/vmwareengine/subnet.py +42 -0
  1433. ubx_sdk_google-0.1.0/ubx/google/vpc/__init__.py +7 -0
  1434. ubx_sdk_google-0.1.0/ubx/google/vpc/access_connector.py +74 -0
  1435. ubx_sdk_google-0.1.0/ubx/google/workbench/__init__.py +10 -0
  1436. ubx_sdk_google-0.1.0/ubx/google/workbench/instance.py +274 -0
  1437. ubx_sdk_google-0.1.0/ubx/google/workbench/instance_iam_binding.py +46 -0
  1438. ubx_sdk_google-0.1.0/ubx/google/workbench/instance_iam_member.py +46 -0
  1439. ubx_sdk_google-0.1.0/ubx/google/workbench/instance_iam_policy.py +26 -0
  1440. ubx_sdk_google-0.1.0/ubx/google/workflows/__init__.py +7 -0
  1441. ubx_sdk_google-0.1.0/ubx/google/workflows/workflow.py +66 -0
  1442. ubx_sdk_google-0.1.0/ubx/google/workload/__init__.py +7 -0
  1443. ubx_sdk_google-0.1.0/ubx/google/workload/identity_service_agent.py +36 -0
  1444. ubx_sdk_google-0.1.0/ubx/google/workstations/__init__.py +15 -0
  1445. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation.py +58 -0
  1446. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_cluster.py +94 -0
  1447. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config.py +348 -0
  1448. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config_iam_binding.py +48 -0
  1449. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config_iam_member.py +48 -0
  1450. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config_iam_policy.py +28 -0
  1451. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_iam_binding.py +50 -0
  1452. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_iam_member.py +50 -0
  1453. ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_iam_policy.py +30 -0
  1454. ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/PKG-INFO +5 -0
  1455. ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/SOURCES.txt +1456 -0
  1456. ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/dependency_links.txt +1 -0
  1457. ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/requires.txt +1 -0
  1458. ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/top_level.txt +1 -0
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: ubx-sdk-google
3
+ Version: 0.1.0
4
+ Summary: Generated Python bindings for hashicorp/google@7.42.0 (ubx sdk gen). DO NOT EDIT.
5
+ Requires-Dist: ubx_sdk<0.2.0,>=0.1.0
@@ -0,0 +1,77 @@
1
+ # ubx-sdk-google-py
2
+
3
+ Python bindings for the `hashicorp/google` Terraform provider, generated
4
+ by [ubx](https://github.com/ubiquex/ubiquex) (`ubx sdk gen --lang py`),
5
+ published to PyPI as [ubx-sdk-google](https://pypi.org/project/ubx-sdk-google/).
6
+
7
+ Real, `pip install`-able namespace-package layout, matching real, strong
8
+ precedent (`google.cloud.*`, `azure.mgmt.*`): every package nests under
9
+ the shared `ubx` namespace, one directory per Google Cloud service
10
+ boundary below that (`ubx/google/compute/`, `ubx/google/iam/`,
11
+ `ubx/google/storage/`, ...), one file per resource type, one
12
+ `__init__.py` per service directory re-exporting that service's own
13
+ resource classes:
14
+
15
+ ```python
16
+ from ubx.google.spanner import Instance, InstanceConfig
17
+ ```
18
+
19
+ `ubx/` itself deliberately has NO `__init__.py` — a real PEP 420
20
+ implicit namespace package, not a regular one any single distribution
21
+ owns, so `ubx-sdk-aws-py`/`-azure-py`/`-kubernetes-py` can each
22
+ independently contribute their own `ubx.aws`/`ubx.azure`/
23
+ `ubx.kubernetes` sibling under the same shared `ubx` namespace without
24
+ conflicting. `ubx/google/__init__.py` (one level down) is a real,
25
+ ordinary package, same as every service package below it.
26
+
27
+ **Install**: `pip install ubx-sdk-google`. `[tool.setuptools.packages.find]`'s
28
+ `namespaces = true` is what makes `ubx` resolve as a real PEP 420
29
+ namespace package on install rather than an ordinary one.
30
+
31
+ Regenerated automatically on a weekly schedule (and via manual dispatch)
32
+ by `.github/workflows/version-watch.yml` — it checks the real
33
+ [Terraform Registry provider-versions API](https://registry.terraform.io/v1/providers/hashicorp/google/versions)
34
+ for a newer `hashicorp/google` release, and opens a PR with the
35
+ regenerated diff for review (never auto-merges). The version this repo
36
+ was last generated from is tracked in `VERSION`, not `.ubx/config.hcl` —
37
+ this repo carries no ubx stack/config of its own, only generated
38
+ bindings. A separate, manually-dispatched `.github/workflows/publish.yml`
39
+ (gated `workflow_dispatch`, UBI-135) is what actually publishes a new
40
+ version to PyPI after a regen PR is reviewed and merged.
41
+
42
+ **Shared runtime (`ubx_sdk`)**: a real, published PyPI package —
43
+ [ubx-sdk](https://pypi.org/project/ubx-sdk/) (import name `ubx_sdk`,
44
+ UBI-107) — declared as an ordinary dependency in `pyproject.toml`,
45
+ resolved automatically by `pip install`; no vendoring, no `PYTHONPATH`
46
+ trick needed. This repo previously vendored a local copy at
47
+ `vendor/ubx_sdk/` before this repo's own switch to the real package —
48
+ that vendored copy is gone as of this restructuring.
49
+
50
+ **A finding from this repo's own earlier README, corrected**: an
51
+ earlier version of this document claimed Python was structurally immune
52
+ to the `<sibling>_config` naming-collision class UBI-108 found and fixed
53
+ for Go (`google_spanner_instance` + `google_spanner_instance_config`),
54
+ reasoning that Python gives every FILE its own independent namespace so
55
+ there was no shared surface for the collision to occur on. That
56
+ reasoning was correct for the layout it described — but this repo's own
57
+ namespace-package restructuring (matching `ubx-sdk-aws-py`'s own fix)
58
+ changed the premise: each service's `__init__.py` now re-exports every
59
+ resource type's own classes into ONE shared namespace, which reopens
60
+ exactly this collision class one level up. Confirmed real, not
61
+ hypothetical: `google_migration_center_report` +
62
+ `google_migration_center_report_config` collide under this repo's own
63
+ real schema. Fixed at the codegen source (`ubiquex`'s own
64
+ `sdk/codegen/templates/py/py.go`) the same way Go resolves it — the
65
+ colliding resource's own auto-derived `Config` class gets a
66
+ disambiguating trailing underscore
67
+ (`from ubx.google.migration import CenterReport, CenterReportConfig_`),
68
+ never the real, independent sibling resource.
69
+
70
+ No Google Cloud service name collides with a Python keyword or soft
71
+ keyword (checked all real service directory names against
72
+ `keyword.iskeyword`/`keyword.issoftkeyword`) — unlike AWS's own
73
+ `lambda` finding (UBI-98/105), which doesn't recur here.
74
+
75
+ Every file under a service directory except `__init__.py` is
76
+ generated — do not hand-edit; re-run `ubx sdk gen` (or wait for the
77
+ automated PR) after a provider version bump.
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "ubx-sdk-google"
3
+ version = "0.1.0"
4
+ description = "Generated Python bindings for hashicorp/google@7.42.0 (ubx sdk gen). DO NOT EDIT."
5
+ dependencies = ["ubx_sdk>=0.1.0,<0.2.0"]
6
+
7
+ [build-system]
8
+ requires = ["setuptools>=61"]
9
+ build-backend = "setuptools.build_meta"
10
+
11
+ [tool.setuptools.packages.find]
12
+ where = ["."]
13
+ include = ["ubx*"]
14
+ namespaces = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ # Code generated by `ubx sdk gen` from hashicorp/google@7.42.0. DO NOT EDIT.
2
+ # This file is committed to git like any other reviewable generated code
3
+ # (docs/sdk.md — "ubx sdk gen: local, pinned, offline-after-generation") --
4
+ # re-run `ubx sdk gen` to regenerate after a provider version bump.
5
+ SOURCE_PROVENANCE = {"source": "hashicorp/google", "version": "7.42.0"}
@@ -0,0 +1,25 @@
1
+ # Code generated by `ubx sdk gen` from hashicorp/google@7.42.0. DO NOT EDIT.
2
+ # This file is committed to git like any other reviewable generated code
3
+ # (docs/sdk.md — "ubx sdk gen: local, pinned, offline-after-generation") --
4
+ # re-run `ubx sdk gen` to regenerate after a provider version bump.
5
+ SOURCE_PROVENANCE = {"source": "hashicorp/google", "version": "7.42.0"}
6
+
7
+ from .context_manager_access_level import ContextManagerAccessLevel, ContextManagerAccessLevelConfig
8
+ from .context_manager_access_level_condition import ContextManagerAccessLevelCondition, ContextManagerAccessLevelConditionConfig
9
+ from .context_manager_access_levels import ContextManagerAccessLevels, ContextManagerAccessLevelsConfig
10
+ from .context_manager_access_policy import ContextManagerAccessPolicy, ContextManagerAccessPolicyConfig
11
+ from .context_manager_access_policy_iam_binding import ContextManagerAccessPolicyIamBinding, ContextManagerAccessPolicyIamBindingConfig
12
+ from .context_manager_access_policy_iam_member import ContextManagerAccessPolicyIamMember, ContextManagerAccessPolicyIamMemberConfig
13
+ from .context_manager_access_policy_iam_policy import ContextManagerAccessPolicyIamPolicy, ContextManagerAccessPolicyIamPolicyConfig
14
+ from .context_manager_authorized_orgs_desc import ContextManagerAuthorizedOrgsDesc, ContextManagerAuthorizedOrgsDescConfig
15
+ from .context_manager_egress_policy import ContextManagerEgressPolicy, ContextManagerEgressPolicyConfig
16
+ from .context_manager_gcp_user_access_binding import ContextManagerGcpUserAccessBinding, ContextManagerGcpUserAccessBindingConfig
17
+ from .context_manager_ingress_policy import ContextManagerIngressPolicy, ContextManagerIngressPolicyConfig
18
+ from .context_manager_service_perimeter import ContextManagerServicePerimeter, ContextManagerServicePerimeterConfig
19
+ from .context_manager_service_perimeter_dry_run_egress_policy import ContextManagerServicePerimeterDryRunEgressPolicy, ContextManagerServicePerimeterDryRunEgressPolicyConfig
20
+ from .context_manager_service_perimeter_dry_run_ingress_policy import ContextManagerServicePerimeterDryRunIngressPolicy, ContextManagerServicePerimeterDryRunIngressPolicyConfig
21
+ from .context_manager_service_perimeter_dry_run_resource import ContextManagerServicePerimeterDryRunResource, ContextManagerServicePerimeterDryRunResourceConfig
22
+ from .context_manager_service_perimeter_egress_policy import ContextManagerServicePerimeterEgressPolicy, ContextManagerServicePerimeterEgressPolicyConfig
23
+ from .context_manager_service_perimeter_ingress_policy import ContextManagerServicePerimeterIngressPolicy, ContextManagerServicePerimeterIngressPolicyConfig
24
+ from .context_manager_service_perimeter_resource import ContextManagerServicePerimeterResource, ContextManagerServicePerimeterResourceConfig
25
+ from .context_manager_service_perimeters import ContextManagerServicePerimeters, ContextManagerServicePerimetersConfig
@@ -0,0 +1,182 @@
1
+ # Code generated by `ubx sdk gen` from google_access_context_manager_access_level. DO NOT EDIT.
2
+ from __future__ import annotations
3
+
4
+ import dataclasses
5
+ from typing import Any
6
+
7
+ import ubx_sdk as ubx
8
+
9
+ @dataclasses.dataclass
10
+ class ContextManagerAccessLevel_Basic_Conditions_DevicePolicy_OsConstraints:
11
+ minimum_version: Any = None
12
+ os_type: Any = None
13
+ require_verified_chrome_os: Any = None
14
+
15
+ @dataclasses.dataclass
16
+ class ContextManagerAccessLevel_Basic_Conditions_DevicePolicy:
17
+ allowed_device_management_levels: Any = None
18
+ allowed_encryption_statuses: Any = None
19
+ require_admin_approval: Any = None
20
+ require_corp_owned: Any = None
21
+ require_screen_lock: Any = None
22
+ os_constraints: Any = None
23
+
24
+ @dataclasses.dataclass
25
+ class ContextManagerAccessLevel_Basic_Conditions_VpcNetworkSources_VpcSubnetwork:
26
+ network: Any = None
27
+ vpc_ip_subnetworks: Any = None
28
+
29
+ @dataclasses.dataclass
30
+ class ContextManagerAccessLevel_Basic_Conditions_VpcNetworkSources:
31
+ vpc_subnetwork: Any = None
32
+
33
+ @dataclasses.dataclass
34
+ class ContextManagerAccessLevel_Basic_Conditions:
35
+ ip_subnetworks: Any = None
36
+ members: Any = None
37
+ negate: Any = None
38
+ regions: Any = None
39
+ required_access_levels: Any = None
40
+ device_policy: Any = None
41
+ vpc_network_sources: Any = None
42
+
43
+ @dataclasses.dataclass
44
+ class ContextManagerAccessLevel_Basic:
45
+ combining_function: Any = None
46
+ conditions: Any = None
47
+
48
+ @dataclasses.dataclass
49
+ class ContextManagerAccessLevel_Custom_Expr:
50
+ description: Any = None
51
+ expression: Any = None
52
+ location: Any = None
53
+ title: Any = None
54
+
55
+ @dataclasses.dataclass
56
+ class ContextManagerAccessLevel_Custom:
57
+ expr: Any = None
58
+
59
+ @dataclasses.dataclass
60
+ class ContextManagerAccessLevel_Timeouts:
61
+ create: Any = None
62
+ delete: Any = None
63
+ update: Any = None
64
+
65
+ _ContextManagerAccessLevel_Basic_Conditions_DevicePolicy_OsConstraintsFields = {
66
+ "minimum_version": ubx.FieldSpec(wire_name="minimum_version"),
67
+ "os_type": ubx.FieldSpec(wire_name="os_type"),
68
+ "require_verified_chrome_os": ubx.FieldSpec(wire_name="require_verified_chrome_os"),
69
+ }
70
+
71
+ _ContextManagerAccessLevel_Basic_Conditions_DevicePolicyFields = {
72
+ "allowed_device_management_levels": ubx.FieldSpec(wire_name="allowed_device_management_levels"),
73
+ "allowed_encryption_statuses": ubx.FieldSpec(wire_name="allowed_encryption_statuses"),
74
+ "require_admin_approval": ubx.FieldSpec(wire_name="require_admin_approval"),
75
+ "require_corp_owned": ubx.FieldSpec(wire_name="require_corp_owned"),
76
+ "require_screen_lock": ubx.FieldSpec(wire_name="require_screen_lock"),
77
+ "os_constraints": ubx.FieldSpec(
78
+ wire_name="os_constraints",
79
+ kind="list",
80
+ fields=_ContextManagerAccessLevel_Basic_Conditions_DevicePolicy_OsConstraintsFields,
81
+ ),
82
+ }
83
+
84
+ _ContextManagerAccessLevel_Basic_Conditions_VpcNetworkSources_VpcSubnetworkFields = {
85
+ "network": ubx.FieldSpec(wire_name="network"),
86
+ "vpc_ip_subnetworks": ubx.FieldSpec(wire_name="vpc_ip_subnetworks"),
87
+ }
88
+
89
+ _ContextManagerAccessLevel_Basic_Conditions_VpcNetworkSourcesFields = {
90
+ "vpc_subnetwork": ubx.FieldSpec(
91
+ wire_name="vpc_subnetwork",
92
+ kind="list",
93
+ fields=_ContextManagerAccessLevel_Basic_Conditions_VpcNetworkSources_VpcSubnetworkFields,
94
+ ),
95
+ }
96
+
97
+ _ContextManagerAccessLevel_Basic_ConditionsFields = {
98
+ "ip_subnetworks": ubx.FieldSpec(wire_name="ip_subnetworks"),
99
+ "members": ubx.FieldSpec(wire_name="members"),
100
+ "negate": ubx.FieldSpec(wire_name="negate"),
101
+ "regions": ubx.FieldSpec(wire_name="regions"),
102
+ "required_access_levels": ubx.FieldSpec(wire_name="required_access_levels"),
103
+ "device_policy": ubx.FieldSpec(
104
+ wire_name="device_policy",
105
+ kind="list",
106
+ fields=_ContextManagerAccessLevel_Basic_Conditions_DevicePolicyFields,
107
+ ),
108
+ "vpc_network_sources": ubx.FieldSpec(
109
+ wire_name="vpc_network_sources",
110
+ kind="list",
111
+ fields=_ContextManagerAccessLevel_Basic_Conditions_VpcNetworkSourcesFields,
112
+ ),
113
+ }
114
+
115
+ _ContextManagerAccessLevel_BasicFields = {
116
+ "combining_function": ubx.FieldSpec(wire_name="combining_function"),
117
+ "conditions": ubx.FieldSpec(
118
+ wire_name="conditions",
119
+ kind="list",
120
+ fields=_ContextManagerAccessLevel_Basic_ConditionsFields,
121
+ ),
122
+ }
123
+
124
+ _ContextManagerAccessLevel_Custom_ExprFields = {
125
+ "description": ubx.FieldSpec(wire_name="description"),
126
+ "expression": ubx.FieldSpec(wire_name="expression"),
127
+ "location": ubx.FieldSpec(wire_name="location"),
128
+ "title": ubx.FieldSpec(wire_name="title"),
129
+ }
130
+
131
+ _ContextManagerAccessLevel_CustomFields = {
132
+ "expr": ubx.FieldSpec(
133
+ wire_name="expr",
134
+ kind="list",
135
+ fields=_ContextManagerAccessLevel_Custom_ExprFields,
136
+ ),
137
+ }
138
+
139
+ _ContextManagerAccessLevel_TimeoutsFields = {
140
+ "create": ubx.FieldSpec(wire_name="create"),
141
+ "delete": ubx.FieldSpec(wire_name="delete"),
142
+ "update": ubx.FieldSpec(wire_name="update"),
143
+ }
144
+
145
+ @dataclasses.dataclass
146
+ class ContextManagerAccessLevelConfig:
147
+ deletion_policy: Any = None
148
+ description: Any = None
149
+ id: Any = None
150
+ name: Any = None
151
+ parent: Any = None
152
+ title: Any = None
153
+ basic: Any = None
154
+ custom: Any = None
155
+ timeouts: Any = None
156
+
157
+ ContextManagerAccessLevel = ubx.ResourceBinding(
158
+ wire_type="google_access_context_manager_access_level",
159
+ fields={
160
+ "deletion_policy": ubx.FieldSpec(wire_name="deletion_policy"),
161
+ "description": ubx.FieldSpec(wire_name="description"),
162
+ "id": ubx.FieldSpec(wire_name="id"),
163
+ "name": ubx.FieldSpec(wire_name="name"),
164
+ "parent": ubx.FieldSpec(wire_name="parent"),
165
+ "title": ubx.FieldSpec(wire_name="title"),
166
+ "basic": ubx.FieldSpec(
167
+ wire_name="basic",
168
+ kind="list",
169
+ fields=_ContextManagerAccessLevel_BasicFields,
170
+ ),
171
+ "custom": ubx.FieldSpec(
172
+ wire_name="custom",
173
+ kind="list",
174
+ fields=_ContextManagerAccessLevel_CustomFields,
175
+ ),
176
+ "timeouts": ubx.FieldSpec(
177
+ wire_name="timeouts",
178
+ kind="object",
179
+ fields=_ContextManagerAccessLevel_TimeoutsFields,
180
+ ),
181
+ },
182
+ )
@@ -0,0 +1,114 @@
1
+ # Code generated by `ubx sdk gen` from google_access_context_manager_access_level_condition. DO NOT EDIT.
2
+ from __future__ import annotations
3
+
4
+ import dataclasses
5
+ from typing import Any
6
+
7
+ import ubx_sdk as ubx
8
+
9
+ @dataclasses.dataclass
10
+ class ContextManagerAccessLevelCondition_DevicePolicy_OsConstraints:
11
+ minimum_version: Any = None
12
+ os_type: Any = None
13
+
14
+ @dataclasses.dataclass
15
+ class ContextManagerAccessLevelCondition_DevicePolicy:
16
+ allowed_device_management_levels: Any = None
17
+ allowed_encryption_statuses: Any = None
18
+ require_admin_approval: Any = None
19
+ require_corp_owned: Any = None
20
+ require_screen_lock: Any = None
21
+ os_constraints: Any = None
22
+
23
+ @dataclasses.dataclass
24
+ class ContextManagerAccessLevelCondition_Timeouts:
25
+ create: Any = None
26
+ delete: Any = None
27
+
28
+ @dataclasses.dataclass
29
+ class ContextManagerAccessLevelCondition_VpcNetworkSources_VpcSubnetwork:
30
+ network: Any = None
31
+ vpc_ip_subnetworks: Any = None
32
+
33
+ @dataclasses.dataclass
34
+ class ContextManagerAccessLevelCondition_VpcNetworkSources:
35
+ vpc_subnetwork: Any = None
36
+
37
+ _ContextManagerAccessLevelCondition_DevicePolicy_OsConstraintsFields = {
38
+ "minimum_version": ubx.FieldSpec(wire_name="minimum_version"),
39
+ "os_type": ubx.FieldSpec(wire_name="os_type"),
40
+ }
41
+
42
+ _ContextManagerAccessLevelCondition_DevicePolicyFields = {
43
+ "allowed_device_management_levels": ubx.FieldSpec(wire_name="allowed_device_management_levels"),
44
+ "allowed_encryption_statuses": ubx.FieldSpec(wire_name="allowed_encryption_statuses"),
45
+ "require_admin_approval": ubx.FieldSpec(wire_name="require_admin_approval"),
46
+ "require_corp_owned": ubx.FieldSpec(wire_name="require_corp_owned"),
47
+ "require_screen_lock": ubx.FieldSpec(wire_name="require_screen_lock"),
48
+ "os_constraints": ubx.FieldSpec(
49
+ wire_name="os_constraints",
50
+ kind="list",
51
+ fields=_ContextManagerAccessLevelCondition_DevicePolicy_OsConstraintsFields,
52
+ ),
53
+ }
54
+
55
+ _ContextManagerAccessLevelCondition_TimeoutsFields = {
56
+ "create": ubx.FieldSpec(wire_name="create"),
57
+ "delete": ubx.FieldSpec(wire_name="delete"),
58
+ }
59
+
60
+ _ContextManagerAccessLevelCondition_VpcNetworkSources_VpcSubnetworkFields = {
61
+ "network": ubx.FieldSpec(wire_name="network"),
62
+ "vpc_ip_subnetworks": ubx.FieldSpec(wire_name="vpc_ip_subnetworks"),
63
+ }
64
+
65
+ _ContextManagerAccessLevelCondition_VpcNetworkSourcesFields = {
66
+ "vpc_subnetwork": ubx.FieldSpec(
67
+ wire_name="vpc_subnetwork",
68
+ kind="list",
69
+ fields=_ContextManagerAccessLevelCondition_VpcNetworkSources_VpcSubnetworkFields,
70
+ ),
71
+ }
72
+
73
+ @dataclasses.dataclass
74
+ class ContextManagerAccessLevelConditionConfig:
75
+ access_level: Any = None
76
+ deletion_policy: Any = None
77
+ id: Any = None
78
+ ip_subnetworks: Any = None
79
+ members: Any = None
80
+ negate: Any = None
81
+ regions: Any = None
82
+ required_access_levels: Any = None
83
+ device_policy: Any = None
84
+ timeouts: Any = None
85
+ vpc_network_sources: Any = None
86
+
87
+ ContextManagerAccessLevelCondition = ubx.ResourceBinding(
88
+ wire_type="google_access_context_manager_access_level_condition",
89
+ fields={
90
+ "access_level": ubx.FieldSpec(wire_name="access_level"),
91
+ "deletion_policy": ubx.FieldSpec(wire_name="deletion_policy"),
92
+ "id": ubx.FieldSpec(wire_name="id"),
93
+ "ip_subnetworks": ubx.FieldSpec(wire_name="ip_subnetworks"),
94
+ "members": ubx.FieldSpec(wire_name="members"),
95
+ "negate": ubx.FieldSpec(wire_name="negate"),
96
+ "regions": ubx.FieldSpec(wire_name="regions"),
97
+ "required_access_levels": ubx.FieldSpec(wire_name="required_access_levels"),
98
+ "device_policy": ubx.FieldSpec(
99
+ wire_name="device_policy",
100
+ kind="list",
101
+ fields=_ContextManagerAccessLevelCondition_DevicePolicyFields,
102
+ ),
103
+ "timeouts": ubx.FieldSpec(
104
+ wire_name="timeouts",
105
+ kind="object",
106
+ fields=_ContextManagerAccessLevelCondition_TimeoutsFields,
107
+ ),
108
+ "vpc_network_sources": ubx.FieldSpec(
109
+ wire_name="vpc_network_sources",
110
+ kind="list",
111
+ fields=_ContextManagerAccessLevelCondition_VpcNetworkSourcesFields,
112
+ ),
113
+ },
114
+ )
@@ -0,0 +1,192 @@
1
+ # Code generated by `ubx sdk gen` from google_access_context_manager_access_levels. DO NOT EDIT.
2
+ from __future__ import annotations
3
+
4
+ import dataclasses
5
+ from typing import Any
6
+
7
+ import ubx_sdk as ubx
8
+
9
+ @dataclasses.dataclass
10
+ class ContextManagerAccessLevels_AccessLevels_Basic_Conditions_DevicePolicy_OsConstraints:
11
+ minimum_version: Any = None
12
+ os_type: Any = None
13
+
14
+ @dataclasses.dataclass
15
+ class ContextManagerAccessLevels_AccessLevels_Basic_Conditions_DevicePolicy:
16
+ allowed_device_management_levels: Any = None
17
+ allowed_encryption_statuses: Any = None
18
+ require_admin_approval: Any = None
19
+ require_corp_owned: Any = None
20
+ require_screen_lock: Any = None
21
+ os_constraints: Any = None
22
+
23
+ @dataclasses.dataclass
24
+ class ContextManagerAccessLevels_AccessLevels_Basic_Conditions_VpcNetworkSources_VpcSubnetwork:
25
+ network: Any = None
26
+ vpc_ip_subnetworks: Any = None
27
+
28
+ @dataclasses.dataclass
29
+ class ContextManagerAccessLevels_AccessLevels_Basic_Conditions_VpcNetworkSources:
30
+ vpc_subnetwork: Any = None
31
+
32
+ @dataclasses.dataclass
33
+ class ContextManagerAccessLevels_AccessLevels_Basic_Conditions:
34
+ ip_subnetworks: Any = None
35
+ members: Any = None
36
+ negate: Any = None
37
+ regions: Any = None
38
+ required_access_levels: Any = None
39
+ device_policy: Any = None
40
+ vpc_network_sources: Any = None
41
+
42
+ @dataclasses.dataclass
43
+ class ContextManagerAccessLevels_AccessLevels_Basic:
44
+ combining_function: Any = None
45
+ conditions: Any = None
46
+
47
+ @dataclasses.dataclass
48
+ class ContextManagerAccessLevels_AccessLevels_Custom_Expr:
49
+ description: Any = None
50
+ expression: Any = None
51
+ location: Any = None
52
+ title: Any = None
53
+
54
+ @dataclasses.dataclass
55
+ class ContextManagerAccessLevels_AccessLevels_Custom:
56
+ expr: Any = None
57
+
58
+ @dataclasses.dataclass
59
+ class ContextManagerAccessLevels_AccessLevels:
60
+ description: Any = None
61
+ name: Any = None
62
+ title: Any = None
63
+ basic: Any = None
64
+ custom: Any = None
65
+
66
+ @dataclasses.dataclass
67
+ class ContextManagerAccessLevels_Timeouts:
68
+ create: Any = None
69
+ delete: Any = None
70
+ update: Any = None
71
+
72
+ _ContextManagerAccessLevels_AccessLevels_Basic_Conditions_DevicePolicy_OsConstraintsFields = {
73
+ "minimum_version": ubx.FieldSpec(wire_name="minimum_version"),
74
+ "os_type": ubx.FieldSpec(wire_name="os_type"),
75
+ }
76
+
77
+ _ContextManagerAccessLevels_AccessLevels_Basic_Conditions_DevicePolicyFields = {
78
+ "allowed_device_management_levels": ubx.FieldSpec(wire_name="allowed_device_management_levels"),
79
+ "allowed_encryption_statuses": ubx.FieldSpec(wire_name="allowed_encryption_statuses"),
80
+ "require_admin_approval": ubx.FieldSpec(wire_name="require_admin_approval"),
81
+ "require_corp_owned": ubx.FieldSpec(wire_name="require_corp_owned"),
82
+ "require_screen_lock": ubx.FieldSpec(wire_name="require_screen_lock"),
83
+ "os_constraints": ubx.FieldSpec(
84
+ wire_name="os_constraints",
85
+ kind="list",
86
+ fields=_ContextManagerAccessLevels_AccessLevels_Basic_Conditions_DevicePolicy_OsConstraintsFields,
87
+ ),
88
+ }
89
+
90
+ _ContextManagerAccessLevels_AccessLevels_Basic_Conditions_VpcNetworkSources_VpcSubnetworkFields = {
91
+ "network": ubx.FieldSpec(wire_name="network"),
92
+ "vpc_ip_subnetworks": ubx.FieldSpec(wire_name="vpc_ip_subnetworks"),
93
+ }
94
+
95
+ _ContextManagerAccessLevels_AccessLevels_Basic_Conditions_VpcNetworkSourcesFields = {
96
+ "vpc_subnetwork": ubx.FieldSpec(
97
+ wire_name="vpc_subnetwork",
98
+ kind="list",
99
+ fields=_ContextManagerAccessLevels_AccessLevels_Basic_Conditions_VpcNetworkSources_VpcSubnetworkFields,
100
+ ),
101
+ }
102
+
103
+ _ContextManagerAccessLevels_AccessLevels_Basic_ConditionsFields = {
104
+ "ip_subnetworks": ubx.FieldSpec(wire_name="ip_subnetworks"),
105
+ "members": ubx.FieldSpec(wire_name="members"),
106
+ "negate": ubx.FieldSpec(wire_name="negate"),
107
+ "regions": ubx.FieldSpec(wire_name="regions"),
108
+ "required_access_levels": ubx.FieldSpec(wire_name="required_access_levels"),
109
+ "device_policy": ubx.FieldSpec(
110
+ wire_name="device_policy",
111
+ kind="list",
112
+ fields=_ContextManagerAccessLevels_AccessLevels_Basic_Conditions_DevicePolicyFields,
113
+ ),
114
+ "vpc_network_sources": ubx.FieldSpec(
115
+ wire_name="vpc_network_sources",
116
+ kind="list",
117
+ fields=_ContextManagerAccessLevels_AccessLevels_Basic_Conditions_VpcNetworkSourcesFields,
118
+ ),
119
+ }
120
+
121
+ _ContextManagerAccessLevels_AccessLevels_BasicFields = {
122
+ "combining_function": ubx.FieldSpec(wire_name="combining_function"),
123
+ "conditions": ubx.FieldSpec(
124
+ wire_name="conditions",
125
+ kind="list",
126
+ fields=_ContextManagerAccessLevels_AccessLevels_Basic_ConditionsFields,
127
+ ),
128
+ }
129
+
130
+ _ContextManagerAccessLevels_AccessLevels_Custom_ExprFields = {
131
+ "description": ubx.FieldSpec(wire_name="description"),
132
+ "expression": ubx.FieldSpec(wire_name="expression"),
133
+ "location": ubx.FieldSpec(wire_name="location"),
134
+ "title": ubx.FieldSpec(wire_name="title"),
135
+ }
136
+
137
+ _ContextManagerAccessLevels_AccessLevels_CustomFields = {
138
+ "expr": ubx.FieldSpec(
139
+ wire_name="expr",
140
+ kind="list",
141
+ fields=_ContextManagerAccessLevels_AccessLevels_Custom_ExprFields,
142
+ ),
143
+ }
144
+
145
+ _ContextManagerAccessLevels_AccessLevelsFields = {
146
+ "description": ubx.FieldSpec(wire_name="description"),
147
+ "name": ubx.FieldSpec(wire_name="name"),
148
+ "title": ubx.FieldSpec(wire_name="title"),
149
+ "basic": ubx.FieldSpec(
150
+ wire_name="basic",
151
+ kind="list",
152
+ fields=_ContextManagerAccessLevels_AccessLevels_BasicFields,
153
+ ),
154
+ "custom": ubx.FieldSpec(
155
+ wire_name="custom",
156
+ kind="list",
157
+ fields=_ContextManagerAccessLevels_AccessLevels_CustomFields,
158
+ ),
159
+ }
160
+
161
+ _ContextManagerAccessLevels_TimeoutsFields = {
162
+ "create": ubx.FieldSpec(wire_name="create"),
163
+ "delete": ubx.FieldSpec(wire_name="delete"),
164
+ "update": ubx.FieldSpec(wire_name="update"),
165
+ }
166
+
167
+ @dataclasses.dataclass
168
+ class ContextManagerAccessLevelsConfig:
169
+ deletion_policy: Any = None
170
+ id: Any = None
171
+ parent: Any = None
172
+ access_levels: Any = None
173
+ timeouts: Any = None
174
+
175
+ ContextManagerAccessLevels = ubx.ResourceBinding(
176
+ wire_type="google_access_context_manager_access_levels",
177
+ fields={
178
+ "deletion_policy": ubx.FieldSpec(wire_name="deletion_policy"),
179
+ "id": ubx.FieldSpec(wire_name="id"),
180
+ "parent": ubx.FieldSpec(wire_name="parent"),
181
+ "access_levels": ubx.FieldSpec(
182
+ wire_name="access_levels",
183
+ kind="set",
184
+ fields=_ContextManagerAccessLevels_AccessLevelsFields,
185
+ ),
186
+ "timeouts": ubx.FieldSpec(
187
+ wire_name="timeouts",
188
+ kind="object",
189
+ fields=_ContextManagerAccessLevels_TimeoutsFields,
190
+ ),
191
+ },
192
+ )
@@ -0,0 +1,44 @@
1
+ # Code generated by `ubx sdk gen` from google_access_context_manager_access_policy. DO NOT EDIT.
2
+ from __future__ import annotations
3
+
4
+ import dataclasses
5
+ from typing import Any
6
+
7
+ import ubx_sdk as ubx
8
+
9
+ @dataclasses.dataclass
10
+ class ContextManagerAccessPolicy_Timeouts:
11
+ create: Any = None
12
+ delete: Any = None
13
+ update: Any = None
14
+
15
+ _ContextManagerAccessPolicy_TimeoutsFields = {
16
+ "create": ubx.FieldSpec(wire_name="create"),
17
+ "delete": ubx.FieldSpec(wire_name="delete"),
18
+ "update": ubx.FieldSpec(wire_name="update"),
19
+ }
20
+
21
+ @dataclasses.dataclass
22
+ class ContextManagerAccessPolicyConfig:
23
+ deletion_policy: Any = None
24
+ id: Any = None
25
+ parent: Any = None
26
+ scopes: Any = None
27
+ title: Any = None
28
+ timeouts: Any = None
29
+
30
+ ContextManagerAccessPolicy = ubx.ResourceBinding(
31
+ wire_type="google_access_context_manager_access_policy",
32
+ fields={
33
+ "deletion_policy": ubx.FieldSpec(wire_name="deletion_policy"),
34
+ "id": ubx.FieldSpec(wire_name="id"),
35
+ "parent": ubx.FieldSpec(wire_name="parent"),
36
+ "scopes": ubx.FieldSpec(wire_name="scopes"),
37
+ "title": ubx.FieldSpec(wire_name="title"),
38
+ "timeouts": ubx.FieldSpec(
39
+ wire_name="timeouts",
40
+ kind="object",
41
+ fields=_ContextManagerAccessPolicy_TimeoutsFields,
42
+ ),
43
+ },
44
+ )