waldur-api-client 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of waldur-api-client might be problematic. Click here for more details.
- waldur_api_client/__init__.py +8 -0
- waldur_api_client/api/__init__.py +1 -0
- waldur_api_client/api/access_subnets/__init__.py +0 -0
- waldur_api_client/api/access_subnets/access_subnets_create.py +152 -0
- waldur_api_client/api/access_subnets/access_subnets_destroy.py +92 -0
- waldur_api_client/api/access_subnets/access_subnets_list.py +238 -0
- waldur_api_client/api/access_subnets/access_subnets_partial_update.py +166 -0
- waldur_api_client/api/access_subnets/access_subnets_retrieve.py +143 -0
- waldur_api_client/api/access_subnets/access_subnets_update.py +166 -0
- waldur_api_client/api/admin_announcements/__init__.py +0 -0
- waldur_api_client/api/admin_announcements/admin_announcements_create.py +156 -0
- waldur_api_client/api/admin_announcements/admin_announcements_destroy.py +92 -0
- waldur_api_client/api/admin_announcements/admin_announcements_list.py +273 -0
- waldur_api_client/api/admin_announcements/admin_announcements_partial_update.py +170 -0
- waldur_api_client/api/admin_announcements/admin_announcements_retrieve.py +176 -0
- waldur_api_client/api/admin_announcements/admin_announcements_update.py +170 -0
- waldur_api_client/api/api_auth/__init__.py +0 -0
- waldur_api_client/api/api_auth/api_auth_eduteams_complete_retrieve.py +108 -0
- waldur_api_client/api/api_auth/api_auth_eduteams_init_retrieve.py +79 -0
- waldur_api_client/api/api_auth/api_auth_keycloak_complete_retrieve.py +108 -0
- waldur_api_client/api/api_auth/api_auth_keycloak_init_retrieve.py +79 -0
- waldur_api_client/api/api_auth/api_auth_logout.py +129 -0
- waldur_api_client/api/api_auth/api_auth_password.py +159 -0
- waldur_api_client/api/api_auth/api_auth_saml2_login.py +152 -0
- waldur_api_client/api/api_auth/api_auth_saml2_login_complete.py +156 -0
- waldur_api_client/api/api_auth/api_auth_saml2_logout_complete.py +160 -0
- waldur_api_client/api/api_auth/api_auth_saml2_logout_complete_retrieve.py +126 -0
- waldur_api_client/api/api_auth/api_auth_saml2_logout_retrieve.py +77 -0
- waldur_api_client/api/api_auth/api_auth_saml2_providers_list.py +189 -0
- waldur_api_client/api/api_auth/api_auth_tara_complete_retrieve.py +108 -0
- waldur_api_client/api/api_auth/api_auth_tara_init_retrieve.py +79 -0
- waldur_api_client/api/auth_tokens/__init__.py +0 -0
- waldur_api_client/api/auth_tokens/auth_tokens_destroy.py +91 -0
- waldur_api_client/api/auth_tokens/auth_tokens_list.py +174 -0
- waldur_api_client/api/auth_tokens/auth_tokens_retrieve.py +142 -0
- waldur_api_client/api/auth_valimo/__init__.py +0 -0
- waldur_api_client/api/auth_valimo/auth_valimo_create.py +152 -0
- waldur_api_client/api/auth_valimo/auth_valimo_result.py +200 -0
- waldur_api_client/api/aws_images/__init__.py +0 -0
- waldur_api_client/api/aws_images/aws_images_list.py +223 -0
- waldur_api_client/api/aws_images/aws_images_retrieve.py +143 -0
- waldur_api_client/api/aws_instances/__init__.py +0 -0
- waldur_api_client/api/aws_instances/aws_instances_create.py +152 -0
- waldur_api_client/api/aws_instances/aws_instances_destroy.py +92 -0
- waldur_api_client/api/aws_instances/aws_instances_list.py +494 -0
- waldur_api_client/api/aws_instances/aws_instances_partial_update.py +166 -0
- waldur_api_client/api/aws_instances/aws_instances_pull.py +92 -0
- waldur_api_client/api/aws_instances/aws_instances_resize.py +170 -0
- waldur_api_client/api/aws_instances/aws_instances_restart.py +92 -0
- waldur_api_client/api/aws_instances/aws_instances_retrieve.py +172 -0
- waldur_api_client/api/aws_instances/aws_instances_start.py +92 -0
- waldur_api_client/api/aws_instances/aws_instances_stop.py +92 -0
- waldur_api_client/api/aws_instances/aws_instances_unlink.py +98 -0
- waldur_api_client/api/aws_instances/aws_instances_update.py +166 -0
- waldur_api_client/api/aws_regions/__init__.py +0 -0
- waldur_api_client/api/aws_regions/aws_regions_list.py +204 -0
- waldur_api_client/api/aws_regions/aws_regions_retrieve.py +143 -0
- waldur_api_client/api/aws_sizes/__init__.py +0 -0
- waldur_api_client/api/aws_sizes/aws_sizes_list.py +223 -0
- waldur_api_client/api/aws_sizes/aws_sizes_retrieve.py +143 -0
- waldur_api_client/api/aws_volumes/__init__.py +0 -0
- waldur_api_client/api/aws_volumes/aws_volumes_attach.py +170 -0
- waldur_api_client/api/aws_volumes/aws_volumes_create.py +152 -0
- waldur_api_client/api/aws_volumes/aws_volumes_destroy.py +92 -0
- waldur_api_client/api/aws_volumes/aws_volumes_detach.py +92 -0
- waldur_api_client/api/aws_volumes/aws_volumes_list.py +197 -0
- waldur_api_client/api/aws_volumes/aws_volumes_partial_update.py +143 -0
- waldur_api_client/api/aws_volumes/aws_volumes_pull.py +92 -0
- waldur_api_client/api/aws_volumes/aws_volumes_retrieve.py +172 -0
- waldur_api_client/api/aws_volumes/aws_volumes_unlink.py +98 -0
- waldur_api_client/api/aws_volumes/aws_volumes_update.py +166 -0
- waldur_api_client/api/azure_images/__init__.py +0 -0
- waldur_api_client/api/azure_images/azure_images_list.py +271 -0
- waldur_api_client/api/azure_images/azure_images_retrieve.py +143 -0
- waldur_api_client/api/azure_locations/__init__.py +0 -0
- waldur_api_client/api/azure_locations/azure_locations_list.py +253 -0
- waldur_api_client/api/azure_locations/azure_locations_retrieve.py +143 -0
- waldur_api_client/api/azure_public_ips/__init__.py +0 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_create.py +152 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_destroy.py +92 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_list.py +527 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_partial_update.py +166 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_pull.py +92 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_retrieve.py +172 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_unlink.py +98 -0
- waldur_api_client/api/azure_public_ips/azure_public_ips_update.py +166 -0
- waldur_api_client/api/azure_resource_groups/__init__.py +0 -0
- waldur_api_client/api/azure_resource_groups/azure_resource_groups_list.py +197 -0
- waldur_api_client/api/azure_resource_groups/azure_resource_groups_retrieve.py +176 -0
- waldur_api_client/api/azure_sizes/__init__.py +0 -0
- waldur_api_client/api/azure_sizes/azure_sizes_list.py +286 -0
- waldur_api_client/api/azure_sizes/azure_sizes_retrieve.py +143 -0
- waldur_api_client/api/azure_sql_databases/__init__.py +0 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_create.py +156 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_destroy.py +92 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_list.py +560 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_partial_update.py +170 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_pull.py +92 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_retrieve.py +176 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_unlink.py +98 -0
- waldur_api_client/api/azure_sql_databases/azure_sql_databases_update.py +170 -0
- waldur_api_client/api/azure_sql_servers/__init__.py +0 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_create.py +156 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_create_database.py +170 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_destroy.py +92 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_list.py +527 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_partial_update.py +170 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_pull.py +92 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_retrieve.py +176 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_unlink.py +98 -0
- waldur_api_client/api/azure_sql_servers/azure_sql_servers_update.py +170 -0
- waldur_api_client/api/azure_virtualmachines/__init__.py +0 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_create.py +156 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_destroy.py +92 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_list.py +527 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_partial_update.py +170 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_pull.py +92 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_restart.py +92 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_retrieve.py +176 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_start.py +92 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_stop.py +92 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_unlink.py +98 -0
- waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_update.py +170 -0
- waldur_api_client/api/billing_total_cost/__init__.py +0 -0
- waldur_api_client/api/billing_total_cost/billing_total_cost_retrieve.py +218 -0
- waldur_api_client/api/booking_offerings/__init__.py +0 -0
- waldur_api_client/api/booking_offerings/booking_offerings_google_calendar_sync.py +92 -0
- waldur_api_client/api/booking_offerings/booking_offerings_list.py +197 -0
- waldur_api_client/api/booking_offerings/booking_offerings_retrieve.py +172 -0
- waldur_api_client/api/booking_offerings/booking_offerings_share_google_calendar.py +92 -0
- waldur_api_client/api/booking_offerings/booking_offerings_unshare_google_calendar.py +92 -0
- waldur_api_client/api/booking_resources/__init__.py +0 -0
- waldur_api_client/api/booking_resources/booking_resources_accept.py +92 -0
- waldur_api_client/api/booking_resources/booking_resources_list.py +683 -0
- waldur_api_client/api/booking_resources/booking_resources_reject.py +92 -0
- waldur_api_client/api/booking_resources/booking_resources_retrieve.py +176 -0
- waldur_api_client/api/broadcast_message_templates/__init__.py +0 -0
- waldur_api_client/api/broadcast_message_templates/broadcast_message_templates_create.py +156 -0
- waldur_api_client/api/broadcast_message_templates/broadcast_message_templates_destroy.py +92 -0
- waldur_api_client/api/broadcast_message_templates/broadcast_message_templates_list.py +189 -0
- waldur_api_client/api/broadcast_message_templates/broadcast_message_templates_partial_update.py +170 -0
- waldur_api_client/api/broadcast_message_templates/broadcast_message_templates_retrieve.py +147 -0
- waldur_api_client/api/broadcast_message_templates/broadcast_message_templates_update.py +170 -0
- waldur_api_client/api/broadcast_messages/__init__.py +0 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_create.py +156 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_destroy.py +92 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_list.py +255 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_partial_update.py +170 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_recipients_retrieve.py +162 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_retrieve.py +176 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_send.py +92 -0
- waldur_api_client/api/broadcast_messages/broadcast_messages_update.py +170 -0
- waldur_api_client/api/call_managing_organisations/__init__.py +0 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_add_user.py +170 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_create.py +156 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_delete_user.py +109 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_destroy.py +92 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_list.py +246 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_list_users_list.py +362 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_partial_update.py +170 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_retrieve.py +147 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_stats_retrieve.py +151 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_update.py +170 -0
- waldur_api_client/api/call_managing_organisations/call_managing_organisations_update_user.py +170 -0
- waldur_api_client/api/call_rounds/__init__.py +0 -0
- waldur_api_client/api/call_rounds/call_rounds_list.py +174 -0
- waldur_api_client/api/call_rounds/call_rounds_retrieve.py +143 -0
- waldur_api_client/api/call_rounds/call_rounds_reviewers_list.py +192 -0
- waldur_api_client/api/celery_stats/__init__.py +0 -0
- waldur_api_client/api/celery_stats/celery_stats_retrieve.py +77 -0
- waldur_api_client/api/component_user_usage_limits/__init__.py +0 -0
- waldur_api_client/api/component_user_usage_limits/component_user_usage_limits_create.py +156 -0
- waldur_api_client/api/component_user_usage_limits/component_user_usage_limits_destroy.py +92 -0
- waldur_api_client/api/component_user_usage_limits/component_user_usage_limits_list.py +256 -0
- waldur_api_client/api/component_user_usage_limits/component_user_usage_limits_partial_update.py +170 -0
- waldur_api_client/api/component_user_usage_limits/component_user_usage_limits_retrieve.py +147 -0
- waldur_api_client/api/component_user_usage_limits/component_user_usage_limits_update.py +170 -0
- waldur_api_client/api/configuration/__init__.py +0 -0
- waldur_api_client/api/configuration/configuration_retrieve.py +126 -0
- waldur_api_client/api/customer_credits/__init__.py +0 -0
- waldur_api_client/api/customer_credits/customer_credits_apply_compensations.py +170 -0
- waldur_api_client/api/customer_credits/customer_credits_clear_compensations.py +170 -0
- waldur_api_client/api/customer_credits/customer_credits_consumptions_list.py +263 -0
- waldur_api_client/api/customer_credits/customer_credits_create.py +156 -0
- waldur_api_client/api/customer_credits/customer_credits_destroy.py +92 -0
- waldur_api_client/api/customer_credits/customer_credits_list.py +246 -0
- waldur_api_client/api/customer_credits/customer_credits_partial_update.py +170 -0
- waldur_api_client/api/customer_credits/customer_credits_retrieve.py +147 -0
- waldur_api_client/api/customer_credits/customer_credits_update.py +170 -0
- waldur_api_client/api/customer_permissions_reviews/__init__.py +0 -0
- waldur_api_client/api/customer_permissions_reviews/customer_permissions_reviews_close.py +94 -0
- waldur_api_client/api/customer_permissions_reviews/customer_permissions_reviews_list.py +249 -0
- waldur_api_client/api/customer_permissions_reviews/customer_permissions_reviews_retrieve.py +147 -0
- waldur_api_client/api/customer_quotas/__init__.py +0 -0
- waldur_api_client/api/customer_quotas/customer_quotas_list.py +178 -0
- waldur_api_client/api/customers/__init__.py +0 -0
- waldur_api_client/api/customers/customers_add_user.py +170 -0
- waldur_api_client/api/customers/customers_countries_list.py +396 -0
- waldur_api_client/api/customers/customers_create.py +156 -0
- waldur_api_client/api/customers/customers_delete_user.py +109 -0
- waldur_api_client/api/customers/customers_destroy.py +94 -0
- waldur_api_client/api/customers/customers_list.py +487 -0
- waldur_api_client/api/customers/customers_list_users_list.py +360 -0
- waldur_api_client/api/customers/customers_partial_update.py +166 -0
- waldur_api_client/api/customers/customers_retrieve.py +172 -0
- waldur_api_client/api/customers/customers_stats_retrieve.py +172 -0
- waldur_api_client/api/customers/customers_update.py +166 -0
- waldur_api_client/api/customers/customers_update_organization_groups.py +111 -0
- waldur_api_client/api/customers/customers_update_user.py +170 -0
- waldur_api_client/api/customers/customers_users_list.py +440 -0
- waldur_api_client/api/customers/marketplace_checklists_customer_retrieve.py +147 -0
- waldur_api_client/api/customers/marketplace_checklists_customer_stats.py +164 -0
- waldur_api_client/api/customers/marketplace_checklists_customer_update.py +172 -0
- waldur_api_client/api/daily_quotas/__init__.py +0 -0
- waldur_api_client/api/daily_quotas/daily_quotas_retrieve.py +214 -0
- waldur_api_client/api/database_stats/__init__.py +0 -0
- waldur_api_client/api/database_stats/database_stats_list.py +127 -0
- waldur_api_client/api/digitalocean_droplets/__init__.py +0 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_create.py +156 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_destroy.py +92 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_list.py +494 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_partial_update.py +170 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_pull.py +92 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_resize.py +210 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_restart.py +92 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_retrieve.py +176 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_start.py +92 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_stop.py +92 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_unlink.py +98 -0
- waldur_api_client/api/digitalocean_droplets/digitalocean_droplets_update.py +170 -0
- waldur_api_client/api/digitalocean_images/__init__.py +0 -0
- waldur_api_client/api/digitalocean_images/digitalocean_images_list.py +257 -0
- waldur_api_client/api/digitalocean_images/digitalocean_images_retrieve.py +147 -0
- waldur_api_client/api/digitalocean_regions/__init__.py +0 -0
- waldur_api_client/api/digitalocean_regions/digitalocean_regions_list.py +204 -0
- waldur_api_client/api/digitalocean_regions/digitalocean_regions_retrieve.py +147 -0
- waldur_api_client/api/digitalocean_sizes/__init__.py +0 -0
- waldur_api_client/api/digitalocean_sizes/digitalocean_sizes_list.py +249 -0
- waldur_api_client/api/digitalocean_sizes/digitalocean_sizes_retrieve.py +147 -0
- waldur_api_client/api/email_logs/__init__.py +0 -0
- waldur_api_client/api/email_logs/email_logs_list.py +261 -0
- waldur_api_client/api/email_logs/email_logs_retrieve.py +143 -0
- waldur_api_client/api/event_subscriptions/__init__.py +0 -0
- waldur_api_client/api/event_subscriptions/event_subscriptions_create.py +156 -0
- waldur_api_client/api/event_subscriptions/event_subscriptions_destroy.py +92 -0
- waldur_api_client/api/event_subscriptions/event_subscriptions_list.py +227 -0
- waldur_api_client/api/event_subscriptions/event_subscriptions_retrieve.py +147 -0
- waldur_api_client/api/events/__init__.py +0 -0
- waldur_api_client/api/events/events_count_retrieve.py +158 -0
- waldur_api_client/api/events/events_event_groups_retrieve.py +166 -0
- waldur_api_client/api/events/events_list.py +316 -0
- waldur_api_client/api/events/events_retrieve.py +171 -0
- waldur_api_client/api/events/events_scope_types_retrieve.py +162 -0
- waldur_api_client/api/events_stats/__init__.py +0 -0
- waldur_api_client/api/events_stats/events_stats_list.py +174 -0
- waldur_api_client/api/feature_values/__init__.py +0 -0
- waldur_api_client/api/feature_values/feature_values.py +154 -0
- waldur_api_client/api/financial_reports/__init__.py +0 -0
- waldur_api_client/api/financial_reports/financial_reports_list.py +392 -0
- waldur_api_client/api/financial_reports/financial_reports_retrieve.py +147 -0
- waldur_api_client/api/freeipa_profiles/__init__.py +0 -0
- waldur_api_client/api/freeipa_profiles/freeipa_profiles_create.py +156 -0
- waldur_api_client/api/freeipa_profiles/freeipa_profiles_list.py +208 -0
- waldur_api_client/api/freeipa_profiles/freeipa_profiles_partial_update.py +147 -0
- waldur_api_client/api/freeipa_profiles/freeipa_profiles_retrieve.py +147 -0
- waldur_api_client/api/freeipa_profiles/freeipa_profiles_update.py +170 -0
- waldur_api_client/api/freeipa_profiles/freeipa_profiles_update_ssh_keys.py +94 -0
- waldur_api_client/api/google_auth/__init__.py +0 -0
- waldur_api_client/api/google_auth/google_auth_authorize_retrieve.py +176 -0
- waldur_api_client/api/google_auth/google_auth_callback_retrieve.py +110 -0
- waldur_api_client/api/google_auth/google_auth_list.py +212 -0
- waldur_api_client/api/google_auth/google_auth_retrieve.py +176 -0
- waldur_api_client/api/hooks/__init__.py +0 -0
- waldur_api_client/api/hooks/hooks_list.py +108 -0
- waldur_api_client/api/hooks_email/__init__.py +0 -0
- waldur_api_client/api/hooks_email/hooks_email_create.py +152 -0
- waldur_api_client/api/hooks_email/hooks_email_destroy.py +92 -0
- waldur_api_client/api/hooks_email/hooks_email_list.py +302 -0
- waldur_api_client/api/hooks_email/hooks_email_partial_update.py +166 -0
- waldur_api_client/api/hooks_email/hooks_email_retrieve.py +143 -0
- waldur_api_client/api/hooks_email/hooks_email_update.py +166 -0
- waldur_api_client/api/hooks_web/__init__.py +0 -0
- waldur_api_client/api/hooks_web/hooks_web_create.py +244 -0
- waldur_api_client/api/hooks_web/hooks_web_destroy.py +92 -0
- waldur_api_client/api/hooks_web/hooks_web_list.py +322 -0
- waldur_api_client/api/hooks_web/hooks_web_partial_update.py +166 -0
- waldur_api_client/api/hooks_web/hooks_web_retrieve.py +143 -0
- waldur_api_client/api/hooks_web/hooks_web_update.py +166 -0
- waldur_api_client/api/identity_providers/__init__.py +0 -0
- waldur_api_client/api/identity_providers/identity_providers_create.py +156 -0
- waldur_api_client/api/identity_providers/identity_providers_destroy.py +91 -0
- waldur_api_client/api/identity_providers/identity_providers_list.py +174 -0
- waldur_api_client/api/identity_providers/identity_providers_partial_update.py +169 -0
- waldur_api_client/api/identity_providers/identity_providers_retrieve.py +146 -0
- waldur_api_client/api/identity_providers/identity_providers_update.py +169 -0
- waldur_api_client/api/invoice/__init__.py +0 -0
- waldur_api_client/api/invoice/invoice_send_financial_report_by_mail.py +101 -0
- waldur_api_client/api/invoice_items/__init__.py +0 -0
- waldur_api_client/api/invoice_items/invoice_items_consumptions_retrieve.py +147 -0
- waldur_api_client/api/invoice_items/invoice_items_costs_list.py +197 -0
- waldur_api_client/api/invoice_items/invoice_items_create_compensation.py +174 -0
- waldur_api_client/api/invoice_items/invoice_items_customer_costs_for_period_retrieve.py +173 -0
- waldur_api_client/api/invoice_items/invoice_items_destroy.py +92 -0
- waldur_api_client/api/invoice_items/invoice_items_list.py +325 -0
- waldur_api_client/api/invoice_items/invoice_items_migrate_to.py +174 -0
- waldur_api_client/api/invoice_items/invoice_items_partial_update.py +170 -0
- waldur_api_client/api/invoice_items/invoice_items_project_costs_for_period_retrieve.py +177 -0
- waldur_api_client/api/invoice_items/invoice_items_retrieve.py +147 -0
- waldur_api_client/api/invoice_items/invoice_items_total_price_retrieve.py +294 -0
- waldur_api_client/api/invoice_items/invoice_items_update.py +170 -0
- waldur_api_client/api/invoices/__init__.py +0 -0
- waldur_api_client/api/invoices/invoices_growth_retrieve.py +188 -0
- waldur_api_client/api/invoices/invoices_items_retrieve.py +236 -0
- waldur_api_client/api/invoices/invoices_list.py +392 -0
- waldur_api_client/api/invoices/invoices_paid.py +170 -0
- waldur_api_client/api/invoices/invoices_retrieve.py +172 -0
- waldur_api_client/api/invoices/invoices_send_notification.py +98 -0
- waldur_api_client/api/invoices/invoices_set_backend_id.py +111 -0
- waldur_api_client/api/invoices/invoices_set_payment_url.py +111 -0
- waldur_api_client/api/invoices/invoices_set_reference_number.py +111 -0
- waldur_api_client/api/invoices/invoices_stats_list.py +401 -0
- waldur_api_client/api/keycloak_groups/__init__.py +0 -0
- waldur_api_client/api/keycloak_groups/keycloak_groups_list.py +223 -0
- waldur_api_client/api/keycloak_groups/keycloak_groups_retrieve.py +143 -0
- waldur_api_client/api/keycloak_user_group_memberships/__init__.py +0 -0
- waldur_api_client/api/keycloak_user_group_memberships/keycloak_user_group_memberships_create.py +156 -0
- waldur_api_client/api/keycloak_user_group_memberships/keycloak_user_group_memberships_destroy.py +92 -0
- waldur_api_client/api/keycloak_user_group_memberships/keycloak_user_group_memberships_list.py +327 -0
- waldur_api_client/api/keycloak_user_group_memberships/keycloak_user_group_memberships_partial_update.py +170 -0
- waldur_api_client/api/keycloak_user_group_memberships/keycloak_user_group_memberships_retrieve.py +147 -0
- waldur_api_client/api/keycloak_user_group_memberships/keycloak_user_group_memberships_update.py +170 -0
- waldur_api_client/api/keys/__init__.py +0 -0
- waldur_api_client/api/keys/keys_create.py +152 -0
- waldur_api_client/api/keys/keys_destroy.py +92 -0
- waldur_api_client/api/keys/keys_list.py +384 -0
- waldur_api_client/api/keys/keys_retrieve.py +172 -0
- waldur_api_client/api/lexis_links/__init__.py +0 -0
- waldur_api_client/api/lexis_links/lexis_links_create.py +101 -0
- waldur_api_client/api/lexis_links/lexis_links_destroy.py +92 -0
- waldur_api_client/api/lexis_links/lexis_links_list.py +262 -0
- waldur_api_client/api/lexis_links/lexis_links_partial_update.py +166 -0
- waldur_api_client/api/lexis_links/lexis_links_retrieve.py +143 -0
- waldur_api_client/api/lexis_links/lexis_links_update.py +166 -0
- waldur_api_client/api/marketplace_bookings/__init__.py +0 -0
- waldur_api_client/api/marketplace_bookings/marketplace_bookings_list.py +151 -0
- waldur_api_client/api/marketplace_categories/__init__.py +0 -0
- waldur_api_client/api/marketplace_categories/marketplace_categories_create.py +156 -0
- waldur_api_client/api/marketplace_categories/marketplace_categories_destroy.py +92 -0
- waldur_api_client/api/marketplace_categories/marketplace_categories_list.py +344 -0
- waldur_api_client/api/marketplace_categories/marketplace_categories_partial_update.py +170 -0
- waldur_api_client/api/marketplace_categories/marketplace_categories_retrieve.py +176 -0
- waldur_api_client/api/marketplace_categories/marketplace_categories_update.py +170 -0
- waldur_api_client/api/marketplace_category_columns/__init__.py +0 -0
- waldur_api_client/api/marketplace_category_columns/marketplace_category_columns_create.py +156 -0
- waldur_api_client/api/marketplace_category_columns/marketplace_category_columns_destroy.py +92 -0
- waldur_api_client/api/marketplace_category_columns/marketplace_category_columns_list.py +208 -0
- waldur_api_client/api/marketplace_category_columns/marketplace_category_columns_partial_update.py +170 -0
- waldur_api_client/api/marketplace_category_columns/marketplace_category_columns_retrieve.py +147 -0
- waldur_api_client/api/marketplace_category_columns/marketplace_category_columns_update.py +170 -0
- waldur_api_client/api/marketplace_category_component_usages/__init__.py +0 -0
- waldur_api_client/api/marketplace_category_component_usages/marketplace_category_component_usages_list.py +236 -0
- waldur_api_client/api/marketplace_category_component_usages/marketplace_category_component_usages_retrieve.py +177 -0
- waldur_api_client/api/marketplace_category_components/__init__.py +0 -0
- waldur_api_client/api/marketplace_category_components/marketplace_category_components_create.py +156 -0
- waldur_api_client/api/marketplace_category_components/marketplace_category_components_destroy.py +91 -0
- waldur_api_client/api/marketplace_category_components/marketplace_category_components_list.py +174 -0
- waldur_api_client/api/marketplace_category_components/marketplace_category_components_partial_update.py +169 -0
- waldur_api_client/api/marketplace_category_components/marketplace_category_components_retrieve.py +146 -0
- waldur_api_client/api/marketplace_category_components/marketplace_category_components_update.py +169 -0
- waldur_api_client/api/marketplace_category_groups/__init__.py +0 -0
- waldur_api_client/api/marketplace_category_groups/marketplace_category_groups_create.py +152 -0
- waldur_api_client/api/marketplace_category_groups/marketplace_category_groups_destroy.py +92 -0
- waldur_api_client/api/marketplace_category_groups/marketplace_category_groups_list.py +212 -0
- waldur_api_client/api/marketplace_category_groups/marketplace_category_groups_partial_update.py +166 -0
- waldur_api_client/api/marketplace_category_groups/marketplace_category_groups_retrieve.py +172 -0
- waldur_api_client/api/marketplace_category_groups/marketplace_category_groups_update.py +166 -0
- waldur_api_client/api/marketplace_category_help_articles/__init__.py +0 -0
- waldur_api_client/api/marketplace_category_help_articles/marketplace_category_help_articles_create.py +156 -0
- waldur_api_client/api/marketplace_category_help_articles/marketplace_category_help_articles_destroy.py +91 -0
- waldur_api_client/api/marketplace_category_help_articles/marketplace_category_help_articles_list.py +174 -0
- waldur_api_client/api/marketplace_category_help_articles/marketplace_category_help_articles_partial_update.py +169 -0
- waldur_api_client/api/marketplace_category_help_articles/marketplace_category_help_articles_retrieve.py +146 -0
- waldur_api_client/api/marketplace_category_help_articles/marketplace_category_help_articles_update.py +169 -0
- waldur_api_client/api/marketplace_checklists/__init__.py +0 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_answers_list.py +187 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_answers_submit_create.py +235 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_list.py +174 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_questions_list.py +187 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_retrieve.py +142 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_stats_list.py +155 -0
- waldur_api_client/api/marketplace_checklists/marketplace_checklists_user_answers_list.py +200 -0
- waldur_api_client/api/marketplace_checklists_categories/__init__.py +0 -0
- waldur_api_client/api/marketplace_checklists_categories/marketplace_checklists_categories_checklists_list.py +187 -0
- waldur_api_client/api/marketplace_checklists_categories/marketplace_checklists_categories_list.py +174 -0
- waldur_api_client/api/marketplace_checklists_categories/marketplace_checklists_categories_retrieve.py +146 -0
- waldur_api_client/api/marketplace_component_usages/__init__.py +0 -0
- waldur_api_client/api/marketplace_component_usages/marketplace_component_usages_list.py +378 -0
- waldur_api_client/api/marketplace_component_usages/marketplace_component_usages_retrieve.py +176 -0
- waldur_api_client/api/marketplace_component_usages/marketplace_component_usages_set_usage.py +101 -0
- waldur_api_client/api/marketplace_component_usages/marketplace_component_usages_set_user_usage.py +109 -0
- waldur_api_client/api/marketplace_component_user_usages/__init__.py +0 -0
- waldur_api_client/api/marketplace_component_user_usages/marketplace_component_user_usages_list.py +423 -0
- waldur_api_client/api/marketplace_component_user_usages/marketplace_component_user_usages_retrieve.py +178 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/__init__.py +0 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_actions_retrieve.py +122 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_create.py +156 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_destroy.py +92 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_list.py +241 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_partial_update.py +170 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_retrieve.py +147 -0
- waldur_api_client/api/marketplace_customer_estimated_cost_policies/marketplace_customer_estimated_cost_policies_update.py +170 -0
- waldur_api_client/api/marketplace_customer_service_accounts/__init__.py +0 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_create.py +156 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_destroy.py +92 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_list.py +238 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_partial_update.py +170 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_retrieve.py +147 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_rotate_api_key.py +147 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_update.py +170 -0
- waldur_api_client/api/marketplace_global_categories/__init__.py +0 -0
- waldur_api_client/api/marketplace_global_categories/marketplace_global_categories_retrieve.py +180 -0
- waldur_api_client/api/marketplace_integration_statuses/__init__.py +0 -0
- waldur_api_client/api/marketplace_integration_statuses/marketplace_integration_statuses_list.py +302 -0
- waldur_api_client/api/marketplace_integration_statuses/marketplace_integration_statuses_retrieve.py +147 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_actions_retrieve.py +126 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_create.py +156 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_destroy.py +92 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_list.py +208 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_partial_update.py +170 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_retrieve.py +147 -0
- waldur_api_client/api/marketplace_offering_estimated_cost_policies/marketplace_offering_estimated_cost_policies_update.py +170 -0
- waldur_api_client/api/marketplace_offering_files/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_files/marketplace_offering_files_create.py +152 -0
- waldur_api_client/api/marketplace_offering_files/marketplace_offering_files_destroy.py +92 -0
- waldur_api_client/api/marketplace_offering_files/marketplace_offering_files_list.py +272 -0
- waldur_api_client/api/marketplace_offering_files/marketplace_offering_files_retrieve.py +172 -0
- waldur_api_client/api/marketplace_offering_permissions/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_permissions/marketplace_offering_permissions_list.py +445 -0
- waldur_api_client/api/marketplace_offering_permissions/marketplace_offering_permissions_retrieve.py +146 -0
- waldur_api_client/api/marketplace_offering_permissions_log/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_permissions_log/marketplace_offering_permissions_log_list.py +445 -0
- waldur_api_client/api/marketplace_offering_permissions_log/marketplace_offering_permissions_log_retrieve.py +146 -0
- waldur_api_client/api/marketplace_offering_referrals/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_referrals/marketplace_offering_referrals_list.py +197 -0
- waldur_api_client/api/marketplace_offering_referrals/marketplace_offering_referrals_retrieve.py +147 -0
- waldur_api_client/api/marketplace_offering_usage_policies/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_actions_retrieve.py +122 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_create.py +156 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_destroy.py +92 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_list.py +208 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_partial_update.py +170 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_retrieve.py +147 -0
- waldur_api_client/api/marketplace_offering_usage_policies/marketplace_offering_usage_policies_update.py +170 -0
- waldur_api_client/api/marketplace_offering_user_roles/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_user_roles/marketplace_offering_user_roles_create.py +156 -0
- waldur_api_client/api/marketplace_offering_user_roles/marketplace_offering_user_roles_destroy.py +92 -0
- waldur_api_client/api/marketplace_offering_user_roles/marketplace_offering_user_roles_list.py +226 -0
- waldur_api_client/api/marketplace_offering_user_roles/marketplace_offering_user_roles_partial_update.py +170 -0
- waldur_api_client/api/marketplace_offering_user_roles/marketplace_offering_user_roles_retrieve.py +147 -0
- waldur_api_client/api/marketplace_offering_user_roles/marketplace_offering_user_roles_update.py +170 -0
- waldur_api_client/api/marketplace_offering_users/__init__.py +0 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_create.py +152 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_destroy.py +92 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_list.py +390 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_partial_update.py +166 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_retrieve.py +172 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_update.py +166 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_update_restricted.py +109 -0
- waldur_api_client/api/marketplace_orders/__init__.py +0 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_approve_by_consumer.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_approve_by_provider.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_cancel.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_create.py +152 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_destroy.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_list.py +542 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_offering_retrieve.py +147 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_reject_by_consumer.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_reject_by_provider.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_retrieve.py +172 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_set_state_done.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_set_state_erred.py +109 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_set_state_executing.py +92 -0
- waldur_api_client/api/marketplace_orders/marketplace_orders_unlink.py +94 -0
- waldur_api_client/api/marketplace_plan_components/__init__.py +0 -0
- waldur_api_client/api/marketplace_plan_components/marketplace_plan_components_list.py +241 -0
- waldur_api_client/api/marketplace_plan_components/marketplace_plan_components_retrieve.py +142 -0
- waldur_api_client/api/marketplace_plans/__init__.py +0 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_archive.py +92 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_create.py +156 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_delete_organization_groups.py +92 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_list.py +226 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_partial_update.py +170 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_retrieve.py +147 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_update.py +170 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_update_organization_groups.py +109 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_update_prices.py +109 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_update_quotas.py +109 -0
- waldur_api_client/api/marketplace_plans/marketplace_plans_usage_stats_list.py +253 -0
- waldur_api_client/api/marketplace_plugins/__init__.py +0 -0
- waldur_api_client/api/marketplace_plugins/marketplace_plugins_list.py +127 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/__init__.py +0 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_actions_retrieve.py +122 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_create.py +156 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_destroy.py +92 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_list.py +274 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_partial_update.py +170 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_retrieve.py +147 -0
- waldur_api_client/api/marketplace_project_estimated_cost_policies/marketplace_project_estimated_cost_policies_update.py +170 -0
- waldur_api_client/api/marketplace_project_service_accounts/__init__.py +0 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_create.py +156 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_destroy.py +92 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_list.py +238 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_partial_update.py +170 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_retrieve.py +147 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_rotate_api_key.py +147 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_update.py +170 -0
- waldur_api_client/api/marketplace_project_update_requests/__init__.py +0 -0
- waldur_api_client/api/marketplace_project_update_requests/marketplace_project_update_requests_approve.py +111 -0
- waldur_api_client/api/marketplace_project_update_requests/marketplace_project_update_requests_list.py +270 -0
- waldur_api_client/api/marketplace_project_update_requests/marketplace_project_update_requests_reject.py +111 -0
- waldur_api_client/api/marketplace_project_update_requests/marketplace_project_update_requests_retrieve.py +147 -0
- waldur_api_client/api/marketplace_provider_offerings/__init__.py +0 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_activate.py +143 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_add_endpoint.py +170 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_add_user.py +170 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_archive.py +143 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py +665 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +678 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_create.py +156 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_create_offering_component.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +635 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_endpoint.py +111 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_image.py +94 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_organization_groups.py +94 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_thumbnail.py +94 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_user.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_destroy.py +92 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_draft.py +143 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_glauth_users_config_retrieve.py +157 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +616 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_import_resource.py +166 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_importable_resources_list.py +192 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +637 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_projects_list.py +188 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_service_accounts_retrieve.py +182 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_users_list.py +184 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_project_service_accounts_retrieve.py +182 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_users_list.py +364 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_move_offering.py +170 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_orders_list.py +188 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_orders_retrieve.py +155 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_pause.py +166 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_refresh_offering_usernames.py +170 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_remove_offering_component.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_retrieve.py +176 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_set_backend_metadata.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_stats_retrieve.py +178 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_sync.py +92 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_unpause.py +143 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_attributes.py +113 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_description.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_image.py +174 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_integration.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_location.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_offering_component.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_options.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_organization_groups.py +111 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_overview.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_resource_options.py +109 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_thumbnail.py +111 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_update_user.py +170 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_user_has_resource_access_retrieve.py +201 -0
- waldur_api_client/api/marketplace_provider_resources/__init__.py +0 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_details_retrieve.py +174 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_glauth_users_config_retrieve.py +165 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_list.py +665 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_move_resource.py +147 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_offering_for_subresources_list.py +152 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_offering_retrieve.py +147 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_partial_update.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_plan_periods_list.py +152 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_refresh_last_sync.py +94 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_retrieve.py +172 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_as_erred.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_as_ok.py +94 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_backend_id.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_backend_metadata.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_end_date_by_provider.py +166 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_end_date_by_staff.py +111 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_limits.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_set_slug.py +111 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_submit_report.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_team_list.py +156 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_terminate.py +170 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_unlink.py +100 -0
- waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_update.py +170 -0
- waldur_api_client/api/marketplace_public_api/__init__.py +0 -0
- waldur_api_client/api/marketplace_public_api/marketplace_public_api_check_signature.py +156 -0
- waldur_api_client/api/marketplace_public_api/marketplace_public_api_set_usage.py +156 -0
- waldur_api_client/api/marketplace_public_offerings/__init__.py +0 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +637 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_plans_list.py +152 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_plans_retrieve.py +159 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_retrieve.py +176 -0
- waldur_api_client/api/marketplace_related_customers/__init__.py +0 -0
- waldur_api_client/api/marketplace_related_customers/marketplace_related_customers_list.py +217 -0
- waldur_api_client/api/marketplace_remote_synchronisations/__init__.py +0 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_create.py +156 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_destroy.py +92 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_list.py +174 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_partial_update.py +170 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_retrieve.py +147 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_run_synchronisation.py +147 -0
- waldur_api_client/api/marketplace_remote_synchronisations/marketplace_remote_synchronisations_update.py +170 -0
- waldur_api_client/api/marketplace_resource_offerings/__init__.py +0 -0
- waldur_api_client/api/marketplace_resource_offerings/marketplace_resource_offerings_list.py +217 -0
- waldur_api_client/api/marketplace_resource_users/__init__.py +0 -0
- waldur_api_client/api/marketplace_resource_users/marketplace_resource_users_create.py +152 -0
- waldur_api_client/api/marketplace_resource_users/marketplace_resource_users_destroy.py +92 -0
- waldur_api_client/api/marketplace_resource_users/marketplace_resource_users_list.py +259 -0
- waldur_api_client/api/marketplace_resource_users/marketplace_resource_users_retrieve.py +143 -0
- waldur_api_client/api/marketplace_resources/__init__.py +0 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_details_retrieve.py +172 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_glauth_users_config_retrieve.py +165 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_list.py +665 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_move_resource.py +147 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_offering_for_subresources_list.py +152 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_offering_retrieve.py +147 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_partial_update.py +170 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_plan_periods_list.py +152 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_retrieve.py +172 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_set_end_date_by_staff.py +111 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_set_slug.py +111 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_suggest_name.py +156 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_switch_plan.py +170 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_team_list.py +156 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_terminate.py +170 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_unlink.py +100 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_update.py +170 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_update_limits.py +170 -0
- waldur_api_client/api/marketplace_resources/marketplace_resources_update_options.py +170 -0
- waldur_api_client/api/marketplace_robot_accounts/__init__.py +0 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_create.py +152 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_destroy.py +92 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_list.py +334 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_partial_update.py +166 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_retrieve.py +147 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_set_state_creating.py +152 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_set_state_deleted.py +147 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_set_state_erred.py +170 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_set_state_ok.py +147 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_set_state_request_deletion.py +147 -0
- waldur_api_client/api/marketplace_robot_accounts/marketplace_robot_accounts_update.py +166 -0
- waldur_api_client/api/marketplace_runtime_states/__init__.py +0 -0
- waldur_api_client/api/marketplace_runtime_states/marketplace_runtime_states_list.py +185 -0
- waldur_api_client/api/marketplace_screenshots/__init__.py +0 -0
- waldur_api_client/api/marketplace_screenshots/marketplace_screenshots_create.py +152 -0
- waldur_api_client/api/marketplace_screenshots/marketplace_screenshots_destroy.py +92 -0
- waldur_api_client/api/marketplace_screenshots/marketplace_screenshots_list.py +249 -0
- waldur_api_client/api/marketplace_screenshots/marketplace_screenshots_partial_update.py +166 -0
- waldur_api_client/api/marketplace_screenshots/marketplace_screenshots_retrieve.py +143 -0
- waldur_api_client/api/marketplace_screenshots/marketplace_screenshots_update.py +166 -0
- waldur_api_client/api/marketplace_script_async_dry_run/__init__.py +0 -0
- waldur_api_client/api/marketplace_script_async_dry_run/marketplace_script_async_dry_run_list.py +174 -0
- waldur_api_client/api/marketplace_script_async_dry_run/marketplace_script_async_dry_run_retrieve.py +143 -0
- waldur_api_client/api/marketplace_script_dry_run/__init__.py +0 -0
- waldur_api_client/api/marketplace_script_dry_run/marketplace_script_dry_run_async_run.py +170 -0
- waldur_api_client/api/marketplace_script_dry_run/marketplace_script_dry_run_run.py +170 -0
- waldur_api_client/api/marketplace_script_sync_resource/__init__.py +0 -0
- waldur_api_client/api/marketplace_script_sync_resource/marketplace_script_sync_resource.py +113 -0
- waldur_api_client/api/marketplace_sections/__init__.py +0 -0
- waldur_api_client/api/marketplace_sections/marketplace_sections_create.py +152 -0
- waldur_api_client/api/marketplace_sections/marketplace_sections_destroy.py +91 -0
- waldur_api_client/api/marketplace_sections/marketplace_sections_list.py +174 -0
- waldur_api_client/api/marketplace_sections/marketplace_sections_partial_update.py +165 -0
- waldur_api_client/api/marketplace_sections/marketplace_sections_retrieve.py +142 -0
- waldur_api_client/api/marketplace_sections/marketplace_sections_update.py +165 -0
- waldur_api_client/api/marketplace_service_providers/__init__.py +0 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_add_user.py +170 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_create.py +156 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_customer_projects_list.py +466 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_customers_list.py +419 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_delete_user.py +109 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_destroy.py +92 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_keys_list.py +401 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_list.py +269 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_list_users_list.py +362 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +658 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_partial_update.py +170 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_project_permissions_list.py +471 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_projects_list.py +464 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_retrieve.py +176 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_revenue_list.py +188 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_robot_account_customers_list.py +203 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_robot_account_projects_list.py +203 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_set_offerings_username.py +170 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_stat_retrieve.py +147 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_update.py +170 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_update_user.py +170 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_user_customers_list.py +463 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_users_list.py +584 -0
- waldur_api_client/api/marketplace_service_providers/service_provider_api_secret_code_generate.py +151 -0
- waldur_api_client/api/marketplace_service_providers/service_provider_api_secret_code_retrieve.py +151 -0
- waldur_api_client/api/marketplace_stats/__init__.py +0 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_component_usages_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_component_usages_per_month_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_component_usages_per_project_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_active_resources_grouped_by_offering_country_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_active_resources_grouped_by_offering_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_active_resources_grouped_by_organization_group_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_projects_grouped_by_provider_and_industry_flag_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_projects_grouped_by_provider_and_oecd_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_projects_of_service_providers_grouped_by_oecd_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_projects_of_service_providers_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_unique_users_connected_with_active_resources_of_service_provider_list.py +182 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_count_users_of_service_providers_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_customer_member_count_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_offerings_counter_stats_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_organization_project_count_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_organization_resource_count_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_projects_limits_grouped_by_industry_flag_retrieve.py +126 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_projects_limits_grouped_by_oecd_retrieve.py +126 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_projects_usages_grouped_by_industry_flag_retrieve.py +126 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_projects_usages_grouped_by_oecd_retrieve.py +126 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_resources_limits_list.py +178 -0
- waldur_api_client/api/marketplace_stats/marketplace_stats_total_cost_of_active_resources_per_offering_list.py +178 -0
- waldur_api_client/api/media/__init__.py +0 -0
- waldur_api_client/api/media/media_retrieve.py +146 -0
- waldur_api_client/api/notification_messages/__init__.py +0 -0
- waldur_api_client/api/notification_messages/notification_messages_create.py +152 -0
- waldur_api_client/api/notification_messages/notification_messages_destroy.py +92 -0
- waldur_api_client/api/notification_messages/notification_messages_disable.py +92 -0
- waldur_api_client/api/notification_messages/notification_messages_enable.py +92 -0
- waldur_api_client/api/notification_messages/notification_messages_list.py +264 -0
- waldur_api_client/api/notification_messages/notification_messages_partial_update.py +166 -0
- waldur_api_client/api/notification_messages/notification_messages_retrieve.py +143 -0
- waldur_api_client/api/notification_messages/notification_messages_update.py +166 -0
- waldur_api_client/api/notification_messages_templates/__init__.py +0 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_create.py +156 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_destroy.py +92 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_list.py +249 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_override.py +109 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_partial_update.py +172 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_retrieve.py +147 -0
- waldur_api_client/api/notification_messages_templates/notification_messages_templates_update.py +170 -0
- waldur_api_client/api/openstack_backups/__init__.py +0 -0
- waldur_api_client/api/openstack_backups/openstack_backups_destroy.py +92 -0
- waldur_api_client/api/openstack_backups/openstack_backups_list.py +560 -0
- waldur_api_client/api/openstack_backups/openstack_backups_partial_update.py +170 -0
- waldur_api_client/api/openstack_backups/openstack_backups_pull.py +92 -0
- waldur_api_client/api/openstack_backups/openstack_backups_restore.py +174 -0
- waldur_api_client/api/openstack_backups/openstack_backups_retrieve.py +176 -0
- waldur_api_client/api/openstack_backups/openstack_backups_unlink.py +98 -0
- waldur_api_client/api/openstack_backups/openstack_backups_update.py +170 -0
- waldur_api_client/api/openstack_flavors/__init__.py +0 -0
- waldur_api_client/api/openstack_flavors/openstack_flavors_list.py +467 -0
- waldur_api_client/api/openstack_flavors/openstack_flavors_retrieve.py +176 -0
- waldur_api_client/api/openstack_flavors/openstack_flavors_usage_stats_retrieve.py +162 -0
- waldur_api_client/api/openstack_floating_ips/__init__.py +0 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_attach_to_port.py +111 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_destroy.py +92 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_detach_from_port.py +94 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_list.py +576 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_pull.py +92 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_retrieve.py +176 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_unlink.py +98 -0
- waldur_api_client/api/openstack_floating_ips/openstack_floating_ips_update_description.py +111 -0
- waldur_api_client/api/openstack_images/__init__.py +0 -0
- waldur_api_client/api/openstack_images/openstack_images_list.py +271 -0
- waldur_api_client/api/openstack_images/openstack_images_retrieve.py +147 -0
- waldur_api_client/api/openstack_images/openstack_images_usage_stats_retrieve.py +122 -0
- waldur_api_client/api/openstack_instance_availability_zones/__init__.py +0 -0
- waldur_api_client/api/openstack_instance_availability_zones/openstack_instance_availability_zones_list.py +271 -0
- waldur_api_client/api/openstack_instance_availability_zones/openstack_instance_availability_zones_retrieve.py +147 -0
- waldur_api_client/api/openstack_instances/__init__.py +0 -0
- waldur_api_client/api/openstack_instances/openstack_instances_backup.py +174 -0
- waldur_api_client/api/openstack_instances/openstack_instances_change_flavor.py +111 -0
- waldur_api_client/api/openstack_instances/openstack_instances_console_log_retrieve.py +166 -0
- waldur_api_client/api/openstack_instances/openstack_instances_console_retrieve.py +147 -0
- waldur_api_client/api/openstack_instances/openstack_instances_floating_ips_list.py +192 -0
- waldur_api_client/api/openstack_instances/openstack_instances_list.py +590 -0
- waldur_api_client/api/openstack_instances/openstack_instances_partial_update.py +170 -0
- waldur_api_client/api/openstack_instances/openstack_instances_ports_list.py +192 -0
- waldur_api_client/api/openstack_instances/openstack_instances_pull.py +92 -0
- waldur_api_client/api/openstack_instances/openstack_instances_restart.py +94 -0
- waldur_api_client/api/openstack_instances/openstack_instances_retrieve.py +176 -0
- waldur_api_client/api/openstack_instances/openstack_instances_start.py +94 -0
- waldur_api_client/api/openstack_instances/openstack_instances_stop.py +94 -0
- waldur_api_client/api/openstack_instances/openstack_instances_unlink.py +98 -0
- waldur_api_client/api/openstack_instances/openstack_instances_update.py +170 -0
- waldur_api_client/api/openstack_instances/openstack_instances_update_allowed_address_pairs.py +113 -0
- waldur_api_client/api/openstack_instances/openstack_instances_update_floating_ips.py +111 -0
- waldur_api_client/api/openstack_instances/openstack_instances_update_ports.py +111 -0
- waldur_api_client/api/openstack_instances/openstack_instances_update_security_groups.py +111 -0
- waldur_api_client/api/openstack_migrations/__init__.py +0 -0
- waldur_api_client/api/openstack_migrations/openstack_migrations_create.py +156 -0
- waldur_api_client/api/openstack_migrations/openstack_migrations_destroy.py +92 -0
- waldur_api_client/api/openstack_migrations/openstack_migrations_list.py +211 -0
- waldur_api_client/api/openstack_migrations/openstack_migrations_partial_update.py +170 -0
- waldur_api_client/api/openstack_migrations/openstack_migrations_retrieve.py +147 -0
- waldur_api_client/api/openstack_migrations/openstack_migrations_update.py +170 -0
- waldur_api_client/api/openstack_network_rbac_policies/__init__.py +0 -0
- waldur_api_client/api/openstack_network_rbac_policies/openstack_network_rbac_policies_list.py +261 -0
- waldur_api_client/api/openstack_network_rbac_policies/openstack_network_rbac_policies_retrieve.py +147 -0
- waldur_api_client/api/openstack_networks/__init__.py +0 -0
- waldur_api_client/api/openstack_networks/openstack_networks_create_subnet.py +170 -0
- waldur_api_client/api/openstack_networks/openstack_networks_destroy.py +92 -0
- waldur_api_client/api/openstack_networks/openstack_networks_list.py +587 -0
- waldur_api_client/api/openstack_networks/openstack_networks_partial_update.py +170 -0
- waldur_api_client/api/openstack_networks/openstack_networks_pull.py +92 -0
- waldur_api_client/api/openstack_networks/openstack_networks_rbac_policy_create.py +174 -0
- waldur_api_client/api/openstack_networks/openstack_networks_rbac_policy_delete_destroy.py +101 -0
- waldur_api_client/api/openstack_networks/openstack_networks_retrieve.py +176 -0
- waldur_api_client/api/openstack_networks/openstack_networks_set_mtu.py +166 -0
- waldur_api_client/api/openstack_networks/openstack_networks_unlink.py +98 -0
- waldur_api_client/api/openstack_networks/openstack_networks_update.py +170 -0
- waldur_api_client/api/openstack_ports/__init__.py +0 -0
- waldur_api_client/api/openstack_ports/openstack_ports_create.py +152 -0
- waldur_api_client/api/openstack_ports/openstack_ports_destroy.py +92 -0
- waldur_api_client/api/openstack_ports/openstack_ports_disable_port.py +94 -0
- waldur_api_client/api/openstack_ports/openstack_ports_disable_port_security.py +94 -0
- waldur_api_client/api/openstack_ports/openstack_ports_enable_port.py +94 -0
- waldur_api_client/api/openstack_ports/openstack_ports_enable_port_security.py +94 -0
- waldur_api_client/api/openstack_ports/openstack_ports_list.py +419 -0
- waldur_api_client/api/openstack_ports/openstack_ports_partial_update.py +166 -0
- waldur_api_client/api/openstack_ports/openstack_ports_pull.py +92 -0
- waldur_api_client/api/openstack_ports/openstack_ports_retrieve.py +172 -0
- waldur_api_client/api/openstack_ports/openstack_ports_unlink.py +98 -0
- waldur_api_client/api/openstack_ports/openstack_ports_update.py +166 -0
- waldur_api_client/api/openstack_ports/openstack_ports_update_port_ip.py +111 -0
- waldur_api_client/api/openstack_ports/openstack_ports_update_security_groups.py +111 -0
- waldur_api_client/api/openstack_routers/__init__.py +0 -0
- waldur_api_client/api/openstack_routers/openstack_routers_add_router_interface.py +111 -0
- waldur_api_client/api/openstack_routers/openstack_routers_create.py +152 -0
- waldur_api_client/api/openstack_routers/openstack_routers_destroy.py +92 -0
- waldur_api_client/api/openstack_routers/openstack_routers_list.py +261 -0
- waldur_api_client/api/openstack_routers/openstack_routers_remove_router_interface.py +111 -0
- waldur_api_client/api/openstack_routers/openstack_routers_retrieve.py +176 -0
- waldur_api_client/api/openstack_routers/openstack_routers_set_routes.py +170 -0
- waldur_api_client/api/openstack_security_groups/__init__.py +0 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_destroy.py +92 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_list.py +542 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_partial_update.py +170 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_pull.py +92 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_retrieve.py +176 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_set_rules.py +114 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_unlink.py +98 -0
- waldur_api_client/api/openstack_security_groups/openstack_security_groups_update.py +170 -0
- waldur_api_client/api/openstack_server_groups/__init__.py +0 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_create.py +156 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_destroy.py +92 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_list.py +527 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_partial_update.py +170 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_pull.py +92 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_retrieve.py +176 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_unlink.py +98 -0
- waldur_api_client/api/openstack_server_groups/openstack_server_groups_update.py +170 -0
- waldur_api_client/api/openstack_snapshots/__init__.py +0 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_destroy.py +92 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_list.py +608 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_partial_update.py +170 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_pull.py +92 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_restorations_list.py +192 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_restore.py +174 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_retrieve.py +176 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_unlink.py +98 -0
- waldur_api_client/api/openstack_snapshots/openstack_snapshots_update.py +170 -0
- waldur_api_client/api/openstack_subnets/__init__.py +0 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_connect.py +92 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_destroy.py +92 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_disconnect.py +92 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_list.py +620 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_partial_update.py +170 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_pull.py +92 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_retrieve.py +176 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_unlink.py +98 -0
- waldur_api_client/api/openstack_subnets/openstack_subnets_update.py +170 -0
- waldur_api_client/api/openstack_tenants/__init__.py +0 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_backend_instances_list.py +488 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_backend_volumes_list.py +488 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_change_password.py +111 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_create.py +156 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_create_floating_ip.py +151 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_create_network.py +174 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_create_security_group.py +170 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_create_server_group.py +170 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_destroy.py +92 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_list.py +494 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_partial_update.py +170 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_pull.py +92 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_pull_floating_ips.py +94 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_pull_quotas.py +94 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_pull_security_groups.py +151 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_pull_server_groups.py +151 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_retrieve.py +176 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_set_quotas.py +278 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_unlink.py +98 -0
- waldur_api_client/api/openstack_tenants/openstack_tenants_update.py +170 -0
- waldur_api_client/api/openstack_volume_availability_zones/__init__.py +0 -0
- waldur_api_client/api/openstack_volume_availability_zones/openstack_volume_availability_zones_list.py +271 -0
- waldur_api_client/api/openstack_volume_availability_zones/openstack_volume_availability_zones_retrieve.py +147 -0
- waldur_api_client/api/openstack_volume_types/__init__.py +0 -0
- waldur_api_client/api/openstack_volume_types/openstack_volume_types_list.py +271 -0
- waldur_api_client/api/openstack_volume_types/openstack_volume_types_retrieve.py +147 -0
- waldur_api_client/api/openstack_volumes/__init__.py +0 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_attach.py +111 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_detach.py +94 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_extend.py +111 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_list.py +641 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_partial_update.py +170 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_pull.py +92 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_retrieve.py +176 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_retype.py +111 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_snapshot.py +174 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_unlink.py +98 -0
- waldur_api_client/api/openstack_volumes/openstack_volumes_update.py +170 -0
- waldur_api_client/api/organization_groups/__init__.py +0 -0
- waldur_api_client/api/organization_groups/organization_groups_create.py +156 -0
- waldur_api_client/api/organization_groups/organization_groups_destroy.py +92 -0
- waldur_api_client/api/organization_groups/organization_groups_list.py +238 -0
- waldur_api_client/api/organization_groups/organization_groups_partial_update.py +170 -0
- waldur_api_client/api/organization_groups/organization_groups_retrieve.py +147 -0
- waldur_api_client/api/organization_groups/organization_groups_update.py +170 -0
- waldur_api_client/api/override_settings/__init__.py +0 -0
- waldur_api_client/api/override_settings/override_settings.py +101 -0
- waldur_api_client/api/override_settings/override_settings_retrieve.py +122 -0
- waldur_api_client/api/payment_profiles/__init__.py +0 -0
- waldur_api_client/api/payment_profiles/payment_profiles_create.py +156 -0
- waldur_api_client/api/payment_profiles/payment_profiles_destroy.py +92 -0
- waldur_api_client/api/payment_profiles/payment_profiles_enable.py +92 -0
- waldur_api_client/api/payment_profiles/payment_profiles_list.py +269 -0
- waldur_api_client/api/payment_profiles/payment_profiles_partial_update.py +170 -0
- waldur_api_client/api/payment_profiles/payment_profiles_retrieve.py +147 -0
- waldur_api_client/api/payment_profiles/payment_profiles_update.py +170 -0
- waldur_api_client/api/payments/__init__.py +0 -0
- waldur_api_client/api/payments/payments_create.py +152 -0
- waldur_api_client/api/payments/payments_destroy.py +92 -0
- waldur_api_client/api/payments/payments_link_to_invoice.py +174 -0
- waldur_api_client/api/payments/payments_list.py +227 -0
- waldur_api_client/api/payments/payments_partial_update.py +166 -0
- waldur_api_client/api/payments/payments_retrieve.py +143 -0
- waldur_api_client/api/payments/payments_unlink_from_invoice.py +94 -0
- waldur_api_client/api/payments/payments_update.py +166 -0
- waldur_api_client/api/project_credits/__init__.py +0 -0
- waldur_api_client/api/project_credits/project_credits_create.py +152 -0
- waldur_api_client/api/project_credits/project_credits_destroy.py +92 -0
- waldur_api_client/api/project_credits/project_credits_list.py +279 -0
- waldur_api_client/api/project_credits/project_credits_partial_update.py +166 -0
- waldur_api_client/api/project_credits/project_credits_retrieve.py +143 -0
- waldur_api_client/api/project_credits/project_credits_update.py +166 -0
- waldur_api_client/api/project_quotas/__init__.py +0 -0
- waldur_api_client/api/project_quotas/project_quotas_list.py +178 -0
- waldur_api_client/api/project_types/__init__.py +0 -0
- waldur_api_client/api/project_types/project_types_list.py +204 -0
- waldur_api_client/api/project_types/project_types_retrieve.py +143 -0
- waldur_api_client/api/projects/__init__.py +0 -0
- waldur_api_client/api/projects/projects_add_user.py +170 -0
- waldur_api_client/api/projects/projects_create.py +160 -0
- waldur_api_client/api/projects/projects_delete_user.py +109 -0
- waldur_api_client/api/projects/projects_destroy.py +94 -0
- waldur_api_client/api/projects/projects_list.py +445 -0
- waldur_api_client/api/projects/projects_list_users_list.py +360 -0
- waldur_api_client/api/projects/projects_marketplace_checklists_list.py +151 -0
- waldur_api_client/api/projects/projects_move_project.py +166 -0
- waldur_api_client/api/projects/projects_other_users_list.py +372 -0
- waldur_api_client/api/projects/projects_partial_update.py +166 -0
- waldur_api_client/api/projects/projects_retrieve.py +172 -0
- waldur_api_client/api/projects/projects_stats_retrieve.py +172 -0
- waldur_api_client/api/projects/projects_update.py +166 -0
- waldur_api_client/api/projects/projects_update_user.py +170 -0
- waldur_api_client/api/promotions_campaigns/__init__.py +0 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_activate.py +96 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_create.py +152 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_destroy.py +92 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_list.py +339 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_orders_list.py +192 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_resources_list.py +192 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_retrieve.py +143 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_terminate.py +96 -0
- waldur_api_client/api/promotions_campaigns/promotions_campaigns_update.py +166 -0
- waldur_api_client/api/proposal_proposals/__init__.py +0 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_add_user.py +170 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_approve.py +111 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_attach_document.py +111 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_create.py +152 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_delete_user.py +109 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_destroy.py +92 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_list.py +290 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_list_users_list.py +360 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_reject.py +111 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_resources_destroy.py +98 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_resources_list.py +192 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_resources_partial_update.py +182 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_resources_retrieve.py +159 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_resources_set.py +174 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_resources_update.py +182 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_retrieve.py +143 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_submit.py +94 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_update_project_details.py +111 -0
- waldur_api_client/api/proposal_proposals/proposal_proposals_update_user.py +170 -0
- waldur_api_client/api/proposal_protected_calls/__init__.py +0 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_activate.py +94 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_add_user.py +170 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_archive.py +94 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_attach_documents.py +111 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_create.py +152 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_delete_user.py +109 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_destroy.py +92 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_detach_documents.py +111 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_list.py +358 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_list_users_list.py +360 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_offerings_destroy.py +98 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_offerings_list.py +192 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_offerings_partial_update.py +182 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_offerings_retrieve.py +159 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_offerings_set.py +174 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_offerings_update.py +182 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_partial_update.py +166 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_resource_templates_destroy.py +98 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_resource_templates_list.py +192 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_resource_templates_partial_update.py +182 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_resource_templates_retrieve.py +159 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_resource_templates_set.py +174 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_resource_templates_update.py +182 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_retrieve.py +172 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_close.py +178 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_destroy.py +98 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_list.py +192 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_partial_update.py +182 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_retrieve.py +159 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_set.py +174 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_rounds_update.py +182 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_update.py +166 -0
- waldur_api_client/api/proposal_protected_calls/proposal_protected_calls_update_user.py +170 -0
- waldur_api_client/api/proposal_public_calls/__init__.py +0 -0
- waldur_api_client/api/proposal_public_calls/proposal_public_calls_list.py +358 -0
- waldur_api_client/api/proposal_public_calls/proposal_public_calls_retrieve.py +172 -0
- waldur_api_client/api/proposal_requested_offerings/__init__.py +0 -0
- waldur_api_client/api/proposal_requested_offerings/proposal_requested_offerings_accept.py +94 -0
- waldur_api_client/api/proposal_requested_offerings/proposal_requested_offerings_cancel.py +94 -0
- waldur_api_client/api/proposal_requested_offerings/proposal_requested_offerings_list.py +323 -0
- waldur_api_client/api/proposal_requested_offerings/proposal_requested_offerings_retrieve.py +147 -0
- waldur_api_client/api/proposal_requested_resources/__init__.py +0 -0
- waldur_api_client/api/proposal_requested_resources/proposal_requested_resources_list.py +316 -0
- waldur_api_client/api/proposal_requested_resources/proposal_requested_resources_retrieve.py +147 -0
- waldur_api_client/api/proposal_reviews/__init__.py +0 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_accept.py +94 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_create.py +156 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_destroy.py +92 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_list.py +323 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_partial_update.py +170 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_reject.py +94 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_retrieve.py +147 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_submit.py +111 -0
- waldur_api_client/api/proposal_reviews/proposal_reviews_update.py +170 -0
- waldur_api_client/api/provider_invoice_items/__init__.py +0 -0
- waldur_api_client/api/provider_invoice_items/provider_invoice_items_list.py +282 -0
- waldur_api_client/api/provider_invoice_items/provider_invoice_items_retrieve.py +142 -0
- waldur_api_client/api/query/__init__.py +0 -0
- waldur_api_client/api/query/query.py +162 -0
- waldur_api_client/api/rabbitmq_user_stats/__init__.py +0 -0
- waldur_api_client/api/rabbitmq_user_stats/rabbitmq_user_stats_list.py +174 -0
- waldur_api_client/api/rabbitmq_vhost_stats/__init__.py +0 -0
- waldur_api_client/api/rabbitmq_vhost_stats/rabbitmq_vhost_stats_list.py +127 -0
- waldur_api_client/api/rancher_apps/__init__.py +0 -0
- waldur_api_client/api/rancher_apps/rancher_apps_create.py +156 -0
- waldur_api_client/api/rancher_apps/rancher_apps_destroy.py +92 -0
- waldur_api_client/api/rancher_apps/rancher_apps_list.py +548 -0
- waldur_api_client/api/rancher_apps/rancher_apps_partial_update.py +170 -0
- waldur_api_client/api/rancher_apps/rancher_apps_pull.py +92 -0
- waldur_api_client/api/rancher_apps/rancher_apps_retrieve.py +176 -0
- waldur_api_client/api/rancher_apps/rancher_apps_unlink.py +98 -0
- waldur_api_client/api/rancher_apps/rancher_apps_update.py +170 -0
- waldur_api_client/api/rancher_catalogs/__init__.py +0 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_create.py +156 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_destroy.py +92 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_list.py +174 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_partial_update.py +170 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_refresh.py +170 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_retrieve.py +147 -0
- waldur_api_client/api/rancher_catalogs/rancher_catalogs_update.py +170 -0
- waldur_api_client/api/rancher_cluster_security_groups/__init__.py +0 -0
- waldur_api_client/api/rancher_cluster_security_groups/rancher_cluster_security_groups_list.py +223 -0
- waldur_api_client/api/rancher_cluster_security_groups/rancher_cluster_security_groups_partial_update.py +170 -0
- waldur_api_client/api/rancher_cluster_security_groups/rancher_cluster_security_groups_retrieve.py +147 -0
- waldur_api_client/api/rancher_cluster_security_groups/rancher_cluster_security_groups_update.py +170 -0
- waldur_api_client/api/rancher_cluster_templates/__init__.py +0 -0
- waldur_api_client/api/rancher_cluster_templates/rancher_cluster_templates_list.py +174 -0
- waldur_api_client/api/rancher_cluster_templates/rancher_cluster_templates_retrieve.py +147 -0
- waldur_api_client/api/rancher_clusters/__init__.py +0 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_create.py +156 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_create_management_security_group.py +170 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_destroy.py +92 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_import_yaml.py +170 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_list.py +494 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_partial_update.py +170 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_pull.py +92 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_retrieve.py +176 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_unlink.py +98 -0
- waldur_api_client/api/rancher_clusters/rancher_clusters_update.py +170 -0
- waldur_api_client/api/rancher_hpas/__init__.py +0 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_create.py +152 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_destroy.py +92 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_list.py +310 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_partial_update.py +166 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_pull.py +92 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_retrieve.py +143 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_unlink.py +98 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_update.py +166 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_yaml_retrieve.py +143 -0
- waldur_api_client/api/rancher_hpas/rancher_hpas_yaml_update.py +166 -0
- waldur_api_client/api/rancher_ingresses/__init__.py +0 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_create.py +156 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_destroy.py +92 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_list.py +548 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_partial_update.py +170 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_pull.py +92 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_retrieve.py +176 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_unlink.py +98 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_update.py +170 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_yaml_retrieve.py +176 -0
- waldur_api_client/api/rancher_ingresses/rancher_ingresses_yaml_update.py +170 -0
- waldur_api_client/api/rancher_namespaces/__init__.py +0 -0
- waldur_api_client/api/rancher_namespaces/rancher_namespaces_list.py +297 -0
- waldur_api_client/api/rancher_namespaces/rancher_namespaces_retrieve.py +147 -0
- waldur_api_client/api/rancher_nodes/__init__.py +0 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_console_log_retrieve.py +173 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_console_retrieve.py +147 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_create.py +156 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_destroy.py +92 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_link_openstack.py +111 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_list.py +193 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_pull.py +92 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_retrieve.py +143 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_unlink.py +98 -0
- waldur_api_client/api/rancher_nodes/rancher_nodes_unlink_openstack.py +94 -0
- waldur_api_client/api/rancher_projects/__init__.py +0 -0
- waldur_api_client/api/rancher_projects/rancher_projects_list.py +256 -0
- waldur_api_client/api/rancher_projects/rancher_projects_retrieve.py +147 -0
- waldur_api_client/api/rancher_projects/rancher_projects_secrets_retrieve.py +151 -0
- waldur_api_client/api/rancher_role_templates/__init__.py +0 -0
- waldur_api_client/api/rancher_role_templates/rancher_role_templates_list.py +246 -0
- waldur_api_client/api/rancher_role_templates/rancher_role_templates_retrieve.py +143 -0
- waldur_api_client/api/rancher_services/__init__.py +0 -0
- waldur_api_client/api/rancher_services/rancher_services_create.py +156 -0
- waldur_api_client/api/rancher_services/rancher_services_destroy.py +92 -0
- waldur_api_client/api/rancher_services/rancher_services_list.py +548 -0
- waldur_api_client/api/rancher_services/rancher_services_partial_update.py +170 -0
- waldur_api_client/api/rancher_services/rancher_services_pull.py +92 -0
- waldur_api_client/api/rancher_services/rancher_services_retrieve.py +176 -0
- waldur_api_client/api/rancher_services/rancher_services_unlink.py +98 -0
- waldur_api_client/api/rancher_services/rancher_services_update.py +170 -0
- waldur_api_client/api/rancher_services/rancher_services_yaml_retrieve.py +176 -0
- waldur_api_client/api/rancher_services/rancher_services_yaml_update.py +170 -0
- waldur_api_client/api/rancher_template_versions/__init__.py +0 -0
- waldur_api_client/api/rancher_template_versions/rancher_template_versions_retrieve.py +159 -0
- waldur_api_client/api/rancher_templates/__init__.py +0 -0
- waldur_api_client/api/rancher_templates/rancher_templates_list.py +315 -0
- waldur_api_client/api/rancher_templates/rancher_templates_retrieve.py +147 -0
- waldur_api_client/api/rancher_users/__init__.py +0 -0
- waldur_api_client/api/rancher_users/rancher_users_list.py +274 -0
- waldur_api_client/api/rancher_users/rancher_users_retrieve.py +143 -0
- waldur_api_client/api/rancher_workloads/__init__.py +0 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_create.py +156 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_destroy.py +92 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_list.py +315 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_partial_update.py +170 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_redeploy.py +92 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_retrieve.py +147 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_update.py +170 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_yaml_retrieve.py +147 -0
- waldur_api_client/api/rancher_workloads/rancher_workloads_yaml_update.py +170 -0
- waldur_api_client/api/remote_eduteams/__init__.py +0 -0
- waldur_api_client/api/remote_eduteams/remote_eduteams.py +160 -0
- waldur_api_client/api/remote_waldur_api/__init__.py +0 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_cancel_termination.py +93 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_import_offering.py +160 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_details.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_invoices.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_orders.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_resources.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_robot_accounts.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_usage.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_offering_users.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_pull_order.py +93 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_push_project_data.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_remote_categories.py +200 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_remote_customers.py +200 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_shared_offerings.py +215 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_sync_resource.py +91 -0
- waldur_api_client/api/remote_waldur_api/remote_waldur_api_sync_resource_project_permissions.py +91 -0
- waldur_api_client/api/roles/__init__.py +0 -0
- waldur_api_client/api/roles/roles_create.py +152 -0
- waldur_api_client/api/roles/roles_destroy.py +92 -0
- waldur_api_client/api/roles/roles_disable.py +92 -0
- waldur_api_client/api/roles/roles_enable.py +92 -0
- waldur_api_client/api/roles/roles_list.py +242 -0
- waldur_api_client/api/roles/roles_partial_update.py +166 -0
- waldur_api_client/api/roles/roles_retrieve.py +172 -0
- waldur_api_client/api/roles/roles_update.py +166 -0
- waldur_api_client/api/roles/roles_update_descriptions_update.py +170 -0
- waldur_api_client/api/service_settings/__init__.py +0 -0
- waldur_api_client/api/service_settings/service_settings_list.py +350 -0
- waldur_api_client/api/service_settings/service_settings_retrieve.py +176 -0
- waldur_api_client/api/slurm_allocation_user_usage/__init__.py +0 -0
- waldur_api_client/api/slurm_allocation_user_usage/slurm_allocation_user_usage_list.py +271 -0
- waldur_api_client/api/slurm_allocation_user_usage/slurm_allocation_user_usage_retrieve.py +146 -0
- waldur_api_client/api/slurm_allocations/__init__.py +0 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_create.py +156 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_destroy.py +92 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_list.py +509 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_partial_update.py +170 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_pull.py +92 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_retrieve.py +176 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_set_limits.py +170 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_unlink.py +98 -0
- waldur_api_client/api/slurm_allocations/slurm_allocations_update.py +170 -0
- waldur_api_client/api/slurm_associations/__init__.py +0 -0
- waldur_api_client/api/slurm_associations/slurm_associations_list.py +208 -0
- waldur_api_client/api/slurm_associations/slurm_associations_retrieve.py +147 -0
- waldur_api_client/api/slurm_jobs/__init__.py +0 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_create.py +152 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_destroy.py +92 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_list.py +197 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_partial_update.py +166 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_pull.py +92 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_retrieve.py +172 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_unlink.py +98 -0
- waldur_api_client/api/slurm_jobs/slurm_jobs_update.py +166 -0
- waldur_api_client/api/support_attachments/__init__.py +0 -0
- waldur_api_client/api/support_attachments/support_attachments_create.py +152 -0
- waldur_api_client/api/support_attachments/support_attachments_destroy.py +92 -0
- waldur_api_client/api/support_attachments/support_attachments_list.py +231 -0
- waldur_api_client/api/support_attachments/support_attachments_retrieve.py +172 -0
- waldur_api_client/api/support_comments/__init__.py +0 -0
- waldur_api_client/api/support_comments/support_comments_destroy.py +92 -0
- waldur_api_client/api/support_comments/support_comments_list.py +306 -0
- waldur_api_client/api/support_comments/support_comments_partial_update.py +166 -0
- waldur_api_client/api/support_comments/support_comments_retrieve.py +143 -0
- waldur_api_client/api/support_comments/support_comments_update.py +166 -0
- waldur_api_client/api/support_feedback_average_report/__init__.py +0 -0
- waldur_api_client/api/support_feedback_average_report/support_feedback_average_report_retrieve.py +77 -0
- waldur_api_client/api/support_feedback_report/__init__.py +0 -0
- waldur_api_client/api/support_feedback_report/support_feedback_report_retrieve.py +77 -0
- waldur_api_client/api/support_feedbacks/__init__.py +0 -0
- waldur_api_client/api/support_feedbacks/support_feedbacks_create.py +156 -0
- waldur_api_client/api/support_feedbacks/support_feedbacks_list.py +323 -0
- waldur_api_client/api/support_feedbacks/support_feedbacks_retrieve.py +143 -0
- waldur_api_client/api/support_issues/__init__.py +0 -0
- waldur_api_client/api/support_issues/support_issues_comment.py +166 -0
- waldur_api_client/api/support_issues/support_issues_create.py +152 -0
- waldur_api_client/api/support_issues/support_issues_destroy.py +92 -0
- waldur_api_client/api/support_issues/support_issues_list.py +503 -0
- waldur_api_client/api/support_issues/support_issues_partial_update.py +166 -0
- waldur_api_client/api/support_issues/support_issues_retrieve.py +143 -0
- waldur_api_client/api/support_issues/support_issues_sync.py +166 -0
- waldur_api_client/api/support_issues/support_issues_update.py +166 -0
- waldur_api_client/api/support_jira_webhook/__init__.py +0 -0
- waldur_api_client/api/support_jira_webhook/support_jira_webhook.py +156 -0
- waldur_api_client/api/support_priorities/__init__.py +0 -0
- waldur_api_client/api/support_priorities/support_priorities_list.py +204 -0
- waldur_api_client/api/support_priorities/support_priorities_retrieve.py +143 -0
- waldur_api_client/api/support_smax_webhook/__init__.py +0 -0
- waldur_api_client/api/support_smax_webhook/support_smax_webhook.py +156 -0
- waldur_api_client/api/support_statistics/__init__.py +0 -0
- waldur_api_client/api/support_statistics/support_statistics_retrieve.py +118 -0
- waldur_api_client/api/support_templates/__init__.py +0 -0
- waldur_api_client/api/support_templates/support_templates_create.py +152 -0
- waldur_api_client/api/support_templates/support_templates_create_attachments.py +113 -0
- waldur_api_client/api/support_templates/support_templates_delete_attachments.py +109 -0
- waldur_api_client/api/support_templates/support_templates_destroy.py +92 -0
- waldur_api_client/api/support_templates/support_templates_list.py +174 -0
- waldur_api_client/api/support_templates/support_templates_partial_update.py +166 -0
- waldur_api_client/api/support_templates/support_templates_retrieve.py +143 -0
- waldur_api_client/api/support_templates/support_templates_update.py +166 -0
- waldur_api_client/api/support_users/__init__.py +0 -0
- waldur_api_client/api/support_users/support_users_list.py +219 -0
- waldur_api_client/api/support_users/support_users_retrieve.py +143 -0
- waldur_api_client/api/support_zammad_webhook/__init__.py +0 -0
- waldur_api_client/api/support_zammad_webhook/support_zammad_webhook.py +77 -0
- waldur_api_client/api/sync_issues/__init__.py +0 -0
- waldur_api_client/api/sync_issues/sync_issues.py +81 -0
- waldur_api_client/api/sync_issues/sync_issues_retrieve.py +81 -0
- waldur_api_client/api/user_agreements/__init__.py +0 -0
- waldur_api_client/api/user_agreements/user_agreements_create.py +152 -0
- waldur_api_client/api/user_agreements/user_agreements_destroy.py +92 -0
- waldur_api_client/api/user_agreements/user_agreements_list.py +194 -0
- waldur_api_client/api/user_agreements/user_agreements_partial_update.py +166 -0
- waldur_api_client/api/user_agreements/user_agreements_retrieve.py +143 -0
- waldur_api_client/api/user_agreements/user_agreements_update.py +166 -0
- waldur_api_client/api/user_group_invitations/__init__.py +0 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_cancel.py +94 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_create.py +156 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_list.py +279 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_projects_list.py +192 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_retrieve.py +147 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_submit_request.py +147 -0
- waldur_api_client/api/user_invitations/__init__.py +0 -0
- waldur_api_client/api/user_invitations/user_invitations_accept.py +94 -0
- waldur_api_client/api/user_invitations/user_invitations_approve.py +105 -0
- waldur_api_client/api/user_invitations/user_invitations_cancel.py +92 -0
- waldur_api_client/api/user_invitations/user_invitations_check.py +147 -0
- waldur_api_client/api/user_invitations/user_invitations_create.py +152 -0
- waldur_api_client/api/user_invitations/user_invitations_delete.py +92 -0
- waldur_api_client/api/user_invitations/user_invitations_details_retrieve.py +147 -0
- waldur_api_client/api/user_invitations/user_invitations_list.py +317 -0
- waldur_api_client/api/user_invitations/user_invitations_reject.py +105 -0
- waldur_api_client/api/user_invitations/user_invitations_retrieve.py +143 -0
- waldur_api_client/api/user_invitations/user_invitations_send.py +92 -0
- waldur_api_client/api/user_permission_requests/__init__.py +0 -0
- waldur_api_client/api/user_permission_requests/user_permission_requests_approve.py +166 -0
- waldur_api_client/api/user_permission_requests/user_permission_requests_list.py +275 -0
- waldur_api_client/api/user_permission_requests/user_permission_requests_reject.py +166 -0
- waldur_api_client/api/user_permission_requests/user_permission_requests_retrieve.py +147 -0
- waldur_api_client/api/user_permissions/__init__.py +0 -0
- waldur_api_client/api/user_permissions/user_permissions_list.py +427 -0
- waldur_api_client/api/user_permissions/user_permissions_retrieve.py +143 -0
- waldur_api_client/api/users/__init__.py +0 -0
- waldur_api_client/api/users/users_cancel_change_email.py +94 -0
- waldur_api_client/api/users/users_change_email.py +111 -0
- waldur_api_client/api/users/users_change_password.py +111 -0
- waldur_api_client/api/users/users_confirm_email.py +103 -0
- waldur_api_client/api/users/users_create.py +152 -0
- waldur_api_client/api/users/users_destroy.py +92 -0
- waldur_api_client/api/users/users_list.py +563 -0
- waldur_api_client/api/users/users_marketplace_checklist_stats_retrieve.py +142 -0
- waldur_api_client/api/users/users_me_retrieve.py +162 -0
- waldur_api_client/api/users/users_partial_update.py +166 -0
- waldur_api_client/api/users/users_pull_remote_user.py +94 -0
- waldur_api_client/api/users/users_refresh_token.py +147 -0
- waldur_api_client/api/users/users_retrieve.py +172 -0
- waldur_api_client/api/users/users_token_retrieve.py +143 -0
- waldur_api_client/api/users/users_update.py +166 -0
- waldur_api_client/api/version/__init__.py +0 -0
- waldur_api_client/api/version/version_retrieve.py +126 -0
- waldur_api_client/api/vmware_clusters/__init__.py +0 -0
- waldur_api_client/api/vmware_clusters/vmware_clusters_list.py +256 -0
- waldur_api_client/api/vmware_clusters/vmware_clusters_retrieve.py +143 -0
- waldur_api_client/api/vmware_datastores/__init__.py +0 -0
- waldur_api_client/api/vmware_datastores/vmware_datastores_list.py +256 -0
- waldur_api_client/api/vmware_datastores/vmware_datastores_retrieve.py +147 -0
- waldur_api_client/api/vmware_disks/__init__.py +0 -0
- waldur_api_client/api/vmware_disks/vmware_disks_destroy.py +92 -0
- waldur_api_client/api/vmware_disks/vmware_disks_extend.py +174 -0
- waldur_api_client/api/vmware_disks/vmware_disks_list.py +527 -0
- waldur_api_client/api/vmware_disks/vmware_disks_pull.py +92 -0
- waldur_api_client/api/vmware_disks/vmware_disks_retrieve.py +172 -0
- waldur_api_client/api/vmware_disks/vmware_disks_unlink.py +98 -0
- waldur_api_client/api/vmware_folders/__init__.py +0 -0
- waldur_api_client/api/vmware_folders/vmware_folders_list.py +256 -0
- waldur_api_client/api/vmware_folders/vmware_folders_retrieve.py +143 -0
- waldur_api_client/api/vmware_limits/__init__.py +0 -0
- waldur_api_client/api/vmware_limits/vmware_limits_retrieve.py +143 -0
- waldur_api_client/api/vmware_networks/__init__.py +0 -0
- waldur_api_client/api/vmware_networks/vmware_networks_list.py +274 -0
- waldur_api_client/api/vmware_networks/vmware_networks_retrieve.py +143 -0
- waldur_api_client/api/vmware_ports/__init__.py +0 -0
- waldur_api_client/api/vmware_ports/vmware_ports_destroy.py +92 -0
- waldur_api_client/api/vmware_ports/vmware_ports_list.py +560 -0
- waldur_api_client/api/vmware_ports/vmware_ports_pull.py +92 -0
- waldur_api_client/api/vmware_ports/vmware_ports_retrieve.py +172 -0
- waldur_api_client/api/vmware_ports/vmware_ports_unlink.py +98 -0
- waldur_api_client/api/vmware_templates/__init__.py +0 -0
- waldur_api_client/api/vmware_templates/vmware_templates_list.py +238 -0
- waldur_api_client/api/vmware_templates/vmware_templates_retrieve.py +147 -0
- waldur_api_client/api/vmware_virtual_machine/__init__.py +0 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_console_retrieve.py +147 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_create.py +156 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_create_disk.py +166 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_create_port.py +166 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_destroy.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_list.py +509 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_partial_update.py +170 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_pull.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_reboot_guest.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_reset.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_retrieve.py +176 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_shutdown_guest.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_start.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_stop.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_suspend.py +92 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_unlink.py +98 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_update.py +170 -0
- waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_retrieve.py +147 -0
- waldur_api_client/client.py +268 -0
- waldur_api_client/errors.py +16 -0
- waldur_api_client/models/__init__.py +2441 -0
- waldur_api_client/models/access_subnet.py +86 -0
- waldur_api_client/models/access_subnet_request.py +77 -0
- waldur_api_client/models/account_name_generation_policy_enum.py +8 -0
- waldur_api_client/models/admin_announcement.py +151 -0
- waldur_api_client/models/admin_announcement_request.py +96 -0
- waldur_api_client/models/admin_announcement_type_enum.py +10 -0
- waldur_api_client/models/admin_announcements_list_field_item.py +14 -0
- waldur_api_client/models/admin_announcements_list_o_item.py +17 -0
- waldur_api_client/models/admin_announcements_list_type_item.py +10 -0
- waldur_api_client/models/admin_announcements_retrieve_field_item.py +14 -0
- waldur_api_client/models/agreement_type_enum.py +9 -0
- waldur_api_client/models/allocation_time_enum.py +9 -0
- waldur_api_client/models/answer_list.py +81 -0
- waldur_api_client/models/answer_submit.py +73 -0
- waldur_api_client/models/answer_submit_request.py +73 -0
- waldur_api_client/models/attachment.py +165 -0
- waldur_api_client/models/attachment_request.py +69 -0
- waldur_api_client/models/auth_result.py +109 -0
- waldur_api_client/models/auth_result_request.py +58 -0
- waldur_api_client/models/auth_result_state_enum.py +12 -0
- waldur_api_client/models/auth_result_uuid_request.py +59 -0
- waldur_api_client/models/auth_token.py +123 -0
- waldur_api_client/models/aws_image.py +89 -0
- waldur_api_client/models/aws_instance.py +725 -0
- waldur_api_client/models/aws_instance_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/aws_instance_request.py +127 -0
- waldur_api_client/models/aws_instance_resize.py +58 -0
- waldur_api_client/models/aws_instance_resize_request.py +58 -0
- waldur_api_client/models/aws_instances_list_field_item.py +59 -0
- waldur_api_client/models/aws_instances_list_state_item.py +15 -0
- waldur_api_client/models/aws_instances_retrieve_field_item.py +59 -0
- waldur_api_client/models/aws_region.py +75 -0
- waldur_api_client/models/aws_size.py +129 -0
- waldur_api_client/models/aws_volume.py +627 -0
- waldur_api_client/models/aws_volume_attach.py +66 -0
- waldur_api_client/models/aws_volume_attach_request.py +66 -0
- waldur_api_client/models/aws_volume_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/aws_volume_request.py +110 -0
- waldur_api_client/models/aws_volumes_list_field_item.py +47 -0
- waldur_api_client/models/aws_volumes_retrieve_field_item.py +47 -0
- waldur_api_client/models/azure_image.py +99 -0
- waldur_api_client/models/azure_location.py +117 -0
- waldur_api_client/models/azure_public_ip.py +572 -0
- waldur_api_client/models/azure_public_ip_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/azure_public_ip_request.py +101 -0
- waldur_api_client/models/azure_public_ips_list_field_item.py +43 -0
- waldur_api_client/models/azure_public_ips_list_state_item.py +15 -0
- waldur_api_client/models/azure_public_ips_retrieve_field_item.py +43 -0
- waldur_api_client/models/azure_resource_group.py +566 -0
- waldur_api_client/models/azure_resource_group_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/azure_resource_groups_list_field_item.py +42 -0
- waldur_api_client/models/azure_resource_groups_retrieve_field_item.py +42 -0
- waldur_api_client/models/azure_size.py +115 -0
- waldur_api_client/models/azure_sql_database.py +665 -0
- waldur_api_client/models/azure_sql_database_create.py +69 -0
- waldur_api_client/models/azure_sql_database_create_request.py +69 -0
- waldur_api_client/models/azure_sql_database_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/azure_sql_database_request.py +133 -0
- waldur_api_client/models/azure_sql_databases_list_field_item.py +49 -0
- waldur_api_client/models/azure_sql_databases_list_state_item.py +15 -0
- waldur_api_client/models/azure_sql_databases_retrieve_field_item.py +49 -0
- waldur_api_client/models/azure_sql_server.py +639 -0
- waldur_api_client/models/azure_sql_server_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/azure_sql_server_request.py +113 -0
- waldur_api_client/models/azure_sql_servers_list_field_item.py +49 -0
- waldur_api_client/models/azure_sql_servers_list_state_item.py +15 -0
- waldur_api_client/models/azure_sql_servers_retrieve_field_item.py +49 -0
- waldur_api_client/models/azure_virtual_machine.py +811 -0
- waldur_api_client/models/azure_virtual_machine_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/azure_virtual_machine_request.py +138 -0
- waldur_api_client/models/azure_virtualmachines_list_field_item.py +66 -0
- waldur_api_client/models/azure_virtualmachines_list_state_item.py +15 -0
- waldur_api_client/models/azure_virtualmachines_retrieve_field_item.py +66 -0
- waldur_api_client/models/backend_id_request.py +58 -0
- waldur_api_client/models/backend_metadata.py +96 -0
- waldur_api_client/models/base_component_usage.py +130 -0
- waldur_api_client/models/base_provider_plan.py +300 -0
- waldur_api_client/models/base_provider_plan_future_prices.py +43 -0
- waldur_api_client/models/base_provider_plan_prices.py +43 -0
- waldur_api_client/models/base_provider_plan_quotas.py +43 -0
- waldur_api_client/models/base_provider_plan_request.py +143 -0
- waldur_api_client/models/base_public_plan.py +300 -0
- waldur_api_client/models/base_public_plan_future_prices.py +43 -0
- waldur_api_client/models/base_public_plan_prices.py +43 -0
- waldur_api_client/models/base_public_plan_quotas.py +43 -0
- waldur_api_client/models/base_public_plan_request.py +151 -0
- waldur_api_client/models/basic_customer.py +67 -0
- waldur_api_client/models/basic_user.py +123 -0
- waldur_api_client/models/billing_type_enum.py +12 -0
- waldur_api_client/models/billing_unit.py +12 -0
- waldur_api_client/models/blank_enum.py +8 -0
- waldur_api_client/models/booking.py +83 -0
- waldur_api_client/models/booking_offerings_list_field_item.py +69 -0
- waldur_api_client/models/booking_offerings_retrieve_field_item.py +69 -0
- waldur_api_client/models/booking_resource.py +1170 -0
- waldur_api_client/models/booking_resource_attributes.py +43 -0
- waldur_api_client/models/booking_resource_current_usages.py +43 -0
- waldur_api_client/models/booking_resource_limit_usage.py +43 -0
- waldur_api_client/models/booking_resource_limits.py +43 -0
- waldur_api_client/models/booking_resources_list_field_item.py +87 -0
- waldur_api_client/models/booking_resources_list_o_item.py +15 -0
- waldur_api_client/models/booking_resources_list_state_item.py +13 -0
- waldur_api_client/models/booking_resources_retrieve_field_item.py +87 -0
- waldur_api_client/models/booking_slot.py +92 -0
- waldur_api_client/models/broadcast_message.py +176 -0
- waldur_api_client/models/broadcast_message_request.py +108 -0
- waldur_api_client/models/broadcast_message_state_enum.py +10 -0
- waldur_api_client/models/broadcast_messages_list_field_item.py +16 -0
- waldur_api_client/models/broadcast_messages_list_o_item.py +13 -0
- waldur_api_client/models/broadcast_messages_list_state.py +10 -0
- waldur_api_client/models/broadcast_messages_recipients_retrieve_field_item.py +16 -0
- waldur_api_client/models/broadcast_messages_retrieve_field_item.py +16 -0
- waldur_api_client/models/call_attach_documents_request.py +79 -0
- waldur_api_client/models/call_detach_documents_request.py +67 -0
- waldur_api_client/models/call_document.py +131 -0
- waldur_api_client/models/call_document_request.py +91 -0
- waldur_api_client/models/call_managing_organisation.py +164 -0
- waldur_api_client/models/call_managing_organisation_request.py +101 -0
- waldur_api_client/models/call_managing_organisation_stat.py +114 -0
- waldur_api_client/models/call_managing_organisations_list_o_item.py +9 -0
- waldur_api_client/models/call_managing_organisations_list_users_list_field_item.py +19 -0
- waldur_api_client/models/call_managing_organisations_list_users_list_o_item.py +14 -0
- waldur_api_client/models/call_resource_template.py +201 -0
- waldur_api_client/models/call_resource_template_request.py +104 -0
- waldur_api_client/models/call_round.py +111 -0
- waldur_api_client/models/call_states.py +10 -0
- waldur_api_client/models/campaign.py +226 -0
- waldur_api_client/models/campaign_offering.py +67 -0
- waldur_api_client/models/campaign_request.py +196 -0
- waldur_api_client/models/category_column.py +136 -0
- waldur_api_client/models/category_column_request.py +127 -0
- waldur_api_client/models/category_component.py +85 -0
- waldur_api_client/models/category_component_request.py +86 -0
- waldur_api_client/models/category_component_usage.py +169 -0
- waldur_api_client/models/category_components.py +109 -0
- waldur_api_client/models/category_components_request.py +102 -0
- waldur_api_client/models/category_group.py +113 -0
- waldur_api_client/models/category_group_request.py +101 -0
- waldur_api_client/models/category_help_article.py +79 -0
- waldur_api_client/models/category_help_article_request.py +80 -0
- waldur_api_client/models/category_help_articles.py +102 -0
- waldur_api_client/models/category_help_articles_request.py +104 -0
- waldur_api_client/models/category_serializer_for_for_nested_fields.py +75 -0
- waldur_api_client/models/category_serializer_for_for_nested_fields_request.py +58 -0
- waldur_api_client/models/checklist.py +110 -0
- waldur_api_client/models/checklist_category.py +114 -0
- waldur_api_client/models/checklist_customer_stats.py +91 -0
- waldur_api_client/models/checklist_question.py +127 -0
- waldur_api_client/models/cluster_security_group.py +97 -0
- waldur_api_client/models/cluster_security_group_request.py +72 -0
- waldur_api_client/models/comment.py +194 -0
- waldur_api_client/models/comment_request.py +69 -0
- waldur_api_client/models/component_stats.py +131 -0
- waldur_api_client/models/component_usage.py +276 -0
- waldur_api_client/models/component_usage_create_request.py +107 -0
- waldur_api_client/models/component_usage_item_request.py +86 -0
- waldur_api_client/models/component_usages_per_month_stats.py +115 -0
- waldur_api_client/models/component_usages_per_project.py +75 -0
- waldur_api_client/models/component_usages_stats.py +99 -0
- waldur_api_client/models/component_user_usage.py +304 -0
- waldur_api_client/models/component_user_usage_create_request.py +78 -0
- waldur_api_client/models/component_user_usage_limit.py +110 -0
- waldur_api_client/models/component_user_usage_limit_request.py +86 -0
- waldur_api_client/models/components_usage_stats.py +72 -0
- waldur_api_client/models/configuration_retrieve_response_200.py +43 -0
- waldur_api_client/models/confirm_email_request_request.py +58 -0
- waldur_api_client/models/console_url.py +58 -0
- waldur_api_client/models/constance_settings.py +1345 -0
- waldur_api_client/models/constance_settings_request.py +1478 -0
- waldur_api_client/models/core_auth_token.py +58 -0
- waldur_api_client/models/core_states.py +15 -0
- waldur_api_client/models/costs_for_period.py +76 -0
- waldur_api_client/models/count_projects_of_service_providers.py +99 -0
- waldur_api_client/models/count_projects_of_service_providers_grouped_by_oecd.py +107 -0
- waldur_api_client/models/count_stats.py +74 -0
- waldur_api_client/models/count_unique_users_connected_with_active_resources_of_service_provider.py +75 -0
- waldur_api_client/models/count_users_of_service_providers.py +99 -0
- waldur_api_client/models/country.py +66 -0
- waldur_api_client/models/country_enum.py +46 -0
- waldur_api_client/models/create_attachments_request.py +70 -0
- waldur_api_client/models/create_customer_credit.py +236 -0
- waldur_api_client/models/create_customer_credit_request.py +171 -0
- waldur_api_client/models/create_feedback.py +86 -0
- waldur_api_client/models/create_feedback_request.py +77 -0
- waldur_api_client/models/create_router.py +99 -0
- waldur_api_client/models/create_router_request.py +66 -0
- waldur_api_client/models/customer.py +675 -0
- waldur_api_client/models/customer_checklist_stat.py +74 -0
- waldur_api_client/models/customer_credit.py +232 -0
- waldur_api_client/models/customer_credit_consumption.py +68 -0
- waldur_api_client/models/customer_credit_request.py +145 -0
- waldur_api_client/models/customer_credits_consumptions_list_o_item.py +15 -0
- waldur_api_client/models/customer_credits_list_o_item.py +15 -0
- waldur_api_client/models/customer_details.py +150 -0
- waldur_api_client/models/customer_estimated_cost_policy.py +207 -0
- waldur_api_client/models/customer_estimated_cost_policy_request.py +102 -0
- waldur_api_client/models/customer_industry_flag_stats.py +90 -0
- waldur_api_client/models/customer_member_count.py +91 -0
- waldur_api_client/models/customer_oecd_code_stats.py +90 -0
- waldur_api_client/models/customer_permission_review.py +165 -0
- waldur_api_client/models/customer_permissions_reviews_list_o_item.py +11 -0
- waldur_api_client/models/customer_quotas.py +74 -0
- waldur_api_client/models/customer_request.py +283 -0
- waldur_api_client/models/customer_service_account.py +192 -0
- waldur_api_client/models/customer_service_account_request.py +106 -0
- waldur_api_client/models/customer_user.py +184 -0
- waldur_api_client/models/customers_list_field_item.py +52 -0
- waldur_api_client/models/customers_list_users_list_field_item.py +19 -0
- waldur_api_client/models/customers_list_users_list_o_item.py +14 -0
- waldur_api_client/models/customers_retrieve_field_item.py +52 -0
- waldur_api_client/models/customers_users_list_field_item.py +17 -0
- waldur_api_client/models/daily_quotas_retrieve_response_200.py +50 -0
- waldur_api_client/models/data_volume.py +97 -0
- waldur_api_client/models/data_volume_request.py +97 -0
- waldur_api_client/models/deciding_entity_enum.py +9 -0
- waldur_api_client/models/delete_attachments_request.py +67 -0
- waldur_api_client/models/detail_state.py +66 -0
- waldur_api_client/models/digital_ocean_droplet.py +748 -0
- waldur_api_client/models/digital_ocean_droplet_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/digital_ocean_droplet_request.py +127 -0
- waldur_api_client/models/digital_ocean_droplet_resize.py +58 -0
- waldur_api_client/models/digital_ocean_droplet_resize_request.py +66 -0
- waldur_api_client/models/digital_ocean_image.py +176 -0
- waldur_api_client/models/digital_ocean_region.py +75 -0
- waldur_api_client/models/digital_ocean_size.py +129 -0
- waldur_api_client/models/digitalocean_droplets_list_field_item.py +61 -0
- waldur_api_client/models/digitalocean_droplets_list_state_item.py +15 -0
- waldur_api_client/models/digitalocean_droplets_retrieve_field_item.py +61 -0
- waldur_api_client/models/digitalocean_images_list_o_item.py +11 -0
- waldur_api_client/models/direction_enum.py +9 -0
- waldur_api_client/models/discount_type_enum.py +9 -0
- waldur_api_client/models/dry_run.py +140 -0
- waldur_api_client/models/dry_run_request.py +116 -0
- waldur_api_client/models/dry_run_state_enum.py +11 -0
- waldur_api_client/models/dry_run_type_enum.py +11 -0
- waldur_api_client/models/email_hook.py +184 -0
- waldur_api_client/models/email_hook_request.py +109 -0
- waldur_api_client/models/email_log.py +101 -0
- waldur_api_client/models/email_logs_list_o_item.py +11 -0
- waldur_api_client/models/endpoint_uuid.py +59 -0
- waldur_api_client/models/endpoint_uuid_request.py +59 -0
- waldur_api_client/models/ethertype_enum.py +9 -0
- waldur_api_client/models/event.py +111 -0
- waldur_api_client/models/event_groups_enum.py +23 -0
- waldur_api_client/models/event_stats.py +74 -0
- waldur_api_client/models/event_subscription.py +151 -0
- waldur_api_client/models/event_subscription_request.py +67 -0
- waldur_api_client/models/event_subscriptions_list_o_item.py +9 -0
- waldur_api_client/models/event_types_enum.py +251 -0
- waldur_api_client/models/events_count_retrieve_field_item.py +12 -0
- waldur_api_client/models/events_event_groups_retrieve_field_item.py +12 -0
- waldur_api_client/models/events_list_field_item.py +12 -0
- waldur_api_client/models/events_list_o_item.py +9 -0
- waldur_api_client/models/events_retrieve_field_item.py +12 -0
- waldur_api_client/models/events_scope_types_retrieve_field_item.py +12 -0
- waldur_api_client/models/execution_state_enum.py +11 -0
- waldur_api_client/models/feature_values_body.py +43 -0
- waldur_api_client/models/feedback.py +137 -0
- waldur_api_client/models/financial_report.py +154 -0
- waldur_api_client/models/financial_report_email_request.py +74 -0
- waldur_api_client/models/fingerprint.py +74 -0
- waldur_api_client/models/firecrest_job.py +420 -0
- waldur_api_client/models/firecrest_job_request.py +103 -0
- waldur_api_client/models/freeipa_profile.py +127 -0
- waldur_api_client/models/freeipa_profile_request.py +78 -0
- waldur_api_client/models/google_auth_authorize_retrieve_field_item.py +25 -0
- waldur_api_client/models/google_auth_list_field_item.py +25 -0
- waldur_api_client/models/google_auth_retrieve_field_item.py +25 -0
- waldur_api_client/models/google_calendar.py +88 -0
- waldur_api_client/models/google_credentials.py +262 -0
- waldur_api_client/models/group_invitation.py +173 -0
- waldur_api_client/models/group_invitation_request.py +67 -0
- waldur_api_client/models/guest_os_enum.py +155 -0
- waldur_api_client/models/guest_power_state_enum.py +13 -0
- waldur_api_client/models/hooks_web_list_content_type.py +9 -0
- waldur_api_client/models/identity_provider.py +170 -0
- waldur_api_client/models/identity_provider_request.py +138 -0
- waldur_api_client/models/import_resource_request.py +85 -0
- waldur_api_client/models/importable_resource.py +82 -0
- waldur_api_client/models/instance_flavor_change_request.py +58 -0
- waldur_api_client/models/integration_status.py +99 -0
- waldur_api_client/models/integration_status_details.py +101 -0
- waldur_api_client/models/invitation.py +266 -0
- waldur_api_client/models/invitation_check.py +69 -0
- waldur_api_client/models/invitation_request.py +142 -0
- waldur_api_client/models/invitation_state.py +14 -0
- waldur_api_client/models/invitation_state_enum.py +14 -0
- waldur_api_client/models/invoice.py +307 -0
- waldur_api_client/models/invoice_cost.py +74 -0
- waldur_api_client/models/invoice_growth.py +96 -0
- waldur_api_client/models/invoice_growth_customer_period.py +66 -0
- waldur_api_client/models/invoice_item.py +347 -0
- waldur_api_client/models/invoice_item_compensation.py +58 -0
- waldur_api_client/models/invoice_item_compensation_request.py +58 -0
- waldur_api_client/models/invoice_item_detail.py +194 -0
- waldur_api_client/models/invoice_item_details.py +211 -0
- waldur_api_client/models/invoice_item_migrate_to.py +58 -0
- waldur_api_client/models/invoice_item_migrate_to_request.py +58 -0
- waldur_api_client/models/invoice_item_total_price.py +58 -0
- waldur_api_client/models/invoice_item_update.py +110 -0
- waldur_api_client/models/invoice_item_update_request.py +110 -0
- waldur_api_client/models/invoice_state_enum.py +11 -0
- waldur_api_client/models/invoice_stats_offering.py +107 -0
- waldur_api_client/models/invoices_list_field_item.py +27 -0
- waldur_api_client/models/invoices_list_o_item.py +13 -0
- waldur_api_client/models/invoices_list_state_item.py +11 -0
- waldur_api_client/models/invoices_retrieve_field_item.py +27 -0
- waldur_api_client/models/invoices_stats_list_o_item.py +13 -0
- waldur_api_client/models/invoices_stats_list_state_item.py +11 -0
- waldur_api_client/models/ip_mapping.py +67 -0
- waldur_api_client/models/ip_mapping_request.py +66 -0
- waldur_api_client/models/issue.py +642 -0
- waldur_api_client/models/issue_reference.py +67 -0
- waldur_api_client/models/issue_request.py +234 -0
- waldur_api_client/models/issue_type_enum.py +11 -0
- waldur_api_client/models/jira_changelog.py +58 -0
- waldur_api_client/models/jira_changelog_request.py +58 -0
- waldur_api_client/models/jira_comment.py +58 -0
- waldur_api_client/models/jira_comment_request.py +58 -0
- waldur_api_client/models/jira_issue.py +72 -0
- waldur_api_client/models/jira_issue_fields.py +84 -0
- waldur_api_client/models/jira_issue_fields_comment.py +43 -0
- waldur_api_client/models/jira_issue_fields_request.py +84 -0
- waldur_api_client/models/jira_issue_fields_request_comment.py +43 -0
- waldur_api_client/models/jira_issue_project.py +74 -0
- waldur_api_client/models/jira_issue_project_request.py +74 -0
- waldur_api_client/models/jira_issue_request.py +72 -0
- waldur_api_client/models/keycloak_group.py +139 -0
- waldur_api_client/models/keycloak_user_group_membership.py +197 -0
- waldur_api_client/models/keycloak_user_group_membership_request.py +83 -0
- waldur_api_client/models/keycloak_user_group_membership_state.py +9 -0
- waldur_api_client/models/keycloak_user_group_memberships_list_state_item.py +9 -0
- waldur_api_client/models/keys_list_field_item.py +17 -0
- waldur_api_client/models/keys_list_o_item.py +9 -0
- waldur_api_client/models/keys_retrieve_field_item.py +17 -0
- waldur_api_client/models/lexis_link.py +211 -0
- waldur_api_client/models/lexis_link_create_request.py +58 -0
- waldur_api_client/models/lexis_link_request.py +70 -0
- waldur_api_client/models/limit_period_enum.py +10 -0
- waldur_api_client/models/link_openstack_request.py +58 -0
- waldur_api_client/models/link_to_invoice.py +58 -0
- waldur_api_client/models/link_to_invoice_request.py +58 -0
- waldur_api_client/models/logout.py +58 -0
- waldur_api_client/models/mapping.py +133 -0
- waldur_api_client/models/mapping_request.py +133 -0
- waldur_api_client/models/marketplace_categories_list_customers_offerings_state_item.py +11 -0
- waldur_api_client/models/marketplace_categories_list_field_item.py +22 -0
- waldur_api_client/models/marketplace_categories_retrieve_field_item.py +22 -0
- waldur_api_client/models/marketplace_category.py +269 -0
- waldur_api_client/models/marketplace_category_component_usages_list_field_item.py +16 -0
- waldur_api_client/models/marketplace_category_component_usages_retrieve_field_item.py +16 -0
- waldur_api_client/models/marketplace_category_groups_list_field_item.py +12 -0
- waldur_api_client/models/marketplace_category_groups_retrieve_field_item.py +12 -0
- waldur_api_client/models/marketplace_category_request.py +151 -0
- waldur_api_client/models/marketplace_component_usages_list_field_item.py +26 -0
- waldur_api_client/models/marketplace_component_usages_list_o_item.py +11 -0
- waldur_api_client/models/marketplace_component_usages_retrieve_field_item.py +26 -0
- waldur_api_client/models/marketplace_component_user_usages_list_field_item.py +28 -0
- waldur_api_client/models/marketplace_component_user_usages_list_o_item.py +13 -0
- waldur_api_client/models/marketplace_component_user_usages_retrieve_field_item.py +28 -0
- waldur_api_client/models/marketplace_customer_stats.py +82 -0
- waldur_api_client/models/marketplace_global_categories_retrieve_response_200.py +43 -0
- waldur_api_client/models/marketplace_integration_statuses_list_o_item.py +9 -0
- waldur_api_client/models/marketplace_integration_statuses_list_status_item.py +10 -0
- waldur_api_client/models/marketplace_offering_files_list_field_item.py +13 -0
- waldur_api_client/models/marketplace_offering_files_list_o_item.py +11 -0
- waldur_api_client/models/marketplace_offering_files_retrieve_field_item.py +13 -0
- waldur_api_client/models/marketplace_offering_permissions_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_offering_permissions_log_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_offering_referrals_list_o_item.py +13 -0
- waldur_api_client/models/marketplace_offering_users_list_field_item.py +22 -0
- waldur_api_client/models/marketplace_offering_users_list_o_item.py +13 -0
- waldur_api_client/models/marketplace_offering_users_retrieve_field_item.py +22 -0
- waldur_api_client/models/marketplace_orders_list_field_item.py +75 -0
- waldur_api_client/models/marketplace_orders_list_o_item.py +15 -0
- waldur_api_client/models/marketplace_orders_list_state_item.py +15 -0
- waldur_api_client/models/marketplace_orders_list_type_item.py +10 -0
- waldur_api_client/models/marketplace_orders_retrieve_field_item.py +75 -0
- waldur_api_client/models/marketplace_project_update_requests_list_state_item.py +12 -0
- waldur_api_client/models/marketplace_provider_customer.py +214 -0
- waldur_api_client/models/marketplace_provider_customer_project.py +157 -0
- waldur_api_client/models/marketplace_provider_offerings_component_stats_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_provider_offerings_component_stats_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_provider_offerings_costs_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_provider_offerings_costs_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_provider_offerings_customers_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_provider_offerings_customers_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_provider_offerings_groups_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_provider_offerings_groups_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_provider_offerings_list_customer_service_accounts_retrieve_field_item.py +73 -0
- waldur_api_client/models/marketplace_provider_offerings_list_field_item.py +73 -0
- waldur_api_client/models/marketplace_provider_offerings_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_provider_offerings_list_project_service_accounts_retrieve_field_item.py +73 -0
- waldur_api_client/models/marketplace_provider_offerings_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_provider_offerings_list_users_list_field_item.py +19 -0
- waldur_api_client/models/marketplace_provider_offerings_list_users_list_o_item.py +14 -0
- waldur_api_client/models/marketplace_provider_offerings_retrieve_field_item.py +73 -0
- waldur_api_client/models/marketplace_provider_offerings_stats_retrieve_field_item.py +73 -0
- waldur_api_client/models/marketplace_provider_offerings_update_attributes_body.py +43 -0
- waldur_api_client/models/marketplace_provider_offerings_user_has_resource_access_retrieve_field_item.py +73 -0
- waldur_api_client/models/marketplace_provider_resources_details_retrieve_field_item.py +80 -0
- waldur_api_client/models/marketplace_provider_resources_list_field_item.py +80 -0
- waldur_api_client/models/marketplace_provider_resources_list_o_item.py +15 -0
- waldur_api_client/models/marketplace_provider_resources_list_state_item.py +13 -0
- waldur_api_client/models/marketplace_provider_resources_retrieve_field_item.py +80 -0
- waldur_api_client/models/marketplace_public_offerings_list_field_item.py +71 -0
- waldur_api_client/models/marketplace_public_offerings_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_public_offerings_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_public_offerings_retrieve_field_item.py +71 -0
- waldur_api_client/models/marketplace_resources_details_retrieve_field_item.py +80 -0
- waldur_api_client/models/marketplace_resources_list_field_item.py +80 -0
- waldur_api_client/models/marketplace_resources_list_o_item.py +15 -0
- waldur_api_client/models/marketplace_resources_list_state_item.py +13 -0
- waldur_api_client/models/marketplace_resources_retrieve_field_item.py +80 -0
- waldur_api_client/models/marketplace_robot_accounts_list_state.py +13 -0
- waldur_api_client/models/marketplace_screenshots_list_o_item.py +11 -0
- waldur_api_client/models/marketplace_service_provider_user.py +167 -0
- waldur_api_client/models/marketplace_service_providers_customer_projects_list_field_item.py +14 -0
- waldur_api_client/models/marketplace_service_providers_customer_projects_list_o_item.py +23 -0
- waldur_api_client/models/marketplace_service_providers_customers_list_field_item.py +19 -0
- waldur_api_client/models/marketplace_service_providers_keys_list_field_item.py +17 -0
- waldur_api_client/models/marketplace_service_providers_keys_list_o_item.py +9 -0
- waldur_api_client/models/marketplace_service_providers_list_field_item.py +22 -0
- waldur_api_client/models/marketplace_service_providers_list_o_item.py +9 -0
- waldur_api_client/models/marketplace_service_providers_list_users_list_field_item.py +19 -0
- waldur_api_client/models/marketplace_service_providers_list_users_list_o_item.py +14 -0
- waldur_api_client/models/marketplace_service_providers_offerings_list_field_item.py +21 -0
- waldur_api_client/models/marketplace_service_providers_offerings_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_service_providers_offerings_list_state_item.py +11 -0
- waldur_api_client/models/marketplace_service_providers_project_permissions_list_field_item.py +27 -0
- waldur_api_client/models/marketplace_service_providers_project_permissions_list_o_item.py +21 -0
- waldur_api_client/models/marketplace_service_providers_projects_list_field_item.py +35 -0
- waldur_api_client/models/marketplace_service_providers_projects_list_o_item.py +23 -0
- waldur_api_client/models/marketplace_service_providers_retrieve_field_item.py +22 -0
- waldur_api_client/models/marketplace_service_providers_user_customers_list_field_item.py +19 -0
- waldur_api_client/models/marketplace_service_providers_users_list_field_item.py +19 -0
- waldur_api_client/models/marketplace_service_providers_users_list_o_item.py +31 -0
- waldur_api_client/models/merged_plugin_options.py +492 -0
- waldur_api_client/models/merged_plugin_options_request.py +492 -0
- waldur_api_client/models/merged_secret_options.py +440 -0
- waldur_api_client/models/merged_secret_options_request.py +440 -0
- waldur_api_client/models/message_template.py +91 -0
- waldur_api_client/models/message_template_request.py +74 -0
- waldur_api_client/models/migration_create.py +83 -0
- waldur_api_client/models/migration_create_request.py +117 -0
- waldur_api_client/models/migration_details.py +207 -0
- waldur_api_client/models/migration_details_request.py +84 -0
- waldur_api_client/models/minimal_consumption_logic_enum.py +9 -0
- waldur_api_client/models/move_offering_request.py +66 -0
- waldur_api_client/models/move_project_request.py +66 -0
- waldur_api_client/models/name_uuid.py +67 -0
- waldur_api_client/models/nested_attribute.py +127 -0
- waldur_api_client/models/nested_attribute_option.py +67 -0
- waldur_api_client/models/nested_attribute_option_request.py +66 -0
- waldur_api_client/models/nested_attribute_request.py +117 -0
- waldur_api_client/models/nested_attribute_type_enum.py +13 -0
- waldur_api_client/models/nested_campaign.py +183 -0
- waldur_api_client/models/nested_column.py +135 -0
- waldur_api_client/models/nested_column_request.py +119 -0
- waldur_api_client/models/nested_endpoint.py +84 -0
- waldur_api_client/models/nested_endpoint_request.py +66 -0
- waldur_api_client/models/nested_feedback.py +85 -0
- waldur_api_client/models/nested_feedback_request.py +58 -0
- waldur_api_client/models/nested_offering_component_limit.py +66 -0
- waldur_api_client/models/nested_offering_component_limit_request.py +66 -0
- waldur_api_client/models/nested_offering_file.py +85 -0
- waldur_api_client/models/nested_offering_file_request.py +69 -0
- waldur_api_client/models/nested_price_estimate.py +85 -0
- waldur_api_client/models/nested_project.py +67 -0
- waldur_api_client/models/nested_project_permission.py +117 -0
- waldur_api_client/models/nested_provider_offering.py +83 -0
- waldur_api_client/models/nested_provider_offering_request.py +66 -0
- waldur_api_client/models/nested_public_offering.py +83 -0
- waldur_api_client/models/nested_public_offering_request.py +66 -0
- waldur_api_client/models/nested_remote_local_category.py +94 -0
- waldur_api_client/models/nested_remote_local_category_request.py +78 -0
- waldur_api_client/models/nested_requested_offering.py +250 -0
- waldur_api_client/models/nested_requested_offering_request.py +89 -0
- waldur_api_client/models/nested_role.py +84 -0
- waldur_api_client/models/nested_role_request.py +58 -0
- waldur_api_client/models/nested_round.py +267 -0
- waldur_api_client/models/nested_round_request.py +211 -0
- waldur_api_client/models/nested_screenshot.py +131 -0
- waldur_api_client/models/nested_screenshot_request.py +78 -0
- waldur_api_client/models/nested_section.py +101 -0
- waldur_api_client/models/nested_section_request.py +77 -0
- waldur_api_client/models/nested_security_group_rule.py +221 -0
- waldur_api_client/models/nested_security_group_rule_request.py +186 -0
- waldur_api_client/models/network_rbac_policy.py +155 -0
- waldur_api_client/models/network_rbac_policy_request.py +77 -0
- waldur_api_client/models/node_disk_driver_enum.py +9 -0
- waldur_api_client/models/notification.py +126 -0
- waldur_api_client/models/notification_request.py +69 -0
- waldur_api_client/models/notification_template_detail_serializers.py +113 -0
- waldur_api_client/models/notification_template_detail_serializers_request.py +66 -0
- waldur_api_client/models/notification_template_update_serializers_request.py +58 -0
- waldur_api_client/models/obtain_auth_token_request.py +66 -0
- waldur_api_client/models/oecd_fos_2007_code_enum.py +50 -0
- waldur_api_client/models/offering.py +1088 -0
- waldur_api_client/models/offering_attributes.py +43 -0
- waldur_api_client/models/offering_backend_metadata_request.py +58 -0
- waldur_api_client/models/offering_component.py +306 -0
- waldur_api_client/models/offering_component_limit.py +74 -0
- waldur_api_client/models/offering_component_limit_request.py +74 -0
- waldur_api_client/models/offering_component_request.py +264 -0
- waldur_api_client/models/offering_component_stat.py +114 -0
- waldur_api_client/models/offering_cost.py +67 -0
- waldur_api_client/models/offering_country_stats.py +66 -0
- waldur_api_client/models/offering_create.py +932 -0
- waldur_api_client/models/offering_create_request.py +466 -0
- waldur_api_client/models/offering_create_request_limits.py +56 -0
- waldur_api_client/models/offering_create_service_attributes.py +43 -0
- waldur_api_client/models/offering_description_update_request.py +58 -0
- waldur_api_client/models/offering_estimated_cost_policy.py +193 -0
- waldur_api_client/models/offering_estimated_cost_policy_request.py +110 -0
- waldur_api_client/models/offering_file.py +120 -0
- waldur_api_client/models/offering_file_request.py +77 -0
- waldur_api_client/models/offering_groups.py +88 -0
- waldur_api_client/models/offering_image_request.py +61 -0
- waldur_api_client/models/offering_integration_update_request.py +107 -0
- waldur_api_client/models/offering_location_update_request.py +66 -0
- waldur_api_client/models/offering_options.py +82 -0
- waldur_api_client/models/offering_options_options.py +56 -0
- waldur_api_client/models/offering_options_request.py +72 -0
- waldur_api_client/models/offering_options_request_options.py +56 -0
- waldur_api_client/models/offering_options_update_request.py +64 -0
- waldur_api_client/models/offering_overview_update_request.py +132 -0
- waldur_api_client/models/offering_pause_request.py +58 -0
- waldur_api_client/models/offering_permission.py +219 -0
- waldur_api_client/models/offering_reference.py +67 -0
- waldur_api_client/models/offering_referral.py +157 -0
- waldur_api_client/models/offering_resource_options_update_request.py +64 -0
- waldur_api_client/models/offering_state.py +11 -0
- waldur_api_client/models/offering_stats.py +82 -0
- waldur_api_client/models/offering_stats_counter.py +91 -0
- waldur_api_client/models/offering_thumbnail_request.py +61 -0
- waldur_api_client/models/offering_usage_policy.py +207 -0
- waldur_api_client/models/offering_usage_policy_request.py +124 -0
- waldur_api_client/models/offering_user.py +241 -0
- waldur_api_client/models/offering_user_request.py +88 -0
- waldur_api_client/models/offering_user_role.py +91 -0
- waldur_api_client/models/offering_user_role_request.py +66 -0
- waldur_api_client/models/offering_user_update_restriction_request.py +58 -0
- waldur_api_client/models/open_stack_allowed_address_pair.py +58 -0
- waldur_api_client/models/open_stack_allowed_address_pair_request.py +67 -0
- waldur_api_client/models/open_stack_backend_instance.py +163 -0
- waldur_api_client/models/open_stack_backend_volumes.py +148 -0
- waldur_api_client/models/open_stack_backup.py +728 -0
- waldur_api_client/models/open_stack_backup_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_backup_request.py +101 -0
- waldur_api_client/models/open_stack_backup_restoration.py +178 -0
- waldur_api_client/models/open_stack_backup_restoration_request.py +115 -0
- waldur_api_client/models/open_stack_data_volume.py +80 -0
- waldur_api_client/models/open_stack_data_volume_request.py +80 -0
- waldur_api_client/models/open_stack_fixed_ip.py +67 -0
- waldur_api_client/models/open_stack_fixed_ip_request.py +66 -0
- waldur_api_client/models/open_stack_flavor.py +138 -0
- waldur_api_client/models/open_stack_floating_ip.py +718 -0
- waldur_api_client/models/open_stack_floating_ip_attach_request.py +58 -0
- waldur_api_client/models/open_stack_floating_ip_description_update_request.py +58 -0
- waldur_api_client/models/open_stack_floating_ip_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_image.py +111 -0
- waldur_api_client/models/open_stack_instance.py +1019 -0
- waldur_api_client/models/open_stack_instance_allowed_address_pairs_update_request.py +80 -0
- waldur_api_client/models/open_stack_instance_availability_zone.py +106 -0
- waldur_api_client/models/open_stack_instance_floating_i_ps_update_request.py +74 -0
- waldur_api_client/models/open_stack_instance_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_instance_ports_update_request.py +72 -0
- waldur_api_client/models/open_stack_instance_request.py +134 -0
- waldur_api_client/models/open_stack_instance_security_groups_update_request.py +58 -0
- waldur_api_client/models/open_stack_nested_floating_ip.py +192 -0
- waldur_api_client/models/open_stack_nested_floating_ip_request.py +58 -0
- waldur_api_client/models/open_stack_nested_instance.py +96 -0
- waldur_api_client/models/open_stack_nested_port.py +285 -0
- waldur_api_client/models/open_stack_nested_port_request.py +103 -0
- waldur_api_client/models/open_stack_nested_security_group.py +110 -0
- waldur_api_client/models/open_stack_nested_server_group.py +93 -0
- waldur_api_client/models/open_stack_nested_sub_net.py +156 -0
- waldur_api_client/models/open_stack_nested_sub_net_request.py +116 -0
- waldur_api_client/models/open_stack_nested_volume.py +187 -0
- waldur_api_client/models/open_stack_nested_volume_request.py +107 -0
- waldur_api_client/models/open_stack_network.py +671 -0
- waldur_api_client/models/open_stack_network_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_network_request.py +69 -0
- waldur_api_client/models/open_stack_port.py +805 -0
- waldur_api_client/models/open_stack_port_ip_update_request.py +66 -0
- waldur_api_client/models/open_stack_port_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_port_nested_security_group.py +84 -0
- waldur_api_client/models/open_stack_port_nested_security_group_request.py +58 -0
- waldur_api_client/models/open_stack_port_request.py +174 -0
- waldur_api_client/models/open_stack_router.py +683 -0
- waldur_api_client/models/open_stack_router_interface_request.py +67 -0
- waldur_api_client/models/open_stack_router_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_router_set_routes.py +72 -0
- waldur_api_client/models/open_stack_router_set_routes_request.py +72 -0
- waldur_api_client/models/open_stack_security_group.py +612 -0
- waldur_api_client/models/open_stack_security_group_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_security_group_request.py +91 -0
- waldur_api_client/models/open_stack_security_group_rule_create.py +241 -0
- waldur_api_client/models/open_stack_security_group_rule_create_request.py +206 -0
- waldur_api_client/models/open_stack_security_group_rule_update_request.py +206 -0
- waldur_api_client/models/open_stack_security_group_update.py +69 -0
- waldur_api_client/models/open_stack_security_group_update_request.py +69 -0
- waldur_api_client/models/open_stack_server_group.py +655 -0
- waldur_api_client/models/open_stack_server_group_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_server_group_request.py +103 -0
- waldur_api_client/models/open_stack_snapshot.py +710 -0
- waldur_api_client/models/open_stack_snapshot_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_snapshot_request.py +111 -0
- waldur_api_client/models/open_stack_snapshot_restoration.py +147 -0
- waldur_api_client/models/open_stack_snapshot_restoration_request.py +69 -0
- waldur_api_client/models/open_stack_static_route.py +67 -0
- waldur_api_client/models/open_stack_static_route_request.py +66 -0
- waldur_api_client/models/open_stack_sub_net.py +709 -0
- waldur_api_client/models/open_stack_sub_net_allocation_pool.py +67 -0
- waldur_api_client/models/open_stack_sub_net_allocation_pool_request.py +66 -0
- waldur_api_client/models/open_stack_sub_net_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_sub_net_request.py +164 -0
- waldur_api_client/models/open_stack_tenant.py +604 -0
- waldur_api_client/models/open_stack_tenant_change_password_request.py +58 -0
- waldur_api_client/models/open_stack_tenant_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_tenant_quota.py +121 -0
- waldur_api_client/models/open_stack_tenant_quota_request.py +121 -0
- waldur_api_client/models/open_stack_tenant_request.py +113 -0
- waldur_api_client/models/open_stack_volume.py +835 -0
- waldur_api_client/models/open_stack_volume_availability_zone.py +106 -0
- waldur_api_client/models/open_stack_volume_extend_request.py +58 -0
- waldur_api_client/models/open_stack_volume_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/open_stack_volume_request.py +78 -0
- waldur_api_client/models/open_stack_volume_retype_request.py +58 -0
- waldur_api_client/models/open_stack_volume_type.py +94 -0
- waldur_api_client/models/openstack_backups_list_field_item.py +51 -0
- waldur_api_client/models/openstack_backups_list_state_item.py +15 -0
- waldur_api_client/models/openstack_backups_retrieve_field_item.py +51 -0
- waldur_api_client/models/openstack_flavors_list_field_item.py +16 -0
- waldur_api_client/models/openstack_flavors_list_o_item.py +13 -0
- waldur_api_client/models/openstack_flavors_retrieve_field_item.py +16 -0
- waldur_api_client/models/openstack_flavors_usage_stats_retrieve_field_item.py +16 -0
- waldur_api_client/models/openstack_floating_ips_list_field_item.py +52 -0
- waldur_api_client/models/openstack_floating_ips_list_state_item.py +15 -0
- waldur_api_client/models/openstack_floating_ips_retrieve_field_item.py +52 -0
- waldur_api_client/models/openstack_instances_list_field_item.py +81 -0
- waldur_api_client/models/openstack_instances_list_state_item.py +15 -0
- waldur_api_client/models/openstack_instances_retrieve_field_item.py +81 -0
- waldur_api_client/models/openstack_network_rbac_policies_list_policy_type.py +9 -0
- waldur_api_client/models/openstack_networks_list_field_item.py +49 -0
- waldur_api_client/models/openstack_networks_list_state_item.py +15 -0
- waldur_api_client/models/openstack_networks_retrieve_field_item.py +49 -0
- waldur_api_client/models/openstack_ports_list_field_item.py +57 -0
- waldur_api_client/models/openstack_ports_list_o_item.py +9 -0
- waldur_api_client/models/openstack_ports_retrieve_field_item.py +57 -0
- waldur_api_client/models/openstack_routers_list_field_item.py +48 -0
- waldur_api_client/models/openstack_routers_retrieve_field_item.py +48 -0
- waldur_api_client/models/openstack_security_groups_list_field_item.py +45 -0
- waldur_api_client/models/openstack_security_groups_list_state_item.py +15 -0
- waldur_api_client/models/openstack_security_groups_retrieve_field_item.py +45 -0
- waldur_api_client/models/openstack_server_groups_list_field_item.py +47 -0
- waldur_api_client/models/openstack_server_groups_list_state_item.py +15 -0
- waldur_api_client/models/openstack_server_groups_retrieve_field_item.py +47 -0
- waldur_api_client/models/openstack_snapshots_list_field_item.py +51 -0
- waldur_api_client/models/openstack_snapshots_list_state_item.py +15 -0
- waldur_api_client/models/openstack_snapshots_retrieve_field_item.py +51 -0
- waldur_api_client/models/openstack_subnets_list_field_item.py +54 -0
- waldur_api_client/models/openstack_subnets_list_state_item.py +15 -0
- waldur_api_client/models/openstack_subnets_retrieve_field_item.py +54 -0
- waldur_api_client/models/openstack_tenants_backend_instances_list_state_item.py +15 -0
- waldur_api_client/models/openstack_tenants_backend_volumes_list_state_item.py +15 -0
- waldur_api_client/models/openstack_tenants_list_field_item.py +46 -0
- waldur_api_client/models/openstack_tenants_list_state_item.py +15 -0
- waldur_api_client/models/openstack_tenants_retrieve_field_item.py +46 -0
- waldur_api_client/models/openstack_volumes_list_field_item.py +62 -0
- waldur_api_client/models/openstack_volumes_list_state_item.py +15 -0
- waldur_api_client/models/openstack_volumes_retrieve_field_item.py +62 -0
- waldur_api_client/models/option_field.py +125 -0
- waldur_api_client/models/option_field_request.py +125 -0
- waldur_api_client/models/option_field_type_enum.py +21 -0
- waldur_api_client/models/order_create.py +631 -0
- waldur_api_client/models/order_create_limits.py +43 -0
- waldur_api_client/models/order_create_request.py +154 -0
- waldur_api_client/models/order_create_request_limits.py +43 -0
- waldur_api_client/models/order_details.py +1152 -0
- waldur_api_client/models/order_details_attributes.py +43 -0
- waldur_api_client/models/order_details_limits.py +43 -0
- waldur_api_client/models/order_set_state_erred_request.py +67 -0
- waldur_api_client/models/order_state.py +15 -0
- waldur_api_client/models/order_uuid.py +59 -0
- waldur_api_client/models/organization_group.py +138 -0
- waldur_api_client/models/organization_group_request.py +80 -0
- waldur_api_client/models/organization_groups_request.py +60 -0
- waldur_api_client/models/paid_request.py +79 -0
- waldur_api_client/models/password_change_request.py +58 -0
- waldur_api_client/models/patched_access_subnet_request.py +67 -0
- waldur_api_client/models/patched_admin_announcement_request.py +109 -0
- waldur_api_client/models/patched_aws_instance_request.py +67 -0
- waldur_api_client/models/patched_azure_public_ip_request.py +76 -0
- waldur_api_client/models/patched_azure_sql_database_request.py +107 -0
- waldur_api_client/models/patched_azure_sql_server_request.py +87 -0
- waldur_api_client/models/patched_azure_virtual_machine_request.py +67 -0
- waldur_api_client/models/patched_broadcast_message_request.py +108 -0
- waldur_api_client/models/patched_call_managing_organisation_request.py +90 -0
- waldur_api_client/models/patched_call_resource_template_request.py +103 -0
- waldur_api_client/models/patched_category_column_request.py +127 -0
- waldur_api_client/models/patched_category_components_request.py +109 -0
- waldur_api_client/models/patched_category_group_request.py +99 -0
- waldur_api_client/models/patched_category_help_articles_request.py +106 -0
- waldur_api_client/models/patched_cluster_security_group_request.py +74 -0
- waldur_api_client/models/patched_comment_request.py +67 -0
- waldur_api_client/models/patched_component_user_usage_limit_request.py +93 -0
- waldur_api_client/models/patched_create_customer_credit_request.py +169 -0
- waldur_api_client/models/patched_customer_estimated_cost_policy_request.py +102 -0
- waldur_api_client/models/patched_customer_request.py +281 -0
- waldur_api_client/models/patched_customer_service_account_request.py +111 -0
- waldur_api_client/models/patched_digital_ocean_droplet_request.py +67 -0
- waldur_api_client/models/patched_email_hook_request.py +107 -0
- waldur_api_client/models/patched_firecrest_job_request.py +76 -0
- waldur_api_client/models/patched_identity_provider_request.py +139 -0
- waldur_api_client/models/patched_invoice_item_update_request.py +110 -0
- waldur_api_client/models/patched_issue_request.py +97 -0
- waldur_api_client/models/patched_keycloak_user_group_membership_request.py +93 -0
- waldur_api_client/models/patched_lexis_link_request.py +70 -0
- waldur_api_client/models/patched_marketplace_category_request.py +149 -0
- waldur_api_client/models/patched_message_template_request.py +76 -0
- waldur_api_client/models/patched_migration_details_request.py +89 -0
- waldur_api_client/models/patched_notification_request.py +67 -0
- waldur_api_client/models/patched_notification_template_detail_serializers_request.py +67 -0
- waldur_api_client/models/patched_offering_estimated_cost_policy_request.py +113 -0
- waldur_api_client/models/patched_offering_usage_policy_request.py +129 -0
- waldur_api_client/models/patched_offering_user_request.py +87 -0
- waldur_api_client/models/patched_offering_user_role_request.py +67 -0
- waldur_api_client/models/patched_open_stack_backup_request.py +99 -0
- waldur_api_client/models/patched_open_stack_instance_request.py +132 -0
- waldur_api_client/models/patched_open_stack_network_request.py +67 -0
- waldur_api_client/models/patched_open_stack_port_request.py +92 -0
- waldur_api_client/models/patched_open_stack_security_group_update_request.py +67 -0
- waldur_api_client/models/patched_open_stack_server_group_request.py +101 -0
- waldur_api_client/models/patched_open_stack_snapshot_request.py +109 -0
- waldur_api_client/models/patched_open_stack_sub_net_request.py +162 -0
- waldur_api_client/models/patched_open_stack_tenant_request.py +86 -0
- waldur_api_client/models/patched_open_stack_volume_request.py +76 -0
- waldur_api_client/models/patched_organization_group_request.py +78 -0
- waldur_api_client/models/patched_payment_profile_request.py +126 -0
- waldur_api_client/models/patched_payment_request.py +117 -0
- waldur_api_client/models/patched_project_credit_request.py +143 -0
- waldur_api_client/models/patched_project_estimated_cost_policy_request.py +102 -0
- waldur_api_client/models/patched_project_request.py +251 -0
- waldur_api_client/models/patched_project_service_account_request.py +111 -0
- waldur_api_client/models/patched_proposal_review_request.py +262 -0
- waldur_api_client/models/patched_protected_call_request.py +182 -0
- waldur_api_client/models/patched_protected_round_request.py +213 -0
- waldur_api_client/models/patched_provider_plan_details_request.py +141 -0
- waldur_api_client/models/patched_rancher_application_request.py +188 -0
- waldur_api_client/models/patched_rancher_application_request_answers.py +43 -0
- waldur_api_client/models/patched_rancher_catalog_request.py +94 -0
- waldur_api_client/models/patched_rancher_cluster_request.py +106 -0
- waldur_api_client/models/patched_rancher_hpa_request.py +114 -0
- waldur_api_client/models/patched_rancher_ingress_request.py +148 -0
- waldur_api_client/models/patched_rancher_service_request.py +184 -0
- waldur_api_client/models/patched_rancher_workload_request.py +136 -0
- waldur_api_client/models/patched_remote_synchronisation_request.py +119 -0
- waldur_api_client/models/patched_requested_offering_request.py +87 -0
- waldur_api_client/models/patched_requested_resource_request.py +109 -0
- waldur_api_client/models/patched_resource_update_request.py +100 -0
- waldur_api_client/models/patched_robot_account_request.py +125 -0
- waldur_api_client/models/patched_role_details_request.py +356 -0
- waldur_api_client/models/patched_screenshot_request.py +67 -0
- waldur_api_client/models/patched_section_request.py +85 -0
- waldur_api_client/models/patched_service_provider_request.py +90 -0
- waldur_api_client/models/patched_slurm_allocation_request.py +67 -0
- waldur_api_client/models/patched_template_request.py +84 -0
- waldur_api_client/models/patched_user_agreement_request.py +75 -0
- waldur_api_client/models/patched_user_request.py +230 -0
- waldur_api_client/models/patched_vmware_virtual_machine_request.py +85 -0
- waldur_api_client/models/patched_web_hook_request.py +124 -0
- waldur_api_client/models/payment.py +154 -0
- waldur_api_client/models/payment_profile.py +177 -0
- waldur_api_client/models/payment_profile_attributes.py +76 -0
- waldur_api_client/models/payment_profile_attributes_request.py +76 -0
- waldur_api_client/models/payment_profile_request.py +119 -0
- waldur_api_client/models/payment_profiles_list_o_item.py +13 -0
- waldur_api_client/models/payment_profiles_list_payment_type_item.py +10 -0
- waldur_api_client/models/payment_request.py +111 -0
- waldur_api_client/models/payment_type_enum.py +10 -0
- waldur_api_client/models/payment_url_request.py +58 -0
- waldur_api_client/models/period_enum.py +11 -0
- waldur_api_client/models/permission.py +243 -0
- waldur_api_client/models/permission_project.py +146 -0
- waldur_api_client/models/permission_request.py +220 -0
- waldur_api_client/models/plan_component.py +140 -0
- waldur_api_client/models/plan_usage_response.py +123 -0
- waldur_api_client/models/plugin_component.py +84 -0
- waldur_api_client/models/plugin_offering_type.py +88 -0
- waldur_api_client/models/policy_enum.py +8 -0
- waldur_api_client/models/policy_type_enum.py +9 -0
- waldur_api_client/models/prices_update_request.py +64 -0
- waldur_api_client/models/prices_update_request_prices.py +43 -0
- waldur_api_client/models/priority.py +95 -0
- waldur_api_client/models/project.py +510 -0
- waldur_api_client/models/project_credit.py +264 -0
- waldur_api_client/models/project_credit_request.py +145 -0
- waldur_api_client/models/project_credits_list_o_item.py +15 -0
- waldur_api_client/models/project_estimated_cost_policy.py +227 -0
- waldur_api_client/models/project_estimated_cost_policy_request.py +102 -0
- waldur_api_client/models/project_marketplace_resource_count.py +43 -0
- waldur_api_client/models/project_permission_log.py +330 -0
- waldur_api_client/models/project_quotas.py +82 -0
- waldur_api_client/models/project_request.py +272 -0
- waldur_api_client/models/project_service_account.py +216 -0
- waldur_api_client/models/project_service_account_request.py +106 -0
- waldur_api_client/models/project_stats_item.py +99 -0
- waldur_api_client/models/project_type.py +86 -0
- waldur_api_client/models/project_user.py +143 -0
- waldur_api_client/models/projects_limits_grouped_by_industry_flag.py +64 -0
- waldur_api_client/models/projects_limits_grouped_by_industry_flag_limits.py +62 -0
- waldur_api_client/models/projects_limits_grouped_by_industry_flag_limits_additional_property.py +43 -0
- waldur_api_client/models/projects_limits_grouped_by_oecd.py +64 -0
- waldur_api_client/models/projects_limits_grouped_by_oecd_limits.py +62 -0
- waldur_api_client/models/projects_limits_grouped_by_oecd_limits_additional_property.py +43 -0
- waldur_api_client/models/projects_list_field_item.py +35 -0
- waldur_api_client/models/projects_list_o_item.py +23 -0
- waldur_api_client/models/projects_list_users_list_field_item.py +19 -0
- waldur_api_client/models/projects_list_users_list_o_item.py +14 -0
- waldur_api_client/models/projects_retrieve_field_item.py +35 -0
- waldur_api_client/models/projects_usages_grouped_by_industry_flag.py +64 -0
- waldur_api_client/models/projects_usages_grouped_by_industry_flag_usages.py +62 -0
- waldur_api_client/models/projects_usages_grouped_by_industry_flag_usages_additional_property.py +43 -0
- waldur_api_client/models/projects_usages_grouped_by_oecd.py +64 -0
- waldur_api_client/models/projects_usages_grouped_by_oecd_usages.py +62 -0
- waldur_api_client/models/projects_usages_grouped_by_oecd_usages_additional_property.py +43 -0
- waldur_api_client/models/promotions_campaigns_list_o_item.py +11 -0
- waldur_api_client/models/promotions_campaigns_list_state_item.py +10 -0
- waldur_api_client/models/proposal.py +330 -0
- waldur_api_client/models/proposal_approve_request.py +58 -0
- waldur_api_client/models/proposal_documentation.py +98 -0
- waldur_api_client/models/proposal_documentation_request.py +82 -0
- waldur_api_client/models/proposal_proposals_list_o_item.py +17 -0
- waldur_api_client/models/proposal_proposals_list_state_item.py +13 -0
- waldur_api_client/models/proposal_proposals_list_users_list_field_item.py +19 -0
- waldur_api_client/models/proposal_proposals_list_users_list_o_item.py +14 -0
- waldur_api_client/models/proposal_protected_calls_list_field_item.py +33 -0
- waldur_api_client/models/proposal_protected_calls_list_o_item.py +13 -0
- waldur_api_client/models/proposal_protected_calls_list_state_item.py +10 -0
- waldur_api_client/models/proposal_protected_calls_list_users_list_field_item.py +19 -0
- waldur_api_client/models/proposal_protected_calls_list_users_list_o_item.py +14 -0
- waldur_api_client/models/proposal_protected_calls_retrieve_field_item.py +33 -0
- waldur_api_client/models/proposal_public_calls_list_field_item.py +28 -0
- waldur_api_client/models/proposal_public_calls_list_o_item.py +13 -0
- waldur_api_client/models/proposal_public_calls_list_state_item.py +10 -0
- waldur_api_client/models/proposal_public_calls_retrieve_field_item.py +28 -0
- waldur_api_client/models/proposal_request.py +167 -0
- waldur_api_client/models/proposal_requested_offerings_list_o_item.py +15 -0
- waldur_api_client/models/proposal_requested_offerings_list_state_item.py +10 -0
- waldur_api_client/models/proposal_requested_resources_list_o_item.py +15 -0
- waldur_api_client/models/proposal_review.py +413 -0
- waldur_api_client/models/proposal_review_request.py +281 -0
- waldur_api_client/models/proposal_review_state_enum.py +11 -0
- waldur_api_client/models/proposal_reviews_list_o_item.py +11 -0
- waldur_api_client/models/proposal_reviews_list_state_item.py +11 -0
- waldur_api_client/models/proposal_states.py +13 -0
- waldur_api_client/models/proposal_update_project_details_request.py +158 -0
- waldur_api_client/models/protected_call.py +423 -0
- waldur_api_client/models/protected_call_request.py +192 -0
- waldur_api_client/models/protected_proposal_list.py +113 -0
- waldur_api_client/models/protected_proposal_list_request.py +58 -0
- waldur_api_client/models/protected_round.py +256 -0
- waldur_api_client/models/protected_round_request.py +200 -0
- waldur_api_client/models/protocol_enum.py +10 -0
- waldur_api_client/models/provider_invoice_items_list_o_item.py +15 -0
- waldur_api_client/models/provider_offering.py +244 -0
- waldur_api_client/models/provider_offering_costs.py +82 -0
- waldur_api_client/models/provider_offering_customer.py +104 -0
- waldur_api_client/models/provider_offering_details.py +1187 -0
- waldur_api_client/models/provider_offering_details_attributes.py +43 -0
- waldur_api_client/models/provider_offering_details_request.py +414 -0
- waldur_api_client/models/provider_offering_details_service_attributes.py +43 -0
- waldur_api_client/models/provider_plan_details.py +268 -0
- waldur_api_client/models/provider_plan_details_future_prices.py +43 -0
- waldur_api_client/models/provider_plan_details_prices.py +43 -0
- waldur_api_client/models/provider_plan_details_quotas.py +43 -0
- waldur_api_client/models/provider_plan_details_request.py +151 -0
- waldur_api_client/models/provider_project.py +95 -0
- waldur_api_client/models/provider_requested_offering.py +239 -0
- waldur_api_client/models/provider_requested_resource.py +198 -0
- waldur_api_client/models/provider_user.py +104 -0
- waldur_api_client/models/public_call.py +361 -0
- waldur_api_client/models/public_offering_details.py +1131 -0
- waldur_api_client/models/public_offering_details_attributes.py +43 -0
- waldur_api_client/models/pull_marketplace_script_resource_request.py +59 -0
- waldur_api_client/models/query_request.py +58 -0
- waldur_api_client/models/quota.py +76 -0
- waldur_api_client/models/quota_request.py +74 -0
- waldur_api_client/models/quotas_update_request.py +64 -0
- waldur_api_client/models/quotas_update_request_quotas.py +43 -0
- waldur_api_client/models/rancher_application.py +667 -0
- waldur_api_client/models/rancher_application_answers.py +43 -0
- waldur_api_client/models/rancher_application_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/rancher_application_request.py +185 -0
- waldur_api_client/models/rancher_application_request_answers.py +43 -0
- waldur_api_client/models/rancher_apps_list_field_item.py +52 -0
- waldur_api_client/models/rancher_apps_list_state_item.py +15 -0
- waldur_api_client/models/rancher_apps_retrieve_field_item.py +52 -0
- waldur_api_client/models/rancher_catalog.py +153 -0
- waldur_api_client/models/rancher_catalog_create.py +171 -0
- waldur_api_client/models/rancher_catalog_create_request.py +111 -0
- waldur_api_client/models/rancher_catalog_request.py +93 -0
- waldur_api_client/models/rancher_catalog_scope_type.py +10 -0
- waldur_api_client/models/rancher_catalog_update.py +153 -0
- waldur_api_client/models/rancher_catalog_update_request.py +93 -0
- waldur_api_client/models/rancher_cluster.py +697 -0
- waldur_api_client/models/rancher_cluster_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/rancher_cluster_reference.py +95 -0
- waldur_api_client/models/rancher_cluster_request.py +155 -0
- waldur_api_client/models/rancher_cluster_security_group_rule.py +198 -0
- waldur_api_client/models/rancher_cluster_security_group_rule_request.py +186 -0
- waldur_api_client/models/rancher_cluster_template.py +118 -0
- waldur_api_client/models/rancher_cluster_template_node.py +94 -0
- waldur_api_client/models/rancher_clusters_list_field_item.py +54 -0
- waldur_api_client/models/rancher_clusters_list_state_item.py +15 -0
- waldur_api_client/models/rancher_clusters_retrieve_field_item.py +54 -0
- waldur_api_client/models/rancher_create_node.py +77 -0
- waldur_api_client/models/rancher_create_node_request.py +193 -0
- waldur_api_client/models/rancher_hpa.py +280 -0
- waldur_api_client/models/rancher_hpa_request.py +115 -0
- waldur_api_client/models/rancher_import_yaml.py +100 -0
- waldur_api_client/models/rancher_import_yaml_request.py +100 -0
- waldur_api_client/models/rancher_ingress.py +608 -0
- waldur_api_client/models/rancher_ingress_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/rancher_ingress_request.py +147 -0
- waldur_api_client/models/rancher_ingresses_list_field_item.py +47 -0
- waldur_api_client/models/rancher_ingresses_list_state_item.py +15 -0
- waldur_api_client/models/rancher_ingresses_retrieve_field_item.py +47 -0
- waldur_api_client/models/rancher_ingresses_yaml_retrieve_field_item.py +47 -0
- waldur_api_client/models/rancher_namespace.py +124 -0
- waldur_api_client/models/rancher_namespaces_list_o_item.py +13 -0
- waldur_api_client/models/rancher_nested_namespace.py +75 -0
- waldur_api_client/models/rancher_nested_node.py +336 -0
- waldur_api_client/models/rancher_nested_node_request.py +195 -0
- waldur_api_client/models/rancher_nested_public_ip.py +93 -0
- waldur_api_client/models/rancher_nested_security_group.py +58 -0
- waldur_api_client/models/rancher_nested_workload.py +84 -0
- waldur_api_client/models/rancher_nested_workload_request.py +58 -0
- waldur_api_client/models/rancher_node.py +332 -0
- waldur_api_client/models/rancher_project.py +155 -0
- waldur_api_client/models/rancher_role_scope_type.py +9 -0
- waldur_api_client/models/rancher_role_templates_list_o_item.py +11 -0
- waldur_api_client/models/rancher_service.py +631 -0
- waldur_api_client/models/rancher_service_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/rancher_service_request.py +184 -0
- waldur_api_client/models/rancher_services_list_field_item.py +47 -0
- waldur_api_client/models/rancher_services_list_state_item.py +15 -0
- waldur_api_client/models/rancher_services_retrieve_field_item.py +47 -0
- waldur_api_client/models/rancher_services_yaml_retrieve_field_item.py +47 -0
- waldur_api_client/models/rancher_template.py +226 -0
- waldur_api_client/models/rancher_template_base_question.py +142 -0
- waldur_api_client/models/rancher_template_question.py +176 -0
- waldur_api_client/models/rancher_template_question_type.py +11 -0
- waldur_api_client/models/rancher_templates_list_o_item.py +11 -0
- waldur_api_client/models/rancher_user.py +150 -0
- waldur_api_client/models/rancher_user_cluster_link.py +83 -0
- waldur_api_client/models/rancher_user_project_link.py +83 -0
- waldur_api_client/models/rancher_workload.py +220 -0
- waldur_api_client/models/rancher_workload_request.py +137 -0
- waldur_api_client/models/rancher_workloads_list_o_item.py +15 -0
- waldur_api_client/models/reference_number_request.py +58 -0
- waldur_api_client/models/remote_credentials_request.py +66 -0
- waldur_api_client/models/remote_customer.py +91 -0
- waldur_api_client/models/remote_eduteams_request_request.py +58 -0
- waldur_api_client/models/remote_eduteams_uuid.py +59 -0
- waldur_api_client/models/remote_offering.py +91 -0
- waldur_api_client/models/remote_offering_create_request.py +99 -0
- waldur_api_client/models/remote_offering_create_response.py +59 -0
- waldur_api_client/models/remote_project_update_request.py +384 -0
- waldur_api_client/models/remote_synchronisation.py +215 -0
- waldur_api_client/models/remote_synchronisation_request.py +124 -0
- waldur_api_client/models/remove_offering_component_request.py +59 -0
- waldur_api_client/models/report_section.py +67 -0
- waldur_api_client/models/report_section_request.py +66 -0
- waldur_api_client/models/request_types.py +10 -0
- waldur_api_client/models/requested_offering.py +258 -0
- waldur_api_client/models/requested_offering_request.py +98 -0
- waldur_api_client/models/requested_offering_states.py +10 -0
- waldur_api_client/models/requested_resource.py +170 -0
- waldur_api_client/models/requested_resource_request.py +109 -0
- waldur_api_client/models/resource.py +1093 -0
- waldur_api_client/models/resource_attributes.py +43 -0
- waldur_api_client/models/resource_backend_id.py +58 -0
- waldur_api_client/models/resource_backend_id_request.py +58 -0
- waldur_api_client/models/resource_backend_metadata.py +58 -0
- waldur_api_client/models/resource_backend_metadata_request.py +58 -0
- waldur_api_client/models/resource_current_usages.py +43 -0
- waldur_api_client/models/resource_end_date_by_provider_request.py +83 -0
- waldur_api_client/models/resource_limit_period.py +94 -0
- waldur_api_client/models/resource_limit_usage.py +43 -0
- waldur_api_client/models/resource_limits.py +43 -0
- waldur_api_client/models/resource_offering.py +67 -0
- waldur_api_client/models/resource_options.py +58 -0
- waldur_api_client/models/resource_options_request.py +58 -0
- waldur_api_client/models/resource_plan_period.py +161 -0
- waldur_api_client/models/resource_report.py +72 -0
- waldur_api_client/models/resource_report_request.py +72 -0
- waldur_api_client/models/resource_set_limits.py +58 -0
- waldur_api_client/models/resource_set_limits_request.py +58 -0
- waldur_api_client/models/resource_set_state_erred.py +67 -0
- waldur_api_client/models/resource_set_state_erred_request.py +67 -0
- waldur_api_client/models/resource_slug_request.py +58 -0
- waldur_api_client/models/resource_state.py +13 -0
- waldur_api_client/models/resource_suggest_name.py +67 -0
- waldur_api_client/models/resource_suggest_name_request.py +67 -0
- waldur_api_client/models/resource_switch_plan_request.py +58 -0
- waldur_api_client/models/resource_terminate_request.py +58 -0
- waldur_api_client/models/resource_update.py +102 -0
- waldur_api_client/models/resource_update_limits_request.py +64 -0
- waldur_api_client/models/resource_update_limits_request_limits.py +43 -0
- waldur_api_client/models/resource_update_request.py +102 -0
- waldur_api_client/models/resource_user.py +139 -0
- waldur_api_client/models/resource_user_request.py +74 -0
- waldur_api_client/models/resources_limits.py +99 -0
- waldur_api_client/models/review_comment.py +58 -0
- waldur_api_client/models/review_comment_request.py +58 -0
- waldur_api_client/models/review_strategy_enum.py +9 -0
- waldur_api_client/models/review_submit_request.py +76 -0
- waldur_api_client/models/rmq_connection.py +66 -0
- waldur_api_client/models/rmq_subscription.py +77 -0
- waldur_api_client/models/rmq_user_stats_item.py +80 -0
- waldur_api_client/models/rmq_v_host_stats_item.py +90 -0
- waldur_api_client/models/rmq_waldur_user.py +74 -0
- waldur_api_client/models/robot_account.py +226 -0
- waldur_api_client/models/robot_account_details.py +324 -0
- waldur_api_client/models/robot_account_error_request.py +58 -0
- waldur_api_client/models/robot_account_request.py +126 -0
- waldur_api_client/models/robot_account_states.py +13 -0
- waldur_api_client/models/role_description.py +338 -0
- waldur_api_client/models/role_description_request.py +338 -0
- waldur_api_client/models/role_details.py +419 -0
- waldur_api_client/models/role_enum.py +9 -0
- waldur_api_client/models/role_modify_request.py +374 -0
- waldur_api_client/models/role_template.py +101 -0
- waldur_api_client/models/role_type.py +14 -0
- waldur_api_client/models/roles_list_field_item.py +29 -0
- waldur_api_client/models/roles_retrieve_field_item.py +29 -0
- waldur_api_client/models/round_reviewer.py +90 -0
- waldur_api_client/models/runtime_states.py +66 -0
- waldur_api_client/models/saml_2_login.py +58 -0
- waldur_api_client/models/saml_2_login_complete.py +58 -0
- waldur_api_client/models/saml_2_login_complete_request.py +58 -0
- waldur_api_client/models/saml_2_login_request.py +58 -0
- waldur_api_client/models/saml_2_logout_complete.py +67 -0
- waldur_api_client/models/saml_2_logout_complete_request.py +67 -0
- waldur_api_client/models/saml_2_provider.py +66 -0
- waldur_api_client/models/screenshot.py +134 -0
- waldur_api_client/models/screenshot_request.py +86 -0
- waldur_api_client/models/section.py +111 -0
- waldur_api_client/models/section_request.py +85 -0
- waldur_api_client/models/service_provider.py +235 -0
- waldur_api_client/models/service_provider_api_secret_code.py +58 -0
- waldur_api_client/models/service_provider_request.py +101 -0
- waldur_api_client/models/service_provider_revenues.py +74 -0
- waldur_api_client/models/service_provider_signature.py +78 -0
- waldur_api_client/models/service_provider_signature_request.py +78 -0
- waldur_api_client/models/service_provider_statistics.py +122 -0
- waldur_api_client/models/service_settings.py +244 -0
- waldur_api_client/models/service_settings_list_field_item.py +21 -0
- waldur_api_client/models/service_settings_list_state_item.py +15 -0
- waldur_api_client/models/service_settings_options.py +43 -0
- waldur_api_client/models/service_settings_retrieve_field_item.py +21 -0
- waldur_api_client/models/service_settings_state_enum.py +15 -0
- waldur_api_client/models/set_mtu.py +58 -0
- waldur_api_client/models/set_mtu_request.py +58 -0
- waldur_api_client/models/set_offerings_username.py +67 -0
- waldur_api_client/models/set_offerings_username_request.py +67 -0
- waldur_api_client/models/slurm_allocation.py +658 -0
- waldur_api_client/models/slurm_allocation_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/slurm_allocation_request.py +85 -0
- waldur_api_client/models/slurm_allocation_set_limits.py +74 -0
- waldur_api_client/models/slurm_allocation_set_limits_request.py +74 -0
- waldur_api_client/models/slurm_allocation_user_usage.py +139 -0
- waldur_api_client/models/slurm_allocations_list_field_item.py +50 -0
- waldur_api_client/models/slurm_allocations_list_state_item.py +15 -0
- waldur_api_client/models/slurm_allocations_retrieve_field_item.py +50 -0
- waldur_api_client/models/slurm_association.py +75 -0
- waldur_api_client/models/slurm_jobs_list_field_item.py +37 -0
- waldur_api_client/models/slurm_jobs_retrieve_field_item.py +37 -0
- waldur_api_client/models/smax_web_hook_receiver.py +58 -0
- waldur_api_client/models/smax_web_hook_receiver_request.py +58 -0
- waldur_api_client/models/ssh_key.py +154 -0
- waldur_api_client/models/ssh_key_request.py +69 -0
- waldur_api_client/models/state_transition_error.py +58 -0
- waldur_api_client/models/status_enum.py +10 -0
- waldur_api_client/models/storage_mode_enum.py +9 -0
- waldur_api_client/models/sub_net_mapping.py +66 -0
- waldur_api_client/models/sub_net_mapping_request.py +66 -0
- waldur_api_client/models/subresource_offering.py +67 -0
- waldur_api_client/models/support_attachments_list_field_item.py +18 -0
- waldur_api_client/models/support_attachments_retrieve_field_item.py +18 -0
- waldur_api_client/models/support_comments_list_o_item.py +11 -0
- waldur_api_client/models/support_issues_list_o_item.py +35 -0
- waldur_api_client/models/support_stats.py +74 -0
- waldur_api_client/models/support_user.py +125 -0
- waldur_api_client/models/table_size.py +82 -0
- waldur_api_client/models/template.py +124 -0
- waldur_api_client/models/template_attachment.py +101 -0
- waldur_api_client/models/template_attachment_request.py +69 -0
- waldur_api_client/models/template_request.py +85 -0
- waldur_api_client/models/template_version.py +88 -0
- waldur_api_client/models/token_request.py +58 -0
- waldur_api_client/models/total_customer_cost.py +66 -0
- waldur_api_client/models/user.py +488 -0
- waldur_api_client/models/user_agreement.py +105 -0
- waldur_api_client/models/user_agreement_request.py +70 -0
- waldur_api_client/models/user_agreements_list_agreement_type.py +9 -0
- waldur_api_client/models/user_auth_token.py +115 -0
- waldur_api_client/models/user_email_change_request.py +58 -0
- waldur_api_client/models/user_group_invitations_list_o_item.py +9 -0
- waldur_api_client/models/user_invitations_list_o_item.py +15 -0
- waldur_api_client/models/user_invitations_list_state_item.py +14 -0
- waldur_api_client/models/user_permission_requests_list_o_item.py +11 -0
- waldur_api_client/models/user_permission_requests_list_state_item.py +12 -0
- waldur_api_client/models/user_permissions_list_o_item.py +21 -0
- waldur_api_client/models/user_request.py +239 -0
- waldur_api_client/models/user_role_create_request.py +101 -0
- waldur_api_client/models/user_role_delete_request.py +101 -0
- waldur_api_client/models/user_role_details.py +217 -0
- waldur_api_client/models/user_role_expiration_time.py +78 -0
- waldur_api_client/models/user_role_update_request.py +101 -0
- waldur_api_client/models/user_stats.py +58 -0
- waldur_api_client/models/username_generation_policy_enum.py +13 -0
- waldur_api_client/models/users_list_field_item.py +43 -0
- waldur_api_client/models/users_list_o_item.py +31 -0
- waldur_api_client/models/users_me_retrieve_field_item.py +43 -0
- waldur_api_client/models/users_retrieve_field_item.py +43 -0
- waldur_api_client/models/version.py +69 -0
- waldur_api_client/models/visible_invitation_details.py +159 -0
- waldur_api_client/models/vmware_cluster.py +75 -0
- waldur_api_client/models/vmware_datastore.py +125 -0
- waldur_api_client/models/vmware_disk.py +595 -0
- waldur_api_client/models/vmware_disk_extend.py +58 -0
- waldur_api_client/models/vmware_disk_extend_request.py +58 -0
- waldur_api_client/models/vmware_disk_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/vmware_disk_request.py +69 -0
- waldur_api_client/models/vmware_disks_list_field_item.py +45 -0
- waldur_api_client/models/vmware_disks_list_state_item.py +15 -0
- waldur_api_client/models/vmware_disks_retrieve_field_item.py +45 -0
- waldur_api_client/models/vmware_folder.py +75 -0
- waldur_api_client/models/vmware_limit.py +90 -0
- waldur_api_client/models/vmware_nested_disk.py +84 -0
- waldur_api_client/models/vmware_nested_disk_request.py +58 -0
- waldur_api_client/models/vmware_nested_network.py +83 -0
- waldur_api_client/models/vmware_nested_network_request.py +66 -0
- waldur_api_client/models/vmware_nested_port.py +102 -0
- waldur_api_client/models/vmware_nested_port_request.py +66 -0
- waldur_api_client/models/vmware_network.py +83 -0
- waldur_api_client/models/vmware_port.py +613 -0
- waldur_api_client/models/vmware_port_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/vmware_port_request.py +69 -0
- waldur_api_client/models/vmware_ports_list_field_item.py +47 -0
- waldur_api_client/models/vmware_ports_list_state_item.py +15 -0
- waldur_api_client/models/vmware_ports_retrieve_field_item.py +47 -0
- waldur_api_client/models/vmware_template.py +156 -0
- waldur_api_client/models/vmware_virtual_machine.py +815 -0
- waldur_api_client/models/vmware_virtual_machine_list_field_item.py +62 -0
- waldur_api_client/models/vmware_virtual_machine_list_state_item.py +15 -0
- waldur_api_client/models/vmware_virtual_machine_marketplace_offering_plugin_options_type_0.py +43 -0
- waldur_api_client/models/vmware_virtual_machine_request.py +248 -0
- waldur_api_client/models/vmware_virtual_machine_retrieve_field_item.py +62 -0
- waldur_api_client/models/volume_attach_request.py +58 -0
- waldur_api_client/models/volume_type_enum.py +10 -0
- waldur_api_client/models/volume_type_mapping.py +67 -0
- waldur_api_client/models/volume_type_mapping_request.py +67 -0
- waldur_api_client/models/web_hook.py +201 -0
- waldur_api_client/models/web_hook_content_type_enum.py +9 -0
- waldur_api_client/models/web_hook_receiver.py +120 -0
- waldur_api_client/models/web_hook_receiver_request.py +120 -0
- waldur_api_client/models/web_hook_request.py +126 -0
- waldur_api_client/models/webhook_event_enum.py +12 -0
- waldur_api_client/models/widget_enum.py +10 -0
- waldur_api_client/py.typed +1 -0
- waldur_api_client/types.py +46 -0
- waldur_api_client-0.1.0.dist-info/LICENSE +21 -0
- waldur_api_client-0.1.0.dist-info/METADATA +147 -0
- waldur_api_client-0.1.0.dist-info/RECORD +2568 -0
- waldur_api_client-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,1478 @@
|
|
|
1
|
+
from io import BytesIO
|
|
2
|
+
from typing import Any, TypeVar, Union, cast
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
|
|
7
|
+
from ..types import UNSET, File, FileJsonType, Unset
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="ConstanceSettingsRequest")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class ConstanceSettingsRequest:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
site_name (Union[Unset, str]):
|
|
17
|
+
site_description (Union[Unset, str]):
|
|
18
|
+
homeport_url (Union[Unset, str]):
|
|
19
|
+
rancher_username_input_label (Union[Unset, str]):
|
|
20
|
+
site_address (Union[Unset, str]):
|
|
21
|
+
site_email (Union[Unset, str]):
|
|
22
|
+
site_phone (Union[Unset, str]):
|
|
23
|
+
currency_name (Union[Unset, str]):
|
|
24
|
+
thumbnail_size (Union[Unset, str]):
|
|
25
|
+
anonymous_user_can_view_offerings (Union[Unset, bool]):
|
|
26
|
+
anonymous_user_can_view_plans (Union[Unset, bool]):
|
|
27
|
+
notify_staff_about_approvals (Union[Unset, bool]):
|
|
28
|
+
notify_about_resource_change (Union[Unset, bool]):
|
|
29
|
+
disable_sending_notifications_about_resource_update (Union[Unset, bool]):
|
|
30
|
+
marketplace_landing_page (Union[Unset, str]):
|
|
31
|
+
enable_stale_resource_notifications (Union[Unset, bool]):
|
|
32
|
+
telemetry_url (Union[Unset, str]):
|
|
33
|
+
telemetry_version (Union[Unset, int]):
|
|
34
|
+
script_run_mode (Union[Unset, str]):
|
|
35
|
+
docker_client (Union[Unset, str]):
|
|
36
|
+
docker_run_options (Union[Unset, str]):
|
|
37
|
+
docker_script_dir (Union[Unset, str]):
|
|
38
|
+
docker_remove_container (Union[Unset, bool]):
|
|
39
|
+
docker_images (Union[Unset, str]):
|
|
40
|
+
docker_volume_name (Union[Unset, str]):
|
|
41
|
+
k8s_namespace (Union[Unset, str]):
|
|
42
|
+
k8s_config_path (Union[Unset, str]):
|
|
43
|
+
k8s_job_timeout (Union[Unset, int]):
|
|
44
|
+
enable_strict_check_accepting_invitation (Union[Unset, bool]):
|
|
45
|
+
invitation_disable_multiple_roles (Union[Unset, bool]):
|
|
46
|
+
default_idp (Union[Unset, str]):
|
|
47
|
+
docs_url (Union[Unset, str]):
|
|
48
|
+
short_page_title (Union[Unset, str]):
|
|
49
|
+
full_page_title (Union[Unset, str]):
|
|
50
|
+
brand_color (Union[Unset, str]):
|
|
51
|
+
hero_link_label (Union[Unset, str]):
|
|
52
|
+
hero_link_url (Union[Unset, str]):
|
|
53
|
+
support_portal_url (Union[Unset, str]):
|
|
54
|
+
common_footer_text (Union[Unset, str]):
|
|
55
|
+
common_footer_html (Union[Unset, str]):
|
|
56
|
+
language_choices (Union[Unset, str]):
|
|
57
|
+
disable_dark_theme (Union[Unset, bool]):
|
|
58
|
+
powered_by_logo (Union[File, None, Unset]):
|
|
59
|
+
hero_image (Union[File, None, Unset]):
|
|
60
|
+
marketplace_hero_image (Union[File, None, Unset]):
|
|
61
|
+
call_management_hero_image (Union[File, None, Unset]):
|
|
62
|
+
sidebar_logo (Union[File, None, Unset]):
|
|
63
|
+
sidebar_logo_dark (Union[File, None, Unset]):
|
|
64
|
+
sidebar_logo_mobile (Union[File, None, Unset]):
|
|
65
|
+
sidebar_style (Union[Unset, str]):
|
|
66
|
+
site_logo (Union[File, None, Unset]):
|
|
67
|
+
login_logo (Union[File, None, Unset]):
|
|
68
|
+
favicon (Union[File, None, Unset]):
|
|
69
|
+
offering_logo_placeholder (Union[File, None, Unset]):
|
|
70
|
+
waldur_support_enabled (Union[Unset, bool]):
|
|
71
|
+
waldur_support_active_backend_type (Union[Unset, str]):
|
|
72
|
+
waldur_support_display_request_type (Union[Unset, bool]):
|
|
73
|
+
atlassian_use_old_api (Union[Unset, bool]):
|
|
74
|
+
atlassian_use_teenage_api (Union[Unset, bool]):
|
|
75
|
+
atlassian_use_automatic_request_mapping (Union[Unset, bool]):
|
|
76
|
+
atlassian_map_waldur_users_to_servicedesk_agents (Union[Unset, bool]):
|
|
77
|
+
atlassian_strange_setting (Union[Unset, int]):
|
|
78
|
+
atlassian_api_url (Union[Unset, str]):
|
|
79
|
+
atlassian_username (Union[Unset, str]):
|
|
80
|
+
atlassian_password (Union[Unset, str]):
|
|
81
|
+
atlassian_email (Union[Unset, str]):
|
|
82
|
+
atlassian_token (Union[Unset, str]):
|
|
83
|
+
atlassian_verify_ssl (Union[Unset, bool]):
|
|
84
|
+
atlassian_project_id (Union[Unset, str]):
|
|
85
|
+
atlassian_shared_username (Union[Unset, bool]):
|
|
86
|
+
atlassian_custom_issue_field_mapping_enabled (Union[Unset, bool]):
|
|
87
|
+
atlassian_default_offering_issue_type (Union[Unset, str]):
|
|
88
|
+
atlassian_excluded_attachment_types (Union[Unset, str]):
|
|
89
|
+
atlassian_pull_priorities (Union[Unset, bool]):
|
|
90
|
+
atlassian_issue_types (Union[Unset, str]):
|
|
91
|
+
atlassian_description_template (Union[Unset, str]):
|
|
92
|
+
atlassian_summary_template (Union[Unset, str]):
|
|
93
|
+
atlassian_affected_resource_field (Union[Unset, str]):
|
|
94
|
+
atlassian_impact_field (Union[Unset, str]):
|
|
95
|
+
atlassian_organisation_field (Union[Unset, str]):
|
|
96
|
+
atlassian_resolution_sla_field (Union[Unset, str]):
|
|
97
|
+
atlassian_project_field (Union[Unset, str]):
|
|
98
|
+
atlassian_reporter_field (Union[Unset, str]):
|
|
99
|
+
atlassian_caller_field (Union[Unset, str]):
|
|
100
|
+
atlassian_sla_field (Union[Unset, str]):
|
|
101
|
+
atlassian_linked_issue_type (Union[Unset, str]):
|
|
102
|
+
atlassian_satisfaction_field (Union[Unset, str]):
|
|
103
|
+
atlassian_request_feedback_field (Union[Unset, str]):
|
|
104
|
+
atlassian_template_field (Union[Unset, str]):
|
|
105
|
+
zammad_api_url (Union[Unset, str]):
|
|
106
|
+
zammad_token (Union[Unset, str]):
|
|
107
|
+
zammad_group (Union[Unset, str]):
|
|
108
|
+
zammad_article_type (Union[Unset, str]):
|
|
109
|
+
zammad_comment_marker (Union[Unset, str]):
|
|
110
|
+
zammad_comment_prefix (Union[Unset, str]):
|
|
111
|
+
zammad_comment_cooldown_duration (Union[Unset, int]):
|
|
112
|
+
smax_api_url (Union[Unset, str]):
|
|
113
|
+
smax_tenant_id (Union[Unset, str]):
|
|
114
|
+
smax_login (Union[Unset, str]):
|
|
115
|
+
smax_password (Union[Unset, str]):
|
|
116
|
+
smax_organisation_field (Union[Unset, str]):
|
|
117
|
+
smax_project_field (Union[Unset, str]):
|
|
118
|
+
smax_affected_resource_field (Union[Unset, str]):
|
|
119
|
+
smax_times_to_pull (Union[Unset, int]):
|
|
120
|
+
smax_seconds_to_wait (Union[Unset, int]):
|
|
121
|
+
smax_creation_source_name (Union[Unset, str]):
|
|
122
|
+
smax_requests_offering (Union[Unset, str]):
|
|
123
|
+
smax_verify_ssl (Union[Unset, bool]):
|
|
124
|
+
enable_mock_service_account_backend (Union[Unset, bool]):
|
|
125
|
+
proposal_review_duration (Union[Unset, int]):
|
|
126
|
+
user_table_columns (Union[Unset, str]):
|
|
127
|
+
auto_approve_user_tos (Union[Unset, bool]):
|
|
128
|
+
freeipa_enabled (Union[Unset, bool]):
|
|
129
|
+
freeipa_hostname (Union[Unset, str]):
|
|
130
|
+
freeipa_username (Union[Unset, str]):
|
|
131
|
+
freeipa_password (Union[Unset, str]):
|
|
132
|
+
freeipa_verify_ssl (Union[Unset, bool]):
|
|
133
|
+
freeipa_username_prefix (Union[Unset, str]):
|
|
134
|
+
freeipa_groupname_prefix (Union[Unset, str]):
|
|
135
|
+
freeipa_blacklisted_usernames (Union[Unset, list[str]]):
|
|
136
|
+
freeipa_group_synchronization_enabled (Union[Unset, bool]):
|
|
137
|
+
keycloak_icon (Union[File, None, Unset]):
|
|
138
|
+
countries (Union[Unset, list[str]]):
|
|
139
|
+
oidc_introspection_url (Union[Unset, str]):
|
|
140
|
+
oidc_client_id (Union[Unset, str]):
|
|
141
|
+
oidc_client_secret (Union[Unset, str]):
|
|
142
|
+
oidc_user_field (Union[Unset, str]):
|
|
143
|
+
oidc_cache_timeout (Union[Unset, int]):
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
site_name: Union[Unset, str] = UNSET
|
|
147
|
+
site_description: Union[Unset, str] = UNSET
|
|
148
|
+
homeport_url: Union[Unset, str] = UNSET
|
|
149
|
+
rancher_username_input_label: Union[Unset, str] = UNSET
|
|
150
|
+
site_address: Union[Unset, str] = UNSET
|
|
151
|
+
site_email: Union[Unset, str] = UNSET
|
|
152
|
+
site_phone: Union[Unset, str] = UNSET
|
|
153
|
+
currency_name: Union[Unset, str] = UNSET
|
|
154
|
+
thumbnail_size: Union[Unset, str] = UNSET
|
|
155
|
+
anonymous_user_can_view_offerings: Union[Unset, bool] = UNSET
|
|
156
|
+
anonymous_user_can_view_plans: Union[Unset, bool] = UNSET
|
|
157
|
+
notify_staff_about_approvals: Union[Unset, bool] = UNSET
|
|
158
|
+
notify_about_resource_change: Union[Unset, bool] = UNSET
|
|
159
|
+
disable_sending_notifications_about_resource_update: Union[Unset, bool] = UNSET
|
|
160
|
+
marketplace_landing_page: Union[Unset, str] = UNSET
|
|
161
|
+
enable_stale_resource_notifications: Union[Unset, bool] = UNSET
|
|
162
|
+
telemetry_url: Union[Unset, str] = UNSET
|
|
163
|
+
telemetry_version: Union[Unset, int] = UNSET
|
|
164
|
+
script_run_mode: Union[Unset, str] = UNSET
|
|
165
|
+
docker_client: Union[Unset, str] = UNSET
|
|
166
|
+
docker_run_options: Union[Unset, str] = UNSET
|
|
167
|
+
docker_script_dir: Union[Unset, str] = UNSET
|
|
168
|
+
docker_remove_container: Union[Unset, bool] = UNSET
|
|
169
|
+
docker_images: Union[Unset, str] = UNSET
|
|
170
|
+
docker_volume_name: Union[Unset, str] = UNSET
|
|
171
|
+
k8s_namespace: Union[Unset, str] = UNSET
|
|
172
|
+
k8s_config_path: Union[Unset, str] = UNSET
|
|
173
|
+
k8s_job_timeout: Union[Unset, int] = UNSET
|
|
174
|
+
enable_strict_check_accepting_invitation: Union[Unset, bool] = UNSET
|
|
175
|
+
invitation_disable_multiple_roles: Union[Unset, bool] = UNSET
|
|
176
|
+
default_idp: Union[Unset, str] = UNSET
|
|
177
|
+
docs_url: Union[Unset, str] = UNSET
|
|
178
|
+
short_page_title: Union[Unset, str] = UNSET
|
|
179
|
+
full_page_title: Union[Unset, str] = UNSET
|
|
180
|
+
brand_color: Union[Unset, str] = UNSET
|
|
181
|
+
hero_link_label: Union[Unset, str] = UNSET
|
|
182
|
+
hero_link_url: Union[Unset, str] = UNSET
|
|
183
|
+
support_portal_url: Union[Unset, str] = UNSET
|
|
184
|
+
common_footer_text: Union[Unset, str] = UNSET
|
|
185
|
+
common_footer_html: Union[Unset, str] = UNSET
|
|
186
|
+
language_choices: Union[Unset, str] = UNSET
|
|
187
|
+
disable_dark_theme: Union[Unset, bool] = UNSET
|
|
188
|
+
powered_by_logo: Union[File, None, Unset] = UNSET
|
|
189
|
+
hero_image: Union[File, None, Unset] = UNSET
|
|
190
|
+
marketplace_hero_image: Union[File, None, Unset] = UNSET
|
|
191
|
+
call_management_hero_image: Union[File, None, Unset] = UNSET
|
|
192
|
+
sidebar_logo: Union[File, None, Unset] = UNSET
|
|
193
|
+
sidebar_logo_dark: Union[File, None, Unset] = UNSET
|
|
194
|
+
sidebar_logo_mobile: Union[File, None, Unset] = UNSET
|
|
195
|
+
sidebar_style: Union[Unset, str] = UNSET
|
|
196
|
+
site_logo: Union[File, None, Unset] = UNSET
|
|
197
|
+
login_logo: Union[File, None, Unset] = UNSET
|
|
198
|
+
favicon: Union[File, None, Unset] = UNSET
|
|
199
|
+
offering_logo_placeholder: Union[File, None, Unset] = UNSET
|
|
200
|
+
waldur_support_enabled: Union[Unset, bool] = UNSET
|
|
201
|
+
waldur_support_active_backend_type: Union[Unset, str] = UNSET
|
|
202
|
+
waldur_support_display_request_type: Union[Unset, bool] = UNSET
|
|
203
|
+
atlassian_use_old_api: Union[Unset, bool] = UNSET
|
|
204
|
+
atlassian_use_teenage_api: Union[Unset, bool] = UNSET
|
|
205
|
+
atlassian_use_automatic_request_mapping: Union[Unset, bool] = UNSET
|
|
206
|
+
atlassian_map_waldur_users_to_servicedesk_agents: Union[Unset, bool] = UNSET
|
|
207
|
+
atlassian_strange_setting: Union[Unset, int] = UNSET
|
|
208
|
+
atlassian_api_url: Union[Unset, str] = UNSET
|
|
209
|
+
atlassian_username: Union[Unset, str] = UNSET
|
|
210
|
+
atlassian_password: Union[Unset, str] = UNSET
|
|
211
|
+
atlassian_email: Union[Unset, str] = UNSET
|
|
212
|
+
atlassian_token: Union[Unset, str] = UNSET
|
|
213
|
+
atlassian_verify_ssl: Union[Unset, bool] = UNSET
|
|
214
|
+
atlassian_project_id: Union[Unset, str] = UNSET
|
|
215
|
+
atlassian_shared_username: Union[Unset, bool] = UNSET
|
|
216
|
+
atlassian_custom_issue_field_mapping_enabled: Union[Unset, bool] = UNSET
|
|
217
|
+
atlassian_default_offering_issue_type: Union[Unset, str] = UNSET
|
|
218
|
+
atlassian_excluded_attachment_types: Union[Unset, str] = UNSET
|
|
219
|
+
atlassian_pull_priorities: Union[Unset, bool] = UNSET
|
|
220
|
+
atlassian_issue_types: Union[Unset, str] = UNSET
|
|
221
|
+
atlassian_description_template: Union[Unset, str] = UNSET
|
|
222
|
+
atlassian_summary_template: Union[Unset, str] = UNSET
|
|
223
|
+
atlassian_affected_resource_field: Union[Unset, str] = UNSET
|
|
224
|
+
atlassian_impact_field: Union[Unset, str] = UNSET
|
|
225
|
+
atlassian_organisation_field: Union[Unset, str] = UNSET
|
|
226
|
+
atlassian_resolution_sla_field: Union[Unset, str] = UNSET
|
|
227
|
+
atlassian_project_field: Union[Unset, str] = UNSET
|
|
228
|
+
atlassian_reporter_field: Union[Unset, str] = UNSET
|
|
229
|
+
atlassian_caller_field: Union[Unset, str] = UNSET
|
|
230
|
+
atlassian_sla_field: Union[Unset, str] = UNSET
|
|
231
|
+
atlassian_linked_issue_type: Union[Unset, str] = UNSET
|
|
232
|
+
atlassian_satisfaction_field: Union[Unset, str] = UNSET
|
|
233
|
+
atlassian_request_feedback_field: Union[Unset, str] = UNSET
|
|
234
|
+
atlassian_template_field: Union[Unset, str] = UNSET
|
|
235
|
+
zammad_api_url: Union[Unset, str] = UNSET
|
|
236
|
+
zammad_token: Union[Unset, str] = UNSET
|
|
237
|
+
zammad_group: Union[Unset, str] = UNSET
|
|
238
|
+
zammad_article_type: Union[Unset, str] = UNSET
|
|
239
|
+
zammad_comment_marker: Union[Unset, str] = UNSET
|
|
240
|
+
zammad_comment_prefix: Union[Unset, str] = UNSET
|
|
241
|
+
zammad_comment_cooldown_duration: Union[Unset, int] = UNSET
|
|
242
|
+
smax_api_url: Union[Unset, str] = UNSET
|
|
243
|
+
smax_tenant_id: Union[Unset, str] = UNSET
|
|
244
|
+
smax_login: Union[Unset, str] = UNSET
|
|
245
|
+
smax_password: Union[Unset, str] = UNSET
|
|
246
|
+
smax_organisation_field: Union[Unset, str] = UNSET
|
|
247
|
+
smax_project_field: Union[Unset, str] = UNSET
|
|
248
|
+
smax_affected_resource_field: Union[Unset, str] = UNSET
|
|
249
|
+
smax_times_to_pull: Union[Unset, int] = UNSET
|
|
250
|
+
smax_seconds_to_wait: Union[Unset, int] = UNSET
|
|
251
|
+
smax_creation_source_name: Union[Unset, str] = UNSET
|
|
252
|
+
smax_requests_offering: Union[Unset, str] = UNSET
|
|
253
|
+
smax_verify_ssl: Union[Unset, bool] = UNSET
|
|
254
|
+
enable_mock_service_account_backend: Union[Unset, bool] = UNSET
|
|
255
|
+
proposal_review_duration: Union[Unset, int] = UNSET
|
|
256
|
+
user_table_columns: Union[Unset, str] = UNSET
|
|
257
|
+
auto_approve_user_tos: Union[Unset, bool] = UNSET
|
|
258
|
+
freeipa_enabled: Union[Unset, bool] = UNSET
|
|
259
|
+
freeipa_hostname: Union[Unset, str] = UNSET
|
|
260
|
+
freeipa_username: Union[Unset, str] = UNSET
|
|
261
|
+
freeipa_password: Union[Unset, str] = UNSET
|
|
262
|
+
freeipa_verify_ssl: Union[Unset, bool] = UNSET
|
|
263
|
+
freeipa_username_prefix: Union[Unset, str] = UNSET
|
|
264
|
+
freeipa_groupname_prefix: Union[Unset, str] = UNSET
|
|
265
|
+
freeipa_blacklisted_usernames: Union[Unset, list[str]] = UNSET
|
|
266
|
+
freeipa_group_synchronization_enabled: Union[Unset, bool] = UNSET
|
|
267
|
+
keycloak_icon: Union[File, None, Unset] = UNSET
|
|
268
|
+
countries: Union[Unset, list[str]] = UNSET
|
|
269
|
+
oidc_introspection_url: Union[Unset, str] = UNSET
|
|
270
|
+
oidc_client_id: Union[Unset, str] = UNSET
|
|
271
|
+
oidc_client_secret: Union[Unset, str] = UNSET
|
|
272
|
+
oidc_user_field: Union[Unset, str] = UNSET
|
|
273
|
+
oidc_cache_timeout: Union[Unset, int] = UNSET
|
|
274
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
275
|
+
|
|
276
|
+
def to_dict(self) -> dict[str, Any]:
|
|
277
|
+
site_name = self.site_name
|
|
278
|
+
|
|
279
|
+
site_description = self.site_description
|
|
280
|
+
|
|
281
|
+
homeport_url = self.homeport_url
|
|
282
|
+
|
|
283
|
+
rancher_username_input_label = self.rancher_username_input_label
|
|
284
|
+
|
|
285
|
+
site_address = self.site_address
|
|
286
|
+
|
|
287
|
+
site_email = self.site_email
|
|
288
|
+
|
|
289
|
+
site_phone = self.site_phone
|
|
290
|
+
|
|
291
|
+
currency_name = self.currency_name
|
|
292
|
+
|
|
293
|
+
thumbnail_size = self.thumbnail_size
|
|
294
|
+
|
|
295
|
+
anonymous_user_can_view_offerings = self.anonymous_user_can_view_offerings
|
|
296
|
+
|
|
297
|
+
anonymous_user_can_view_plans = self.anonymous_user_can_view_plans
|
|
298
|
+
|
|
299
|
+
notify_staff_about_approvals = self.notify_staff_about_approvals
|
|
300
|
+
|
|
301
|
+
notify_about_resource_change = self.notify_about_resource_change
|
|
302
|
+
|
|
303
|
+
disable_sending_notifications_about_resource_update = self.disable_sending_notifications_about_resource_update
|
|
304
|
+
|
|
305
|
+
marketplace_landing_page = self.marketplace_landing_page
|
|
306
|
+
|
|
307
|
+
enable_stale_resource_notifications = self.enable_stale_resource_notifications
|
|
308
|
+
|
|
309
|
+
telemetry_url = self.telemetry_url
|
|
310
|
+
|
|
311
|
+
telemetry_version = self.telemetry_version
|
|
312
|
+
|
|
313
|
+
script_run_mode = self.script_run_mode
|
|
314
|
+
|
|
315
|
+
docker_client = self.docker_client
|
|
316
|
+
|
|
317
|
+
docker_run_options = self.docker_run_options
|
|
318
|
+
|
|
319
|
+
docker_script_dir = self.docker_script_dir
|
|
320
|
+
|
|
321
|
+
docker_remove_container = self.docker_remove_container
|
|
322
|
+
|
|
323
|
+
docker_images = self.docker_images
|
|
324
|
+
|
|
325
|
+
docker_volume_name = self.docker_volume_name
|
|
326
|
+
|
|
327
|
+
k8s_namespace = self.k8s_namespace
|
|
328
|
+
|
|
329
|
+
k8s_config_path = self.k8s_config_path
|
|
330
|
+
|
|
331
|
+
k8s_job_timeout = self.k8s_job_timeout
|
|
332
|
+
|
|
333
|
+
enable_strict_check_accepting_invitation = self.enable_strict_check_accepting_invitation
|
|
334
|
+
|
|
335
|
+
invitation_disable_multiple_roles = self.invitation_disable_multiple_roles
|
|
336
|
+
|
|
337
|
+
default_idp = self.default_idp
|
|
338
|
+
|
|
339
|
+
docs_url = self.docs_url
|
|
340
|
+
|
|
341
|
+
short_page_title = self.short_page_title
|
|
342
|
+
|
|
343
|
+
full_page_title = self.full_page_title
|
|
344
|
+
|
|
345
|
+
brand_color = self.brand_color
|
|
346
|
+
|
|
347
|
+
hero_link_label = self.hero_link_label
|
|
348
|
+
|
|
349
|
+
hero_link_url = self.hero_link_url
|
|
350
|
+
|
|
351
|
+
support_portal_url = self.support_portal_url
|
|
352
|
+
|
|
353
|
+
common_footer_text = self.common_footer_text
|
|
354
|
+
|
|
355
|
+
common_footer_html = self.common_footer_html
|
|
356
|
+
|
|
357
|
+
language_choices = self.language_choices
|
|
358
|
+
|
|
359
|
+
disable_dark_theme = self.disable_dark_theme
|
|
360
|
+
|
|
361
|
+
powered_by_logo: Union[FileJsonType, None, Unset]
|
|
362
|
+
if isinstance(self.powered_by_logo, Unset):
|
|
363
|
+
powered_by_logo = UNSET
|
|
364
|
+
elif isinstance(self.powered_by_logo, File):
|
|
365
|
+
powered_by_logo = self.powered_by_logo.to_tuple()
|
|
366
|
+
|
|
367
|
+
else:
|
|
368
|
+
powered_by_logo = self.powered_by_logo
|
|
369
|
+
|
|
370
|
+
hero_image: Union[FileJsonType, None, Unset]
|
|
371
|
+
if isinstance(self.hero_image, Unset):
|
|
372
|
+
hero_image = UNSET
|
|
373
|
+
elif isinstance(self.hero_image, File):
|
|
374
|
+
hero_image = self.hero_image.to_tuple()
|
|
375
|
+
|
|
376
|
+
else:
|
|
377
|
+
hero_image = self.hero_image
|
|
378
|
+
|
|
379
|
+
marketplace_hero_image: Union[FileJsonType, None, Unset]
|
|
380
|
+
if isinstance(self.marketplace_hero_image, Unset):
|
|
381
|
+
marketplace_hero_image = UNSET
|
|
382
|
+
elif isinstance(self.marketplace_hero_image, File):
|
|
383
|
+
marketplace_hero_image = self.marketplace_hero_image.to_tuple()
|
|
384
|
+
|
|
385
|
+
else:
|
|
386
|
+
marketplace_hero_image = self.marketplace_hero_image
|
|
387
|
+
|
|
388
|
+
call_management_hero_image: Union[FileJsonType, None, Unset]
|
|
389
|
+
if isinstance(self.call_management_hero_image, Unset):
|
|
390
|
+
call_management_hero_image = UNSET
|
|
391
|
+
elif isinstance(self.call_management_hero_image, File):
|
|
392
|
+
call_management_hero_image = self.call_management_hero_image.to_tuple()
|
|
393
|
+
|
|
394
|
+
else:
|
|
395
|
+
call_management_hero_image = self.call_management_hero_image
|
|
396
|
+
|
|
397
|
+
sidebar_logo: Union[FileJsonType, None, Unset]
|
|
398
|
+
if isinstance(self.sidebar_logo, Unset):
|
|
399
|
+
sidebar_logo = UNSET
|
|
400
|
+
elif isinstance(self.sidebar_logo, File):
|
|
401
|
+
sidebar_logo = self.sidebar_logo.to_tuple()
|
|
402
|
+
|
|
403
|
+
else:
|
|
404
|
+
sidebar_logo = self.sidebar_logo
|
|
405
|
+
|
|
406
|
+
sidebar_logo_dark: Union[FileJsonType, None, Unset]
|
|
407
|
+
if isinstance(self.sidebar_logo_dark, Unset):
|
|
408
|
+
sidebar_logo_dark = UNSET
|
|
409
|
+
elif isinstance(self.sidebar_logo_dark, File):
|
|
410
|
+
sidebar_logo_dark = self.sidebar_logo_dark.to_tuple()
|
|
411
|
+
|
|
412
|
+
else:
|
|
413
|
+
sidebar_logo_dark = self.sidebar_logo_dark
|
|
414
|
+
|
|
415
|
+
sidebar_logo_mobile: Union[FileJsonType, None, Unset]
|
|
416
|
+
if isinstance(self.sidebar_logo_mobile, Unset):
|
|
417
|
+
sidebar_logo_mobile = UNSET
|
|
418
|
+
elif isinstance(self.sidebar_logo_mobile, File):
|
|
419
|
+
sidebar_logo_mobile = self.sidebar_logo_mobile.to_tuple()
|
|
420
|
+
|
|
421
|
+
else:
|
|
422
|
+
sidebar_logo_mobile = self.sidebar_logo_mobile
|
|
423
|
+
|
|
424
|
+
sidebar_style = self.sidebar_style
|
|
425
|
+
|
|
426
|
+
site_logo: Union[FileJsonType, None, Unset]
|
|
427
|
+
if isinstance(self.site_logo, Unset):
|
|
428
|
+
site_logo = UNSET
|
|
429
|
+
elif isinstance(self.site_logo, File):
|
|
430
|
+
site_logo = self.site_logo.to_tuple()
|
|
431
|
+
|
|
432
|
+
else:
|
|
433
|
+
site_logo = self.site_logo
|
|
434
|
+
|
|
435
|
+
login_logo: Union[FileJsonType, None, Unset]
|
|
436
|
+
if isinstance(self.login_logo, Unset):
|
|
437
|
+
login_logo = UNSET
|
|
438
|
+
elif isinstance(self.login_logo, File):
|
|
439
|
+
login_logo = self.login_logo.to_tuple()
|
|
440
|
+
|
|
441
|
+
else:
|
|
442
|
+
login_logo = self.login_logo
|
|
443
|
+
|
|
444
|
+
favicon: Union[FileJsonType, None, Unset]
|
|
445
|
+
if isinstance(self.favicon, Unset):
|
|
446
|
+
favicon = UNSET
|
|
447
|
+
elif isinstance(self.favicon, File):
|
|
448
|
+
favicon = self.favicon.to_tuple()
|
|
449
|
+
|
|
450
|
+
else:
|
|
451
|
+
favicon = self.favicon
|
|
452
|
+
|
|
453
|
+
offering_logo_placeholder: Union[FileJsonType, None, Unset]
|
|
454
|
+
if isinstance(self.offering_logo_placeholder, Unset):
|
|
455
|
+
offering_logo_placeholder = UNSET
|
|
456
|
+
elif isinstance(self.offering_logo_placeholder, File):
|
|
457
|
+
offering_logo_placeholder = self.offering_logo_placeholder.to_tuple()
|
|
458
|
+
|
|
459
|
+
else:
|
|
460
|
+
offering_logo_placeholder = self.offering_logo_placeholder
|
|
461
|
+
|
|
462
|
+
waldur_support_enabled = self.waldur_support_enabled
|
|
463
|
+
|
|
464
|
+
waldur_support_active_backend_type = self.waldur_support_active_backend_type
|
|
465
|
+
|
|
466
|
+
waldur_support_display_request_type = self.waldur_support_display_request_type
|
|
467
|
+
|
|
468
|
+
atlassian_use_old_api = self.atlassian_use_old_api
|
|
469
|
+
|
|
470
|
+
atlassian_use_teenage_api = self.atlassian_use_teenage_api
|
|
471
|
+
|
|
472
|
+
atlassian_use_automatic_request_mapping = self.atlassian_use_automatic_request_mapping
|
|
473
|
+
|
|
474
|
+
atlassian_map_waldur_users_to_servicedesk_agents = self.atlassian_map_waldur_users_to_servicedesk_agents
|
|
475
|
+
|
|
476
|
+
atlassian_strange_setting = self.atlassian_strange_setting
|
|
477
|
+
|
|
478
|
+
atlassian_api_url = self.atlassian_api_url
|
|
479
|
+
|
|
480
|
+
atlassian_username = self.atlassian_username
|
|
481
|
+
|
|
482
|
+
atlassian_password = self.atlassian_password
|
|
483
|
+
|
|
484
|
+
atlassian_email = self.atlassian_email
|
|
485
|
+
|
|
486
|
+
atlassian_token = self.atlassian_token
|
|
487
|
+
|
|
488
|
+
atlassian_verify_ssl = self.atlassian_verify_ssl
|
|
489
|
+
|
|
490
|
+
atlassian_project_id = self.atlassian_project_id
|
|
491
|
+
|
|
492
|
+
atlassian_shared_username = self.atlassian_shared_username
|
|
493
|
+
|
|
494
|
+
atlassian_custom_issue_field_mapping_enabled = self.atlassian_custom_issue_field_mapping_enabled
|
|
495
|
+
|
|
496
|
+
atlassian_default_offering_issue_type = self.atlassian_default_offering_issue_type
|
|
497
|
+
|
|
498
|
+
atlassian_excluded_attachment_types = self.atlassian_excluded_attachment_types
|
|
499
|
+
|
|
500
|
+
atlassian_pull_priorities = self.atlassian_pull_priorities
|
|
501
|
+
|
|
502
|
+
atlassian_issue_types = self.atlassian_issue_types
|
|
503
|
+
|
|
504
|
+
atlassian_description_template = self.atlassian_description_template
|
|
505
|
+
|
|
506
|
+
atlassian_summary_template = self.atlassian_summary_template
|
|
507
|
+
|
|
508
|
+
atlassian_affected_resource_field = self.atlassian_affected_resource_field
|
|
509
|
+
|
|
510
|
+
atlassian_impact_field = self.atlassian_impact_field
|
|
511
|
+
|
|
512
|
+
atlassian_organisation_field = self.atlassian_organisation_field
|
|
513
|
+
|
|
514
|
+
atlassian_resolution_sla_field = self.atlassian_resolution_sla_field
|
|
515
|
+
|
|
516
|
+
atlassian_project_field = self.atlassian_project_field
|
|
517
|
+
|
|
518
|
+
atlassian_reporter_field = self.atlassian_reporter_field
|
|
519
|
+
|
|
520
|
+
atlassian_caller_field = self.atlassian_caller_field
|
|
521
|
+
|
|
522
|
+
atlassian_sla_field = self.atlassian_sla_field
|
|
523
|
+
|
|
524
|
+
atlassian_linked_issue_type = self.atlassian_linked_issue_type
|
|
525
|
+
|
|
526
|
+
atlassian_satisfaction_field = self.atlassian_satisfaction_field
|
|
527
|
+
|
|
528
|
+
atlassian_request_feedback_field = self.atlassian_request_feedback_field
|
|
529
|
+
|
|
530
|
+
atlassian_template_field = self.atlassian_template_field
|
|
531
|
+
|
|
532
|
+
zammad_api_url = self.zammad_api_url
|
|
533
|
+
|
|
534
|
+
zammad_token = self.zammad_token
|
|
535
|
+
|
|
536
|
+
zammad_group = self.zammad_group
|
|
537
|
+
|
|
538
|
+
zammad_article_type = self.zammad_article_type
|
|
539
|
+
|
|
540
|
+
zammad_comment_marker = self.zammad_comment_marker
|
|
541
|
+
|
|
542
|
+
zammad_comment_prefix = self.zammad_comment_prefix
|
|
543
|
+
|
|
544
|
+
zammad_comment_cooldown_duration = self.zammad_comment_cooldown_duration
|
|
545
|
+
|
|
546
|
+
smax_api_url = self.smax_api_url
|
|
547
|
+
|
|
548
|
+
smax_tenant_id = self.smax_tenant_id
|
|
549
|
+
|
|
550
|
+
smax_login = self.smax_login
|
|
551
|
+
|
|
552
|
+
smax_password = self.smax_password
|
|
553
|
+
|
|
554
|
+
smax_organisation_field = self.smax_organisation_field
|
|
555
|
+
|
|
556
|
+
smax_project_field = self.smax_project_field
|
|
557
|
+
|
|
558
|
+
smax_affected_resource_field = self.smax_affected_resource_field
|
|
559
|
+
|
|
560
|
+
smax_times_to_pull = self.smax_times_to_pull
|
|
561
|
+
|
|
562
|
+
smax_seconds_to_wait = self.smax_seconds_to_wait
|
|
563
|
+
|
|
564
|
+
smax_creation_source_name = self.smax_creation_source_name
|
|
565
|
+
|
|
566
|
+
smax_requests_offering = self.smax_requests_offering
|
|
567
|
+
|
|
568
|
+
smax_verify_ssl = self.smax_verify_ssl
|
|
569
|
+
|
|
570
|
+
enable_mock_service_account_backend = self.enable_mock_service_account_backend
|
|
571
|
+
|
|
572
|
+
proposal_review_duration = self.proposal_review_duration
|
|
573
|
+
|
|
574
|
+
user_table_columns = self.user_table_columns
|
|
575
|
+
|
|
576
|
+
auto_approve_user_tos = self.auto_approve_user_tos
|
|
577
|
+
|
|
578
|
+
freeipa_enabled = self.freeipa_enabled
|
|
579
|
+
|
|
580
|
+
freeipa_hostname = self.freeipa_hostname
|
|
581
|
+
|
|
582
|
+
freeipa_username = self.freeipa_username
|
|
583
|
+
|
|
584
|
+
freeipa_password = self.freeipa_password
|
|
585
|
+
|
|
586
|
+
freeipa_verify_ssl = self.freeipa_verify_ssl
|
|
587
|
+
|
|
588
|
+
freeipa_username_prefix = self.freeipa_username_prefix
|
|
589
|
+
|
|
590
|
+
freeipa_groupname_prefix = self.freeipa_groupname_prefix
|
|
591
|
+
|
|
592
|
+
freeipa_blacklisted_usernames: Union[Unset, list[str]] = UNSET
|
|
593
|
+
if not isinstance(self.freeipa_blacklisted_usernames, Unset):
|
|
594
|
+
freeipa_blacklisted_usernames = self.freeipa_blacklisted_usernames
|
|
595
|
+
|
|
596
|
+
freeipa_group_synchronization_enabled = self.freeipa_group_synchronization_enabled
|
|
597
|
+
|
|
598
|
+
keycloak_icon: Union[FileJsonType, None, Unset]
|
|
599
|
+
if isinstance(self.keycloak_icon, Unset):
|
|
600
|
+
keycloak_icon = UNSET
|
|
601
|
+
elif isinstance(self.keycloak_icon, File):
|
|
602
|
+
keycloak_icon = self.keycloak_icon.to_tuple()
|
|
603
|
+
|
|
604
|
+
else:
|
|
605
|
+
keycloak_icon = self.keycloak_icon
|
|
606
|
+
|
|
607
|
+
countries: Union[Unset, list[str]] = UNSET
|
|
608
|
+
if not isinstance(self.countries, Unset):
|
|
609
|
+
countries = self.countries
|
|
610
|
+
|
|
611
|
+
oidc_introspection_url = self.oidc_introspection_url
|
|
612
|
+
|
|
613
|
+
oidc_client_id = self.oidc_client_id
|
|
614
|
+
|
|
615
|
+
oidc_client_secret = self.oidc_client_secret
|
|
616
|
+
|
|
617
|
+
oidc_user_field = self.oidc_user_field
|
|
618
|
+
|
|
619
|
+
oidc_cache_timeout = self.oidc_cache_timeout
|
|
620
|
+
|
|
621
|
+
field_dict: dict[str, Any] = {}
|
|
622
|
+
field_dict.update(self.additional_properties)
|
|
623
|
+
field_dict.update({})
|
|
624
|
+
if site_name is not UNSET:
|
|
625
|
+
field_dict["SITE_NAME"] = site_name
|
|
626
|
+
if site_description is not UNSET:
|
|
627
|
+
field_dict["SITE_DESCRIPTION"] = site_description
|
|
628
|
+
if homeport_url is not UNSET:
|
|
629
|
+
field_dict["HOMEPORT_URL"] = homeport_url
|
|
630
|
+
if rancher_username_input_label is not UNSET:
|
|
631
|
+
field_dict["RANCHER_USERNAME_INPUT_LABEL"] = rancher_username_input_label
|
|
632
|
+
if site_address is not UNSET:
|
|
633
|
+
field_dict["SITE_ADDRESS"] = site_address
|
|
634
|
+
if site_email is not UNSET:
|
|
635
|
+
field_dict["SITE_EMAIL"] = site_email
|
|
636
|
+
if site_phone is not UNSET:
|
|
637
|
+
field_dict["SITE_PHONE"] = site_phone
|
|
638
|
+
if currency_name is not UNSET:
|
|
639
|
+
field_dict["CURRENCY_NAME"] = currency_name
|
|
640
|
+
if thumbnail_size is not UNSET:
|
|
641
|
+
field_dict["THUMBNAIL_SIZE"] = thumbnail_size
|
|
642
|
+
if anonymous_user_can_view_offerings is not UNSET:
|
|
643
|
+
field_dict["ANONYMOUS_USER_CAN_VIEW_OFFERINGS"] = anonymous_user_can_view_offerings
|
|
644
|
+
if anonymous_user_can_view_plans is not UNSET:
|
|
645
|
+
field_dict["ANONYMOUS_USER_CAN_VIEW_PLANS"] = anonymous_user_can_view_plans
|
|
646
|
+
if notify_staff_about_approvals is not UNSET:
|
|
647
|
+
field_dict["NOTIFY_STAFF_ABOUT_APPROVALS"] = notify_staff_about_approvals
|
|
648
|
+
if notify_about_resource_change is not UNSET:
|
|
649
|
+
field_dict["NOTIFY_ABOUT_RESOURCE_CHANGE"] = notify_about_resource_change
|
|
650
|
+
if disable_sending_notifications_about_resource_update is not UNSET:
|
|
651
|
+
field_dict["DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE"] = (
|
|
652
|
+
disable_sending_notifications_about_resource_update
|
|
653
|
+
)
|
|
654
|
+
if marketplace_landing_page is not UNSET:
|
|
655
|
+
field_dict["MARKETPLACE_LANDING_PAGE"] = marketplace_landing_page
|
|
656
|
+
if enable_stale_resource_notifications is not UNSET:
|
|
657
|
+
field_dict["ENABLE_STALE_RESOURCE_NOTIFICATIONS"] = enable_stale_resource_notifications
|
|
658
|
+
if telemetry_url is not UNSET:
|
|
659
|
+
field_dict["TELEMETRY_URL"] = telemetry_url
|
|
660
|
+
if telemetry_version is not UNSET:
|
|
661
|
+
field_dict["TELEMETRY_VERSION"] = telemetry_version
|
|
662
|
+
if script_run_mode is not UNSET:
|
|
663
|
+
field_dict["SCRIPT_RUN_MODE"] = script_run_mode
|
|
664
|
+
if docker_client is not UNSET:
|
|
665
|
+
field_dict["DOCKER_CLIENT"] = docker_client
|
|
666
|
+
if docker_run_options is not UNSET:
|
|
667
|
+
field_dict["DOCKER_RUN_OPTIONS"] = docker_run_options
|
|
668
|
+
if docker_script_dir is not UNSET:
|
|
669
|
+
field_dict["DOCKER_SCRIPT_DIR"] = docker_script_dir
|
|
670
|
+
if docker_remove_container is not UNSET:
|
|
671
|
+
field_dict["DOCKER_REMOVE_CONTAINER"] = docker_remove_container
|
|
672
|
+
if docker_images is not UNSET:
|
|
673
|
+
field_dict["DOCKER_IMAGES"] = docker_images
|
|
674
|
+
if docker_volume_name is not UNSET:
|
|
675
|
+
field_dict["DOCKER_VOLUME_NAME"] = docker_volume_name
|
|
676
|
+
if k8s_namespace is not UNSET:
|
|
677
|
+
field_dict["K8S_NAMESPACE"] = k8s_namespace
|
|
678
|
+
if k8s_config_path is not UNSET:
|
|
679
|
+
field_dict["K8S_CONFIG_PATH"] = k8s_config_path
|
|
680
|
+
if k8s_job_timeout is not UNSET:
|
|
681
|
+
field_dict["K8S_JOB_TIMEOUT"] = k8s_job_timeout
|
|
682
|
+
if enable_strict_check_accepting_invitation is not UNSET:
|
|
683
|
+
field_dict["ENABLE_STRICT_CHECK_ACCEPTING_INVITATION"] = enable_strict_check_accepting_invitation
|
|
684
|
+
if invitation_disable_multiple_roles is not UNSET:
|
|
685
|
+
field_dict["INVITATION_DISABLE_MULTIPLE_ROLES"] = invitation_disable_multiple_roles
|
|
686
|
+
if default_idp is not UNSET:
|
|
687
|
+
field_dict["DEFAULT_IDP"] = default_idp
|
|
688
|
+
if docs_url is not UNSET:
|
|
689
|
+
field_dict["DOCS_URL"] = docs_url
|
|
690
|
+
if short_page_title is not UNSET:
|
|
691
|
+
field_dict["SHORT_PAGE_TITLE"] = short_page_title
|
|
692
|
+
if full_page_title is not UNSET:
|
|
693
|
+
field_dict["FULL_PAGE_TITLE"] = full_page_title
|
|
694
|
+
if brand_color is not UNSET:
|
|
695
|
+
field_dict["BRAND_COLOR"] = brand_color
|
|
696
|
+
if hero_link_label is not UNSET:
|
|
697
|
+
field_dict["HERO_LINK_LABEL"] = hero_link_label
|
|
698
|
+
if hero_link_url is not UNSET:
|
|
699
|
+
field_dict["HERO_LINK_URL"] = hero_link_url
|
|
700
|
+
if support_portal_url is not UNSET:
|
|
701
|
+
field_dict["SUPPORT_PORTAL_URL"] = support_portal_url
|
|
702
|
+
if common_footer_text is not UNSET:
|
|
703
|
+
field_dict["COMMON_FOOTER_TEXT"] = common_footer_text
|
|
704
|
+
if common_footer_html is not UNSET:
|
|
705
|
+
field_dict["COMMON_FOOTER_HTML"] = common_footer_html
|
|
706
|
+
if language_choices is not UNSET:
|
|
707
|
+
field_dict["LANGUAGE_CHOICES"] = language_choices
|
|
708
|
+
if disable_dark_theme is not UNSET:
|
|
709
|
+
field_dict["DISABLE_DARK_THEME"] = disable_dark_theme
|
|
710
|
+
if powered_by_logo is not UNSET:
|
|
711
|
+
field_dict["POWERED_BY_LOGO"] = powered_by_logo
|
|
712
|
+
if hero_image is not UNSET:
|
|
713
|
+
field_dict["HERO_IMAGE"] = hero_image
|
|
714
|
+
if marketplace_hero_image is not UNSET:
|
|
715
|
+
field_dict["MARKETPLACE_HERO_IMAGE"] = marketplace_hero_image
|
|
716
|
+
if call_management_hero_image is not UNSET:
|
|
717
|
+
field_dict["CALL_MANAGEMENT_HERO_IMAGE"] = call_management_hero_image
|
|
718
|
+
if sidebar_logo is not UNSET:
|
|
719
|
+
field_dict["SIDEBAR_LOGO"] = sidebar_logo
|
|
720
|
+
if sidebar_logo_dark is not UNSET:
|
|
721
|
+
field_dict["SIDEBAR_LOGO_DARK"] = sidebar_logo_dark
|
|
722
|
+
if sidebar_logo_mobile is not UNSET:
|
|
723
|
+
field_dict["SIDEBAR_LOGO_MOBILE"] = sidebar_logo_mobile
|
|
724
|
+
if sidebar_style is not UNSET:
|
|
725
|
+
field_dict["SIDEBAR_STYLE"] = sidebar_style
|
|
726
|
+
if site_logo is not UNSET:
|
|
727
|
+
field_dict["SITE_LOGO"] = site_logo
|
|
728
|
+
if login_logo is not UNSET:
|
|
729
|
+
field_dict["LOGIN_LOGO"] = login_logo
|
|
730
|
+
if favicon is not UNSET:
|
|
731
|
+
field_dict["FAVICON"] = favicon
|
|
732
|
+
if offering_logo_placeholder is not UNSET:
|
|
733
|
+
field_dict["OFFERING_LOGO_PLACEHOLDER"] = offering_logo_placeholder
|
|
734
|
+
if waldur_support_enabled is not UNSET:
|
|
735
|
+
field_dict["WALDUR_SUPPORT_ENABLED"] = waldur_support_enabled
|
|
736
|
+
if waldur_support_active_backend_type is not UNSET:
|
|
737
|
+
field_dict["WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE"] = waldur_support_active_backend_type
|
|
738
|
+
if waldur_support_display_request_type is not UNSET:
|
|
739
|
+
field_dict["WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE"] = waldur_support_display_request_type
|
|
740
|
+
if atlassian_use_old_api is not UNSET:
|
|
741
|
+
field_dict["ATLASSIAN_USE_OLD_API"] = atlassian_use_old_api
|
|
742
|
+
if atlassian_use_teenage_api is not UNSET:
|
|
743
|
+
field_dict["ATLASSIAN_USE_TEENAGE_API"] = atlassian_use_teenage_api
|
|
744
|
+
if atlassian_use_automatic_request_mapping is not UNSET:
|
|
745
|
+
field_dict["ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING"] = atlassian_use_automatic_request_mapping
|
|
746
|
+
if atlassian_map_waldur_users_to_servicedesk_agents is not UNSET:
|
|
747
|
+
field_dict["ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS"] = (
|
|
748
|
+
atlassian_map_waldur_users_to_servicedesk_agents
|
|
749
|
+
)
|
|
750
|
+
if atlassian_strange_setting is not UNSET:
|
|
751
|
+
field_dict["ATLASSIAN_STRANGE_SETTING"] = atlassian_strange_setting
|
|
752
|
+
if atlassian_api_url is not UNSET:
|
|
753
|
+
field_dict["ATLASSIAN_API_URL"] = atlassian_api_url
|
|
754
|
+
if atlassian_username is not UNSET:
|
|
755
|
+
field_dict["ATLASSIAN_USERNAME"] = atlassian_username
|
|
756
|
+
if atlassian_password is not UNSET:
|
|
757
|
+
field_dict["ATLASSIAN_PASSWORD"] = atlassian_password
|
|
758
|
+
if atlassian_email is not UNSET:
|
|
759
|
+
field_dict["ATLASSIAN_EMAIL"] = atlassian_email
|
|
760
|
+
if atlassian_token is not UNSET:
|
|
761
|
+
field_dict["ATLASSIAN_TOKEN"] = atlassian_token
|
|
762
|
+
if atlassian_verify_ssl is not UNSET:
|
|
763
|
+
field_dict["ATLASSIAN_VERIFY_SSL"] = atlassian_verify_ssl
|
|
764
|
+
if atlassian_project_id is not UNSET:
|
|
765
|
+
field_dict["ATLASSIAN_PROJECT_ID"] = atlassian_project_id
|
|
766
|
+
if atlassian_shared_username is not UNSET:
|
|
767
|
+
field_dict["ATLASSIAN_SHARED_USERNAME"] = atlassian_shared_username
|
|
768
|
+
if atlassian_custom_issue_field_mapping_enabled is not UNSET:
|
|
769
|
+
field_dict["ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED"] = atlassian_custom_issue_field_mapping_enabled
|
|
770
|
+
if atlassian_default_offering_issue_type is not UNSET:
|
|
771
|
+
field_dict["ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE"] = atlassian_default_offering_issue_type
|
|
772
|
+
if atlassian_excluded_attachment_types is not UNSET:
|
|
773
|
+
field_dict["ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES"] = atlassian_excluded_attachment_types
|
|
774
|
+
if atlassian_pull_priorities is not UNSET:
|
|
775
|
+
field_dict["ATLASSIAN_PULL_PRIORITIES"] = atlassian_pull_priorities
|
|
776
|
+
if atlassian_issue_types is not UNSET:
|
|
777
|
+
field_dict["ATLASSIAN_ISSUE_TYPES"] = atlassian_issue_types
|
|
778
|
+
if atlassian_description_template is not UNSET:
|
|
779
|
+
field_dict["ATLASSIAN_DESCRIPTION_TEMPLATE"] = atlassian_description_template
|
|
780
|
+
if atlassian_summary_template is not UNSET:
|
|
781
|
+
field_dict["ATLASSIAN_SUMMARY_TEMPLATE"] = atlassian_summary_template
|
|
782
|
+
if atlassian_affected_resource_field is not UNSET:
|
|
783
|
+
field_dict["ATLASSIAN_AFFECTED_RESOURCE_FIELD"] = atlassian_affected_resource_field
|
|
784
|
+
if atlassian_impact_field is not UNSET:
|
|
785
|
+
field_dict["ATLASSIAN_IMPACT_FIELD"] = atlassian_impact_field
|
|
786
|
+
if atlassian_organisation_field is not UNSET:
|
|
787
|
+
field_dict["ATLASSIAN_ORGANISATION_FIELD"] = atlassian_organisation_field
|
|
788
|
+
if atlassian_resolution_sla_field is not UNSET:
|
|
789
|
+
field_dict["ATLASSIAN_RESOLUTION_SLA_FIELD"] = atlassian_resolution_sla_field
|
|
790
|
+
if atlassian_project_field is not UNSET:
|
|
791
|
+
field_dict["ATLASSIAN_PROJECT_FIELD"] = atlassian_project_field
|
|
792
|
+
if atlassian_reporter_field is not UNSET:
|
|
793
|
+
field_dict["ATLASSIAN_REPORTER_FIELD"] = atlassian_reporter_field
|
|
794
|
+
if atlassian_caller_field is not UNSET:
|
|
795
|
+
field_dict["ATLASSIAN_CALLER_FIELD"] = atlassian_caller_field
|
|
796
|
+
if atlassian_sla_field is not UNSET:
|
|
797
|
+
field_dict["ATLASSIAN_SLA_FIELD"] = atlassian_sla_field
|
|
798
|
+
if atlassian_linked_issue_type is not UNSET:
|
|
799
|
+
field_dict["ATLASSIAN_LINKED_ISSUE_TYPE"] = atlassian_linked_issue_type
|
|
800
|
+
if atlassian_satisfaction_field is not UNSET:
|
|
801
|
+
field_dict["ATLASSIAN_SATISFACTION_FIELD"] = atlassian_satisfaction_field
|
|
802
|
+
if atlassian_request_feedback_field is not UNSET:
|
|
803
|
+
field_dict["ATLASSIAN_REQUEST_FEEDBACK_FIELD"] = atlassian_request_feedback_field
|
|
804
|
+
if atlassian_template_field is not UNSET:
|
|
805
|
+
field_dict["ATLASSIAN_TEMPLATE_FIELD"] = atlassian_template_field
|
|
806
|
+
if zammad_api_url is not UNSET:
|
|
807
|
+
field_dict["ZAMMAD_API_URL"] = zammad_api_url
|
|
808
|
+
if zammad_token is not UNSET:
|
|
809
|
+
field_dict["ZAMMAD_TOKEN"] = zammad_token
|
|
810
|
+
if zammad_group is not UNSET:
|
|
811
|
+
field_dict["ZAMMAD_GROUP"] = zammad_group
|
|
812
|
+
if zammad_article_type is not UNSET:
|
|
813
|
+
field_dict["ZAMMAD_ARTICLE_TYPE"] = zammad_article_type
|
|
814
|
+
if zammad_comment_marker is not UNSET:
|
|
815
|
+
field_dict["ZAMMAD_COMMENT_MARKER"] = zammad_comment_marker
|
|
816
|
+
if zammad_comment_prefix is not UNSET:
|
|
817
|
+
field_dict["ZAMMAD_COMMENT_PREFIX"] = zammad_comment_prefix
|
|
818
|
+
if zammad_comment_cooldown_duration is not UNSET:
|
|
819
|
+
field_dict["ZAMMAD_COMMENT_COOLDOWN_DURATION"] = zammad_comment_cooldown_duration
|
|
820
|
+
if smax_api_url is not UNSET:
|
|
821
|
+
field_dict["SMAX_API_URL"] = smax_api_url
|
|
822
|
+
if smax_tenant_id is not UNSET:
|
|
823
|
+
field_dict["SMAX_TENANT_ID"] = smax_tenant_id
|
|
824
|
+
if smax_login is not UNSET:
|
|
825
|
+
field_dict["SMAX_LOGIN"] = smax_login
|
|
826
|
+
if smax_password is not UNSET:
|
|
827
|
+
field_dict["SMAX_PASSWORD"] = smax_password
|
|
828
|
+
if smax_organisation_field is not UNSET:
|
|
829
|
+
field_dict["SMAX_ORGANISATION_FIELD"] = smax_organisation_field
|
|
830
|
+
if smax_project_field is not UNSET:
|
|
831
|
+
field_dict["SMAX_PROJECT_FIELD"] = smax_project_field
|
|
832
|
+
if smax_affected_resource_field is not UNSET:
|
|
833
|
+
field_dict["SMAX_AFFECTED_RESOURCE_FIELD"] = smax_affected_resource_field
|
|
834
|
+
if smax_times_to_pull is not UNSET:
|
|
835
|
+
field_dict["SMAX_TIMES_TO_PULL"] = smax_times_to_pull
|
|
836
|
+
if smax_seconds_to_wait is not UNSET:
|
|
837
|
+
field_dict["SMAX_SECONDS_TO_WAIT"] = smax_seconds_to_wait
|
|
838
|
+
if smax_creation_source_name is not UNSET:
|
|
839
|
+
field_dict["SMAX_CREATION_SOURCE_NAME"] = smax_creation_source_name
|
|
840
|
+
if smax_requests_offering is not UNSET:
|
|
841
|
+
field_dict["SMAX_REQUESTS_OFFERING"] = smax_requests_offering
|
|
842
|
+
if smax_verify_ssl is not UNSET:
|
|
843
|
+
field_dict["SMAX_VERIFY_SSL"] = smax_verify_ssl
|
|
844
|
+
if enable_mock_service_account_backend is not UNSET:
|
|
845
|
+
field_dict["ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND"] = enable_mock_service_account_backend
|
|
846
|
+
if proposal_review_duration is not UNSET:
|
|
847
|
+
field_dict["PROPOSAL_REVIEW_DURATION"] = proposal_review_duration
|
|
848
|
+
if user_table_columns is not UNSET:
|
|
849
|
+
field_dict["USER_TABLE_COLUMNS"] = user_table_columns
|
|
850
|
+
if auto_approve_user_tos is not UNSET:
|
|
851
|
+
field_dict["AUTO_APPROVE_USER_TOS"] = auto_approve_user_tos
|
|
852
|
+
if freeipa_enabled is not UNSET:
|
|
853
|
+
field_dict["FREEIPA_ENABLED"] = freeipa_enabled
|
|
854
|
+
if freeipa_hostname is not UNSET:
|
|
855
|
+
field_dict["FREEIPA_HOSTNAME"] = freeipa_hostname
|
|
856
|
+
if freeipa_username is not UNSET:
|
|
857
|
+
field_dict["FREEIPA_USERNAME"] = freeipa_username
|
|
858
|
+
if freeipa_password is not UNSET:
|
|
859
|
+
field_dict["FREEIPA_PASSWORD"] = freeipa_password
|
|
860
|
+
if freeipa_verify_ssl is not UNSET:
|
|
861
|
+
field_dict["FREEIPA_VERIFY_SSL"] = freeipa_verify_ssl
|
|
862
|
+
if freeipa_username_prefix is not UNSET:
|
|
863
|
+
field_dict["FREEIPA_USERNAME_PREFIX"] = freeipa_username_prefix
|
|
864
|
+
if freeipa_groupname_prefix is not UNSET:
|
|
865
|
+
field_dict["FREEIPA_GROUPNAME_PREFIX"] = freeipa_groupname_prefix
|
|
866
|
+
if freeipa_blacklisted_usernames is not UNSET:
|
|
867
|
+
field_dict["FREEIPA_BLACKLISTED_USERNAMES"] = freeipa_blacklisted_usernames
|
|
868
|
+
if freeipa_group_synchronization_enabled is not UNSET:
|
|
869
|
+
field_dict["FREEIPA_GROUP_SYNCHRONIZATION_ENABLED"] = freeipa_group_synchronization_enabled
|
|
870
|
+
if keycloak_icon is not UNSET:
|
|
871
|
+
field_dict["KEYCLOAK_ICON"] = keycloak_icon
|
|
872
|
+
if countries is not UNSET:
|
|
873
|
+
field_dict["COUNTRIES"] = countries
|
|
874
|
+
if oidc_introspection_url is not UNSET:
|
|
875
|
+
field_dict["OIDC_INTROSPECTION_URL"] = oidc_introspection_url
|
|
876
|
+
if oidc_client_id is not UNSET:
|
|
877
|
+
field_dict["OIDC_CLIENT_ID"] = oidc_client_id
|
|
878
|
+
if oidc_client_secret is not UNSET:
|
|
879
|
+
field_dict["OIDC_CLIENT_SECRET"] = oidc_client_secret
|
|
880
|
+
if oidc_user_field is not UNSET:
|
|
881
|
+
field_dict["OIDC_USER_FIELD"] = oidc_user_field
|
|
882
|
+
if oidc_cache_timeout is not UNSET:
|
|
883
|
+
field_dict["OIDC_CACHE_TIMEOUT"] = oidc_cache_timeout
|
|
884
|
+
|
|
885
|
+
return field_dict
|
|
886
|
+
|
|
887
|
+
@classmethod
|
|
888
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
|
889
|
+
d = src_dict.copy()
|
|
890
|
+
site_name = d.pop("SITE_NAME", UNSET)
|
|
891
|
+
|
|
892
|
+
site_description = d.pop("SITE_DESCRIPTION", UNSET)
|
|
893
|
+
|
|
894
|
+
homeport_url = d.pop("HOMEPORT_URL", UNSET)
|
|
895
|
+
|
|
896
|
+
rancher_username_input_label = d.pop("RANCHER_USERNAME_INPUT_LABEL", UNSET)
|
|
897
|
+
|
|
898
|
+
site_address = d.pop("SITE_ADDRESS", UNSET)
|
|
899
|
+
|
|
900
|
+
site_email = d.pop("SITE_EMAIL", UNSET)
|
|
901
|
+
|
|
902
|
+
site_phone = d.pop("SITE_PHONE", UNSET)
|
|
903
|
+
|
|
904
|
+
currency_name = d.pop("CURRENCY_NAME", UNSET)
|
|
905
|
+
|
|
906
|
+
thumbnail_size = d.pop("THUMBNAIL_SIZE", UNSET)
|
|
907
|
+
|
|
908
|
+
anonymous_user_can_view_offerings = d.pop("ANONYMOUS_USER_CAN_VIEW_OFFERINGS", UNSET)
|
|
909
|
+
|
|
910
|
+
anonymous_user_can_view_plans = d.pop("ANONYMOUS_USER_CAN_VIEW_PLANS", UNSET)
|
|
911
|
+
|
|
912
|
+
notify_staff_about_approvals = d.pop("NOTIFY_STAFF_ABOUT_APPROVALS", UNSET)
|
|
913
|
+
|
|
914
|
+
notify_about_resource_change = d.pop("NOTIFY_ABOUT_RESOURCE_CHANGE", UNSET)
|
|
915
|
+
|
|
916
|
+
disable_sending_notifications_about_resource_update = d.pop(
|
|
917
|
+
"DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE", UNSET
|
|
918
|
+
)
|
|
919
|
+
|
|
920
|
+
marketplace_landing_page = d.pop("MARKETPLACE_LANDING_PAGE", UNSET)
|
|
921
|
+
|
|
922
|
+
enable_stale_resource_notifications = d.pop("ENABLE_STALE_RESOURCE_NOTIFICATIONS", UNSET)
|
|
923
|
+
|
|
924
|
+
telemetry_url = d.pop("TELEMETRY_URL", UNSET)
|
|
925
|
+
|
|
926
|
+
telemetry_version = d.pop("TELEMETRY_VERSION", UNSET)
|
|
927
|
+
|
|
928
|
+
script_run_mode = d.pop("SCRIPT_RUN_MODE", UNSET)
|
|
929
|
+
|
|
930
|
+
docker_client = d.pop("DOCKER_CLIENT", UNSET)
|
|
931
|
+
|
|
932
|
+
docker_run_options = d.pop("DOCKER_RUN_OPTIONS", UNSET)
|
|
933
|
+
|
|
934
|
+
docker_script_dir = d.pop("DOCKER_SCRIPT_DIR", UNSET)
|
|
935
|
+
|
|
936
|
+
docker_remove_container = d.pop("DOCKER_REMOVE_CONTAINER", UNSET)
|
|
937
|
+
|
|
938
|
+
docker_images = d.pop("DOCKER_IMAGES", UNSET)
|
|
939
|
+
|
|
940
|
+
docker_volume_name = d.pop("DOCKER_VOLUME_NAME", UNSET)
|
|
941
|
+
|
|
942
|
+
k8s_namespace = d.pop("K8S_NAMESPACE", UNSET)
|
|
943
|
+
|
|
944
|
+
k8s_config_path = d.pop("K8S_CONFIG_PATH", UNSET)
|
|
945
|
+
|
|
946
|
+
k8s_job_timeout = d.pop("K8S_JOB_TIMEOUT", UNSET)
|
|
947
|
+
|
|
948
|
+
enable_strict_check_accepting_invitation = d.pop("ENABLE_STRICT_CHECK_ACCEPTING_INVITATION", UNSET)
|
|
949
|
+
|
|
950
|
+
invitation_disable_multiple_roles = d.pop("INVITATION_DISABLE_MULTIPLE_ROLES", UNSET)
|
|
951
|
+
|
|
952
|
+
default_idp = d.pop("DEFAULT_IDP", UNSET)
|
|
953
|
+
|
|
954
|
+
docs_url = d.pop("DOCS_URL", UNSET)
|
|
955
|
+
|
|
956
|
+
short_page_title = d.pop("SHORT_PAGE_TITLE", UNSET)
|
|
957
|
+
|
|
958
|
+
full_page_title = d.pop("FULL_PAGE_TITLE", UNSET)
|
|
959
|
+
|
|
960
|
+
brand_color = d.pop("BRAND_COLOR", UNSET)
|
|
961
|
+
|
|
962
|
+
hero_link_label = d.pop("HERO_LINK_LABEL", UNSET)
|
|
963
|
+
|
|
964
|
+
hero_link_url = d.pop("HERO_LINK_URL", UNSET)
|
|
965
|
+
|
|
966
|
+
support_portal_url = d.pop("SUPPORT_PORTAL_URL", UNSET)
|
|
967
|
+
|
|
968
|
+
common_footer_text = d.pop("COMMON_FOOTER_TEXT", UNSET)
|
|
969
|
+
|
|
970
|
+
common_footer_html = d.pop("COMMON_FOOTER_HTML", UNSET)
|
|
971
|
+
|
|
972
|
+
language_choices = d.pop("LANGUAGE_CHOICES", UNSET)
|
|
973
|
+
|
|
974
|
+
disable_dark_theme = d.pop("DISABLE_DARK_THEME", UNSET)
|
|
975
|
+
|
|
976
|
+
def _parse_powered_by_logo(data: object) -> Union[File, None, Unset]:
|
|
977
|
+
if data is None:
|
|
978
|
+
return data
|
|
979
|
+
if isinstance(data, Unset):
|
|
980
|
+
return data
|
|
981
|
+
try:
|
|
982
|
+
if not isinstance(data, bytes):
|
|
983
|
+
raise TypeError()
|
|
984
|
+
powered_by_logo_type_0 = File(payload=BytesIO(data))
|
|
985
|
+
|
|
986
|
+
return powered_by_logo_type_0
|
|
987
|
+
except: # noqa: E722
|
|
988
|
+
pass
|
|
989
|
+
return cast(Union[File, None, Unset], data)
|
|
990
|
+
|
|
991
|
+
powered_by_logo = _parse_powered_by_logo(d.pop("POWERED_BY_LOGO", UNSET))
|
|
992
|
+
|
|
993
|
+
def _parse_hero_image(data: object) -> Union[File, None, Unset]:
|
|
994
|
+
if data is None:
|
|
995
|
+
return data
|
|
996
|
+
if isinstance(data, Unset):
|
|
997
|
+
return data
|
|
998
|
+
try:
|
|
999
|
+
if not isinstance(data, bytes):
|
|
1000
|
+
raise TypeError()
|
|
1001
|
+
hero_image_type_0 = File(payload=BytesIO(data))
|
|
1002
|
+
|
|
1003
|
+
return hero_image_type_0
|
|
1004
|
+
except: # noqa: E722
|
|
1005
|
+
pass
|
|
1006
|
+
return cast(Union[File, None, Unset], data)
|
|
1007
|
+
|
|
1008
|
+
hero_image = _parse_hero_image(d.pop("HERO_IMAGE", UNSET))
|
|
1009
|
+
|
|
1010
|
+
def _parse_marketplace_hero_image(data: object) -> Union[File, None, Unset]:
|
|
1011
|
+
if data is None:
|
|
1012
|
+
return data
|
|
1013
|
+
if isinstance(data, Unset):
|
|
1014
|
+
return data
|
|
1015
|
+
try:
|
|
1016
|
+
if not isinstance(data, bytes):
|
|
1017
|
+
raise TypeError()
|
|
1018
|
+
marketplace_hero_image_type_0 = File(payload=BytesIO(data))
|
|
1019
|
+
|
|
1020
|
+
return marketplace_hero_image_type_0
|
|
1021
|
+
except: # noqa: E722
|
|
1022
|
+
pass
|
|
1023
|
+
return cast(Union[File, None, Unset], data)
|
|
1024
|
+
|
|
1025
|
+
marketplace_hero_image = _parse_marketplace_hero_image(d.pop("MARKETPLACE_HERO_IMAGE", UNSET))
|
|
1026
|
+
|
|
1027
|
+
def _parse_call_management_hero_image(data: object) -> Union[File, None, Unset]:
|
|
1028
|
+
if data is None:
|
|
1029
|
+
return data
|
|
1030
|
+
if isinstance(data, Unset):
|
|
1031
|
+
return data
|
|
1032
|
+
try:
|
|
1033
|
+
if not isinstance(data, bytes):
|
|
1034
|
+
raise TypeError()
|
|
1035
|
+
call_management_hero_image_type_0 = File(payload=BytesIO(data))
|
|
1036
|
+
|
|
1037
|
+
return call_management_hero_image_type_0
|
|
1038
|
+
except: # noqa: E722
|
|
1039
|
+
pass
|
|
1040
|
+
return cast(Union[File, None, Unset], data)
|
|
1041
|
+
|
|
1042
|
+
call_management_hero_image = _parse_call_management_hero_image(d.pop("CALL_MANAGEMENT_HERO_IMAGE", UNSET))
|
|
1043
|
+
|
|
1044
|
+
def _parse_sidebar_logo(data: object) -> Union[File, None, Unset]:
|
|
1045
|
+
if data is None:
|
|
1046
|
+
return data
|
|
1047
|
+
if isinstance(data, Unset):
|
|
1048
|
+
return data
|
|
1049
|
+
try:
|
|
1050
|
+
if not isinstance(data, bytes):
|
|
1051
|
+
raise TypeError()
|
|
1052
|
+
sidebar_logo_type_0 = File(payload=BytesIO(data))
|
|
1053
|
+
|
|
1054
|
+
return sidebar_logo_type_0
|
|
1055
|
+
except: # noqa: E722
|
|
1056
|
+
pass
|
|
1057
|
+
return cast(Union[File, None, Unset], data)
|
|
1058
|
+
|
|
1059
|
+
sidebar_logo = _parse_sidebar_logo(d.pop("SIDEBAR_LOGO", UNSET))
|
|
1060
|
+
|
|
1061
|
+
def _parse_sidebar_logo_dark(data: object) -> Union[File, None, Unset]:
|
|
1062
|
+
if data is None:
|
|
1063
|
+
return data
|
|
1064
|
+
if isinstance(data, Unset):
|
|
1065
|
+
return data
|
|
1066
|
+
try:
|
|
1067
|
+
if not isinstance(data, bytes):
|
|
1068
|
+
raise TypeError()
|
|
1069
|
+
sidebar_logo_dark_type_0 = File(payload=BytesIO(data))
|
|
1070
|
+
|
|
1071
|
+
return sidebar_logo_dark_type_0
|
|
1072
|
+
except: # noqa: E722
|
|
1073
|
+
pass
|
|
1074
|
+
return cast(Union[File, None, Unset], data)
|
|
1075
|
+
|
|
1076
|
+
sidebar_logo_dark = _parse_sidebar_logo_dark(d.pop("SIDEBAR_LOGO_DARK", UNSET))
|
|
1077
|
+
|
|
1078
|
+
def _parse_sidebar_logo_mobile(data: object) -> Union[File, None, Unset]:
|
|
1079
|
+
if data is None:
|
|
1080
|
+
return data
|
|
1081
|
+
if isinstance(data, Unset):
|
|
1082
|
+
return data
|
|
1083
|
+
try:
|
|
1084
|
+
if not isinstance(data, bytes):
|
|
1085
|
+
raise TypeError()
|
|
1086
|
+
sidebar_logo_mobile_type_0 = File(payload=BytesIO(data))
|
|
1087
|
+
|
|
1088
|
+
return sidebar_logo_mobile_type_0
|
|
1089
|
+
except: # noqa: E722
|
|
1090
|
+
pass
|
|
1091
|
+
return cast(Union[File, None, Unset], data)
|
|
1092
|
+
|
|
1093
|
+
sidebar_logo_mobile = _parse_sidebar_logo_mobile(d.pop("SIDEBAR_LOGO_MOBILE", UNSET))
|
|
1094
|
+
|
|
1095
|
+
sidebar_style = d.pop("SIDEBAR_STYLE", UNSET)
|
|
1096
|
+
|
|
1097
|
+
def _parse_site_logo(data: object) -> Union[File, None, Unset]:
|
|
1098
|
+
if data is None:
|
|
1099
|
+
return data
|
|
1100
|
+
if isinstance(data, Unset):
|
|
1101
|
+
return data
|
|
1102
|
+
try:
|
|
1103
|
+
if not isinstance(data, bytes):
|
|
1104
|
+
raise TypeError()
|
|
1105
|
+
site_logo_type_0 = File(payload=BytesIO(data))
|
|
1106
|
+
|
|
1107
|
+
return site_logo_type_0
|
|
1108
|
+
except: # noqa: E722
|
|
1109
|
+
pass
|
|
1110
|
+
return cast(Union[File, None, Unset], data)
|
|
1111
|
+
|
|
1112
|
+
site_logo = _parse_site_logo(d.pop("SITE_LOGO", UNSET))
|
|
1113
|
+
|
|
1114
|
+
def _parse_login_logo(data: object) -> Union[File, None, Unset]:
|
|
1115
|
+
if data is None:
|
|
1116
|
+
return data
|
|
1117
|
+
if isinstance(data, Unset):
|
|
1118
|
+
return data
|
|
1119
|
+
try:
|
|
1120
|
+
if not isinstance(data, bytes):
|
|
1121
|
+
raise TypeError()
|
|
1122
|
+
login_logo_type_0 = File(payload=BytesIO(data))
|
|
1123
|
+
|
|
1124
|
+
return login_logo_type_0
|
|
1125
|
+
except: # noqa: E722
|
|
1126
|
+
pass
|
|
1127
|
+
return cast(Union[File, None, Unset], data)
|
|
1128
|
+
|
|
1129
|
+
login_logo = _parse_login_logo(d.pop("LOGIN_LOGO", UNSET))
|
|
1130
|
+
|
|
1131
|
+
def _parse_favicon(data: object) -> Union[File, None, Unset]:
|
|
1132
|
+
if data is None:
|
|
1133
|
+
return data
|
|
1134
|
+
if isinstance(data, Unset):
|
|
1135
|
+
return data
|
|
1136
|
+
try:
|
|
1137
|
+
if not isinstance(data, bytes):
|
|
1138
|
+
raise TypeError()
|
|
1139
|
+
favicon_type_0 = File(payload=BytesIO(data))
|
|
1140
|
+
|
|
1141
|
+
return favicon_type_0
|
|
1142
|
+
except: # noqa: E722
|
|
1143
|
+
pass
|
|
1144
|
+
return cast(Union[File, None, Unset], data)
|
|
1145
|
+
|
|
1146
|
+
favicon = _parse_favicon(d.pop("FAVICON", UNSET))
|
|
1147
|
+
|
|
1148
|
+
def _parse_offering_logo_placeholder(data: object) -> Union[File, None, Unset]:
|
|
1149
|
+
if data is None:
|
|
1150
|
+
return data
|
|
1151
|
+
if isinstance(data, Unset):
|
|
1152
|
+
return data
|
|
1153
|
+
try:
|
|
1154
|
+
if not isinstance(data, bytes):
|
|
1155
|
+
raise TypeError()
|
|
1156
|
+
offering_logo_placeholder_type_0 = File(payload=BytesIO(data))
|
|
1157
|
+
|
|
1158
|
+
return offering_logo_placeholder_type_0
|
|
1159
|
+
except: # noqa: E722
|
|
1160
|
+
pass
|
|
1161
|
+
return cast(Union[File, None, Unset], data)
|
|
1162
|
+
|
|
1163
|
+
offering_logo_placeholder = _parse_offering_logo_placeholder(d.pop("OFFERING_LOGO_PLACEHOLDER", UNSET))
|
|
1164
|
+
|
|
1165
|
+
waldur_support_enabled = d.pop("WALDUR_SUPPORT_ENABLED", UNSET)
|
|
1166
|
+
|
|
1167
|
+
waldur_support_active_backend_type = d.pop("WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE", UNSET)
|
|
1168
|
+
|
|
1169
|
+
waldur_support_display_request_type = d.pop("WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE", UNSET)
|
|
1170
|
+
|
|
1171
|
+
atlassian_use_old_api = d.pop("ATLASSIAN_USE_OLD_API", UNSET)
|
|
1172
|
+
|
|
1173
|
+
atlassian_use_teenage_api = d.pop("ATLASSIAN_USE_TEENAGE_API", UNSET)
|
|
1174
|
+
|
|
1175
|
+
atlassian_use_automatic_request_mapping = d.pop("ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING", UNSET)
|
|
1176
|
+
|
|
1177
|
+
atlassian_map_waldur_users_to_servicedesk_agents = d.pop(
|
|
1178
|
+
"ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS", UNSET
|
|
1179
|
+
)
|
|
1180
|
+
|
|
1181
|
+
atlassian_strange_setting = d.pop("ATLASSIAN_STRANGE_SETTING", UNSET)
|
|
1182
|
+
|
|
1183
|
+
atlassian_api_url = d.pop("ATLASSIAN_API_URL", UNSET)
|
|
1184
|
+
|
|
1185
|
+
atlassian_username = d.pop("ATLASSIAN_USERNAME", UNSET)
|
|
1186
|
+
|
|
1187
|
+
atlassian_password = d.pop("ATLASSIAN_PASSWORD", UNSET)
|
|
1188
|
+
|
|
1189
|
+
atlassian_email = d.pop("ATLASSIAN_EMAIL", UNSET)
|
|
1190
|
+
|
|
1191
|
+
atlassian_token = d.pop("ATLASSIAN_TOKEN", UNSET)
|
|
1192
|
+
|
|
1193
|
+
atlassian_verify_ssl = d.pop("ATLASSIAN_VERIFY_SSL", UNSET)
|
|
1194
|
+
|
|
1195
|
+
atlassian_project_id = d.pop("ATLASSIAN_PROJECT_ID", UNSET)
|
|
1196
|
+
|
|
1197
|
+
atlassian_shared_username = d.pop("ATLASSIAN_SHARED_USERNAME", UNSET)
|
|
1198
|
+
|
|
1199
|
+
atlassian_custom_issue_field_mapping_enabled = d.pop("ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED", UNSET)
|
|
1200
|
+
|
|
1201
|
+
atlassian_default_offering_issue_type = d.pop("ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE", UNSET)
|
|
1202
|
+
|
|
1203
|
+
atlassian_excluded_attachment_types = d.pop("ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES", UNSET)
|
|
1204
|
+
|
|
1205
|
+
atlassian_pull_priorities = d.pop("ATLASSIAN_PULL_PRIORITIES", UNSET)
|
|
1206
|
+
|
|
1207
|
+
atlassian_issue_types = d.pop("ATLASSIAN_ISSUE_TYPES", UNSET)
|
|
1208
|
+
|
|
1209
|
+
atlassian_description_template = d.pop("ATLASSIAN_DESCRIPTION_TEMPLATE", UNSET)
|
|
1210
|
+
|
|
1211
|
+
atlassian_summary_template = d.pop("ATLASSIAN_SUMMARY_TEMPLATE", UNSET)
|
|
1212
|
+
|
|
1213
|
+
atlassian_affected_resource_field = d.pop("ATLASSIAN_AFFECTED_RESOURCE_FIELD", UNSET)
|
|
1214
|
+
|
|
1215
|
+
atlassian_impact_field = d.pop("ATLASSIAN_IMPACT_FIELD", UNSET)
|
|
1216
|
+
|
|
1217
|
+
atlassian_organisation_field = d.pop("ATLASSIAN_ORGANISATION_FIELD", UNSET)
|
|
1218
|
+
|
|
1219
|
+
atlassian_resolution_sla_field = d.pop("ATLASSIAN_RESOLUTION_SLA_FIELD", UNSET)
|
|
1220
|
+
|
|
1221
|
+
atlassian_project_field = d.pop("ATLASSIAN_PROJECT_FIELD", UNSET)
|
|
1222
|
+
|
|
1223
|
+
atlassian_reporter_field = d.pop("ATLASSIAN_REPORTER_FIELD", UNSET)
|
|
1224
|
+
|
|
1225
|
+
atlassian_caller_field = d.pop("ATLASSIAN_CALLER_FIELD", UNSET)
|
|
1226
|
+
|
|
1227
|
+
atlassian_sla_field = d.pop("ATLASSIAN_SLA_FIELD", UNSET)
|
|
1228
|
+
|
|
1229
|
+
atlassian_linked_issue_type = d.pop("ATLASSIAN_LINKED_ISSUE_TYPE", UNSET)
|
|
1230
|
+
|
|
1231
|
+
atlassian_satisfaction_field = d.pop("ATLASSIAN_SATISFACTION_FIELD", UNSET)
|
|
1232
|
+
|
|
1233
|
+
atlassian_request_feedback_field = d.pop("ATLASSIAN_REQUEST_FEEDBACK_FIELD", UNSET)
|
|
1234
|
+
|
|
1235
|
+
atlassian_template_field = d.pop("ATLASSIAN_TEMPLATE_FIELD", UNSET)
|
|
1236
|
+
|
|
1237
|
+
zammad_api_url = d.pop("ZAMMAD_API_URL", UNSET)
|
|
1238
|
+
|
|
1239
|
+
zammad_token = d.pop("ZAMMAD_TOKEN", UNSET)
|
|
1240
|
+
|
|
1241
|
+
zammad_group = d.pop("ZAMMAD_GROUP", UNSET)
|
|
1242
|
+
|
|
1243
|
+
zammad_article_type = d.pop("ZAMMAD_ARTICLE_TYPE", UNSET)
|
|
1244
|
+
|
|
1245
|
+
zammad_comment_marker = d.pop("ZAMMAD_COMMENT_MARKER", UNSET)
|
|
1246
|
+
|
|
1247
|
+
zammad_comment_prefix = d.pop("ZAMMAD_COMMENT_PREFIX", UNSET)
|
|
1248
|
+
|
|
1249
|
+
zammad_comment_cooldown_duration = d.pop("ZAMMAD_COMMENT_COOLDOWN_DURATION", UNSET)
|
|
1250
|
+
|
|
1251
|
+
smax_api_url = d.pop("SMAX_API_URL", UNSET)
|
|
1252
|
+
|
|
1253
|
+
smax_tenant_id = d.pop("SMAX_TENANT_ID", UNSET)
|
|
1254
|
+
|
|
1255
|
+
smax_login = d.pop("SMAX_LOGIN", UNSET)
|
|
1256
|
+
|
|
1257
|
+
smax_password = d.pop("SMAX_PASSWORD", UNSET)
|
|
1258
|
+
|
|
1259
|
+
smax_organisation_field = d.pop("SMAX_ORGANISATION_FIELD", UNSET)
|
|
1260
|
+
|
|
1261
|
+
smax_project_field = d.pop("SMAX_PROJECT_FIELD", UNSET)
|
|
1262
|
+
|
|
1263
|
+
smax_affected_resource_field = d.pop("SMAX_AFFECTED_RESOURCE_FIELD", UNSET)
|
|
1264
|
+
|
|
1265
|
+
smax_times_to_pull = d.pop("SMAX_TIMES_TO_PULL", UNSET)
|
|
1266
|
+
|
|
1267
|
+
smax_seconds_to_wait = d.pop("SMAX_SECONDS_TO_WAIT", UNSET)
|
|
1268
|
+
|
|
1269
|
+
smax_creation_source_name = d.pop("SMAX_CREATION_SOURCE_NAME", UNSET)
|
|
1270
|
+
|
|
1271
|
+
smax_requests_offering = d.pop("SMAX_REQUESTS_OFFERING", UNSET)
|
|
1272
|
+
|
|
1273
|
+
smax_verify_ssl = d.pop("SMAX_VERIFY_SSL", UNSET)
|
|
1274
|
+
|
|
1275
|
+
enable_mock_service_account_backend = d.pop("ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND", UNSET)
|
|
1276
|
+
|
|
1277
|
+
proposal_review_duration = d.pop("PROPOSAL_REVIEW_DURATION", UNSET)
|
|
1278
|
+
|
|
1279
|
+
user_table_columns = d.pop("USER_TABLE_COLUMNS", UNSET)
|
|
1280
|
+
|
|
1281
|
+
auto_approve_user_tos = d.pop("AUTO_APPROVE_USER_TOS", UNSET)
|
|
1282
|
+
|
|
1283
|
+
freeipa_enabled = d.pop("FREEIPA_ENABLED", UNSET)
|
|
1284
|
+
|
|
1285
|
+
freeipa_hostname = d.pop("FREEIPA_HOSTNAME", UNSET)
|
|
1286
|
+
|
|
1287
|
+
freeipa_username = d.pop("FREEIPA_USERNAME", UNSET)
|
|
1288
|
+
|
|
1289
|
+
freeipa_password = d.pop("FREEIPA_PASSWORD", UNSET)
|
|
1290
|
+
|
|
1291
|
+
freeipa_verify_ssl = d.pop("FREEIPA_VERIFY_SSL", UNSET)
|
|
1292
|
+
|
|
1293
|
+
freeipa_username_prefix = d.pop("FREEIPA_USERNAME_PREFIX", UNSET)
|
|
1294
|
+
|
|
1295
|
+
freeipa_groupname_prefix = d.pop("FREEIPA_GROUPNAME_PREFIX", UNSET)
|
|
1296
|
+
|
|
1297
|
+
freeipa_blacklisted_usernames = cast(list[str], d.pop("FREEIPA_BLACKLISTED_USERNAMES", UNSET))
|
|
1298
|
+
|
|
1299
|
+
freeipa_group_synchronization_enabled = d.pop("FREEIPA_GROUP_SYNCHRONIZATION_ENABLED", UNSET)
|
|
1300
|
+
|
|
1301
|
+
def _parse_keycloak_icon(data: object) -> Union[File, None, Unset]:
|
|
1302
|
+
if data is None:
|
|
1303
|
+
return data
|
|
1304
|
+
if isinstance(data, Unset):
|
|
1305
|
+
return data
|
|
1306
|
+
try:
|
|
1307
|
+
if not isinstance(data, bytes):
|
|
1308
|
+
raise TypeError()
|
|
1309
|
+
keycloak_icon_type_0 = File(payload=BytesIO(data))
|
|
1310
|
+
|
|
1311
|
+
return keycloak_icon_type_0
|
|
1312
|
+
except: # noqa: E722
|
|
1313
|
+
pass
|
|
1314
|
+
return cast(Union[File, None, Unset], data)
|
|
1315
|
+
|
|
1316
|
+
keycloak_icon = _parse_keycloak_icon(d.pop("KEYCLOAK_ICON", UNSET))
|
|
1317
|
+
|
|
1318
|
+
countries = cast(list[str], d.pop("COUNTRIES", UNSET))
|
|
1319
|
+
|
|
1320
|
+
oidc_introspection_url = d.pop("OIDC_INTROSPECTION_URL", UNSET)
|
|
1321
|
+
|
|
1322
|
+
oidc_client_id = d.pop("OIDC_CLIENT_ID", UNSET)
|
|
1323
|
+
|
|
1324
|
+
oidc_client_secret = d.pop("OIDC_CLIENT_SECRET", UNSET)
|
|
1325
|
+
|
|
1326
|
+
oidc_user_field = d.pop("OIDC_USER_FIELD", UNSET)
|
|
1327
|
+
|
|
1328
|
+
oidc_cache_timeout = d.pop("OIDC_CACHE_TIMEOUT", UNSET)
|
|
1329
|
+
|
|
1330
|
+
constance_settings_request = cls(
|
|
1331
|
+
site_name=site_name,
|
|
1332
|
+
site_description=site_description,
|
|
1333
|
+
homeport_url=homeport_url,
|
|
1334
|
+
rancher_username_input_label=rancher_username_input_label,
|
|
1335
|
+
site_address=site_address,
|
|
1336
|
+
site_email=site_email,
|
|
1337
|
+
site_phone=site_phone,
|
|
1338
|
+
currency_name=currency_name,
|
|
1339
|
+
thumbnail_size=thumbnail_size,
|
|
1340
|
+
anonymous_user_can_view_offerings=anonymous_user_can_view_offerings,
|
|
1341
|
+
anonymous_user_can_view_plans=anonymous_user_can_view_plans,
|
|
1342
|
+
notify_staff_about_approvals=notify_staff_about_approvals,
|
|
1343
|
+
notify_about_resource_change=notify_about_resource_change,
|
|
1344
|
+
disable_sending_notifications_about_resource_update=disable_sending_notifications_about_resource_update,
|
|
1345
|
+
marketplace_landing_page=marketplace_landing_page,
|
|
1346
|
+
enable_stale_resource_notifications=enable_stale_resource_notifications,
|
|
1347
|
+
telemetry_url=telemetry_url,
|
|
1348
|
+
telemetry_version=telemetry_version,
|
|
1349
|
+
script_run_mode=script_run_mode,
|
|
1350
|
+
docker_client=docker_client,
|
|
1351
|
+
docker_run_options=docker_run_options,
|
|
1352
|
+
docker_script_dir=docker_script_dir,
|
|
1353
|
+
docker_remove_container=docker_remove_container,
|
|
1354
|
+
docker_images=docker_images,
|
|
1355
|
+
docker_volume_name=docker_volume_name,
|
|
1356
|
+
k8s_namespace=k8s_namespace,
|
|
1357
|
+
k8s_config_path=k8s_config_path,
|
|
1358
|
+
k8s_job_timeout=k8s_job_timeout,
|
|
1359
|
+
enable_strict_check_accepting_invitation=enable_strict_check_accepting_invitation,
|
|
1360
|
+
invitation_disable_multiple_roles=invitation_disable_multiple_roles,
|
|
1361
|
+
default_idp=default_idp,
|
|
1362
|
+
docs_url=docs_url,
|
|
1363
|
+
short_page_title=short_page_title,
|
|
1364
|
+
full_page_title=full_page_title,
|
|
1365
|
+
brand_color=brand_color,
|
|
1366
|
+
hero_link_label=hero_link_label,
|
|
1367
|
+
hero_link_url=hero_link_url,
|
|
1368
|
+
support_portal_url=support_portal_url,
|
|
1369
|
+
common_footer_text=common_footer_text,
|
|
1370
|
+
common_footer_html=common_footer_html,
|
|
1371
|
+
language_choices=language_choices,
|
|
1372
|
+
disable_dark_theme=disable_dark_theme,
|
|
1373
|
+
powered_by_logo=powered_by_logo,
|
|
1374
|
+
hero_image=hero_image,
|
|
1375
|
+
marketplace_hero_image=marketplace_hero_image,
|
|
1376
|
+
call_management_hero_image=call_management_hero_image,
|
|
1377
|
+
sidebar_logo=sidebar_logo,
|
|
1378
|
+
sidebar_logo_dark=sidebar_logo_dark,
|
|
1379
|
+
sidebar_logo_mobile=sidebar_logo_mobile,
|
|
1380
|
+
sidebar_style=sidebar_style,
|
|
1381
|
+
site_logo=site_logo,
|
|
1382
|
+
login_logo=login_logo,
|
|
1383
|
+
favicon=favicon,
|
|
1384
|
+
offering_logo_placeholder=offering_logo_placeholder,
|
|
1385
|
+
waldur_support_enabled=waldur_support_enabled,
|
|
1386
|
+
waldur_support_active_backend_type=waldur_support_active_backend_type,
|
|
1387
|
+
waldur_support_display_request_type=waldur_support_display_request_type,
|
|
1388
|
+
atlassian_use_old_api=atlassian_use_old_api,
|
|
1389
|
+
atlassian_use_teenage_api=atlassian_use_teenage_api,
|
|
1390
|
+
atlassian_use_automatic_request_mapping=atlassian_use_automatic_request_mapping,
|
|
1391
|
+
atlassian_map_waldur_users_to_servicedesk_agents=atlassian_map_waldur_users_to_servicedesk_agents,
|
|
1392
|
+
atlassian_strange_setting=atlassian_strange_setting,
|
|
1393
|
+
atlassian_api_url=atlassian_api_url,
|
|
1394
|
+
atlassian_username=atlassian_username,
|
|
1395
|
+
atlassian_password=atlassian_password,
|
|
1396
|
+
atlassian_email=atlassian_email,
|
|
1397
|
+
atlassian_token=atlassian_token,
|
|
1398
|
+
atlassian_verify_ssl=atlassian_verify_ssl,
|
|
1399
|
+
atlassian_project_id=atlassian_project_id,
|
|
1400
|
+
atlassian_shared_username=atlassian_shared_username,
|
|
1401
|
+
atlassian_custom_issue_field_mapping_enabled=atlassian_custom_issue_field_mapping_enabled,
|
|
1402
|
+
atlassian_default_offering_issue_type=atlassian_default_offering_issue_type,
|
|
1403
|
+
atlassian_excluded_attachment_types=atlassian_excluded_attachment_types,
|
|
1404
|
+
atlassian_pull_priorities=atlassian_pull_priorities,
|
|
1405
|
+
atlassian_issue_types=atlassian_issue_types,
|
|
1406
|
+
atlassian_description_template=atlassian_description_template,
|
|
1407
|
+
atlassian_summary_template=atlassian_summary_template,
|
|
1408
|
+
atlassian_affected_resource_field=atlassian_affected_resource_field,
|
|
1409
|
+
atlassian_impact_field=atlassian_impact_field,
|
|
1410
|
+
atlassian_organisation_field=atlassian_organisation_field,
|
|
1411
|
+
atlassian_resolution_sla_field=atlassian_resolution_sla_field,
|
|
1412
|
+
atlassian_project_field=atlassian_project_field,
|
|
1413
|
+
atlassian_reporter_field=atlassian_reporter_field,
|
|
1414
|
+
atlassian_caller_field=atlassian_caller_field,
|
|
1415
|
+
atlassian_sla_field=atlassian_sla_field,
|
|
1416
|
+
atlassian_linked_issue_type=atlassian_linked_issue_type,
|
|
1417
|
+
atlassian_satisfaction_field=atlassian_satisfaction_field,
|
|
1418
|
+
atlassian_request_feedback_field=atlassian_request_feedback_field,
|
|
1419
|
+
atlassian_template_field=atlassian_template_field,
|
|
1420
|
+
zammad_api_url=zammad_api_url,
|
|
1421
|
+
zammad_token=zammad_token,
|
|
1422
|
+
zammad_group=zammad_group,
|
|
1423
|
+
zammad_article_type=zammad_article_type,
|
|
1424
|
+
zammad_comment_marker=zammad_comment_marker,
|
|
1425
|
+
zammad_comment_prefix=zammad_comment_prefix,
|
|
1426
|
+
zammad_comment_cooldown_duration=zammad_comment_cooldown_duration,
|
|
1427
|
+
smax_api_url=smax_api_url,
|
|
1428
|
+
smax_tenant_id=smax_tenant_id,
|
|
1429
|
+
smax_login=smax_login,
|
|
1430
|
+
smax_password=smax_password,
|
|
1431
|
+
smax_organisation_field=smax_organisation_field,
|
|
1432
|
+
smax_project_field=smax_project_field,
|
|
1433
|
+
smax_affected_resource_field=smax_affected_resource_field,
|
|
1434
|
+
smax_times_to_pull=smax_times_to_pull,
|
|
1435
|
+
smax_seconds_to_wait=smax_seconds_to_wait,
|
|
1436
|
+
smax_creation_source_name=smax_creation_source_name,
|
|
1437
|
+
smax_requests_offering=smax_requests_offering,
|
|
1438
|
+
smax_verify_ssl=smax_verify_ssl,
|
|
1439
|
+
enable_mock_service_account_backend=enable_mock_service_account_backend,
|
|
1440
|
+
proposal_review_duration=proposal_review_duration,
|
|
1441
|
+
user_table_columns=user_table_columns,
|
|
1442
|
+
auto_approve_user_tos=auto_approve_user_tos,
|
|
1443
|
+
freeipa_enabled=freeipa_enabled,
|
|
1444
|
+
freeipa_hostname=freeipa_hostname,
|
|
1445
|
+
freeipa_username=freeipa_username,
|
|
1446
|
+
freeipa_password=freeipa_password,
|
|
1447
|
+
freeipa_verify_ssl=freeipa_verify_ssl,
|
|
1448
|
+
freeipa_username_prefix=freeipa_username_prefix,
|
|
1449
|
+
freeipa_groupname_prefix=freeipa_groupname_prefix,
|
|
1450
|
+
freeipa_blacklisted_usernames=freeipa_blacklisted_usernames,
|
|
1451
|
+
freeipa_group_synchronization_enabled=freeipa_group_synchronization_enabled,
|
|
1452
|
+
keycloak_icon=keycloak_icon,
|
|
1453
|
+
countries=countries,
|
|
1454
|
+
oidc_introspection_url=oidc_introspection_url,
|
|
1455
|
+
oidc_client_id=oidc_client_id,
|
|
1456
|
+
oidc_client_secret=oidc_client_secret,
|
|
1457
|
+
oidc_user_field=oidc_user_field,
|
|
1458
|
+
oidc_cache_timeout=oidc_cache_timeout,
|
|
1459
|
+
)
|
|
1460
|
+
|
|
1461
|
+
constance_settings_request.additional_properties = d
|
|
1462
|
+
return constance_settings_request
|
|
1463
|
+
|
|
1464
|
+
@property
|
|
1465
|
+
def additional_keys(self) -> list[str]:
|
|
1466
|
+
return list(self.additional_properties.keys())
|
|
1467
|
+
|
|
1468
|
+
def __getitem__(self, key: str) -> Any:
|
|
1469
|
+
return self.additional_properties[key]
|
|
1470
|
+
|
|
1471
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
1472
|
+
self.additional_properties[key] = value
|
|
1473
|
+
|
|
1474
|
+
def __delitem__(self, key: str) -> None:
|
|
1475
|
+
del self.additional_properties[key]
|
|
1476
|
+
|
|
1477
|
+
def __contains__(self, key: str) -> bool:
|
|
1478
|
+
return key in self.additional_properties
|