agilicus 1.273.3__py3-none-any.whl → 1.274.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.
- agilicus/.openapi-generator/FILES +15 -0
- agilicus/agilicus_api/__init__.py +6 -1
- agilicus/agilicus_api/api/application_services_api.py +1 -1
- agilicus/agilicus_api/api/applications_api.py +1 -1
- agilicus/agilicus_api/api/audits_api.py +1 -1
- agilicus/agilicus_api/api/billing_api.py +1 -1
- agilicus/agilicus_api/api/catalogues_api.py +1 -1
- agilicus/agilicus_api/api/certificates_api.py +1 -1
- agilicus/agilicus_api/api/challenges_api.py +1 -1
- agilicus/agilicus_api/api/connectors_api.py +7 -1
- agilicus/agilicus_api/api/credentials_api.py +1 -1
- agilicus/agilicus_api/api/diagnostics_api.py +1 -1
- agilicus/agilicus_api/api/features_api.py +1 -1
- agilicus/agilicus_api/api/files_api.py +1 -1
- agilicus/agilicus_api/api/groups_api.py +1 -1
- agilicus/agilicus_api/api/hosts_api.py +1 -1
- agilicus/agilicus_api/api/issuers_api.py +1 -1
- agilicus/agilicus_api/api/labels_api.py +1 -1
- agilicus/agilicus_api/api/launchers_api.py +1 -1
- agilicus/agilicus_api/api/lookups_api.py +1 -1
- agilicus/agilicus_api/api/messages_api.py +1 -1
- agilicus/agilicus_api/api/metrics_api.py +1 -1
- agilicus/agilicus_api/api/organisations_api.py +8 -1
- agilicus/agilicus_api/api/permissions_api.py +1 -1
- agilicus/agilicus_api/api/policy_api.py +1 -1
- agilicus/agilicus_api/api/policy_config_api.py +1 -1
- agilicus/agilicus_api/api/policy_templates_api.py +1 -1
- agilicus/agilicus_api/api/regions_api.py +691 -58
- agilicus/agilicus_api/api/regions_api_mock.py +35 -0
- agilicus/agilicus_api/api/resources_api.py +1 -1
- agilicus/agilicus_api/api/rules_api.py +1 -1
- agilicus/agilicus_api/api/tokens_api.py +1 -1
- agilicus/agilicus_api/api/trusted_certs_api.py +1 -1
- agilicus/agilicus_api/api/users_api.py +1 -1
- agilicus/agilicus_api/api/whoami_api.py +1 -1
- agilicus/agilicus_api/api_client.py +2 -2
- agilicus/agilicus_api/configuration.py +3 -3
- agilicus/agilicus_api/docs/BillingApi.md +16 -0
- agilicus/agilicus_api/docs/Cluster.md +14 -0
- agilicus/agilicus_api/docs/ClusterConfig.md +14 -0
- agilicus/agilicus_api/docs/ClusterSpec.md +14 -0
- agilicus/agilicus_api/docs/ConnectorsApi.md +4 -2
- agilicus/agilicus_api/docs/ListClusterResponse.md +15 -0
- agilicus/agilicus_api/docs/Organisation.md +3 -1
- agilicus/agilicus_api/docs/OrganisationsApi.md +7 -1
- agilicus/agilicus_api/docs/PointOfPresence.md +2 -1
- agilicus/agilicus_api/docs/PointOfPresenceSpec.md +3 -1
- agilicus/agilicus_api/docs/PointOfPresenceStatus.md +14 -0
- agilicus/agilicus_api/docs/RegionsApi.md +493 -1
- agilicus/agilicus_api/exceptions.py +1 -1
- agilicus/agilicus_api/model/access_requests.py +1 -1
- agilicus/agilicus_api/model/access_requests_status.py +1 -1
- agilicus/agilicus_api/model/add_group_member_request.py +1 -1
- agilicus/agilicus_api/model/admin_status.py +1 -1
- agilicus/agilicus_api/model/agent_connector.py +1 -1
- agilicus/agilicus_api/model/agent_connector_authz_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_bootstrap.py +1 -1
- agilicus/agilicus_api/model/agent_connector_cloud_routing.py +1 -1
- agilicus/agilicus_api/model/agent_connector_connection_info.py +1 -1
- agilicus/agilicus_api/model/agent_connector_dynamic_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_dynamic_stats_publish.py +1 -1
- agilicus/agilicus_api/model/agent_connector_info.py +1 -1
- agilicus/agilicus_api/model/agent_connector_instance.py +1 -1
- agilicus/agilicus_api/model/agent_connector_instance_spec.py +1 -1
- agilicus/agilicus_api/model/agent_connector_instance_status.py +1 -1
- agilicus/agilicus_api/model/agent_connector_local_bind.py +1 -1
- agilicus/agilicus_api/model/agent_connector_local_bind_error.py +1 -1
- agilicus/agilicus_api/model/agent_connector_local_bind_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_on_demand_routing_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_outer_proxy_info.py +1 -1
- agilicus/agilicus_api/model/agent_connector_per_share_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_per_user_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_proxy.py +1 -1
- agilicus/agilicus_api/model/agent_connector_proxy_request_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_proxy_request_stats_details.py +1 -1
- agilicus/agilicus_api/model/agent_connector_proxy_spec.py +1 -1
- agilicus/agilicus_api/model/agent_connector_proxy_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_proxy_status.py +1 -1
- agilicus/agilicus_api/model/agent_connector_queue.py +1 -1
- agilicus/agilicus_api/model/agent_connector_queue_response.py +1 -1
- agilicus/agilicus_api/model/agent_connector_queue_spec.py +1 -1
- agilicus/agilicus_api/model/agent_connector_queue_status.py +1 -1
- agilicus/agilicus_api/model/agent_connector_routing_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_share_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_spec.py +1 -1
- agilicus/agilicus_api/model/agent_connector_spec_provisioning.py +1 -1
- agilicus/agilicus_api/model/agent_connector_specific_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_status.py +1 -1
- agilicus/agilicus_api/model/agent_connector_system_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_transport_stats.py +1 -1
- agilicus/agilicus_api/model/agent_connector_tunnel_info.py +1 -1
- agilicus/agilicus_api/model/agent_connector_tunneling.py +1 -1
- agilicus/agilicus_api/model/agent_connector_user_stats.py +1 -1
- agilicus/agilicus_api/model/agent_local_auth_info.py +1 -1
- agilicus/agilicus_api/model/allow_map_compiled.py +1 -1
- agilicus/agilicus_api/model/allow_rule_compiled.py +1 -1
- agilicus/agilicus_api/model/alternate_mode_setting.py +1 -1
- agilicus/agilicus_api/model/alternate_mode_status.py +1 -1
- agilicus/agilicus_api/model/api_key.py +1 -1
- agilicus/agilicus_api/model/api_key_introspect.py +1 -1
- agilicus/agilicus_api/model/api_key_introspect_authorization_info.py +1 -1
- agilicus/agilicus_api/model/api_key_introspect_response.py +1 -1
- agilicus/agilicus_api/model/api_key_op_status.py +1 -1
- agilicus/agilicus_api/model/api_key_spec.py +1 -1
- agilicus/agilicus_api/model/api_key_status.py +1 -1
- agilicus/agilicus_api/model/application.py +1 -1
- agilicus/agilicus_api/model/application_additional_context.py +1 -1
- agilicus/agilicus_api/model/application_assignment.py +1 -1
- agilicus/agilicus_api/model/application_authentication_config.py +1 -1
- agilicus/agilicus_api/model/application_config.py +1 -1
- agilicus/agilicus_api/model/application_dynamic_config.py +1 -1
- agilicus/agilicus_api/model/application_monitoring_config.py +1 -1
- agilicus/agilicus_api/model/application_security.py +1 -1
- agilicus/agilicus_api/model/application_service.py +1 -1
- agilicus/agilicus_api/model/application_service_assignment.py +1 -1
- agilicus/agilicus_api/model/application_service_common_stats.py +1 -1
- agilicus/agilicus_api/model/application_service_load_balancing.py +1 -1
- agilicus/agilicus_api/model/application_service_location.py +1 -1
- agilicus/agilicus_api/model/application_service_route.py +1 -1
- agilicus/agilicus_api/model/application_service_routing_info.py +1 -1
- agilicus/agilicus_api/model/application_service_stats.py +1 -1
- agilicus/agilicus_api/model/application_service_stats_group.py +1 -1
- agilicus/agilicus_api/model/application_service_stats_publish.py +1 -1
- agilicus/agilicus_api/model/application_service_status.py +1 -1
- agilicus/agilicus_api/model/application_state_selector.py +1 -1
- agilicus/agilicus_api/model/application_stats.py +1 -1
- agilicus/agilicus_api/model/application_stats_list.py +1 -1
- agilicus/agilicus_api/model/application_summary.py +1 -1
- agilicus/agilicus_api/model/application_summary_status.py +1 -1
- agilicus/agilicus_api/model/application_upstream_config.py +1 -1
- agilicus/agilicus_api/model/application_upstream_form_info.py +1 -1
- agilicus/agilicus_api/model/application_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/model/application_upstream_validation.py +1 -1
- agilicus/agilicus_api/model/applied_connector_stats_config.py +1 -1
- agilicus/agilicus_api/model/audit.py +1 -1
- agilicus/agilicus_api/model/audit_attribute.py +1 -1
- agilicus/agilicus_api/model/audit_destination.py +1 -1
- agilicus/agilicus_api/model/audit_destination_authentication.py +1 -1
- agilicus/agilicus_api/model/audit_destination_filter.py +1 -1
- agilicus/agilicus_api/model/audit_destination_spec.py +1 -1
- agilicus/agilicus_api/model/audit_event.py +1 -1
- agilicus/agilicus_api/model/audit_event_response.py +1 -1
- agilicus/agilicus_api/model/audit_webhook_bulk_event.py +1 -1
- agilicus/agilicus_api/model/audit_webhook_events_processed.py +1 -1
- agilicus/agilicus_api/model/auth_audits.py +1 -1
- agilicus/agilicus_api/model/authentication_attribute.py +1 -1
- agilicus/agilicus_api/model/authentication_document.py +1 -1
- agilicus/agilicus_api/model/authentication_document_spec.py +1 -1
- agilicus/agilicus_api/model/authentication_document_status.py +1 -1
- agilicus/agilicus_api/model/authz_bundle.py +1 -1
- agilicus/agilicus_api/model/auto_create_status.py +1 -1
- agilicus/agilicus_api/model/base_upstream.py +1 -1
- agilicus/agilicus_api/model/base_upstreams.py +1 -1
- agilicus/agilicus_api/model/billing_account.py +1 -1
- agilicus/agilicus_api/model/billing_account_spec.py +1 -1
- agilicus/agilicus_api/model/billing_account_status.py +1 -1
- agilicus/agilicus_api/model/billing_balance_transaction.py +1 -1
- agilicus/agilicus_api/model/billing_checkout_session.py +1 -1
- agilicus/agilicus_api/model/billing_customer.py +1 -1
- agilicus/agilicus_api/model/billing_org.py +1 -1
- agilicus/agilicus_api/model/billing_org_subscription.py +1 -1
- agilicus/agilicus_api/model/billing_org_subscription_balance.py +1 -1
- agilicus/agilicus_api/model/billing_org_subscription_spec.py +1 -1
- agilicus/agilicus_api/model/billing_org_subscription_status.py +1 -1
- agilicus/agilicus_api/model/billing_portal_link.py +1 -1
- agilicus/agilicus_api/model/billing_product.py +1 -1
- agilicus/agilicus_api/model/billing_product_price.py +1 -1
- agilicus/agilicus_api/model/billing_provider_subscription_status.py +1 -1
- agilicus/agilicus_api/model/billing_subscription.py +1 -1
- agilicus/agilicus_api/model/billing_subscription_cancel_detail.py +1 -1
- agilicus/agilicus_api/model/billing_subscription_new_subscription.py +1 -1
- agilicus/agilicus_api/model/billing_subscription_usage_override_item.py +1 -1
- agilicus/agilicus_api/model/billing_usage_record.py +1 -1
- agilicus/agilicus_api/model/billing_usage_summary.py +1 -1
- agilicus/agilicus_api/model/bulk_delete_labelled_objects_request.py +1 -1
- agilicus/agilicus_api/model/bulk_delete_labelled_objects_response.py +1 -1
- agilicus/agilicus_api/model/bulk_session_operation_response.py +1 -1
- agilicus/agilicus_api/model/bulk_token_revoke.py +1 -1
- agilicus/agilicus_api/model/bulk_token_revoke_response.py +1 -1
- agilicus/agilicus_api/model/bulk_user_metadata.py +1 -1
- agilicus/agilicus_api/model/bulk_user_request_approval.py +1 -1
- agilicus/agilicus_api/model/catalogue.py +1 -1
- agilicus/agilicus_api/model/catalogue_entry.py +1 -1
- agilicus/agilicus_api/model/cert_signing_req.py +1 -1
- agilicus/agilicus_api/model/cert_signing_req_reissue.py +1 -1
- agilicus/agilicus_api/model/cert_signing_req_reissue_spec.py +1 -1
- agilicus/agilicus_api/model/cert_signing_req_reissue_status.py +1 -1
- agilicus/agilicus_api/model/cert_signing_req_spec.py +1 -1
- agilicus/agilicus_api/model/cert_signing_req_status.py +1 -1
- agilicus/agilicus_api/model/certificate_revocation_proxy.py +1 -1
- agilicus/agilicus_api/model/certificate_transparency_settings.py +1 -1
- agilicus/agilicus_api/model/challenge.py +1 -1
- agilicus/agilicus_api/model/challenge_action.py +1 -1
- agilicus/agilicus_api/model/challenge_actor.py +1 -1
- agilicus/agilicus_api/model/challenge_answer.py +1 -1
- agilicus/agilicus_api/model/challenge_answer_spec.py +1 -1
- agilicus/agilicus_api/model/challenge_endpoint.py +1 -1
- agilicus/agilicus_api/model/challenge_spec.py +1 -1
- agilicus/agilicus_api/model/challenge_status.py +1 -1
- agilicus/agilicus_api/model/cipher_diffie_hellman_group.py +1 -1
- agilicus/agilicus_api/model/cipher_encryption_algorithm.py +1 -1
- agilicus/agilicus_api/model/cipher_integrity_algorithm.py +1 -1
- agilicus/agilicus_api/model/clear_file_association_request.py +1 -1
- agilicus/agilicus_api/model/clear_file_association_response.py +1 -1
- agilicus/agilicus_api/model/cluster.py +295 -0
- agilicus/agilicus_api/model/cluster_config.py +281 -0
- agilicus/agilicus_api/model/cluster_spec.py +289 -0
- agilicus/agilicus_api/model/combined_resource_rules.py +1 -1
- agilicus/agilicus_api/model/combined_resource_rules_status.py +1 -1
- agilicus/agilicus_api/model/combined_rules.py +1 -1
- agilicus/agilicus_api/model/combined_rules_status.py +1 -1
- agilicus/agilicus_api/model/combined_user_detail.py +1 -1
- agilicus/agilicus_api/model/combined_user_detail_status.py +1 -1
- agilicus/agilicus_api/model/common_metadata.py +1 -1
- agilicus/agilicus_api/model/compound_rule_condition.py +1 -1
- agilicus/agilicus_api/model/config_file_format.py +1 -1
- agilicus/agilicus_api/model/configure_connector_stats_publishing_request.py +1 -1
- agilicus/agilicus_api/model/connector.py +1 -1
- agilicus/agilicus_api/model/connector_base_info.py +1 -1
- agilicus/agilicus_api/model/connector_base_info_map.py +1 -1
- agilicus/agilicus_api/model/connector_cloud_routing.py +1 -1
- agilicus/agilicus_api/model/connector_diagnostic_stats.py +1 -1
- agilicus/agilicus_api/model/connector_instance.py +1 -1
- agilicus/agilicus_api/model/connector_instance_spec.py +1 -1
- agilicus/agilicus_api/model/connector_instance_status.py +1 -1
- agilicus/agilicus_api/model/connector_route.py +1 -1
- agilicus/agilicus_api/model/connector_secure_transfer.py +1 -1
- agilicus/agilicus_api/model/connector_secure_transfer_spec.py +1 -1
- agilicus/agilicus_api/model/connector_secure_transfer_status.py +1 -1
- agilicus/agilicus_api/model/connector_service.py +1 -1
- agilicus/agilicus_api/model/connector_service_spec.py +1 -1
- agilicus/agilicus_api/model/connector_service_status.py +1 -1
- agilicus/agilicus_api/model/connector_spec.py +1 -1
- agilicus/agilicus_api/model/connector_static_stats.py +1 -1
- agilicus/agilicus_api/model/connector_stats.py +1 -1
- agilicus/agilicus_api/model/connector_stats_metadata.py +1 -1
- agilicus/agilicus_api/model/connector_status.py +1 -1
- agilicus/agilicus_api/model/connector_system_stats.py +1 -1
- agilicus/agilicus_api/model/connector_upstream_stats_publish.py +1 -1
- agilicus/agilicus_api/model/content_type_options_settings.py +1 -1
- agilicus/agilicus_api/model/cors_origin.py +1 -1
- agilicus/agilicus_api/model/cors_settings.py +1 -1
- agilicus/agilicus_api/model/create_billing_checkout_session.py +1 -1
- agilicus/agilicus_api/model/create_billing_usage_records.py +1 -1
- agilicus/agilicus_api/model/create_session_and_token_request.py +1 -1
- agilicus/agilicus_api/model/create_session_and_token_response.py +1 -1
- agilicus/agilicus_api/model/create_token_request.py +1 -1
- agilicus/agilicus_api/model/create_user_data_token_request.py +1 -1
- agilicus/agilicus_api/model/credential_purpose.py +1 -1
- agilicus/agilicus_api/model/cross_origin_embedder_policy_settings.py +1 -1
- agilicus/agilicus_api/model/cross_origin_opener_policy_settings.py +1 -1
- agilicus/agilicus_api/model/cross_origin_resource_policy_settings.py +1 -1
- agilicus/agilicus_api/model/csp_directive.py +1 -1
- agilicus/agilicus_api/model/csp_settings.py +1 -1
- agilicus/agilicus_api/model/csr_reason_enum.py +1 -1
- agilicus/agilicus_api/model/custom_desktop_client_config.py +1 -1
- agilicus/agilicus_api/model/definition.py +1 -1
- agilicus/agilicus_api/model/dereferenced_standalone_rule_tree_node.py +1 -1
- agilicus/agilicus_api/model/dereferenced_standalone_rule_tree_node_child.py +1 -1
- agilicus/agilicus_api/model/desktop_client_config_item.py +1 -1
- agilicus/agilicus_api/model/desktop_client_configuration.py +1 -1
- agilicus/agilicus_api/model/desktop_client_generated_configuration.py +1 -1
- agilicus/agilicus_api/model/desktop_connection_info.py +1 -1
- agilicus/agilicus_api/model/desktop_remote_app.py +1 -1
- agilicus/agilicus_api/model/desktop_resource.py +1 -1
- agilicus/agilicus_api/model/desktop_resource_spec.py +1 -1
- agilicus/agilicus_api/model/desktop_resource_stats.py +1 -1
- agilicus/agilicus_api/model/desktop_resource_status.py +1 -1
- agilicus/agilicus_api/model/desktop_server_configuration.py +1 -1
- agilicus/agilicus_api/model/desktop_server_generated_configuration.py +1 -1
- agilicus/agilicus_api/model/display_info.py +1 -1
- agilicus/agilicus_api/model/domain.py +1 -1
- agilicus/agilicus_api/model/egress_gateway.py +1 -1
- agilicus/agilicus_api/model/email.py +1 -1
- agilicus/agilicus_api/model/emptiable_object_type.py +1 -1
- agilicus/agilicus_api/model/encrypted_data.py +1 -1
- agilicus/agilicus_api/model/environment.py +1 -1
- agilicus/agilicus_api/model/environment_config.py +1 -1
- agilicus/agilicus_api/model/environment_config_var.py +1 -1
- agilicus/agilicus_api/model/environment_status.py +1 -1
- agilicus/agilicus_api/model/error_message.py +1 -1
- agilicus/agilicus_api/model/extra_process.py +1 -1
- agilicus/agilicus_api/model/feature.py +1 -1
- agilicus/agilicus_api/model/feature_flag.py +1 -1
- agilicus/agilicus_api/model/feature_key.py +1 -1
- agilicus/agilicus_api/model/feature_spec.py +1 -1
- agilicus/agilicus_api/model/feature_status.py +1 -1
- agilicus/agilicus_api/model/feature_tag.py +1 -1
- agilicus/agilicus_api/model/feature_tag_name.py +1 -1
- agilicus/agilicus_api/model/feature_tag_spec.py +1 -1
- agilicus/agilicus_api/model/feature_value.py +1 -1
- agilicus/agilicus_api/model/file.py +1 -1
- agilicus/agilicus_api/model/file_association.py +1 -1
- agilicus/agilicus_api/model/file_association_spec.py +1 -1
- agilicus/agilicus_api/model/file_association_status.py +1 -1
- agilicus/agilicus_api/model/file_name.py +1 -1
- agilicus/agilicus_api/model/file_share_client_config.py +1 -1
- agilicus/agilicus_api/model/file_share_client_config_linux_config.py +1 -1
- agilicus/agilicus_api/model/file_share_client_config_mac_config.py +1 -1
- agilicus/agilicus_api/model/file_share_client_config_windows_config.py +1 -1
- agilicus/agilicus_api/model/file_share_service.py +1 -1
- agilicus/agilicus_api/model/file_share_service_spec.py +1 -1
- agilicus/agilicus_api/model/file_share_service_stats.py +1 -1
- agilicus/agilicus_api/model/file_share_service_stats_group.py +1 -1
- agilicus/agilicus_api/model/file_share_service_status.py +1 -1
- agilicus/agilicus_api/model/file_summary.py +1 -1
- agilicus/agilicus_api/model/file_visibility.py +1 -1
- agilicus/agilicus_api/model/frame_options_settings.py +1 -1
- agilicus/agilicus_api/model/generic_float_metric.py +1 -1
- agilicus/agilicus_api/model/generic_int_metric.py +1 -1
- agilicus/agilicus_api/model/group.py +1 -1
- agilicus/agilicus_api/model/group_data.py +1 -1
- agilicus/agilicus_api/model/group_member.py +1 -1
- agilicus/agilicus_api/model/group_reconcile_record.py +1 -1
- agilicus/agilicus_api/model/guid_metadata.py +1 -1
- agilicus/agilicus_api/model/host.py +1 -1
- agilicus/agilicus_api/model/host_bundle.py +1 -1
- agilicus/agilicus_api/model/host_bundle_client_config.py +1 -1
- agilicus/agilicus_api/model/host_bundle_label.py +1 -1
- agilicus/agilicus_api/model/host_bundle_name.py +1 -1
- agilicus/agilicus_api/model/host_bundle_spec.py +1 -1
- agilicus/agilicus_api/model/host_bundle_status.py +1 -1
- agilicus/agilicus_api/model/host_destination.py +1 -1
- agilicus/agilicus_api/model/host_label.py +1 -1
- agilicus/agilicus_api/model/host_label_name.py +1 -1
- agilicus/agilicus_api/model/host_label_spec.py +1 -1
- agilicus/agilicus_api/model/host_org.py +1 -1
- agilicus/agilicus_api/model/host_permissions.py +1 -1
- agilicus/agilicus_api/model/host_prefix_rule_condition.py +1 -1
- agilicus/agilicus_api/model/host_spec.py +1 -1
- agilicus/agilicus_api/model/hsts_settings.py +1 -1
- agilicus/agilicus_api/model/http_basic_auth.py +1 -1
- agilicus/agilicus_api/model/http_bearer_auth.py +1 -1
- agilicus/agilicus_api/model/http_challenge_action.py +1 -1
- agilicus/agilicus_api/model/http_detailed_stats.py +1 -1
- agilicus/agilicus_api/model/http_request_extractor.py +1 -1
- agilicus/agilicus_api/model/http_request_extractor_source.py +1 -1
- agilicus/agilicus_api/model/http_response_code_counter.py +1 -1
- agilicus/agilicus_api/model/http_rule.py +1 -1
- agilicus/agilicus_api/model/http_rule_condition.py +1 -1
- agilicus/agilicus_api/model/http_rule_condition_type.py +1 -1
- agilicus/agilicus_api/model/http_security_settings.py +1 -1
- agilicus/agilicus_api/model/http_summary_stats.py +1 -1
- agilicus/agilicus_api/model/icon.py +1 -1
- agilicus/agilicus_api/model/icon_dimensions.py +1 -1
- agilicus/agilicus_api/model/icon_purpose.py +1 -1
- agilicus/agilicus_api/model/identity_assertion.py +1 -1
- agilicus/agilicus_api/model/identity_assertion_response.py +1 -1
- agilicus/agilicus_api/model/inbox_item.py +1 -1
- agilicus/agilicus_api/model/inbox_item_metadata.py +1 -1
- agilicus/agilicus_api/model/inbox_item_spec.py +1 -1
- agilicus/agilicus_api/model/inbox_item_status.py +1 -1
- agilicus/agilicus_api/model/included_role.py +1 -1
- agilicus/agilicus_api/model/inheritable_user_config.py +1 -1
- agilicus/agilicus_api/model/inline_response200.py +1 -1
- agilicus/agilicus_api/model/interceptor_command.py +1 -1
- agilicus/agilicus_api/model/interceptor_config.py +1 -1
- agilicus/agilicus_api/model/invalid_policy_template.py +1 -1
- agilicus/agilicus_api/model/ipsec_connection.py +1 -1
- agilicus/agilicus_api/model/ipsec_connection_ipv4_block.py +1 -1
- agilicus/agilicus_api/model/ipsec_connection_spec.py +1 -1
- agilicus/agilicus_api/model/ipsec_connector.py +1 -1
- agilicus/agilicus_api/model/ipsec_connector_spec.py +1 -1
- agilicus/agilicus_api/model/ipsec_connector_status.py +1 -1
- agilicus/agilicus_api/model/ipsec_gateway_interface.py +1 -1
- agilicus/agilicus_api/model/issuer.py +1 -1
- agilicus/agilicus_api/model/issuer_client.py +1 -1
- agilicus/agilicus_api/model/issuer_status.py +1 -1
- agilicus/agilicus_api/model/issuer_upstream.py +1 -1
- agilicus/agilicus_api/model/js_inject.py +1 -1
- agilicus/agilicus_api/model/json_body_constraint.py +1 -1
- agilicus/agilicus_api/model/jwks.py +1 -1
- agilicus/agilicus_api/model/k8s_slug.py +1 -1
- agilicus/agilicus_api/model/kerberos_upstream_config.py +1 -1
- agilicus/agilicus_api/model/kerberos_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/model/kerberos_upstream_status.py +1 -1
- agilicus/agilicus_api/model/kerberos_upstream_status_key_tab_entries.py +1 -1
- agilicus/agilicus_api/model/label.py +1 -1
- agilicus/agilicus_api/model/label_association.py +1 -1
- agilicus/agilicus_api/model/label_association_status.py +1 -1
- agilicus/agilicus_api/model/label_name.py +1 -1
- agilicus/agilicus_api/model/label_navigation.py +1 -1
- agilicus/agilicus_api/model/label_spec.py +1 -1
- agilicus/agilicus_api/model/labelled_object.py +1 -1
- agilicus/agilicus_api/model/latency_bucket_value.py +1 -1
- agilicus/agilicus_api/model/latency_histogram.py +1 -1
- agilicus/agilicus_api/model/latency_histogram_buckets.py +1 -1
- agilicus/agilicus_api/model/launcher.py +1 -1
- agilicus/agilicus_api/model/launcher_config.py +1 -1
- agilicus/agilicus_api/model/launcher_spec.py +1 -1
- agilicus/agilicus_api/model/launcher_status.py +1 -1
- agilicus/agilicus_api/model/learning_mode_spec.py +1 -1
- agilicus/agilicus_api/model/list_access_requests_response.py +1 -1
- agilicus/agilicus_api/model/list_active_users_response.py +1 -1
- agilicus/agilicus_api/model/list_agent_connector_instance_response.py +1 -1
- agilicus/agilicus_api/model/list_agent_connector_instance_stats_response.py +1 -1
- agilicus/agilicus_api/model/list_agent_connector_proxy_response.py +1 -1
- agilicus/agilicus_api/model/list_agent_connector_response.py +1 -1
- agilicus/agilicus_api/model/list_api_keys_response.py +1 -1
- agilicus/agilicus_api/model/list_application_services_response.py +1 -1
- agilicus/agilicus_api/model/list_application_summary_response.py +1 -1
- agilicus/agilicus_api/model/list_applications_response.py +1 -1
- agilicus/agilicus_api/model/list_audit_destinations_response.py +1 -1
- agilicus/agilicus_api/model/list_audits_response.py +1 -1
- agilicus/agilicus_api/model/list_auth_audits_response.py +1 -1
- agilicus/agilicus_api/model/list_authentication_document_response.py +1 -1
- agilicus/agilicus_api/model/list_billing_accounts_response.py +1 -1
- agilicus/agilicus_api/model/list_billing_balance_transactions.py +1 -1
- agilicus/agilicus_api/model/list_billing_checkout_sessions.py +1 -1
- agilicus/agilicus_api/model/list_billing_org_subscriptions_response.py +1 -1
- agilicus/agilicus_api/model/list_billing_usage_records_response.py +1 -1
- agilicus/agilicus_api/model/list_catalogue_entries_response.py +1 -1
- agilicus/agilicus_api/model/list_catalogues_response.py +1 -1
- agilicus/agilicus_api/model/list_cert_signing_req_response.py +1 -1
- agilicus/agilicus_api/model/list_cluster_response.py +311 -0
- agilicus/agilicus_api/model/list_combined_resource_rules_response.py +1 -1
- agilicus/agilicus_api/model/list_combined_rules_response.py +1 -1
- agilicus/agilicus_api/model/list_combined_user_details_response.py +1 -1
- agilicus/agilicus_api/model/list_configs_response.py +1 -1
- agilicus/agilicus_api/model/list_connector_response.py +1 -1
- agilicus/agilicus_api/model/list_connector_secure_transfer_response.py +1 -1
- agilicus/agilicus_api/model/list_connector_service_response.py +1 -1
- agilicus/agilicus_api/model/list_connector_stats_response.py +1 -1
- agilicus/agilicus_api/model/list_desktop_resources_response.py +1 -1
- agilicus/agilicus_api/model/list_domains_response.py +1 -1
- agilicus/agilicus_api/model/list_elevated_user_roles.py +1 -1
- agilicus/agilicus_api/model/list_environment_configs_response.py +1 -1
- agilicus/agilicus_api/model/list_feature_tags_response.py +1 -1
- agilicus/agilicus_api/model/list_features_response.py +1 -1
- agilicus/agilicus_api/model/list_file_associations_response.py +1 -1
- agilicus/agilicus_api/model/list_file_share_services_response.py +1 -1
- agilicus/agilicus_api/model/list_files_response.py +1 -1
- agilicus/agilicus_api/model/list_groups_response.py +1 -1
- agilicus/agilicus_api/model/list_guid_metadata_response.py +1 -1
- agilicus/agilicus_api/model/list_host.py +1 -1
- agilicus/agilicus_api/model/list_host_bundle.py +1 -1
- agilicus/agilicus_api/model/list_host_label.py +1 -1
- agilicus/agilicus_api/model/list_host_org.py +1 -1
- agilicus/agilicus_api/model/list_inbox_items_response.py +1 -1
- agilicus/agilicus_api/model/list_inbox_items_summary.py +1 -1
- agilicus/agilicus_api/model/list_ipsec_connector_response.py +1 -1
- agilicus/agilicus_api/model/list_issuer_clients_response.py +1 -1
- agilicus/agilicus_api/model/list_issuer_extensions_response.py +1 -1
- agilicus/agilicus_api/model/list_issuer_roots_response.py +1 -1
- agilicus/agilicus_api/model/list_issuer_upstreams.py +1 -1
- agilicus/agilicus_api/model/list_jwks.py +1 -1
- agilicus/agilicus_api/model/list_labelled_objects_response.py +1 -1
- agilicus/agilicus_api/model/list_labels_response.py +1 -1
- agilicus/agilicus_api/model/list_launchers_response.py +1 -1
- agilicus/agilicus_api/model/list_logs_response.py +1 -1
- agilicus/agilicus_api/model/list_message_endpoints_response.py +1 -1
- agilicus/agilicus_api/model/list_mfa_challenge_methods.py +1 -1
- agilicus/agilicus_api/model/list_object_credential_existence_info_response.py +1 -1
- agilicus/agilicus_api/model/list_object_credentials_response.py +1 -1
- agilicus/agilicus_api/model/list_orgs_response.py +1 -1
- agilicus/agilicus_api/model/list_point_of_presences_response.py +1 -1
- agilicus/agilicus_api/model/list_policies_response.py +1 -1
- agilicus/agilicus_api/model/list_policy_rules_response.py +1 -1
- agilicus/agilicus_api/model/list_policy_template_instances_response.py +1 -1
- agilicus/agilicus_api/model/list_products_response.py +1 -1
- agilicus/agilicus_api/model/list_public_file_org_links_response.py +1 -1
- agilicus/agilicus_api/model/list_resource_groups_response.py +1 -1
- agilicus/agilicus_api/model/list_resource_permissions_response.py +1 -1
- agilicus/agilicus_api/model/list_resource_roles_response.py +1 -1
- agilicus/agilicus_api/model/list_resources_response.py +1 -1
- agilicus/agilicus_api/model/list_role_to_rule_entries.py +1 -1
- agilicus/agilicus_api/model/list_roles.py +1 -1
- agilicus/agilicus_api/model/list_rules.py +1 -1
- agilicus/agilicus_api/model/list_secure_agent_response.py +1 -1
- agilicus/agilicus_api/model/list_service_account_response.py +1 -1
- agilicus/agilicus_api/model/list_service_forwarders_response.py +1 -1
- agilicus/agilicus_api/model/list_sessions_response.py +1 -1
- agilicus/agilicus_api/model/list_ssh_resources_response.py +1 -1
- agilicus/agilicus_api/model/list_standalone_rule_policies_response.py +1 -1
- agilicus/agilicus_api/model/list_standalone_rule_trees_response.py +1 -1
- agilicus/agilicus_api/model/list_standalone_rules_response.py +1 -1
- agilicus/agilicus_api/model/list_standalone_ruleset_bundles_response.py +1 -1
- agilicus/agilicus_api/model/list_standalone_ruleset_labels_response.py +1 -1
- agilicus/agilicus_api/model/list_standalone_rulesets_response.py +1 -1
- agilicus/agilicus_api/model/list_tokens_response.py +1 -1
- agilicus/agilicus_api/model/list_top_users_response.py +1 -1
- agilicus/agilicus_api/model/list_totp_enrollment_response.py +1 -1
- agilicus/agilicus_api/model/list_trusted_certificate.py +1 -1
- agilicus/agilicus_api/model/list_trusted_certificate_bundle.py +1 -1
- agilicus/agilicus_api/model/list_trusted_certificate_label.py +1 -1
- agilicus/agilicus_api/model/list_trusted_certificate_org.py +1 -1
- agilicus/agilicus_api/model/list_upstream_aliases.py +1 -1
- agilicus/agilicus_api/model/list_upstream_group_mapping.py +1 -1
- agilicus/agilicus_api/model/list_upstream_user_identities_response.py +1 -1
- agilicus/agilicus_api/model/list_user_application_access_info_response.py +1 -1
- agilicus/agilicus_api/model/list_user_desktop_access_info_response.py +1 -1
- agilicus/agilicus_api/model/list_user_file_share_access_info_response.py +1 -1
- agilicus/agilicus_api/model/list_user_guids_response.py +1 -1
- agilicus/agilicus_api/model/list_user_launcher_access_info_response.py +1 -1
- agilicus/agilicus_api/model/list_user_metadata_response.py +1 -1
- agilicus/agilicus_api/model/list_user_request_info_response.py +1 -1
- agilicus/agilicus_api/model/list_user_resource_access_info_response.py +1 -1
- agilicus/agilicus_api/model/list_user_roles_for_an_org.py +1 -1
- agilicus/agilicus_api/model/list_user_ssh_access_info_response.py +1 -1
- agilicus/agilicus_api/model/list_users_response.py +1 -1
- agilicus/agilicus_api/model/list_web_auth_n_enrollment_response.py +1 -1
- agilicus/agilicus_api/model/list_well_known_issuer_info.py +1 -1
- agilicus/agilicus_api/model/list_x509_certificate_response.py +1 -1
- agilicus/agilicus_api/model/local_auth_upstream_config.py +1 -1
- agilicus/agilicus_api/model/local_auth_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/model/log.py +1 -1
- agilicus/agilicus_api/model/login_session.py +1 -1
- agilicus/agilicus_api/model/lookup_request.py +1 -1
- agilicus/agilicus_api/model/managed_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/model/many_org_token_introspect_response.py +1 -1
- agilicus/agilicus_api/model/map_attributes_answer.py +1 -1
- agilicus/agilicus_api/model/map_attributes_answer_result.py +1 -1
- agilicus/agilicus_api/model/map_attributes_question.py +1 -1
- agilicus/agilicus_api/model/map_attributes_question_input.py +1 -1
- agilicus/agilicus_api/model/map_attributes_question_login_info.py +1 -1
- agilicus/agilicus_api/model/mapped_attributes.py +1 -1
- agilicus/agilicus_api/model/max_mfa_proof_rule_condition.py +1 -1
- agilicus/agilicus_api/model/message.py +1 -1
- agilicus/agilicus_api/model/message_action.py +1 -1
- agilicus/agilicus_api/model/message_address.py +1 -1
- agilicus/agilicus_api/model/message_class.py +1 -1
- agilicus/agilicus_api/model/message_endpoint.py +1 -1
- agilicus/agilicus_api/model/message_endpoint_metadata.py +1 -1
- agilicus/agilicus_api/model/message_endpoint_spec.py +1 -1
- agilicus/agilicus_api/model/message_endpoint_type.py +1 -1
- agilicus/agilicus_api/model/message_endpoint_type_web_push.py +1 -1
- agilicus/agilicus_api/model/message_endpoints_config.py +1 -1
- agilicus/agilicus_api/model/message_send_item.py +1 -1
- agilicus/agilicus_api/model/message_send_request.py +1 -1
- agilicus/agilicus_api/model/message_send_response.py +1 -1
- agilicus/agilicus_api/model/message_send_response_item.py +1 -1
- agilicus/agilicus_api/model/message_tag.py +1 -1
- agilicus/agilicus_api/model/message_tag_name.py +1 -1
- agilicus/agilicus_api/model/message_type.py +1 -1
- agilicus/agilicus_api/model/messages_bulk_delete_request.py +1 -1
- agilicus/agilicus_api/model/messages_bulk_delete_response.py +1 -1
- agilicus/agilicus_api/model/metadata_with_id.py +1 -1
- agilicus/agilicus_api/model/metadata_with_id_all_of.py +1 -1
- agilicus/agilicus_api/model/metadata_with_only_id.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_answer.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_answer_result.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_method.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_method_spec.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_question.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_question_input.py +1 -1
- agilicus/agilicus_api/model/mfa_challenge_question_login_info.py +1 -1
- agilicus/agilicus_api/model/mfa_enrollment_answer.py +1 -1
- agilicus/agilicus_api/model/mfa_enrollment_answer_result.py +1 -1
- agilicus/agilicus_api/model/mfa_enrollment_question.py +1 -1
- agilicus/agilicus_api/model/mfa_enrollment_question_input.py +1 -1
- agilicus/agilicus_api/model/mfa_enrollment_question_login_info.py +1 -1
- agilicus/agilicus_api/model/mfa_policy_template.py +1 -1
- agilicus/agilicus_api/model/network_detailed_stats.py +1 -1
- agilicus/agilicus_api/model/network_mount_rule_config.py +1 -1
- agilicus/agilicus_api/model/network_port.py +1 -1
- agilicus/agilicus_api/model/network_port_range.py +1 -1
- agilicus/agilicus_api/model/network_protocol_condition.py +1 -1
- agilicus/agilicus_api/model/network_service_config.py +1 -1
- agilicus/agilicus_api/model/network_summary_stats.py +1 -1
- agilicus/agilicus_api/model/next_page_email.py +1 -1
- agilicus/agilicus_api/model/object_credential.py +1 -1
- agilicus/agilicus_api/model/object_credential_existence_info.py +1 -1
- agilicus/agilicus_api/model/object_credential_secrets.py +1 -1
- agilicus/agilicus_api/model/object_credential_spec.py +1 -1
- agilicus/agilicus_api/model/object_credential_status.py +1 -1
- agilicus/agilicus_api/model/object_oper_status.py +1 -1
- agilicus/agilicus_api/model/object_type.py +1 -1
- agilicus/agilicus_api/model/oidc_auth_config.py +1 -1
- agilicus/agilicus_api/model/oidc_auth_path_config.py +1 -1
- agilicus/agilicus_api/model/oidc_auth_uri.py +1 -1
- agilicus/agilicus_api/model/oidc_content_type.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_config.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_content_manipulation.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_domain_mapping.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_domain_name_mapping.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_domain_substitution.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_mapping.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_match.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_name.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_override.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_replace.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_rewrite_filter.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_header_user_config.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_scope.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_standard_header.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_upstream_authentication.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_upstream_config.py +1 -1
- agilicus/agilicus_api/model/oidc_proxy_upstream_ntlm.py +1 -1
- agilicus/agilicus_api/model/oidc_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/model/one_time_use_action_challenge.py +1 -1
- agilicus/agilicus_api/model/one_time_use_action_challenge_answer_detail.py +1 -1
- agilicus/agilicus_api/model/one_time_use_action_challenge_response.py +1 -1
- agilicus/agilicus_api/model/one_time_use_action_challenge_spec.py +1 -1
- agilicus/agilicus_api/model/operational_status.py +1 -1
- agilicus/agilicus_api/model/org_info.py +1 -1
- agilicus/agilicus_api/model/org_scope_patch_document.py +1 -1
- agilicus/agilicus_api/model/organisation.py +27 -1
- agilicus/agilicus_api/model/organisation_admin.py +1 -1
- agilicus/agilicus_api/model/organisation_capabilities.py +1 -1
- agilicus/agilicus_api/model/organisation_owner_config.py +1 -1
- agilicus/agilicus_api/model/organisation_state_selector.py +1 -1
- agilicus/agilicus_api/model/organisation_state_status.py +1 -1
- agilicus/agilicus_api/model/organisation_status.py +1 -1
- agilicus/agilicus_api/model/organisation_system_options.py +1 -1
- agilicus/agilicus_api/model/per_instance_upstream_stats.py +1 -1
- agilicus/agilicus_api/model/permitted_cross_domain_policies_settings.py +1 -1
- agilicus/agilicus_api/model/point_of_presence.py +15 -1
- agilicus/agilicus_api/model/point_of_presence_routing.py +1 -1
- agilicus/agilicus_api/model/point_of_presence_spec.py +25 -1
- agilicus/agilicus_api/model/point_of_presence_status.py +287 -0
- agilicus/agilicus_api/model/policy.py +1 -1
- agilicus/agilicus_api/model/policy_condition.py +1 -1
- agilicus/agilicus_api/model/policy_config_authz_bundle.py +1 -1
- agilicus/agilicus_api/model/policy_config_resource_url_bundle.py +1 -1
- agilicus/agilicus_api/model/policy_group.py +1 -1
- agilicus/agilicus_api/model/policy_group_spec.py +1 -1
- agilicus/agilicus_api/model/policy_issuer_ref.py +1 -1
- agilicus/agilicus_api/model/policy_rule.py +1 -1
- agilicus/agilicus_api/model/policy_rule_spec.py +1 -1
- agilicus/agilicus_api/model/policy_spec.py +1 -1
- agilicus/agilicus_api/model/policy_status.py +1 -1
- agilicus/agilicus_api/model/policy_template.py +1 -1
- agilicus/agilicus_api/model/policy_template_instance.py +1 -1
- agilicus/agilicus_api/model/policy_template_instance_spec.py +1 -1
- agilicus/agilicus_api/model/previous_page_email.py +1 -1
- agilicus/agilicus_api/model/product.py +1 -1
- agilicus/agilicus_api/model/product_spec.py +1 -1
- agilicus/agilicus_api/model/product_status.py +1 -1
- agilicus/agilicus_api/model/public_file_org_link.py +1 -1
- agilicus/agilicus_api/model/public_file_org_link_spec.py +1 -1
- agilicus/agilicus_api/model/raw_token.py +1 -1
- agilicus/agilicus_api/model/reconcile_org_default_policy_request.py +1 -1
- agilicus/agilicus_api/model/reconcile_org_default_policy_response.py +1 -1
- agilicus/agilicus_api/model/reconcile_org_default_policy_response_per_org.py +1 -1
- agilicus/agilicus_api/model/reconcile_sub_org_issuer_request.py +1 -1
- agilicus/agilicus_api/model/referrer_policy_settings.py +1 -1
- agilicus/agilicus_api/model/refresh_token_request.py +1 -1
- agilicus/agilicus_api/model/remote_app_access_info.py +1 -1
- agilicus/agilicus_api/model/rendered_query_parameter.py +1 -1
- agilicus/agilicus_api/model/rendered_resource_permissions.py +1 -1
- agilicus/agilicus_api/model/rendered_rule.py +1 -1
- agilicus/agilicus_api/model/rendered_rule_body.py +1 -1
- agilicus/agilicus_api/model/replace_user_role_request.py +1 -1
- agilicus/agilicus_api/model/reset_mfa_challenge_method.py +1 -1
- agilicus/agilicus_api/model/reset_policy_request.py +1 -1
- agilicus/agilicus_api/model/reset_user_identity_request.py +1 -1
- agilicus/agilicus_api/model/resource.py +1 -1
- agilicus/agilicus_api/model/resource_config.py +1 -1
- agilicus/agilicus_api/model/resource_group.py +1 -1
- agilicus/agilicus_api/model/resource_info.py +1 -1
- agilicus/agilicus_api/model/resource_member.py +1 -1
- agilicus/agilicus_api/model/resource_permission.py +1 -1
- agilicus/agilicus_api/model/resource_permission_spec.py +1 -1
- agilicus/agilicus_api/model/resource_role.py +1 -1
- agilicus/agilicus_api/model/resource_role_spec.py +1 -1
- agilicus/agilicus_api/model/resource_rule_group.py +1 -1
- agilicus/agilicus_api/model/resource_session_stats.py +1 -1
- agilicus/agilicus_api/model/resource_spec.py +1 -1
- agilicus/agilicus_api/model/resource_stats.py +1 -1
- agilicus/agilicus_api/model/resource_stats_metadata.py +1 -1
- agilicus/agilicus_api/model/resource_status.py +1 -1
- agilicus/agilicus_api/model/resource_type_enum.py +1 -1
- agilicus/agilicus_api/model/resource_url.py +1 -1
- agilicus/agilicus_api/model/resource_url_host_info.py +1 -1
- agilicus/agilicus_api/model/resource_url_host_info_map.py +1 -1
- agilicus/agilicus_api/model/role.py +1 -1
- agilicus/agilicus_api/model/role_config.py +1 -1
- agilicus/agilicus_api/model/role_list.py +1 -1
- agilicus/agilicus_api/model/role_spec.py +1 -1
- agilicus/agilicus_api/model/role_to_rule_entry.py +1 -1
- agilicus/agilicus_api/model/role_to_rule_entry_spec.py +1 -1
- agilicus/agilicus_api/model/role_v2.py +1 -1
- agilicus/agilicus_api/model/roles.py +1 -1
- agilicus/agilicus_api/model/roles_config.py +1 -1
- agilicus/agilicus_api/model/rule.py +1 -1
- agilicus/agilicus_api/model/rule_action.py +1 -1
- agilicus/agilicus_api/model/rule_condition.py +1 -1
- agilicus/agilicus_api/model/rule_condition_base.py +1 -1
- agilicus/agilicus_api/model/rule_config.py +1 -1
- agilicus/agilicus_api/model/rule_match_criteria.py +1 -1
- agilicus/agilicus_api/model/rule_matcher.py +1 -1
- agilicus/agilicus_api/model/rule_matcher_list.py +1 -1
- agilicus/agilicus_api/model/rule_query_body.py +1 -1
- agilicus/agilicus_api/model/rule_query_body_json.py +1 -1
- agilicus/agilicus_api/model/rule_query_parameter.py +1 -1
- agilicus/agilicus_api/model/rule_scope_enum.py +1 -1
- agilicus/agilicus_api/model/rule_set.py +1 -1
- agilicus/agilicus_api/model/rule_set_component.py +1 -1
- agilicus/agilicus_api/model/rule_set_node.py +1 -1
- agilicus/agilicus_api/model/rule_spec.py +1 -1
- agilicus/agilicus_api/model/rule_v2.py +1 -1
- agilicus/agilicus_api/model/rules_config.py +1 -1
- agilicus/agilicus_api/model/runtime_status.py +1 -1
- agilicus/agilicus_api/model/scope_condition.py +1 -1
- agilicus/agilicus_api/model/secure_agent.py +1 -1
- agilicus/agilicus_api/model/secure_agent_connector.py +1 -1
- agilicus/agilicus_api/model/secure_agent_connector_info.py +1 -1
- agilicus/agilicus_api/model/secure_agent_spec.py +1 -1
- agilicus/agilicus_api/model/secure_agent_status.py +1 -1
- agilicus/agilicus_api/model/selector_tag.py +1 -1
- agilicus/agilicus_api/model/service_account.py +1 -1
- agilicus/agilicus_api/model/service_account_reset_body.py +1 -1
- agilicus/agilicus_api/model/service_account_spec.py +1 -1
- agilicus/agilicus_api/model/service_account_status.py +1 -1
- agilicus/agilicus_api/model/service_expose_config.py +1 -1
- agilicus/agilicus_api/model/service_forwarder.py +1 -1
- agilicus/agilicus_api/model/service_forwarder_spec.py +1 -1
- agilicus/agilicus_api/model/service_forwarder_stats.py +1 -1
- agilicus/agilicus_api/model/service_forwarder_stats_group.py +1 -1
- agilicus/agilicus_api/model/service_forwarder_status.py +1 -1
- agilicus/agilicus_api/model/service_http_config.py +1 -1
- agilicus/agilicus_api/model/service_protocol_config.py +1 -1
- agilicus/agilicus_api/model/session.py +1 -1
- agilicus/agilicus_api/model/session_challenge.py +1 -1
- agilicus/agilicus_api/model/session_challenge_message.py +1 -1
- agilicus/agilicus_api/model/session_challenge_spec.py +1 -1
- agilicus/agilicus_api/model/session_challenge_status.py +1 -1
- agilicus/agilicus_api/model/session_status.py +1 -1
- agilicus/agilicus_api/model/sessions_spec.py +1 -1
- agilicus/agilicus_api/model/share_detailed_stats.py +1 -1
- agilicus/agilicus_api/model/share_summary_stats.py +1 -1
- agilicus/agilicus_api/model/simple_resource_policy_template.py +1 -1
- agilicus/agilicus_api/model/simple_resource_policy_template_structure.py +1 -1
- agilicus/agilicus_api/model/simple_resource_policy_template_structure_node.py +1 -1
- agilicus/agilicus_api/model/source_info_policy_template.py +1 -1
- agilicus/agilicus_api/model/source_iso_country_code_condition.py +1 -1
- agilicus/agilicus_api/model/source_subnet_condition.py +1 -1
- agilicus/agilicus_api/model/ssh_resource.py +1 -1
- agilicus/agilicus_api/model/ssh_resource_spec.py +1 -1
- agilicus/agilicus_api/model/ssh_resource_stats.py +1 -1
- agilicus/agilicus_api/model/ssh_resource_status.py +1 -1
- agilicus/agilicus_api/model/ssh_username.py +1 -1
- agilicus/agilicus_api/model/standalone_object_conditions.py +1 -1
- agilicus/agilicus_api/model/standalone_rule.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_name.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_policy.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_policy_description.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_policy_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_scope.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree_node.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree_node_child.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree_ref.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree_rule_ref.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_rule_tree_status.py +1 -1
- agilicus/agilicus_api/model/standalone_rules_cleanup.py +1 -1
- agilicus/agilicus_api/model/standalone_rules_cleanup_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_rules_cleanup_status.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_bundle.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_bundle_label.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_bundle_name.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_bundle_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_bundle_status.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_in_bundle.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_label.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_label_name.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_label_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_label_status.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_spec.py +1 -1
- agilicus/agilicus_api/model/standalone_ruleset_status.py +1 -1
- agilicus/agilicus_api/model/stats_publishing_config.py +1 -1
- agilicus/agilicus_api/model/stats_publishing_connector_config.py +1 -1
- agilicus/agilicus_api/model/stats_publishing_connector_type_config.py +1 -1
- agilicus/agilicus_api/model/stats_publishing_level_config.py +1 -1
- agilicus/agilicus_api/model/storage_region.py +1 -1
- agilicus/agilicus_api/model/template_extraction.py +1 -1
- agilicus/agilicus_api/model/template_path.py +1 -1
- agilicus/agilicus_api/model/time_interval_metrics.py +1 -1
- agilicus/agilicus_api/model/time_validity.py +1 -1
- agilicus/agilicus_api/model/token.py +1 -1
- agilicus/agilicus_api/model/token_introspect.py +1 -1
- agilicus/agilicus_api/model/token_introspect_options.py +1 -1
- agilicus/agilicus_api/model/token_reissue_request.py +1 -1
- agilicus/agilicus_api/model/token_revoke.py +1 -1
- agilicus/agilicus_api/model/token_scope.py +1 -1
- agilicus/agilicus_api/model/token_validity.py +1 -1
- agilicus/agilicus_api/model/totp_enrollment.py +1 -1
- agilicus/agilicus_api/model/totp_enrollment_answer.py +1 -1
- agilicus/agilicus_api/model/totp_enrollment_spec.py +1 -1
- agilicus/agilicus_api/model/totp_enrollment_status.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_bundle.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_bundle_label.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_bundle_label_operation.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_bundle_name.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_bundle_spec.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_bundle_status.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_label.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_label_name.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_label_spec.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_label_status.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_org.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_spec.py +1 -1
- agilicus/agilicus_api/model/trusted_certificate_status.py +1 -1
- agilicus/agilicus_api/model/upstream_alias.py +1 -1
- agilicus/agilicus_api/model/upstream_alias_mapping.py +1 -1
- agilicus/agilicus_api/model/upstream_alias_spec.py +1 -1
- agilicus/agilicus_api/model/upstream_group_excluded_entry.py +1 -1
- agilicus/agilicus_api/model/upstream_group_mapping.py +1 -1
- agilicus/agilicus_api/model/upstream_group_mapping_entry.py +1 -1
- agilicus/agilicus_api/model/upstream_group_mapping_spec.py +1 -1
- agilicus/agilicus_api/model/upstream_group_reconcile.py +1 -1
- agilicus/agilicus_api/model/upstream_group_reconcile_response.py +1 -1
- agilicus/agilicus_api/model/upstream_user_identity.py +1 -1
- agilicus/agilicus_api/model/upstream_user_identity_spec.py +1 -1
- agilicus/agilicus_api/model/uri_parameter_rewrite_filter.py +1 -1
- agilicus/agilicus_api/model/usage_measurement.py +1 -1
- agilicus/agilicus_api/model/usage_metric.py +1 -1
- agilicus/agilicus_api/model/usage_metrics.py +1 -1
- agilicus/agilicus_api/model/user.py +1 -1
- agilicus/agilicus_api/model/user_application_access_info.py +1 -1
- agilicus/agilicus_api/model/user_application_access_info_status.py +1 -1
- agilicus/agilicus_api/model/user_attribute.py +1 -1
- agilicus/agilicus_api/model/user_attributes.py +1 -1
- agilicus/agilicus_api/model/user_desktop_access_info.py +1 -1
- agilicus/agilicus_api/model/user_desktop_access_info_status.py +1 -1
- agilicus/agilicus_api/model/user_file_share_access_info.py +1 -1
- agilicus/agilicus_api/model/user_file_share_access_info_status.py +1 -1
- agilicus/agilicus_api/model/user_identity.py +1 -1
- agilicus/agilicus_api/model/user_identity_update.py +1 -1
- agilicus/agilicus_api/model/user_identity_update_spec.py +1 -1
- agilicus/agilicus_api/model/user_info.py +1 -1
- agilicus/agilicus_api/model/user_launcher_access_info.py +1 -1
- agilicus/agilicus_api/model/user_member_of.py +1 -1
- agilicus/agilicus_api/model/user_metadata.py +1 -1
- agilicus/agilicus_api/model/user_metadata_spec.py +1 -1
- agilicus/agilicus_api/model/user_metrics.py +1 -1
- agilicus/agilicus_api/model/user_request_info.py +1 -1
- agilicus/agilicus_api/model/user_request_info_spec.py +1 -1
- agilicus/agilicus_api/model/user_request_info_status.py +1 -1
- agilicus/agilicus_api/model/user_request_user_update.py +1 -1
- agilicus/agilicus_api/model/user_resource_access_info.py +1 -1
- agilicus/agilicus_api/model/user_resource_access_info_status.py +1 -1
- agilicus/agilicus_api/model/user_roles.py +1 -1
- agilicus/agilicus_api/model/user_roles_for_an_org.py +1 -1
- agilicus/agilicus_api/model/user_session_identifiers.py +1 -1
- agilicus/agilicus_api/model/user_ssh_access_info.py +1 -1
- agilicus/agilicus_api/model/user_ssh_access_info_status.py +1 -1
- agilicus/agilicus_api/model/user_status_enum.py +1 -1
- agilicus/agilicus_api/model/user_summary.py +1 -1
- agilicus/agilicus_api/model/vnc_connection_info.py +1 -1
- agilicus/agilicus_api/model/vnc_password_authentication.py +1 -1
- agilicus/agilicus_api/model/web_auth_n_enrollment.py +1 -1
- agilicus/agilicus_api/model/web_auth_n_enrollment_answer.py +1 -1
- agilicus/agilicus_api/model/web_auth_n_enrollment_spec.py +1 -1
- agilicus/agilicus_api/model/web_auth_n_enrollment_status.py +1 -1
- agilicus/agilicus_api/model/well_known_issuer_info.py +1 -1
- agilicus/agilicus_api/model/whoami_request.py +1 -1
- agilicus/agilicus_api/model/whoami_response.py +1 -1
- agilicus/agilicus_api/model/workload_configuration.py +1 -1
- agilicus/agilicus_api/model/x509_certificate.py +1 -1
- agilicus/agilicus_api/model/x509_certificate_spec.py +1 -1
- agilicus/agilicus_api/model/x509_certificate_status.py +1 -1
- agilicus/agilicus_api/model/x509_root_certificate.py +1 -1
- agilicus/agilicus_api/model/x509_root_certificate_spec.py +1 -1
- agilicus/agilicus_api/model/x509_root_certificate_status.py +1 -1
- agilicus/agilicus_api/model/xss_settings.py +1 -1
- agilicus/agilicus_api/model_utils.py +1 -1
- agilicus/agilicus_api/models/__init__.py +5 -0
- agilicus/agilicus_api/rest.py +1 -1
- agilicus/agilicus_api/test/test_access_requests.py +1 -1
- agilicus/agilicus_api/test/test_access_requests_status.py +1 -1
- agilicus/agilicus_api/test/test_add_group_member_request.py +1 -1
- agilicus/agilicus_api/test/test_admin_status.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_authz_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_bootstrap.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_cloud_routing.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_connection_info.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_dynamic_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_dynamic_stats_publish.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_info.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_instance.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_instance_spec.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_instance_status.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_local_bind.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_local_bind_error.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_local_bind_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_on_demand_routing_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_outer_proxy_info.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_per_share_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_per_user_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_proxy.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_proxy_request_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_proxy_request_stats_details.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_proxy_spec.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_proxy_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_proxy_status.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_queue.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_queue_response.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_queue_spec.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_queue_status.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_routing_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_share_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_spec.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_spec_provisioning.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_specific_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_status.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_system_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_transport_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_tunnel_info.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_tunneling.py +1 -1
- agilicus/agilicus_api/test/test_agent_connector_user_stats.py +1 -1
- agilicus/agilicus_api/test/test_agent_local_auth_info.py +1 -1
- agilicus/agilicus_api/test/test_allow_map_compiled.py +1 -1
- agilicus/agilicus_api/test/test_allow_rule_compiled.py +1 -1
- agilicus/agilicus_api/test/test_alternate_mode_setting.py +1 -1
- agilicus/agilicus_api/test/test_alternate_mode_status.py +1 -1
- agilicus/agilicus_api/test/test_api_key.py +1 -1
- agilicus/agilicus_api/test/test_api_key_introspect.py +1 -1
- agilicus/agilicus_api/test/test_api_key_introspect_authorization_info.py +1 -1
- agilicus/agilicus_api/test/test_api_key_introspect_response.py +1 -1
- agilicus/agilicus_api/test/test_api_key_op_status.py +1 -1
- agilicus/agilicus_api/test/test_api_key_spec.py +1 -1
- agilicus/agilicus_api/test/test_api_key_status.py +1 -1
- agilicus/agilicus_api/test/test_application.py +1 -1
- agilicus/agilicus_api/test/test_application_additional_context.py +1 -1
- agilicus/agilicus_api/test/test_application_assignment.py +1 -1
- agilicus/agilicus_api/test/test_application_authentication_config.py +1 -1
- agilicus/agilicus_api/test/test_application_config.py +1 -1
- agilicus/agilicus_api/test/test_application_dynamic_config.py +1 -1
- agilicus/agilicus_api/test/test_application_monitoring_config.py +1 -1
- agilicus/agilicus_api/test/test_application_security.py +1 -1
- agilicus/agilicus_api/test/test_application_service.py +1 -1
- agilicus/agilicus_api/test/test_application_service_assignment.py +1 -1
- agilicus/agilicus_api/test/test_application_service_common_stats.py +1 -1
- agilicus/agilicus_api/test/test_application_service_load_balancing.py +1 -1
- agilicus/agilicus_api/test/test_application_service_location.py +1 -1
- agilicus/agilicus_api/test/test_application_service_route.py +1 -1
- agilicus/agilicus_api/test/test_application_service_routing_info.py +1 -1
- agilicus/agilicus_api/test/test_application_service_stats.py +1 -1
- agilicus/agilicus_api/test/test_application_service_stats_group.py +1 -1
- agilicus/agilicus_api/test/test_application_service_stats_publish.py +1 -1
- agilicus/agilicus_api/test/test_application_service_status.py +1 -1
- agilicus/agilicus_api/test/test_application_services_api.py +1 -1
- agilicus/agilicus_api/test/test_application_state_selector.py +1 -1
- agilicus/agilicus_api/test/test_application_stats.py +1 -1
- agilicus/agilicus_api/test/test_application_stats_list.py +1 -1
- agilicus/agilicus_api/test/test_application_summary.py +1 -1
- agilicus/agilicus_api/test/test_application_summary_status.py +1 -1
- agilicus/agilicus_api/test/test_application_upstream_config.py +1 -1
- agilicus/agilicus_api/test/test_application_upstream_form_info.py +1 -1
- agilicus/agilicus_api/test/test_application_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/test/test_application_upstream_validation.py +1 -1
- agilicus/agilicus_api/test/test_applications_api.py +1 -1
- agilicus/agilicus_api/test/test_applied_connector_stats_config.py +1 -1
- agilicus/agilicus_api/test/test_audit.py +1 -1
- agilicus/agilicus_api/test/test_audit_attribute.py +1 -1
- agilicus/agilicus_api/test/test_audit_destination.py +1 -1
- agilicus/agilicus_api/test/test_audit_destination_authentication.py +1 -1
- agilicus/agilicus_api/test/test_audit_destination_filter.py +1 -1
- agilicus/agilicus_api/test/test_audit_destination_spec.py +1 -1
- agilicus/agilicus_api/test/test_audit_event.py +1 -1
- agilicus/agilicus_api/test/test_audit_event_response.py +1 -1
- agilicus/agilicus_api/test/test_audit_webhook_bulk_event.py +1 -1
- agilicus/agilicus_api/test/test_audit_webhook_events_processed.py +1 -1
- agilicus/agilicus_api/test/test_audits_api.py +1 -1
- agilicus/agilicus_api/test/test_auth_audits.py +1 -1
- agilicus/agilicus_api/test/test_authentication_attribute.py +1 -1
- agilicus/agilicus_api/test/test_authentication_document.py +1 -1
- agilicus/agilicus_api/test/test_authentication_document_spec.py +1 -1
- agilicus/agilicus_api/test/test_authentication_document_status.py +1 -1
- agilicus/agilicus_api/test/test_authz_bundle.py +1 -1
- agilicus/agilicus_api/test/test_auto_create_status.py +1 -1
- agilicus/agilicus_api/test/test_base_upstream.py +1 -1
- agilicus/agilicus_api/test/test_base_upstreams.py +1 -1
- agilicus/agilicus_api/test/test_billing_account.py +1 -1
- agilicus/agilicus_api/test/test_billing_account_spec.py +1 -1
- agilicus/agilicus_api/test/test_billing_account_status.py +1 -1
- agilicus/agilicus_api/test/test_billing_api.py +1 -1
- agilicus/agilicus_api/test/test_billing_balance_transaction.py +1 -1
- agilicus/agilicus_api/test/test_billing_checkout_session.py +1 -1
- agilicus/agilicus_api/test/test_billing_customer.py +1 -1
- agilicus/agilicus_api/test/test_billing_org.py +1 -1
- agilicus/agilicus_api/test/test_billing_org_subscription.py +1 -1
- agilicus/agilicus_api/test/test_billing_org_subscription_balance.py +1 -1
- agilicus/agilicus_api/test/test_billing_org_subscription_spec.py +1 -1
- agilicus/agilicus_api/test/test_billing_org_subscription_status.py +1 -1
- agilicus/agilicus_api/test/test_billing_portal_link.py +1 -1
- agilicus/agilicus_api/test/test_billing_product.py +1 -1
- agilicus/agilicus_api/test/test_billing_product_price.py +1 -1
- agilicus/agilicus_api/test/test_billing_provider_subscription_status.py +1 -1
- agilicus/agilicus_api/test/test_billing_subscription.py +1 -1
- agilicus/agilicus_api/test/test_billing_subscription_cancel_detail.py +1 -1
- agilicus/agilicus_api/test/test_billing_subscription_new_subscription.py +1 -1
- agilicus/agilicus_api/test/test_billing_subscription_usage_override_item.py +1 -1
- agilicus/agilicus_api/test/test_billing_usage_record.py +1 -1
- agilicus/agilicus_api/test/test_billing_usage_summary.py +1 -1
- agilicus/agilicus_api/test/test_bulk_delete_labelled_objects_request.py +1 -1
- agilicus/agilicus_api/test/test_bulk_delete_labelled_objects_response.py +1 -1
- agilicus/agilicus_api/test/test_bulk_session_operation_response.py +1 -1
- agilicus/agilicus_api/test/test_bulk_token_revoke.py +1 -1
- agilicus/agilicus_api/test/test_bulk_token_revoke_response.py +1 -1
- agilicus/agilicus_api/test/test_bulk_user_metadata.py +1 -1
- agilicus/agilicus_api/test/test_bulk_user_request_approval.py +1 -1
- agilicus/agilicus_api/test/test_catalogue.py +1 -1
- agilicus/agilicus_api/test/test_catalogue_entry.py +1 -1
- agilicus/agilicus_api/test/test_catalogues_api.py +1 -1
- agilicus/agilicus_api/test/test_cert_signing_req.py +1 -1
- agilicus/agilicus_api/test/test_cert_signing_req_reissue.py +1 -1
- agilicus/agilicus_api/test/test_cert_signing_req_reissue_spec.py +1 -1
- agilicus/agilicus_api/test/test_cert_signing_req_reissue_status.py +1 -1
- agilicus/agilicus_api/test/test_cert_signing_req_spec.py +1 -1
- agilicus/agilicus_api/test/test_cert_signing_req_status.py +1 -1
- agilicus/agilicus_api/test/test_certificate_revocation_proxy.py +1 -1
- agilicus/agilicus_api/test/test_certificate_transparency_settings.py +1 -1
- agilicus/agilicus_api/test/test_certificates_api.py +1 -1
- agilicus/agilicus_api/test/test_challenge.py +1 -1
- agilicus/agilicus_api/test/test_challenge_action.py +1 -1
- agilicus/agilicus_api/test/test_challenge_actor.py +1 -1
- agilicus/agilicus_api/test/test_challenge_answer.py +1 -1
- agilicus/agilicus_api/test/test_challenge_answer_spec.py +1 -1
- agilicus/agilicus_api/test/test_challenge_endpoint.py +1 -1
- agilicus/agilicus_api/test/test_challenge_spec.py +1 -1
- agilicus/agilicus_api/test/test_challenge_status.py +1 -1
- agilicus/agilicus_api/test/test_challenges_api.py +1 -1
- agilicus/agilicus_api/test/test_cipher_diffie_hellman_group.py +1 -1
- agilicus/agilicus_api/test/test_cipher_encryption_algorithm.py +1 -1
- agilicus/agilicus_api/test/test_cipher_integrity_algorithm.py +1 -1
- agilicus/agilicus_api/test/test_clear_file_association_request.py +1 -1
- agilicus/agilicus_api/test/test_clear_file_association_response.py +1 -1
- agilicus/agilicus_api/test/test_cluster.py +40 -0
- agilicus/agilicus_api/test/test_cluster_config.py +36 -0
- agilicus/agilicus_api/test/test_cluster_spec.py +40 -0
- agilicus/agilicus_api/test/test_combined_resource_rules.py +1 -1
- agilicus/agilicus_api/test/test_combined_resource_rules_status.py +1 -1
- agilicus/agilicus_api/test/test_combined_rules.py +1 -1
- agilicus/agilicus_api/test/test_combined_rules_status.py +1 -1
- agilicus/agilicus_api/test/test_combined_user_detail.py +1 -1
- agilicus/agilicus_api/test/test_combined_user_detail_status.py +1 -1
- agilicus/agilicus_api/test/test_common_metadata.py +1 -1
- agilicus/agilicus_api/test/test_compound_rule_condition.py +1 -1
- agilicus/agilicus_api/test/test_config_file_format.py +1 -1
- agilicus/agilicus_api/test/test_configure_connector_stats_publishing_request.py +1 -1
- agilicus/agilicus_api/test/test_connector.py +1 -1
- agilicus/agilicus_api/test/test_connector_base_info.py +1 -1
- agilicus/agilicus_api/test/test_connector_base_info_map.py +1 -1
- agilicus/agilicus_api/test/test_connector_cloud_routing.py +1 -1
- agilicus/agilicus_api/test/test_connector_diagnostic_stats.py +1 -1
- agilicus/agilicus_api/test/test_connector_instance.py +1 -1
- agilicus/agilicus_api/test/test_connector_instance_spec.py +1 -1
- agilicus/agilicus_api/test/test_connector_instance_status.py +1 -1
- agilicus/agilicus_api/test/test_connector_route.py +1 -1
- agilicus/agilicus_api/test/test_connector_secure_transfer.py +1 -1
- agilicus/agilicus_api/test/test_connector_secure_transfer_spec.py +1 -1
- agilicus/agilicus_api/test/test_connector_secure_transfer_status.py +1 -1
- agilicus/agilicus_api/test/test_connector_service.py +1 -1
- agilicus/agilicus_api/test/test_connector_service_spec.py +1 -1
- agilicus/agilicus_api/test/test_connector_service_status.py +1 -1
- agilicus/agilicus_api/test/test_connector_spec.py +1 -1
- agilicus/agilicus_api/test/test_connector_static_stats.py +1 -1
- agilicus/agilicus_api/test/test_connector_stats.py +1 -1
- agilicus/agilicus_api/test/test_connector_stats_metadata.py +1 -1
- agilicus/agilicus_api/test/test_connector_status.py +1 -1
- agilicus/agilicus_api/test/test_connector_system_stats.py +1 -1
- agilicus/agilicus_api/test/test_connector_upstream_stats_publish.py +1 -1
- agilicus/agilicus_api/test/test_connectors_api.py +1 -1
- agilicus/agilicus_api/test/test_content_type_options_settings.py +1 -1
- agilicus/agilicus_api/test/test_cors_origin.py +1 -1
- agilicus/agilicus_api/test/test_cors_settings.py +1 -1
- agilicus/agilicus_api/test/test_create_billing_checkout_session.py +1 -1
- agilicus/agilicus_api/test/test_create_billing_usage_records.py +1 -1
- agilicus/agilicus_api/test/test_create_session_and_token_request.py +1 -1
- agilicus/agilicus_api/test/test_create_session_and_token_response.py +1 -1
- agilicus/agilicus_api/test/test_create_token_request.py +1 -1
- agilicus/agilicus_api/test/test_create_user_data_token_request.py +1 -1
- agilicus/agilicus_api/test/test_credential_purpose.py +1 -1
- agilicus/agilicus_api/test/test_credentials_api.py +1 -1
- agilicus/agilicus_api/test/test_cross_origin_embedder_policy_settings.py +1 -1
- agilicus/agilicus_api/test/test_cross_origin_opener_policy_settings.py +1 -1
- agilicus/agilicus_api/test/test_cross_origin_resource_policy_settings.py +1 -1
- agilicus/agilicus_api/test/test_csp_directive.py +1 -1
- agilicus/agilicus_api/test/test_csp_settings.py +1 -1
- agilicus/agilicus_api/test/test_csr_reason_enum.py +1 -1
- agilicus/agilicus_api/test/test_custom_desktop_client_config.py +1 -1
- agilicus/agilicus_api/test/test_definition.py +1 -1
- agilicus/agilicus_api/test/test_dereferenced_standalone_rule_tree_node.py +1 -1
- agilicus/agilicus_api/test/test_dereferenced_standalone_rule_tree_node_child.py +1 -1
- agilicus/agilicus_api/test/test_desktop_client_config_item.py +1 -1
- agilicus/agilicus_api/test/test_desktop_client_configuration.py +1 -1
- agilicus/agilicus_api/test/test_desktop_client_generated_configuration.py +1 -1
- agilicus/agilicus_api/test/test_desktop_connection_info.py +1 -1
- agilicus/agilicus_api/test/test_desktop_remote_app.py +1 -1
- agilicus/agilicus_api/test/test_desktop_resource.py +1 -1
- agilicus/agilicus_api/test/test_desktop_resource_spec.py +1 -1
- agilicus/agilicus_api/test/test_desktop_resource_stats.py +1 -1
- agilicus/agilicus_api/test/test_desktop_resource_status.py +1 -1
- agilicus/agilicus_api/test/test_desktop_server_configuration.py +1 -1
- agilicus/agilicus_api/test/test_desktop_server_generated_configuration.py +1 -1
- agilicus/agilicus_api/test/test_diagnostics_api.py +1 -1
- agilicus/agilicus_api/test/test_display_info.py +1 -1
- agilicus/agilicus_api/test/test_domain.py +1 -1
- agilicus/agilicus_api/test/test_egress_gateway.py +1 -1
- agilicus/agilicus_api/test/test_email.py +1 -1
- agilicus/agilicus_api/test/test_emptiable_object_type.py +1 -1
- agilicus/agilicus_api/test/test_encrypted_data.py +1 -1
- agilicus/agilicus_api/test/test_environment.py +1 -1
- agilicus/agilicus_api/test/test_environment_config.py +1 -1
- agilicus/agilicus_api/test/test_environment_config_var.py +1 -1
- agilicus/agilicus_api/test/test_environment_status.py +1 -1
- agilicus/agilicus_api/test/test_error_message.py +1 -1
- agilicus/agilicus_api/test/test_extra_process.py +1 -1
- agilicus/agilicus_api/test/test_feature.py +1 -1
- agilicus/agilicus_api/test/test_feature_flag.py +1 -1
- agilicus/agilicus_api/test/test_feature_key.py +1 -1
- agilicus/agilicus_api/test/test_feature_spec.py +1 -1
- agilicus/agilicus_api/test/test_feature_status.py +1 -1
- agilicus/agilicus_api/test/test_feature_tag.py +1 -1
- agilicus/agilicus_api/test/test_feature_tag_name.py +1 -1
- agilicus/agilicus_api/test/test_feature_tag_spec.py +1 -1
- agilicus/agilicus_api/test/test_feature_value.py +1 -1
- agilicus/agilicus_api/test/test_features_api.py +1 -1
- agilicus/agilicus_api/test/test_file.py +1 -1
- agilicus/agilicus_api/test/test_file_association.py +1 -1
- agilicus/agilicus_api/test/test_file_association_spec.py +1 -1
- agilicus/agilicus_api/test/test_file_association_status.py +1 -1
- agilicus/agilicus_api/test/test_file_name.py +1 -1
- agilicus/agilicus_api/test/test_file_share_client_config.py +1 -1
- agilicus/agilicus_api/test/test_file_share_client_config_linux_config.py +1 -1
- agilicus/agilicus_api/test/test_file_share_client_config_mac_config.py +1 -1
- agilicus/agilicus_api/test/test_file_share_client_config_windows_config.py +1 -1
- agilicus/agilicus_api/test/test_file_share_service.py +1 -1
- agilicus/agilicus_api/test/test_file_share_service_spec.py +1 -1
- agilicus/agilicus_api/test/test_file_share_service_stats.py +1 -1
- agilicus/agilicus_api/test/test_file_share_service_stats_group.py +1 -1
- agilicus/agilicus_api/test/test_file_share_service_status.py +1 -1
- agilicus/agilicus_api/test/test_file_summary.py +1 -1
- agilicus/agilicus_api/test/test_file_visibility.py +1 -1
- agilicus/agilicus_api/test/test_files_api.py +1 -1
- agilicus/agilicus_api/test/test_frame_options_settings.py +1 -1
- agilicus/agilicus_api/test/test_generic_float_metric.py +1 -1
- agilicus/agilicus_api/test/test_generic_int_metric.py +1 -1
- agilicus/agilicus_api/test/test_group.py +1 -1
- agilicus/agilicus_api/test/test_group_data.py +1 -1
- agilicus/agilicus_api/test/test_group_member.py +1 -1
- agilicus/agilicus_api/test/test_group_reconcile_record.py +1 -1
- agilicus/agilicus_api/test/test_groups_api.py +1 -1
- agilicus/agilicus_api/test/test_guid_metadata.py +1 -1
- agilicus/agilicus_api/test/test_host.py +1 -1
- agilicus/agilicus_api/test/test_host_bundle.py +1 -1
- agilicus/agilicus_api/test/test_host_bundle_client_config.py +1 -1
- agilicus/agilicus_api/test/test_host_bundle_label.py +1 -1
- agilicus/agilicus_api/test/test_host_bundle_name.py +1 -1
- agilicus/agilicus_api/test/test_host_bundle_spec.py +1 -1
- agilicus/agilicus_api/test/test_host_bundle_status.py +1 -1
- agilicus/agilicus_api/test/test_host_destination.py +1 -1
- agilicus/agilicus_api/test/test_host_label.py +1 -1
- agilicus/agilicus_api/test/test_host_label_name.py +1 -1
- agilicus/agilicus_api/test/test_host_label_spec.py +1 -1
- agilicus/agilicus_api/test/test_host_org.py +1 -1
- agilicus/agilicus_api/test/test_host_permissions.py +1 -1
- agilicus/agilicus_api/test/test_host_prefix_rule_condition.py +1 -1
- agilicus/agilicus_api/test/test_host_spec.py +1 -1
- agilicus/agilicus_api/test/test_hosts_api.py +1 -1
- agilicus/agilicus_api/test/test_hsts_settings.py +1 -1
- agilicus/agilicus_api/test/test_http_basic_auth.py +1 -1
- agilicus/agilicus_api/test/test_http_bearer_auth.py +1 -1
- agilicus/agilicus_api/test/test_http_challenge_action.py +1 -1
- agilicus/agilicus_api/test/test_http_detailed_stats.py +1 -1
- agilicus/agilicus_api/test/test_http_request_extractor.py +1 -1
- agilicus/agilicus_api/test/test_http_request_extractor_source.py +1 -1
- agilicus/agilicus_api/test/test_http_response_code_counter.py +1 -1
- agilicus/agilicus_api/test/test_http_rule.py +1 -1
- agilicus/agilicus_api/test/test_http_rule_condition.py +1 -1
- agilicus/agilicus_api/test/test_http_rule_condition_type.py +1 -1
- agilicus/agilicus_api/test/test_http_security_settings.py +1 -1
- agilicus/agilicus_api/test/test_http_summary_stats.py +1 -1
- agilicus/agilicus_api/test/test_icon.py +1 -1
- agilicus/agilicus_api/test/test_icon_dimensions.py +1 -1
- agilicus/agilicus_api/test/test_icon_purpose.py +1 -1
- agilicus/agilicus_api/test/test_identity_assertion.py +1 -1
- agilicus/agilicus_api/test/test_identity_assertion_response.py +1 -1
- agilicus/agilicus_api/test/test_inbox_item.py +1 -1
- agilicus/agilicus_api/test/test_inbox_item_metadata.py +1 -1
- agilicus/agilicus_api/test/test_inbox_item_spec.py +1 -1
- agilicus/agilicus_api/test/test_inbox_item_status.py +1 -1
- agilicus/agilicus_api/test/test_included_role.py +1 -1
- agilicus/agilicus_api/test/test_inheritable_user_config.py +1 -1
- agilicus/agilicus_api/test/test_inline_response200.py +1 -1
- agilicus/agilicus_api/test/test_interceptor_command.py +1 -1
- agilicus/agilicus_api/test/test_interceptor_config.py +1 -1
- agilicus/agilicus_api/test/test_invalid_policy_template.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_connection.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_connection_ipv4_block.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_connection_spec.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_connector.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_connector_spec.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_connector_status.py +1 -1
- agilicus/agilicus_api/test/test_ipsec_gateway_interface.py +1 -1
- agilicus/agilicus_api/test/test_issuer.py +1 -1
- agilicus/agilicus_api/test/test_issuer_client.py +1 -1
- agilicus/agilicus_api/test/test_issuer_status.py +1 -1
- agilicus/agilicus_api/test/test_issuer_upstream.py +1 -1
- agilicus/agilicus_api/test/test_issuers_api.py +1 -1
- agilicus/agilicus_api/test/test_js_inject.py +1 -1
- agilicus/agilicus_api/test/test_json_body_constraint.py +1 -1
- agilicus/agilicus_api/test/test_jwks.py +1 -1
- agilicus/agilicus_api/test/test_k8s_slug.py +1 -1
- agilicus/agilicus_api/test/test_kerberos_upstream_config.py +1 -1
- agilicus/agilicus_api/test/test_kerberos_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/test/test_kerberos_upstream_status.py +1 -1
- agilicus/agilicus_api/test/test_kerberos_upstream_status_key_tab_entries.py +1 -1
- agilicus/agilicus_api/test/test_label.py +1 -1
- agilicus/agilicus_api/test/test_label_association.py +1 -1
- agilicus/agilicus_api/test/test_label_association_status.py +1 -1
- agilicus/agilicus_api/test/test_label_name.py +1 -1
- agilicus/agilicus_api/test/test_label_navigation.py +1 -1
- agilicus/agilicus_api/test/test_label_spec.py +1 -1
- agilicus/agilicus_api/test/test_labelled_object.py +1 -1
- agilicus/agilicus_api/test/test_labels_api.py +1 -1
- agilicus/agilicus_api/test/test_latency_bucket_value.py +1 -1
- agilicus/agilicus_api/test/test_latency_histogram.py +1 -1
- agilicus/agilicus_api/test/test_latency_histogram_buckets.py +1 -1
- agilicus/agilicus_api/test/test_launcher.py +1 -1
- agilicus/agilicus_api/test/test_launcher_config.py +1 -1
- agilicus/agilicus_api/test/test_launcher_spec.py +1 -1
- agilicus/agilicus_api/test/test_launcher_status.py +1 -1
- agilicus/agilicus_api/test/test_launchers_api.py +1 -1
- agilicus/agilicus_api/test/test_learning_mode_spec.py +1 -1
- agilicus/agilicus_api/test/test_list_access_requests_response.py +1 -1
- agilicus/agilicus_api/test/test_list_active_users_response.py +1 -1
- agilicus/agilicus_api/test/test_list_agent_connector_instance_response.py +1 -1
- agilicus/agilicus_api/test/test_list_agent_connector_instance_stats_response.py +1 -1
- agilicus/agilicus_api/test/test_list_agent_connector_proxy_response.py +1 -1
- agilicus/agilicus_api/test/test_list_agent_connector_response.py +1 -1
- agilicus/agilicus_api/test/test_list_api_keys_response.py +1 -1
- agilicus/agilicus_api/test/test_list_application_services_response.py +1 -1
- agilicus/agilicus_api/test/test_list_application_summary_response.py +1 -1
- agilicus/agilicus_api/test/test_list_applications_response.py +1 -1
- agilicus/agilicus_api/test/test_list_audit_destinations_response.py +1 -1
- agilicus/agilicus_api/test/test_list_audits_response.py +1 -1
- agilicus/agilicus_api/test/test_list_auth_audits_response.py +1 -1
- agilicus/agilicus_api/test/test_list_authentication_document_response.py +1 -1
- agilicus/agilicus_api/test/test_list_billing_accounts_response.py +1 -1
- agilicus/agilicus_api/test/test_list_billing_balance_transactions.py +1 -1
- agilicus/agilicus_api/test/test_list_billing_checkout_sessions.py +1 -1
- agilicus/agilicus_api/test/test_list_billing_org_subscriptions_response.py +1 -1
- agilicus/agilicus_api/test/test_list_billing_usage_records_response.py +1 -1
- agilicus/agilicus_api/test/test_list_catalogue_entries_response.py +1 -1
- agilicus/agilicus_api/test/test_list_catalogues_response.py +1 -1
- agilicus/agilicus_api/test/test_list_cert_signing_req_response.py +1 -1
- agilicus/agilicus_api/test/test_list_cluster_response.py +38 -0
- agilicus/agilicus_api/test/test_list_combined_resource_rules_response.py +1 -1
- agilicus/agilicus_api/test/test_list_combined_rules_response.py +1 -1
- agilicus/agilicus_api/test/test_list_combined_user_details_response.py +1 -1
- agilicus/agilicus_api/test/test_list_configs_response.py +1 -1
- agilicus/agilicus_api/test/test_list_connector_response.py +1 -1
- agilicus/agilicus_api/test/test_list_connector_secure_transfer_response.py +1 -1
- agilicus/agilicus_api/test/test_list_connector_service_response.py +1 -1
- agilicus/agilicus_api/test/test_list_connector_stats_response.py +1 -1
- agilicus/agilicus_api/test/test_list_desktop_resources_response.py +1 -1
- agilicus/agilicus_api/test/test_list_domains_response.py +1 -1
- agilicus/agilicus_api/test/test_list_elevated_user_roles.py +1 -1
- agilicus/agilicus_api/test/test_list_environment_configs_response.py +1 -1
- agilicus/agilicus_api/test/test_list_feature_tags_response.py +1 -1
- agilicus/agilicus_api/test/test_list_features_response.py +1 -1
- agilicus/agilicus_api/test/test_list_file_associations_response.py +1 -1
- agilicus/agilicus_api/test/test_list_file_share_services_response.py +1 -1
- agilicus/agilicus_api/test/test_list_files_response.py +1 -1
- agilicus/agilicus_api/test/test_list_groups_response.py +1 -1
- agilicus/agilicus_api/test/test_list_guid_metadata_response.py +1 -1
- agilicus/agilicus_api/test/test_list_host.py +1 -1
- agilicus/agilicus_api/test/test_list_host_bundle.py +1 -1
- agilicus/agilicus_api/test/test_list_host_label.py +1 -1
- agilicus/agilicus_api/test/test_list_host_org.py +1 -1
- agilicus/agilicus_api/test/test_list_inbox_items_response.py +1 -1
- agilicus/agilicus_api/test/test_list_inbox_items_summary.py +1 -1
- agilicus/agilicus_api/test/test_list_ipsec_connector_response.py +1 -1
- agilicus/agilicus_api/test/test_list_issuer_clients_response.py +1 -1
- agilicus/agilicus_api/test/test_list_issuer_extensions_response.py +1 -1
- agilicus/agilicus_api/test/test_list_issuer_roots_response.py +1 -1
- agilicus/agilicus_api/test/test_list_issuer_upstreams.py +1 -1
- agilicus/agilicus_api/test/test_list_jwks.py +1 -1
- agilicus/agilicus_api/test/test_list_labelled_objects_response.py +1 -1
- agilicus/agilicus_api/test/test_list_labels_response.py +1 -1
- agilicus/agilicus_api/test/test_list_launchers_response.py +1 -1
- agilicus/agilicus_api/test/test_list_logs_response.py +1 -1
- agilicus/agilicus_api/test/test_list_message_endpoints_response.py +1 -1
- agilicus/agilicus_api/test/test_list_mfa_challenge_methods.py +1 -1
- agilicus/agilicus_api/test/test_list_object_credential_existence_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_object_credentials_response.py +1 -1
- agilicus/agilicus_api/test/test_list_orgs_response.py +1 -1
- agilicus/agilicus_api/test/test_list_point_of_presences_response.py +1 -1
- agilicus/agilicus_api/test/test_list_policies_response.py +1 -1
- agilicus/agilicus_api/test/test_list_policy_rules_response.py +1 -1
- agilicus/agilicus_api/test/test_list_policy_template_instances_response.py +1 -1
- agilicus/agilicus_api/test/test_list_products_response.py +1 -1
- agilicus/agilicus_api/test/test_list_public_file_org_links_response.py +1 -1
- agilicus/agilicus_api/test/test_list_resource_groups_response.py +1 -1
- agilicus/agilicus_api/test/test_list_resource_permissions_response.py +1 -1
- agilicus/agilicus_api/test/test_list_resource_roles_response.py +1 -1
- agilicus/agilicus_api/test/test_list_resources_response.py +1 -1
- agilicus/agilicus_api/test/test_list_role_to_rule_entries.py +1 -1
- agilicus/agilicus_api/test/test_list_roles.py +1 -1
- agilicus/agilicus_api/test/test_list_rules.py +1 -1
- agilicus/agilicus_api/test/test_list_secure_agent_response.py +1 -1
- agilicus/agilicus_api/test/test_list_service_account_response.py +1 -1
- agilicus/agilicus_api/test/test_list_service_forwarders_response.py +1 -1
- agilicus/agilicus_api/test/test_list_sessions_response.py +1 -1
- agilicus/agilicus_api/test/test_list_ssh_resources_response.py +1 -1
- agilicus/agilicus_api/test/test_list_standalone_rule_policies_response.py +1 -1
- agilicus/agilicus_api/test/test_list_standalone_rule_trees_response.py +1 -1
- agilicus/agilicus_api/test/test_list_standalone_rules_response.py +1 -1
- agilicus/agilicus_api/test/test_list_standalone_ruleset_bundles_response.py +1 -1
- agilicus/agilicus_api/test/test_list_standalone_ruleset_labels_response.py +1 -1
- agilicus/agilicus_api/test/test_list_standalone_rulesets_response.py +1 -1
- agilicus/agilicus_api/test/test_list_tokens_response.py +1 -1
- agilicus/agilicus_api/test/test_list_top_users_response.py +1 -1
- agilicus/agilicus_api/test/test_list_totp_enrollment_response.py +1 -1
- agilicus/agilicus_api/test/test_list_trusted_certificate.py +1 -1
- agilicus/agilicus_api/test/test_list_trusted_certificate_bundle.py +1 -1
- agilicus/agilicus_api/test/test_list_trusted_certificate_label.py +1 -1
- agilicus/agilicus_api/test/test_list_trusted_certificate_org.py +1 -1
- agilicus/agilicus_api/test/test_list_upstream_aliases.py +1 -1
- agilicus/agilicus_api/test/test_list_upstream_group_mapping.py +1 -1
- agilicus/agilicus_api/test/test_list_upstream_user_identities_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_application_access_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_desktop_access_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_file_share_access_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_guids_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_launcher_access_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_metadata_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_request_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_resource_access_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_user_roles_for_an_org.py +1 -1
- agilicus/agilicus_api/test/test_list_user_ssh_access_info_response.py +1 -1
- agilicus/agilicus_api/test/test_list_users_response.py +1 -1
- agilicus/agilicus_api/test/test_list_web_auth_n_enrollment_response.py +1 -1
- agilicus/agilicus_api/test/test_list_well_known_issuer_info.py +1 -1
- agilicus/agilicus_api/test/test_list_x509_certificate_response.py +1 -1
- agilicus/agilicus_api/test/test_local_auth_upstream_config.py +1 -1
- agilicus/agilicus_api/test/test_local_auth_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/test/test_log.py +1 -1
- agilicus/agilicus_api/test/test_login_session.py +1 -1
- agilicus/agilicus_api/test/test_lookup_request.py +1 -1
- agilicus/agilicus_api/test/test_lookups_api.py +1 -1
- agilicus/agilicus_api/test/test_managed_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/test/test_many_org_token_introspect_response.py +1 -1
- agilicus/agilicus_api/test/test_map_attributes_answer.py +1 -1
- agilicus/agilicus_api/test/test_map_attributes_answer_result.py +1 -1
- agilicus/agilicus_api/test/test_map_attributes_question.py +1 -1
- agilicus/agilicus_api/test/test_map_attributes_question_input.py +1 -1
- agilicus/agilicus_api/test/test_map_attributes_question_login_info.py +1 -1
- agilicus/agilicus_api/test/test_mapped_attributes.py +1 -1
- agilicus/agilicus_api/test/test_max_mfa_proof_rule_condition.py +1 -1
- agilicus/agilicus_api/test/test_message.py +1 -1
- agilicus/agilicus_api/test/test_message_action.py +1 -1
- agilicus/agilicus_api/test/test_message_address.py +1 -1
- agilicus/agilicus_api/test/test_message_class.py +1 -1
- agilicus/agilicus_api/test/test_message_endpoint.py +1 -1
- agilicus/agilicus_api/test/test_message_endpoint_metadata.py +1 -1
- agilicus/agilicus_api/test/test_message_endpoint_spec.py +1 -1
- agilicus/agilicus_api/test/test_message_endpoint_type.py +1 -1
- agilicus/agilicus_api/test/test_message_endpoint_type_web_push.py +1 -1
- agilicus/agilicus_api/test/test_message_endpoints_config.py +1 -1
- agilicus/agilicus_api/test/test_message_send_item.py +1 -1
- agilicus/agilicus_api/test/test_message_send_request.py +1 -1
- agilicus/agilicus_api/test/test_message_send_response.py +1 -1
- agilicus/agilicus_api/test/test_message_send_response_item.py +1 -1
- agilicus/agilicus_api/test/test_message_tag.py +1 -1
- agilicus/agilicus_api/test/test_message_tag_name.py +1 -1
- agilicus/agilicus_api/test/test_message_type.py +1 -1
- agilicus/agilicus_api/test/test_messages_api.py +1 -1
- agilicus/agilicus_api/test/test_messages_bulk_delete_request.py +1 -1
- agilicus/agilicus_api/test/test_messages_bulk_delete_response.py +1 -1
- agilicus/agilicus_api/test/test_metadata_with_id.py +1 -1
- agilicus/agilicus_api/test/test_metadata_with_id_all_of.py +1 -1
- agilicus/agilicus_api/test/test_metadata_with_only_id.py +1 -1
- agilicus/agilicus_api/test/test_metrics_api.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_answer.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_answer_result.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_method.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_method_spec.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_question.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_question_input.py +1 -1
- agilicus/agilicus_api/test/test_mfa_challenge_question_login_info.py +1 -1
- agilicus/agilicus_api/test/test_mfa_enrollment_answer.py +1 -1
- agilicus/agilicus_api/test/test_mfa_enrollment_answer_result.py +1 -1
- agilicus/agilicus_api/test/test_mfa_enrollment_question.py +1 -1
- agilicus/agilicus_api/test/test_mfa_enrollment_question_input.py +1 -1
- agilicus/agilicus_api/test/test_mfa_enrollment_question_login_info.py +1 -1
- agilicus/agilicus_api/test/test_mfa_policy_template.py +1 -1
- agilicus/agilicus_api/test/test_network_detailed_stats.py +1 -1
- agilicus/agilicus_api/test/test_network_mount_rule_config.py +1 -1
- agilicus/agilicus_api/test/test_network_port.py +1 -1
- agilicus/agilicus_api/test/test_network_port_range.py +1 -1
- agilicus/agilicus_api/test/test_network_protocol_condition.py +1 -1
- agilicus/agilicus_api/test/test_network_service_config.py +1 -1
- agilicus/agilicus_api/test/test_network_summary_stats.py +1 -1
- agilicus/agilicus_api/test/test_next_page_email.py +1 -1
- agilicus/agilicus_api/test/test_object_credential.py +1 -1
- agilicus/agilicus_api/test/test_object_credential_existence_info.py +1 -1
- agilicus/agilicus_api/test/test_object_credential_secrets.py +1 -1
- agilicus/agilicus_api/test/test_object_credential_spec.py +1 -1
- agilicus/agilicus_api/test/test_object_credential_status.py +1 -1
- agilicus/agilicus_api/test/test_object_oper_status.py +1 -1
- agilicus/agilicus_api/test/test_object_type.py +1 -1
- agilicus/agilicus_api/test/test_oidc_auth_config.py +1 -1
- agilicus/agilicus_api/test/test_oidc_auth_path_config.py +1 -1
- agilicus/agilicus_api/test/test_oidc_auth_uri.py +1 -1
- agilicus/agilicus_api/test/test_oidc_content_type.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_config.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_content_manipulation.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_domain_mapping.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_domain_name_mapping.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_domain_substitution.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_mapping.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_match.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_name.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_override.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_replace.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_rewrite_filter.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_header_user_config.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_scope.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_standard_header.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_upstream_authentication.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_upstream_config.py +1 -1
- agilicus/agilicus_api/test/test_oidc_proxy_upstream_ntlm.py +1 -1
- agilicus/agilicus_api/test/test_oidc_upstream_identity_provider.py +1 -1
- agilicus/agilicus_api/test/test_one_time_use_action_challenge.py +1 -1
- agilicus/agilicus_api/test/test_one_time_use_action_challenge_answer_detail.py +1 -1
- agilicus/agilicus_api/test/test_one_time_use_action_challenge_response.py +1 -1
- agilicus/agilicus_api/test/test_one_time_use_action_challenge_spec.py +1 -1
- agilicus/agilicus_api/test/test_operational_status.py +1 -1
- agilicus/agilicus_api/test/test_org_info.py +1 -1
- agilicus/agilicus_api/test/test_org_scope_patch_document.py +1 -1
- agilicus/agilicus_api/test/test_organisation.py +3 -1
- agilicus/agilicus_api/test/test_organisation_admin.py +1 -1
- agilicus/agilicus_api/test/test_organisation_capabilities.py +1 -1
- agilicus/agilicus_api/test/test_organisation_owner_config.py +1 -1
- agilicus/agilicus_api/test/test_organisation_state_selector.py +1 -1
- agilicus/agilicus_api/test/test_organisation_state_status.py +1 -1
- agilicus/agilicus_api/test/test_organisation_status.py +1 -1
- agilicus/agilicus_api/test/test_organisation_system_options.py +1 -1
- agilicus/agilicus_api/test/test_organisations_api.py +1 -1
- agilicus/agilicus_api/test/test_per_instance_upstream_stats.py +1 -1
- agilicus/agilicus_api/test/test_permissions_api.py +1 -1
- agilicus/agilicus_api/test/test_permitted_cross_domain_policies_settings.py +1 -1
- agilicus/agilicus_api/test/test_point_of_presence.py +3 -1
- agilicus/agilicus_api/test/test_point_of_presence_routing.py +1 -1
- agilicus/agilicus_api/test/test_point_of_presence_spec.py +1 -1
- agilicus/agilicus_api/test/test_point_of_presence_status.py +38 -0
- agilicus/agilicus_api/test/test_policy.py +1 -1
- agilicus/agilicus_api/test/test_policy_api.py +1 -1
- agilicus/agilicus_api/test/test_policy_condition.py +1 -1
- agilicus/agilicus_api/test/test_policy_config_api.py +1 -1
- agilicus/agilicus_api/test/test_policy_config_authz_bundle.py +1 -1
- agilicus/agilicus_api/test/test_policy_config_resource_url_bundle.py +1 -1
- agilicus/agilicus_api/test/test_policy_group.py +1 -1
- agilicus/agilicus_api/test/test_policy_group_spec.py +1 -1
- agilicus/agilicus_api/test/test_policy_issuer_ref.py +1 -1
- agilicus/agilicus_api/test/test_policy_rule.py +1 -1
- agilicus/agilicus_api/test/test_policy_rule_spec.py +1 -1
- agilicus/agilicus_api/test/test_policy_spec.py +1 -1
- agilicus/agilicus_api/test/test_policy_status.py +1 -1
- agilicus/agilicus_api/test/test_policy_template.py +1 -1
- agilicus/agilicus_api/test/test_policy_template_instance.py +1 -1
- agilicus/agilicus_api/test/test_policy_template_instance_spec.py +1 -1
- agilicus/agilicus_api/test/test_policy_templates_api.py +1 -1
- agilicus/agilicus_api/test/test_previous_page_email.py +1 -1
- agilicus/agilicus_api/test/test_product.py +1 -1
- agilicus/agilicus_api/test/test_product_spec.py +1 -1
- agilicus/agilicus_api/test/test_product_status.py +1 -1
- agilicus/agilicus_api/test/test_public_file_org_link.py +1 -1
- agilicus/agilicus_api/test/test_public_file_org_link_spec.py +1 -1
- agilicus/agilicus_api/test/test_raw_token.py +1 -1
- agilicus/agilicus_api/test/test_reconcile_org_default_policy_request.py +1 -1
- agilicus/agilicus_api/test/test_reconcile_org_default_policy_response.py +1 -1
- agilicus/agilicus_api/test/test_reconcile_org_default_policy_response_per_org.py +1 -1
- agilicus/agilicus_api/test/test_reconcile_sub_org_issuer_request.py +1 -1
- agilicus/agilicus_api/test/test_referrer_policy_settings.py +1 -1
- agilicus/agilicus_api/test/test_refresh_token_request.py +1 -1
- agilicus/agilicus_api/test/test_regions_api.py +36 -1
- agilicus/agilicus_api/test/test_remote_app_access_info.py +1 -1
- agilicus/agilicus_api/test/test_rendered_query_parameter.py +1 -1
- agilicus/agilicus_api/test/test_rendered_resource_permissions.py +1 -1
- agilicus/agilicus_api/test/test_rendered_rule.py +1 -1
- agilicus/agilicus_api/test/test_rendered_rule_body.py +1 -1
- agilicus/agilicus_api/test/test_replace_user_role_request.py +1 -1
- agilicus/agilicus_api/test/test_reset_mfa_challenge_method.py +1 -1
- agilicus/agilicus_api/test/test_reset_policy_request.py +1 -1
- agilicus/agilicus_api/test/test_reset_user_identity_request.py +1 -1
- agilicus/agilicus_api/test/test_resource.py +1 -1
- agilicus/agilicus_api/test/test_resource_config.py +1 -1
- agilicus/agilicus_api/test/test_resource_group.py +1 -1
- agilicus/agilicus_api/test/test_resource_info.py +1 -1
- agilicus/agilicus_api/test/test_resource_member.py +1 -1
- agilicus/agilicus_api/test/test_resource_permission.py +1 -1
- agilicus/agilicus_api/test/test_resource_permission_spec.py +1 -1
- agilicus/agilicus_api/test/test_resource_role.py +1 -1
- agilicus/agilicus_api/test/test_resource_role_spec.py +1 -1
- agilicus/agilicus_api/test/test_resource_rule_group.py +1 -1
- agilicus/agilicus_api/test/test_resource_session_stats.py +1 -1
- agilicus/agilicus_api/test/test_resource_spec.py +1 -1
- agilicus/agilicus_api/test/test_resource_stats.py +1 -1
- agilicus/agilicus_api/test/test_resource_stats_metadata.py +1 -1
- agilicus/agilicus_api/test/test_resource_status.py +1 -1
- agilicus/agilicus_api/test/test_resource_type_enum.py +1 -1
- agilicus/agilicus_api/test/test_resource_url.py +1 -1
- agilicus/agilicus_api/test/test_resource_url_host_info.py +1 -1
- agilicus/agilicus_api/test/test_resource_url_host_info_map.py +1 -1
- agilicus/agilicus_api/test/test_resources_api.py +1 -1
- agilicus/agilicus_api/test/test_role.py +1 -1
- agilicus/agilicus_api/test/test_role_config.py +1 -1
- agilicus/agilicus_api/test/test_role_list.py +1 -1
- agilicus/agilicus_api/test/test_role_spec.py +1 -1
- agilicus/agilicus_api/test/test_role_to_rule_entry.py +1 -1
- agilicus/agilicus_api/test/test_role_to_rule_entry_spec.py +1 -1
- agilicus/agilicus_api/test/test_role_v2.py +1 -1
- agilicus/agilicus_api/test/test_roles.py +1 -1
- agilicus/agilicus_api/test/test_roles_config.py +1 -1
- agilicus/agilicus_api/test/test_rule.py +1 -1
- agilicus/agilicus_api/test/test_rule_action.py +1 -1
- agilicus/agilicus_api/test/test_rule_condition.py +1 -1
- agilicus/agilicus_api/test/test_rule_condition_base.py +1 -1
- agilicus/agilicus_api/test/test_rule_config.py +1 -1
- agilicus/agilicus_api/test/test_rule_match_criteria.py +1 -1
- agilicus/agilicus_api/test/test_rule_matcher.py +1 -1
- agilicus/agilicus_api/test/test_rule_matcher_list.py +1 -1
- agilicus/agilicus_api/test/test_rule_query_body.py +1 -1
- agilicus/agilicus_api/test/test_rule_query_body_json.py +1 -1
- agilicus/agilicus_api/test/test_rule_query_parameter.py +1 -1
- agilicus/agilicus_api/test/test_rule_scope_enum.py +1 -1
- agilicus/agilicus_api/test/test_rule_set.py +1 -1
- agilicus/agilicus_api/test/test_rule_set_component.py +1 -1
- agilicus/agilicus_api/test/test_rule_set_node.py +1 -1
- agilicus/agilicus_api/test/test_rule_spec.py +1 -1
- agilicus/agilicus_api/test/test_rule_v2.py +1 -1
- agilicus/agilicus_api/test/test_rules_api.py +1 -1
- agilicus/agilicus_api/test/test_rules_config.py +1 -1
- agilicus/agilicus_api/test/test_runtime_status.py +1 -1
- agilicus/agilicus_api/test/test_scope_condition.py +1 -1
- agilicus/agilicus_api/test/test_secure_agent.py +1 -1
- agilicus/agilicus_api/test/test_secure_agent_connector.py +1 -1
- agilicus/agilicus_api/test/test_secure_agent_connector_info.py +1 -1
- agilicus/agilicus_api/test/test_secure_agent_spec.py +1 -1
- agilicus/agilicus_api/test/test_secure_agent_status.py +1 -1
- agilicus/agilicus_api/test/test_selector_tag.py +1 -1
- agilicus/agilicus_api/test/test_service_account.py +1 -1
- agilicus/agilicus_api/test/test_service_account_reset_body.py +1 -1
- agilicus/agilicus_api/test/test_service_account_spec.py +1 -1
- agilicus/agilicus_api/test/test_service_account_status.py +1 -1
- agilicus/agilicus_api/test/test_service_expose_config.py +1 -1
- agilicus/agilicus_api/test/test_service_forwarder.py +1 -1
- agilicus/agilicus_api/test/test_service_forwarder_spec.py +1 -1
- agilicus/agilicus_api/test/test_service_forwarder_stats.py +1 -1
- agilicus/agilicus_api/test/test_service_forwarder_stats_group.py +1 -1
- agilicus/agilicus_api/test/test_service_forwarder_status.py +1 -1
- agilicus/agilicus_api/test/test_service_http_config.py +1 -1
- agilicus/agilicus_api/test/test_service_protocol_config.py +1 -1
- agilicus/agilicus_api/test/test_session.py +1 -1
- agilicus/agilicus_api/test/test_session_challenge.py +1 -1
- agilicus/agilicus_api/test/test_session_challenge_message.py +1 -1
- agilicus/agilicus_api/test/test_session_challenge_spec.py +1 -1
- agilicus/agilicus_api/test/test_session_challenge_status.py +1 -1
- agilicus/agilicus_api/test/test_session_status.py +1 -1
- agilicus/agilicus_api/test/test_sessions_spec.py +1 -1
- agilicus/agilicus_api/test/test_share_detailed_stats.py +1 -1
- agilicus/agilicus_api/test/test_share_summary_stats.py +1 -1
- agilicus/agilicus_api/test/test_simple_resource_policy_template.py +1 -1
- agilicus/agilicus_api/test/test_simple_resource_policy_template_structure.py +1 -1
- agilicus/agilicus_api/test/test_simple_resource_policy_template_structure_node.py +1 -1
- agilicus/agilicus_api/test/test_source_info_policy_template.py +1 -1
- agilicus/agilicus_api/test/test_source_iso_country_code_condition.py +1 -1
- agilicus/agilicus_api/test/test_source_subnet_condition.py +1 -1
- agilicus/agilicus_api/test/test_ssh_resource.py +1 -1
- agilicus/agilicus_api/test/test_ssh_resource_spec.py +1 -1
- agilicus/agilicus_api/test/test_ssh_resource_stats.py +1 -1
- agilicus/agilicus_api/test/test_ssh_resource_status.py +1 -1
- agilicus/agilicus_api/test/test_ssh_username.py +1 -1
- agilicus/agilicus_api/test/test_standalone_object_conditions.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_name.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_policy.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_policy_description.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_policy_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_scope.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree_node.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree_node_child.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree_ref.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree_rule_ref.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rule_tree_status.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rules_cleanup.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rules_cleanup_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_rules_cleanup_status.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_bundle.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_bundle_label.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_bundle_name.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_bundle_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_bundle_status.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_in_bundle.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_label.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_label_name.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_label_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_label_status.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_spec.py +1 -1
- agilicus/agilicus_api/test/test_standalone_ruleset_status.py +1 -1
- agilicus/agilicus_api/test/test_stats_publishing_config.py +1 -1
- agilicus/agilicus_api/test/test_stats_publishing_connector_config.py +1 -1
- agilicus/agilicus_api/test/test_stats_publishing_connector_type_config.py +1 -1
- agilicus/agilicus_api/test/test_stats_publishing_level_config.py +1 -1
- agilicus/agilicus_api/test/test_storage_region.py +1 -1
- agilicus/agilicus_api/test/test_template_extraction.py +1 -1
- agilicus/agilicus_api/test/test_template_path.py +1 -1
- agilicus/agilicus_api/test/test_time_interval_metrics.py +1 -1
- agilicus/agilicus_api/test/test_time_validity.py +1 -1
- agilicus/agilicus_api/test/test_token.py +1 -1
- agilicus/agilicus_api/test/test_token_introspect.py +1 -1
- agilicus/agilicus_api/test/test_token_introspect_options.py +1 -1
- agilicus/agilicus_api/test/test_token_reissue_request.py +1 -1
- agilicus/agilicus_api/test/test_token_revoke.py +1 -1
- agilicus/agilicus_api/test/test_token_scope.py +1 -1
- agilicus/agilicus_api/test/test_token_validity.py +1 -1
- agilicus/agilicus_api/test/test_tokens_api.py +1 -1
- agilicus/agilicus_api/test/test_totp_enrollment.py +1 -1
- agilicus/agilicus_api/test/test_totp_enrollment_answer.py +1 -1
- agilicus/agilicus_api/test/test_totp_enrollment_spec.py +1 -1
- agilicus/agilicus_api/test/test_totp_enrollment_status.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_bundle.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_bundle_label.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_bundle_label_operation.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_bundle_name.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_bundle_spec.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_bundle_status.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_label.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_label_name.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_label_spec.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_label_status.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_org.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_spec.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certificate_status.py +1 -1
- agilicus/agilicus_api/test/test_trusted_certs_api.py +1 -1
- agilicus/agilicus_api/test/test_upstream_alias.py +1 -1
- agilicus/agilicus_api/test/test_upstream_alias_mapping.py +1 -1
- agilicus/agilicus_api/test/test_upstream_alias_spec.py +1 -1
- agilicus/agilicus_api/test/test_upstream_group_excluded_entry.py +1 -1
- agilicus/agilicus_api/test/test_upstream_group_mapping.py +1 -1
- agilicus/agilicus_api/test/test_upstream_group_mapping_entry.py +1 -1
- agilicus/agilicus_api/test/test_upstream_group_mapping_spec.py +1 -1
- agilicus/agilicus_api/test/test_upstream_group_reconcile.py +1 -1
- agilicus/agilicus_api/test/test_upstream_group_reconcile_response.py +1 -1
- agilicus/agilicus_api/test/test_upstream_user_identity.py +1 -1
- agilicus/agilicus_api/test/test_upstream_user_identity_spec.py +1 -1
- agilicus/agilicus_api/test/test_uri_parameter_rewrite_filter.py +1 -1
- agilicus/agilicus_api/test/test_usage_measurement.py +1 -1
- agilicus/agilicus_api/test/test_usage_metric.py +1 -1
- agilicus/agilicus_api/test/test_usage_metrics.py +1 -1
- agilicus/agilicus_api/test/test_user.py +1 -1
- agilicus/agilicus_api/test/test_user_application_access_info.py +1 -1
- agilicus/agilicus_api/test/test_user_application_access_info_status.py +1 -1
- agilicus/agilicus_api/test/test_user_attribute.py +1 -1
- agilicus/agilicus_api/test/test_user_attributes.py +1 -1
- agilicus/agilicus_api/test/test_user_desktop_access_info.py +1 -1
- agilicus/agilicus_api/test/test_user_desktop_access_info_status.py +1 -1
- agilicus/agilicus_api/test/test_user_file_share_access_info.py +1 -1
- agilicus/agilicus_api/test/test_user_file_share_access_info_status.py +1 -1
- agilicus/agilicus_api/test/test_user_identity.py +1 -1
- agilicus/agilicus_api/test/test_user_identity_update.py +1 -1
- agilicus/agilicus_api/test/test_user_identity_update_spec.py +1 -1
- agilicus/agilicus_api/test/test_user_info.py +1 -1
- agilicus/agilicus_api/test/test_user_launcher_access_info.py +1 -1
- agilicus/agilicus_api/test/test_user_member_of.py +1 -1
- agilicus/agilicus_api/test/test_user_metadata.py +1 -1
- agilicus/agilicus_api/test/test_user_metadata_spec.py +1 -1
- agilicus/agilicus_api/test/test_user_metrics.py +1 -1
- agilicus/agilicus_api/test/test_user_request_info.py +1 -1
- agilicus/agilicus_api/test/test_user_request_info_spec.py +1 -1
- agilicus/agilicus_api/test/test_user_request_info_status.py +1 -1
- agilicus/agilicus_api/test/test_user_request_user_update.py +1 -1
- agilicus/agilicus_api/test/test_user_resource_access_info.py +1 -1
- agilicus/agilicus_api/test/test_user_resource_access_info_status.py +1 -1
- agilicus/agilicus_api/test/test_user_roles.py +1 -1
- agilicus/agilicus_api/test/test_user_roles_for_an_org.py +1 -1
- agilicus/agilicus_api/test/test_user_session_identifiers.py +1 -1
- agilicus/agilicus_api/test/test_user_ssh_access_info.py +1 -1
- agilicus/agilicus_api/test/test_user_ssh_access_info_status.py +1 -1
- agilicus/agilicus_api/test/test_user_status_enum.py +1 -1
- agilicus/agilicus_api/test/test_user_summary.py +1 -1
- agilicus/agilicus_api/test/test_users_api.py +1 -1
- agilicus/agilicus_api/test/test_vnc_connection_info.py +1 -1
- agilicus/agilicus_api/test/test_vnc_password_authentication.py +1 -1
- agilicus/agilicus_api/test/test_web_auth_n_enrollment.py +1 -1
- agilicus/agilicus_api/test/test_web_auth_n_enrollment_answer.py +1 -1
- agilicus/agilicus_api/test/test_web_auth_n_enrollment_spec.py +1 -1
- agilicus/agilicus_api/test/test_web_auth_n_enrollment_status.py +1 -1
- agilicus/agilicus_api/test/test_well_known_issuer_info.py +1 -1
- agilicus/agilicus_api/test/test_whoami_api.py +1 -1
- agilicus/agilicus_api/test/test_whoami_request.py +1 -1
- agilicus/agilicus_api/test/test_whoami_response.py +1 -1
- agilicus/agilicus_api/test/test_workload_configuration.py +1 -1
- agilicus/agilicus_api/test/test_x509_certificate.py +1 -1
- agilicus/agilicus_api/test/test_x509_certificate_spec.py +1 -1
- agilicus/agilicus_api/test/test_x509_certificate_status.py +1 -1
- agilicus/agilicus_api/test/test_x509_root_certificate.py +1 -1
- agilicus/agilicus_api/test/test_x509_root_certificate_spec.py +1 -1
- agilicus/agilicus_api/test/test_x509_root_certificate_status.py +1 -1
- agilicus/agilicus_api/test/test_xss_settings.py +1 -1
- agilicus/agilicus_api_README.md +12 -2
- agilicus/certificate.py +4 -2
- agilicus/csr.py +17 -0
- agilicus/input_helpers.py +13 -0
- agilicus/main.py +81 -2
- agilicus/orgs.py +4 -0
- agilicus/regions.py +85 -2
- {agilicus-1.273.3.dist-info → agilicus-1.274.0.dist-info}/METADATA +1 -1
- {agilicus-1.273.3.dist-info → agilicus-1.274.0.dist-info}/RECORD +1721 -1706
- {agilicus-1.273.3.dist-info → agilicus-1.274.0.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.273.3.dist-info → agilicus-1.274.0.dist-info}/WHEEL +0 -0
- {agilicus-1.273.3.dist-info → agilicus-1.274.0.dist-info}/entry_points.txt +0 -0
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -24,6 +24,13 @@ class TestRegionsApi(unittest.TestCase):
|
|
24
24
|
def tearDown(self):
|
25
25
|
pass
|
26
26
|
|
27
|
+
def test_add_cluster(self):
|
28
|
+
"""Test case for add_cluster
|
29
|
+
|
30
|
+
Add a Cluster # noqa: E501
|
31
|
+
"""
|
32
|
+
pass
|
33
|
+
|
27
34
|
def test_add_point_of_presence(self):
|
28
35
|
"""Test case for add_point_of_presence
|
29
36
|
|
@@ -31,6 +38,13 @@ class TestRegionsApi(unittest.TestCase):
|
|
31
38
|
"""
|
32
39
|
pass
|
33
40
|
|
41
|
+
def test_delete_cluster(self):
|
42
|
+
"""Test case for delete_cluster
|
43
|
+
|
44
|
+
Delete a Cluster # noqa: E501
|
45
|
+
"""
|
46
|
+
pass
|
47
|
+
|
34
48
|
def test_delete_point_of_presence(self):
|
35
49
|
"""Test case for delete_point_of_presence
|
36
50
|
|
@@ -38,6 +52,13 @@ class TestRegionsApi(unittest.TestCase):
|
|
38
52
|
"""
|
39
53
|
pass
|
40
54
|
|
55
|
+
def test_get_cluster(self):
|
56
|
+
"""Test case for get_cluster
|
57
|
+
|
58
|
+
Get a Cluster # noqa: E501
|
59
|
+
"""
|
60
|
+
pass
|
61
|
+
|
41
62
|
def test_get_point_of_presence(self):
|
42
63
|
"""Test case for get_point_of_presence
|
43
64
|
|
@@ -45,6 +66,13 @@ class TestRegionsApi(unittest.TestCase):
|
|
45
66
|
"""
|
46
67
|
pass
|
47
68
|
|
69
|
+
def test_list_clusters(self):
|
70
|
+
"""Test case for list_clusters
|
71
|
+
|
72
|
+
List all Clusters # noqa: E501
|
73
|
+
"""
|
74
|
+
pass
|
75
|
+
|
48
76
|
def test_list_point_of_presences(self):
|
49
77
|
"""Test case for list_point_of_presences
|
50
78
|
|
@@ -52,6 +80,13 @@ class TestRegionsApi(unittest.TestCase):
|
|
52
80
|
"""
|
53
81
|
pass
|
54
82
|
|
83
|
+
def test_replace_cluster(self):
|
84
|
+
"""Test case for replace_cluster
|
85
|
+
|
86
|
+
update a Cluster # noqa: E501
|
87
|
+
"""
|
88
|
+
pass
|
89
|
+
|
55
90
|
def test_replace_point_of_presence(self):
|
56
91
|
"""Test case for replace_point_of_presence
|
57
92
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 2025.01.
|
6
|
+
The version of the OpenAPI document: 2025.01.27
|
7
7
|
Contact: dev@agilicus.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|