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.
- ubx_sdk_google-0.1.0/PKG-INFO +5 -0
- ubx_sdk_google-0.1.0/README.md +77 -0
- ubx_sdk_google-0.1.0/pyproject.toml +14 -0
- ubx_sdk_google-0.1.0/setup.cfg +4 -0
- ubx_sdk_google-0.1.0/ubx/google/__init__.py +5 -0
- ubx_sdk_google-0.1.0/ubx/google/access/__init__.py +25 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_level.py +182 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_level_condition.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_levels.py +192 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_access_policy_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_authorized_orgs_desc.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_egress_policy.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_gcp_user_access_binding.py +152 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_ingress_policy.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter.py +304 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_dry_run_egress_policy.py +136 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_dry_run_ingress_policy.py +132 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_dry_run_resource.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_egress_policy.py +138 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_ingress_policy.py +134 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeter_resource.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/access/context_manager_service_perimeters.py +350 -0
- ubx_sdk_google-0.1.0/ubx/google/active/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/active/directory_domain.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/active/directory_domain_trust.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/agent/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/agent/identity_auth_provider.py +145 -0
- ubx_sdk_google-0.1.0/ubx/google/agent/registry_binding.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/agent/registry_service.py +100 -0
- ubx_sdk_google-0.1.0/ubx/google/alloydb/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/alloydb/backup.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/alloydb/cluster.py +358 -0
- ubx_sdk_google-0.1.0/ubx/google/alloydb/instance.py +240 -0
- ubx_sdk_google-0.1.0/ubx/google/alloydb/user.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/__init__.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/addons_config.py +100 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/api.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/api_deployment.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/api_product.py +248 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/app_group.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/control_plane_access.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/data_collector.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/datastore.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/developer.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/developer_app.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/dns_zone.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/endpoint_attachment.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/env_keystore.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/env_references.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/envgroup.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/envgroup_attachment.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_addons_config.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_api_revision_deployment.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_debugmask.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_keyvaluemaps.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/environment_keyvaluemaps_entries.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/flowhook.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/instance.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/instance_attachment.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/keystores_aliases_key_cert_file.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/keystores_aliases_pkcs12.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/keystores_aliases_self_signed_cert.py +90 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/nat_address.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/organization.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/security_action.py +143 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/security_feedback.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/security_monitoring_condition.py +59 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/security_profile_v2.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/sharedflow.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/sharedflow_deployment.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/space.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/sync_authorization.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/apigee/target_server.py +98 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/api_hub_instance.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/curation.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/host_project_registration.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/plugin.py +182 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/plugin_instance.py +230 -0
- ubx_sdk_google-0.1.0/ubx/google/apihub/runtime_project_attachment.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/apikeys/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/apikeys/key.py +144 -0
- ubx_sdk_google-0.1.0/ubx/google/app/__init__.py +14 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_application.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_application_url_dispatch_rules.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_domain_mapping.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_firewall_rule.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_flexible_app_version.py +520 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_service_network_settings.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_service_split_traffic.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/app/engine_standard_app_version.py +292 -0
- ubx_sdk_google-0.1.0/ubx/google/apphub/__init__.py +11 -0
- ubx_sdk_google-0.1.0/ubx/google/apphub/application.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/apphub/boundary.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/apphub/service.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/apphub/service_project_attachment.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/apphub/workload.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/registry_project_config.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository.py +320 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/registry_repository_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/artifact/registry_rule.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/assured/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/assured/workloads_workload.py +126 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/dr_backup_plan.py +146 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/dr_backup_plan_association.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/dr_backup_vault.py +84 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/dr_management_server.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/dr_restore_workload.py +628 -0
- ubx_sdk_google-0.1.0/ubx/google/backup/dr_service_config.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/__init__.py +17 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/app_connection.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/app_connector.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/app_gateway.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway.py +185 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application.py +192 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_application_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/beyondcorp/security_gateway_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/__init__.py +21 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/catalog.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/database.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog.py +190 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_catalog_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_namespace_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table.py +158 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/iceberg_table_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/biglake/table.py +78 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/__init__.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange.py +89 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_data_exchange_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing.py +174 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/analytics_hub_listing_subscription.py +82 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/bi_reservation.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/capacity_commitment.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/connection.py +334 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/connection_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/connection_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/connection_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/data_transfer_config.py +124 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicy_data_policy_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/datapolicyv2_data_policy_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset.py +222 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_access.py +138 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/dataset_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/job.py +356 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/reservation.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/reservation_assignment.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/reservation_group.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/routine.py +164 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/routine_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/routine_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/routine_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/row_access_policy.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/table.py +542 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/table_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/table_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigquery/table_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/__init__.py +20 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/app_profile.py +98 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/authorized_view.py +78 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/gc_policy.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/instance.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/instance_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/instance_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/instance_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/logical_view.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/materialized_view.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/schema_bundle.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/table.py +84 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/table_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/table_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/bigtable/table_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/account_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/account_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/account_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/budget.py +178 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/project_info.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/billing/subaccount.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/binary/__init__.py +11 -0
- ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/binary/authorization_attestor_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/binary/authorization_policy.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/blockchain/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/blockchain/node_engine_blockchain_nodes.py +120 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate.py +126 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate_issuance_config.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate_map.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/manager_certificate_map_entry.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/manager_dns_authorization.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/certificate/manager_trust_config.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/__init__.py +15 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/agent.py +175 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/app.py +476 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/app_root_agent_association.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/app_version.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/deployment.py +120 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/example.py +176 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/guardrail.py +290 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/tool.py +552 -0
- ubx_sdk_google-0.1.0/ubx/google/ces/toolset.py +269 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/__init__.py +27 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/big_query_export.py +90 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/custom_list.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/dashboard_chart.py +886 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/data_access_label.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/data_access_scope.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/data_export.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/data_table.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/data_table_row.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/environment.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/environment_group.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/feed.py +1709 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/findings_refinement.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/findings_refinement_deployment.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/native_dashboard.py +134 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/parser.py +146 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/parser_extension.py +136 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/reference_list.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/retrohunt.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/rule.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/rule_deployment.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/chronicle/watchlist.py +91 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/__init__.py +39 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/asset_folder_feed.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/asset_organization_feed.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/asset_project_feed.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/identity_group.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/identity_group_membership.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/ids_endpoint.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/quotas_quota_adjuster_settings.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/quotas_quota_preference.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_domain_mapping.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_service.py +584 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job.py +484 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_job_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service.py +654 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool.py +500 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/run_v2_worker_pool_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/scheduler_job.py +184 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/security_compliance_cloud_control.py +320 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/security_compliance_framework.py +150 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/security_compliance_framework_deployment.py +236 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue.py +242 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloud/tasks_queue_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuild/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuild/bitbucket_server_config.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuild/trigger.py +648 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuild/worker_pool.py +100 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/__init__.py +11 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection.py +200 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/connection_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudbuildv2/repository.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/__init__.py +20 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/automation.py +220 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type.py +182 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/custom_target_type_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline.py +478 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/delivery_pipeline_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/deploy_policy.py +218 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target.py +226 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddeploy/target_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddomains/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/clouddomains/registration.py +216 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function.py +221 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions/function_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function.py +319 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/cloudfunctions2/function_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/__init__.py +13 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/notebook_execution.py +164 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/runtime.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template.py +220 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/runtime_template_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/colab/schedule.py +389 -0
- ubx_sdk_google-0.1.0/ubx/google/composer/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/composer/environment.py +502 -0
- ubx_sdk_google-0.1.0/ubx/google/composer/user_workloads_config_map.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/composer/user_workloads_secret.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/__init__.py +177 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/address.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/attached_disk.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/autoscaler.py +178 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/backend_bucket.py +144 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/backend_bucket_signed_url_key.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/backend_service.py +546 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/backend_service_signed_url_key.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/bulk_per_instance_config.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/cross_site_network.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/disk.py +172 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/disk_async_replication.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/disk_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/disk_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/disk_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/disk_resource_policy_attachment.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/external_vpn_gateway.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall.py +116 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_association.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_rule.py +136 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/firewall_policy_with_rules.py +148 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/forwarding_rule.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/global_address.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/global_forwarding_rule.py +118 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/global_network_endpoint.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/global_network_endpoint_group.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/global_vm_extension_policy.py +172 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/ha_vpn_gateway.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/health_check.py +174 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/http_health_check.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/https_health_check.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/image.py +190 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/image_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/image_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/image_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance.py +586 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_from_template.py +588 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_group.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_group_manager.py +284 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_group_membership.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_group_named_port.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_settings.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_template.py +490 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_template_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_template_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instance_template_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/instant_snapshot_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/interconnect.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/interconnect_attachment.py +162 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/interconnect_attachment_group.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/interconnect_group.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/managed_ssl_certificate.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network.py +82 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_attachment.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_endpoint.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_endpoint_group.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_endpoints.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_association.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_rule.py +142 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_firewall_policy_with_rules.py +148 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_peering.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/network_peering_routes_config.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/node_group.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/node_template.py +116 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/organization_security_policy.py +82 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/organization_security_policy_association.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/organization_security_policy_rule.py +198 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/packet_mirroring.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/per_instance_config.py +124 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/preview_feature.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/project_cloud_armor_tier.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/project_default_network_tier.py +36 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/project_metadata.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/project_metadata_item.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/public_advertised_prefix.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/public_delegated_prefix.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_autoscaler.py +178 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_backend_service.py +538 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_commitment.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_composite_health_check.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_disk.py +160 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_disk_resource_policy_attachment.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_health_aggregation_policy.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_health_check.py +174 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_health_source.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_instance_group_manager.py +320 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_instance_template.py +492 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_instant_snapshot_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_endpoint.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_endpoint_group.py +118 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_association.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_rule.py +144 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_network_firewall_policy_with_rules.py +154 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_per_instance_config.py +124 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_resize_request.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_security_policy.py +342 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_security_policy_rule.py +258 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_ssl_certificate.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_ssl_policy.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_target_http_proxy.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_target_https_proxy.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_target_tcp_proxy.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/region_url_map.py +654 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/reservation.py +192 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/resize_request.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/resource_policy.py +256 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/resource_policy_attachment.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/rollout_plan.py +166 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/route.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router.py +118 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router_interface.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router_named_set.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router_nat.py +168 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router_nat_address.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router_peer.py +152 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/router_route_policy.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/security_policy.py +432 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/security_policy_rule.py +292 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/service_attachment.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/shared_vpc_host_project.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/shared_vpc_service_project.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/snapshot.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/snapshot_settings.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/ssl_certificate.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/ssl_policy.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/storage_pool_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/subnetwork_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_grpc_proxy.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_http_proxy.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_https_proxy.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_instance.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_pool.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_ssl_proxy.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/target_tcp_proxy.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/url_map.py +766 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/vpn_gateway.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/vpn_tunnel.py +140 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/wire_group.py +98 -0
- ubx_sdk_google-0.1.0/ubx/google/compute/zone_vm_extension_policy.py +90 -0
- ubx_sdk_google-0.1.0/ubx/google/config/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/config/deployment.py +110 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/__init__.py +14 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_analysis_rule.py +126 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_assessment_rule.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_auto_labeling_rule.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_encryption_spec.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_qa_question.py +154 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_qa_scorecard.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_qa_scorecard_revision.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/contact/center_insights_view.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/container/__init__.py +20 -0
- ubx_sdk_google-0.1.0/ubx/google/container/analysis_note.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/container/analysis_note_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/container/analysis_note_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/container/analysis_note_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/container/analysis_occurrence.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/container/attached_cluster.py +208 -0
- ubx_sdk_google-0.1.0/ubx/google/container/aws_cluster.py +258 -0
- ubx_sdk_google-0.1.0/ubx/google/container/aws_node_pool.py +266 -0
- ubx_sdk_google-0.1.0/ubx/google/container/azure_client.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/container/azure_cluster.py +244 -0
- ubx_sdk_google-0.1.0/ubx/google/container/azure_node_pool.py +160 -0
- ubx_sdk_google-0.1.0/ubx/google/container/cluster.py +2520 -0
- ubx_sdk_google-0.1.0/ubx/google/container/node_pool.py +1132 -0
- ubx_sdk_google-0.1.0/ubx/google/container/registry.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/data/__init__.py +35 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_entry_group_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_policy_tag_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_tag_template_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/catalog_taxonomy_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance.py +208 -0
- ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/data/fusion_instance_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/data/lineage_config.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_deidentify_template.py +1029 -0
- ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_discovery_config.py +1007 -0
- ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_inspect_template.py +423 -0
- ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_job_trigger.py +807 -0
- ubx_sdk_google-0.1.0/ubx/google/data/loss_prevention_stored_info_type.py +178 -0
- ubx_sdk_google-0.1.0/ubx/google/data/pipeline_pipeline.py +254 -0
- ubx_sdk_google-0.1.0/ubx/google/database/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/database/migration_service_connection_profile.py +397 -0
- ubx_sdk_google-0.1.0/ubx/google/database/migration_service_migration_job.py +225 -0
- ubx_sdk_google-0.1.0/ubx/google/database/migration_service_private_connection.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/dataflow/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/dataflow/job.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/dataform/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/dataform/folder.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataform/team_folder.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/__init__.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/aspect_type_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/asset.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/asset_iam_binding.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/asset_iam_member.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/asset_iam_policy.py +30 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_data_asset.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/data_product_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan.py +601 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/datascan_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry.py +134 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_group_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_link.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/entry_type_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_category.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/glossary_term.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/lake.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/lake_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/lake_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/lake_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/metadata_feed.py +84 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/task.py +212 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/task_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/task_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/task_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/zone.py +124 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/zone_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/zone_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/dataplex/zone_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/__init__.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/autoscaling_policy_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/batch.py +248 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster.py +818 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/cluster_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/gdc_application_environment.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/gdc_service_instance.py +77 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/gdc_spark_application.py +162 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/job.py +282 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/job_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/job_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/job_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_database_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_database_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_database_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_federation_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service.py +292 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_table_iam_binding.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_table_iam_member.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/metastore_table_iam_policy.py +30 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/session_template.py +175 -0
- ubx_sdk_google-0.1.0/ubx/google/dataproc/workflow_template.py +778 -0
- ubx_sdk_google-0.1.0/ubx/google/datastream/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/datastream/connection_profile.py +363 -0
- ubx_sdk_google-0.1.0/ubx/google/datastream/private_connection.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/datastream/stream.py +1089 -0
- ubx_sdk_google-0.1.0/ubx/google/deployment/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/deployment/manager_deployment.py +108 -0
- ubx_sdk_google-0.1.0/ubx/google/developer/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/developer/connect_account_connector.py +126 -0
- ubx_sdk_google-0.1.0/ubx/google/developer/connect_connection.py +304 -0
- ubx_sdk_google-0.1.0/ubx/google/developer/connect_git_repository_link.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/developer/connect_insights_config.py +108 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/__init__.py +31 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/agent.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/conversation_profile.py +532 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_agent.py +272 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_entity_type.py +82 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_environment.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_flow.py +593 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_generative_settings.py +142 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_generator.py +110 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_intent.py +108 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_page.py +585 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_playbook.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_security_settings.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_test_case.py +202 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_tool.py +245 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_tool_version.py +261 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_version.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/cx_webhook.py +154 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/encryption_spec.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/entity_type.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/environment.py +154 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/fulfillment.py +78 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/generator.py +208 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/intent.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/sip_trunk.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/dialogflow/version.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/__init__.py +25 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_acl_config.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_assistant.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_chat_engine.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_cmek_config.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_control.py +234 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_data_connector.py +156 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_data_store.py +215 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_license_config.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_recommendation_engine.py +138 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_schema.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_search_engine_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_serving_config.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_sitemap.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_target_site.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_user_store.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/discovery/engine_widget_config.py +244 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/__init__.py +14 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone.py +194 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/managed_zone_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/policy.py +116 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/record_set.py +154 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/response_policy.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/dns/response_policy_rule.py +78 -0
- ubx_sdk_google-0.1.0/ubx/google/document/__init__.py +11 -0
- ubx_sdk_google-0.1.0/ubx/google/document/ai_processor.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/document/ai_processor_default_version.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/document/ai_schema.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/document/ai_warehouse_document_schema.py +235 -0
- ubx_sdk_google-0.1.0/ubx/google/document/ai_warehouse_location.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/edgecontainer/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/edgecontainer/cluster.py +300 -0
- ubx_sdk_google-0.1.0/ubx/google/edgecontainer/node_pool.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/edgecontainer/vpn_connection.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/edgenetwork/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/edgenetwork/interconnect_attachment.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/edgenetwork/network.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/edgenetwork/subnet.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/__init__.py +13 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service_consumers_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service_consumers_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service_consumers_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/endpoints/service_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/essential/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/essential/contacts_contact.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/__init__.py +13 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/channel.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/enrollment.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/google_api_source.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/google_channel_config.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/message_bus.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/pipeline.py +253 -0
- ubx_sdk_google-0.1.0/ubx/google/eventarc/trigger.py +196 -0
- ubx_sdk_google-0.1.0/ubx/google/filestore/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/filestore/backup.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/filestore/instance.py +244 -0
- ubx_sdk_google-0.1.0/ubx/google/filestore/snapshot.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/__init__.py +21 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_app_attest_config.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_debug_token.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_device_check_config.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_play_integrity_config.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_recaptcha_enterprise_config.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_recaptcha_v3_config.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_resource_policy.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_check_service_config.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_backend.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_build.py +120 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_default_domain.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_domain.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/app_hosting_traffic.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/data_connect_service.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/firebase/remote_config_remote_config.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/firebaserules/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/firebaserules/release.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/firebaserules/ruleset.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/backup_schedule.py +71 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/database.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/document.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/field.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/index.py +155 -0
- ubx_sdk_google-0.1.0/ubx/google/firestore/user_creds.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/__init__.py +13 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/access_approval_settings.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/folder.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/iam_audit_config.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/folder/organization_policy.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/__init__.py +21 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/code_repository_index.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/code_tools_setting.py +82 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/code_tools_setting_binding.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/data_sharing_with_google_setting.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/data_sharing_with_google_setting_binding.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/gemini_gcp_enablement_setting.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/gemini_gcp_enablement_setting_binding.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/logging_setting.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/logging_setting_binding.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/release_channel_setting.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/release_channel_setting_binding.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/gemini/repository_group_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/__init__.py +34 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_channel.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan.py +272 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_backup_plan_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_channel.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan.py +268 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/backup_restore_plan_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature.py +488 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_feature_membership.py +408 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_fleet.py +98 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_binding.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_membership_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_namespace.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_rollout_sequence.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/gke/hub_scope_rbac_role_binding.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/bare_metal_admin_cluster.py +496 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/bare_metal_cluster.py +576 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/bare_metal_node_pool.py +100 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/vmware_admin_cluster.py +456 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/vmware_cluster.py +432 -0
- ubx_sdk_google-0.1.0/ubx/google/gkeonprem/vmware_node_pool.py +146 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/__init__.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/consent_store_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dataset_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/dicom_store_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store.py +172 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/fhir_store_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/hl7_v2_store_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/pipeline_job.py +146 -0
- ubx_sdk_google-0.1.0/ubx/google/healthcare/workspace.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/hypercomputecluster/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/hypercomputecluster/cluster.py +560 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/__init__.py +29 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/access_boundary_policy.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/deny_policy.py +98 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/folders_policy_binding.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/oauth_client.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/oauth_client_credential.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/organizations_policy_binding.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/principal_access_boundary_policy.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/projects_policy_binding.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider.py +184 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider_key.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider_scim_tenant.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workforce_pool_provider_scim_token.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_managed_identity.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_namespace.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/iam/workload_identity_pool_provider.py +144 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/__init__.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_agent_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_agent_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_agent_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_endpoint_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_endpoint_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_endpoint_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_mcp_server_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_mcp_server_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/agent_registry_mcp_server_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_version_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_version_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/app_engine_version_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/brand.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/client.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/location_web_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/location_web_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/location_web_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/settings.py +236 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_dest_group_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_instance_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_instance_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/tunnel_instance_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_backend_service_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_backend_service_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_backend_service_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_cloud_run_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_cloud_run_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_cloud_run_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_forwarding_rule_service_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_forwarding_rule_service_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_forwarding_rule_service_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_region_backend_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_region_backend_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_region_backend_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_region_forwarding_rule_service_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_region_forwarding_rule_service_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_region_forwarding_rule_service_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_type_app_engine_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_type_app_engine_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_type_app_engine_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_type_compute_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_type_compute_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/iap/web_type_compute_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/__init__.py +14 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_config.py +352 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_default_supported_idp_config.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_inbound_saml_config.py +100 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_oauth_idp_config.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant_default_supported_idp_config.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant_inbound_saml_config.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/identity/platform_tenant_oauth_idp_config.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/integration/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/integration/connectors_connection.py +444 -0
- ubx_sdk_google-0.1.0/ubx/google/integration/connectors_endpoint_attachment.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/integration/connectors_managed_zone.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/integrations/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/integrations/auth_config.py +272 -0
- ubx_sdk_google-0.1.0/ubx/google/integrations/client.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/__init__.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/autokey_config.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/crypto_key_version.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/ekm_connection_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/key_handle.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/key_ring.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/key_ring_import_job.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/project_autokey_config.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/kms/secret_ciphertext.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/license/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/license/manager_configuration.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/__init__.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/billing_account_bucket_config.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/billing_account_exclusion.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/billing_account_sink.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/folder_bucket_config.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/folder_exclusion.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/folder_settings.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/folder_sink.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/linked_dataset.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/log_scope.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/log_view.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/log_view_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/log_view_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/log_view_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/metric.py +154 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/organization_bucket_config.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/organization_exclusion.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/organization_settings.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/organization_sink.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/project_bucket_config.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/project_exclusion.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/project_sink.py +70 -0
- ubx_sdk_google-0.1.0/ubx/google/logging/saved_query.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/looker/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/looker/instance.py +292 -0
- ubx_sdk_google-0.1.0/ubx/google/lustre/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/lustre/instance.py +200 -0
- ubx_sdk_google-0.1.0/ubx/google/managed/__init__.py +11 -0
- ubx_sdk_google-0.1.0/ubx/google/managed/kafka_acl.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/managed/kafka_cluster.py +170 -0
- ubx_sdk_google-0.1.0/ubx/google/managed/kafka_connect_cluster.py +106 -0
- ubx_sdk_google-0.1.0/ubx/google/managed/kafka_connector.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/managed/kafka_topic.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/memcache/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/memcache/instance.py +146 -0
- ubx_sdk_google-0.1.0/ubx/google/memorystore/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/memorystore/instance.py +336 -0
- ubx_sdk_google-0.1.0/ubx/google/memorystore/instance_desired_user_created_endpoints.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/__init__.py +16 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_assets_export_job.py +90 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_discovery_client.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_group.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_import_data_file.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_import_job.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_preference_set.py +174 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_report.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_report_config.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_settings.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/migration/center_source.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/ml/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/ml/engine_model.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/model/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/model/armor_floorsetting.py +198 -0
- ubx_sdk_google-0.1.0/ubx/google/model/armor_template.py +208 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/__init__.py +16 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/alert_policy.py +430 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/custom_service.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/dashboard.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/group.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/metric_descriptor.py +88 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/monitored_project.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/notification_channel.py +84 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/service.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/slo.py +228 -0
- ubx_sdk_google-0.1.0/ubx/google/monitoring/uptime_check_config.py +260 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/__init__.py +17 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/active_directory.py +80 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/backup.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/backup_policy.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/backup_vault.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/host_group.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/kmsconfig.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/storage_pool.py +84 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/volume.py +380 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/volume_quota_rule.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/volume_replication.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/netapp/volume_snapshot.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/__init__.py +77 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_destination.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_group.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_hub_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_internal_range.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_multicloud_data_transfer_config.py +78 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_policy_based_route.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_regional_endpoint.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_service_connection_policy.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_spoke.py +160 -0
- ubx_sdk_google-0.1.0/ubx/google/network/connectivity_transport.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/network/management_connectivity_test.py +146 -0
- ubx_sdk_google-0.1.0/ubx/google/network/management_organization_vpc_flow_logs_config.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/network/management_vpc_flow_logs_config.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_address_group.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_address_group_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_address_group_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_address_group_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_authz_policy.py +488 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_backend_authentication_config.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_client_tls_policy.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_dns_threat_detector.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_firewall_endpoint.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_firewall_endpoint_association.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_gateway_security_policy.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_gateway_security_policy_rule.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_deployment.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_deployment_group.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_endpoint_group.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_intercept_endpoint_group_association.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_deployment.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_deployment_group.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_endpoint.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_endpoint_group.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_mirroring_endpoint_group_association.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_security_profile.py +174 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_security_profile_group.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_server_tls_policy.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_tls_inspection_policy.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_ull_mirroring_collector.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_ull_mirroring_collector_rule.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_ull_mirroring_engine.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/network/security_url_lists.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_agent_gateway.py +124 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_authz_extension.py +64 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_edge_cache_keyset.py +78 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_edge_cache_origin.py +180 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_edge_cache_service.py +446 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_endpoint_policy.py +110 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_gateway.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_grpc_route.py +204 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_http_route.py +350 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_lb_edge_extension.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_lb_route_extension.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_lb_traffic_extension.py +110 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_mesh.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_consumer_association.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_domain.py +82 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_domain_activation.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_domain_group.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_consumer_activation.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_producer_activation.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_range.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_group_range_activation.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_multicast_producer_association.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_service_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_tcp_route.py +110 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_tls_route.py +108 -0
- ubx_sdk_google-0.1.0/ubx/google/network/services_wasm_plugin.py +100 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/__init__.py +15 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/environment.py +84 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/instance.py +180 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/instance_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/instance_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/instance_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime.py +270 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/notebooks/runtime_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/observability/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/observability/trace_scope.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/__init__.py +18 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_autonomous_database.py +380 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_cloud_exadata_infrastructure.py +158 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_cloud_exadata_infrastructure_exascale_config.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_cloud_vm_cluster.py +174 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_db_system.py +276 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_exadb_vm_cluster.py +148 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_exascale_db_storage_vault.py +114 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_goldengate_connection.py +1038 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_goldengate_connection_assignment.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_goldengate_deployment.py +322 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_odb_network.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/oracle/database_odb_subnet.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/org/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/org/policy_custom_constraint.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/org/policy_policy.py +124 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/__init__.py +13 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/access_approval_settings.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/iam_audit_config.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/iam_custom_role.py +32 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/organization/policy.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/os/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/os/config_os_policy_assignment.py +462 -0
- ubx_sdk_google-0.1.0/ubx/google/os/config_patch_deployment.py +396 -0
- ubx_sdk_google-0.1.0/ubx/google/os/config_v2_policy_orchestrator.py +562 -0
- ubx_sdk_google-0.1.0/ubx/google/os/config_v2_policy_orchestrator_for_folder.py +564 -0
- ubx_sdk_google-0.1.0/ubx/google/os/config_v2_policy_orchestrator_for_organization.py +564 -0
- ubx_sdk_google-0.1.0/ubx/google/os/login_ssh_public_key.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/parallelstore/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/parallelstore/instance.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/parameter/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/parameter/manager_parameter.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/parameter/manager_parameter_version.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/parameter/manager_regional_parameter.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/parameter/manager_regional_parameter_version.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/__init__.py +16 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool.py +362 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/ca_pool_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/certificate.py +330 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_authority.py +382 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template.py +278 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/privateca/certificate_template_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/privileged/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/privileged/access_manager_entitlement.py +199 -0
- ubx_sdk_google-0.1.0/ubx/google/project/__init__.py +18 -0
- ubx_sdk_google-0.1.0/ubx/google/project/access_approval_settings.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/project/default_service_accounts.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/project/iam_audit_config.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/project/iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/project/iam_custom_role.py +32 -0
- ubx_sdk_google-0.1.0/ubx/google/project/iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/project/iam_member_remove.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/project/iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/project/organization_policy.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/project/project.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/project/service.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/project/usage_export_bucket.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/public/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/public/ca_external_account_key.py +38 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/__init__.py +21 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/lite_reservation.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/lite_subscription.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/lite_topic.py +106 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/schema.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/schema_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/schema_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/schema_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription.py +296 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/subscription_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/topic.py +311 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/topic_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/topic_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/pubsub/topic_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/recaptcha/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/recaptcha/enterprise_key.py +172 -0
- ubx_sdk_google-0.1.0/ubx/google/redis/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/redis/cluster.py +324 -0
- ubx_sdk_google-0.1.0/ubx/google/redis/cluster_user_created_connections.py +96 -0
- ubx_sdk_google-0.1.0/ubx/google/redis/instance.py +156 -0
- ubx_sdk_google-0.1.0/ubx/google/resource/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/resource/manager_capability.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/resource/manager_lien.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/__init__.py +39 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/event_threat_detection_custom_module.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/folder_custom_module.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/folder_notification_config.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/folder_scc_big_query_export.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/management_folder_security_health_analytics_custom_module.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/management_organization_event_threat_detection_custom_module.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/management_organization_security_health_analytics_custom_module.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/management_project_security_health_analytics_custom_module.py +130 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/mute_config.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/notification_config.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/organization_custom_module.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/organization_scc_big_query_export.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/project_custom_module.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/project_notification_config.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/project_scc_big_query_export.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/source.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/source_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/source_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/source_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_folder_mute_config.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_folder_notification_config.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_folder_scc_big_query_export.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_mute_config.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_notification_config.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_scc_big_query_export.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_scc_big_query_exports.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_organization_source_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_project_mute_config.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_project_notification_config.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/scc/v2_project_scc_big_query_export.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/__init__.py +16 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_regional_secret_version.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret.py +158 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/secret/manager_secret_version.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/__init__.py +16 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_branch_rule.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_hook.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_instance_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository.py +68 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/secure/source_manager_repository_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/securityposture/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/securityposture/posture.py +324 -0
- ubx_sdk_google-0.1.0/ubx/google/securityposture/posture_deployment.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/service/__init__.py +23 -0
- ubx_sdk_google-0.1.0/ubx/google/service/account.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/service/account_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/service/account_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/service/account_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/service/account_key.py +32 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_endpoint.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_namespace_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_service.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_service_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_service_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/service/directory_service_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/service/networking_connection.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/service/networking_peered_dns_domain.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/service/networking_vpc_service_controls.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/site/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/site/verification_owner.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/site/verification_web_resource.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/sourcerepo/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/sourcerepo/repository_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/__init__.py +17 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/backup_schedule.py +111 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/database.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/database_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/database_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/database_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/instance.py +162 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/instance_config.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/instance_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/instance_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/instance_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/spanner/instance_partition.py +102 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/__init__.py +12 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/database.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/database_instance.py +678 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/provision_script.py +30 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/source_representation_instance.py +60 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/ssl_cert.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/sql/user.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/__init__.py +33 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/anywhere_cache.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/batch_operations_job.py +170 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket.py +360 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket_access_control.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket_acl.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket_iam_binding.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket_iam_member.py +56 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket_iam_policy.py +36 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/bucket_object.py +136 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/control_folder_intelligence_config.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/control_organization_intelligence_config.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/control_project_intelligence_config.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/default_object_access_control.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/default_object_acl.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/folder.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/hmac_key.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/insights_dataset_config.py +156 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/insights_report_config.py +159 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder_iam_binding.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder_iam_member.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/managed_folder_iam_policy.py +24 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/notification.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/object_access_control.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/object_acl.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/transfer_agent_pool.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/storage/transfer_job.py +484 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/__init__.py +16 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/location_tag_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_binding.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_key.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_key_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_key_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_key_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_value.py +44 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_value_iam_binding.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_value_iam_member.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/tags/tag_value_iam_policy.py +22 -0
- ubx_sdk_google-0.1.0/ubx/google/transcoder/__init__.py +8 -0
- ubx_sdk_google-0.1.0/ubx/google/transcoder/job.py +447 -0
- ubx_sdk_google-0.1.0/ubx/google/transcoder/job_template.py +447 -0
- ubx_sdk_google-0.1.0/ubx/google/vector/__init__.py +9 -0
- ubx_sdk_google-0.1.0/ubx/google/vector/search_collection.py +125 -0
- ubx_sdk_google-0.1.0/ubx/google/vector/search_data_object.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/vector/search_index.py +104 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/__init__.py +32 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_cache_config.py +40 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_dataset.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_deployment_resource_pool.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_endpoint.py +142 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_endpoint_with_model_garden_deployment.py +384 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_group.py +76 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_group_feature.py +52 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_online_store.py +141 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_feature_online_store_featureview.py +110 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_featurestore.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_featurestore_entitytype.py +112 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_featurestore_entitytype_feature.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_index.py +143 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_index_endpoint.py +98 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_index_endpoint_deployed_index.py +128 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_persistent_resource.py +192 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_rag_engine_config.py +79 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine.py +306 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_reasoning_engine_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_schedule.py +405 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_semantic_governance_policy_engine.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_tensorboard.py +62 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_tensorboard_experiment.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/vertex/ai_tensorboard_run.py +54 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/__init__.py +15 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/cluster.py +168 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/datastore.py +92 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/external_access_rule.py +86 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/external_address.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/network.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/network_peering.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/network_policy.py +72 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/private_cloud.py +186 -0
- ubx_sdk_google-0.1.0/ubx/google/vmwareengine/subnet.py +42 -0
- ubx_sdk_google-0.1.0/ubx/google/vpc/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/vpc/access_connector.py +74 -0
- ubx_sdk_google-0.1.0/ubx/google/workbench/__init__.py +10 -0
- ubx_sdk_google-0.1.0/ubx/google/workbench/instance.py +274 -0
- ubx_sdk_google-0.1.0/ubx/google/workbench/instance_iam_binding.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/workbench/instance_iam_member.py +46 -0
- ubx_sdk_google-0.1.0/ubx/google/workbench/instance_iam_policy.py +26 -0
- ubx_sdk_google-0.1.0/ubx/google/workflows/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/workflows/workflow.py +66 -0
- ubx_sdk_google-0.1.0/ubx/google/workload/__init__.py +7 -0
- ubx_sdk_google-0.1.0/ubx/google/workload/identity_service_agent.py +36 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/__init__.py +15 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation.py +58 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_cluster.py +94 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config.py +348 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config_iam_binding.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config_iam_member.py +48 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_config_iam_policy.py +28 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_iam_binding.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_iam_member.py +50 -0
- ubx_sdk_google-0.1.0/ubx/google/workstations/workstation_iam_policy.py +30 -0
- ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/PKG-INFO +5 -0
- ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/SOURCES.txt +1456 -0
- ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/dependency_links.txt +1 -0
- ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/requires.txt +1 -0
- ubx_sdk_google-0.1.0/ubx_sdk_google.egg-info/top_level.txt +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,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
|
+
)
|