pyincusd 6.23.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyincusd-6.23.0/PKG-INFO +740 -0
- pyincusd-6.23.0/README.md +720 -0
- pyincusd-6.23.0/pyincusd/__init__.py +743 -0
- pyincusd-6.23.0/pyincusd/api/__init__.py +26 -0
- pyincusd-6.23.0/pyincusd/api/certificates_api.py +2219 -0
- pyincusd-6.23.0/pyincusd/api/cluster_api.py +3860 -0
- pyincusd-6.23.0/pyincusd/api/cluster_groups_api.py +1902 -0
- pyincusd-6.23.0/pyincusd/api/default_api.py +287 -0
- pyincusd-6.23.0/pyincusd/api/images_api.py +7295 -0
- pyincusd-6.23.0/pyincusd/api/instances_api.py +15307 -0
- pyincusd-6.23.0/pyincusd/api/metrics_api.py +323 -0
- pyincusd-6.23.0/pyincusd/api/network_acls_api.py +2658 -0
- pyincusd-6.23.0/pyincusd/api/network_address_sets_api.py +2390 -0
- pyincusd-6.23.0/pyincusd/api/network_allocations_api.py +324 -0
- pyincusd-6.23.0/pyincusd/api/network_forwards_api.py +2056 -0
- pyincusd-6.23.0/pyincusd/api/network_integrations_api.py +2207 -0
- pyincusd-6.23.0/pyincusd/api/network_load_balancers_api.py +2325 -0
- pyincusd-6.23.0/pyincusd/api/network_peers_api.py +2059 -0
- pyincusd-6.23.0/pyincusd/api/network_zones_api.py +4107 -0
- pyincusd-6.23.0/pyincusd/api/networks_api.py +3030 -0
- pyincusd-6.23.0/pyincusd/api/operations_api.py +2206 -0
- pyincusd-6.23.0/pyincusd/api/profiles_api.py +2390 -0
- pyincusd-6.23.0/pyincusd/api/projects_api.py +2745 -0
- pyincusd-6.23.0/pyincusd/api/server_api.py +1994 -0
- pyincusd-6.23.0/pyincusd/api/storage_api.py +19063 -0
- pyincusd-6.23.0/pyincusd/api/warnings_api.py +1636 -0
- pyincusd-6.23.0/pyincusd/api_client.py +809 -0
- pyincusd-6.23.0/pyincusd/api_response.py +21 -0
- pyincusd-6.23.0/pyincusd/configuration.py +597 -0
- pyincusd-6.23.0/pyincusd/exceptions.py +219 -0
- pyincusd-6.23.0/pyincusd/models/__init__.py +343 -0
- pyincusd-6.23.0/pyincusd/models/access_entry.py +93 -0
- pyincusd-6.23.0/pyincusd/models/api_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/backup_target.py +99 -0
- pyincusd-6.23.0/pyincusd/models/certificate.py +103 -0
- pyincusd-6.23.0/pyincusd/models/certificate_add_token.py +98 -0
- pyincusd-6.23.0/pyincusd/models/certificate_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/certificate_put.py +99 -0
- pyincusd-6.23.0/pyincusd/models/certificates_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/certificates_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/certificates_post.py +103 -0
- pyincusd-6.23.0/pyincusd/models/cluster.py +101 -0
- pyincusd-6.23.0/pyincusd/models/cluster_certificate_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/cluster_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/cluster_group.py +99 -0
- pyincusd-6.23.0/pyincusd/models/cluster_group_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/cluster_group_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/cluster_group_put.py +93 -0
- pyincusd-6.23.0/pyincusd/models/cluster_groups_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/cluster_groups_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/cluster_groups_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member.py +109 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_config_key.py +97 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_join_token.py +98 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_put.py +97 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_state.py +108 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_state_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_state_post.py +91 -0
- pyincusd-6.23.0/pyincusd/models/cluster_member_sys_info.py +105 -0
- pyincusd-6.23.0/pyincusd/models/cluster_members_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/cluster_members_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/cluster_members_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/cluster_members_post202_response.py +101 -0
- pyincusd-6.23.0/pyincusd/models/cluster_put.py +109 -0
- pyincusd-6.23.0/pyincusd/models/event.py +98 -0
- pyincusd-6.23.0/pyincusd/models/image.py +134 -0
- pyincusd-6.23.0/pyincusd/models/image_alias.py +91 -0
- pyincusd-6.23.0/pyincusd/models/image_alias_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/image_aliases_entry.py +95 -0
- pyincusd-6.23.0/pyincusd/models/image_aliases_entry_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/image_aliases_entry_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/image_aliases_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/image_export_post.py +107 -0
- pyincusd-6.23.0/pyincusd/models/image_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/image_metadata.py +110 -0
- pyincusd-6.23.0/pyincusd/models/image_metadata_template.py +101 -0
- pyincusd-6.23.0/pyincusd/models/image_put.py +98 -0
- pyincusd-6.23.0/pyincusd/models/image_source.py +97 -0
- pyincusd-6.23.0/pyincusd/models/images_aliases_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/images_aliases_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/images_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/images_get_recursion1_untrusted200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/images_post.py +120 -0
- pyincusd-6.23.0/pyincusd/models/images_post_source.py +111 -0
- pyincusd-6.23.0/pyincusd/models/init_cluster_preseed.py +111 -0
- pyincusd-6.23.0/pyincusd/models/init_local_preseed.py +159 -0
- pyincusd-6.23.0/pyincusd/models/init_networks_project_post.py +97 -0
- pyincusd-6.23.0/pyincusd/models/init_preseed.py +165 -0
- pyincusd-6.23.0/pyincusd/models/init_profile_project_post.py +97 -0
- pyincusd-6.23.0/pyincusd/models/init_storage_volumes_project_post.py +109 -0
- pyincusd-6.23.0/pyincusd/models/instance.py +126 -0
- pyincusd-6.23.0/pyincusd/models/instance_access200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/instance_backup.py +98 -0
- pyincusd-6.23.0/pyincusd/models/instance_backup_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_backup_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/instance_backups_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instance_backups_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/instance_backups_post.py +106 -0
- pyincusd-6.23.0/pyincusd/models/instance_console_get404_response.py +93 -0
- pyincusd-6.23.0/pyincusd/models/instance_console_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instance_debug_repair_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/instance_exec_outputs_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instance_exec_post.py +107 -0
- pyincusd-6.23.0/pyincusd/models/instance_full.py +152 -0
- pyincusd-6.23.0/pyincusd/models/instance_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_get_recursion1200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_logs_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instance_metadata_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_post.py +113 -0
- pyincusd-6.23.0/pyincusd/models/instance_post_target.py +93 -0
- pyincusd-6.23.0/pyincusd/models/instance_put.py +105 -0
- pyincusd-6.23.0/pyincusd/models/instance_rebuild_post.py +93 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshot.py +116 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshot_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshot_post.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshot_put.py +90 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshots_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshots_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/instance_snapshots_post.py +94 -0
- pyincusd-6.23.0/pyincusd/models/instance_source.py +125 -0
- pyincusd-6.23.0/pyincusd/models/instance_state.py +146 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_cpu.py +91 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_disk.py +91 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_memory.py +97 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_network.py +113 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_network_address.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_network_counters.py +103 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_os_info.py +97 -0
- pyincusd-6.23.0/pyincusd/models/instance_state_put.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instances_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/instances_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/instances_get_recursion2200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/instances_post.py +119 -0
- pyincusd-6.23.0/pyincusd/models/instances_put.py +93 -0
- pyincusd-6.23.0/pyincusd/models/metadata_config_group.py +102 -0
- pyincusd-6.23.0/pyincusd/models/metadata_config_key.py +101 -0
- pyincusd-6.23.0/pyincusd/models/metadata_configuration.py +110 -0
- pyincusd-6.23.0/pyincusd/models/metadata_configuration_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network.py +117 -0
- pyincusd-6.23.0/pyincusd/models/network_acl.py +118 -0
- pyincusd-6.23.0/pyincusd/models/network_acl_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_acl_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/network_acl_put.py +110 -0
- pyincusd-6.23.0/pyincusd/models/network_acl_rule.py +107 -0
- pyincusd-6.23.0/pyincusd/models/network_acls_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_acls_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_acls_post.py +112 -0
- pyincusd-6.23.0/pyincusd/models/network_address_set.py +101 -0
- pyincusd-6.23.0/pyincusd/models/network_address_set_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_address_set_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/network_address_set_put.py +93 -0
- pyincusd-6.23.0/pyincusd/models/network_address_sets_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_address_sets_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_address_sets_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_allocations.py +97 -0
- pyincusd-6.23.0/pyincusd/models/network_allocations_get200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_forward.py +105 -0
- pyincusd-6.23.0/pyincusd/models/network_forward_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_forward_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_forward_port.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_forward_put.py +101 -0
- pyincusd-6.23.0/pyincusd/models/network_forwards_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_forwards_post.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_integration.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_integration_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_integration_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/network_integration_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/network_integrations_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_integrations_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_integrations_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_lease.py +97 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer.py +115 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_backend.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_port.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_put.py +111 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_state.py +102 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_state_backend_health.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_state_backend_health_port.py +93 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancer_state_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancers_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_load_balancers_post.py +113 -0
- pyincusd-6.23.0/pyincusd/models/network_peer.py +115 -0
- pyincusd-6.23.0/pyincusd/models/network_peer_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_peer_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_peer_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/network_peers_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_peers_post.py +101 -0
- pyincusd-6.23.0/pyincusd/models/network_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/network_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/network_state.py +135 -0
- pyincusd-6.23.0/pyincusd/models/network_state_address.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_state_bond.py +101 -0
- pyincusd-6.23.0/pyincusd/models/network_state_bridge.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_state_counters.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_state_ovn.py +97 -0
- pyincusd-6.23.0/pyincusd/models/network_state_vlan.py +91 -0
- pyincusd-6.23.0/pyincusd/models/network_zone.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_record.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_record_entry.py +93 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_record_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_record_put.py +101 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_records_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_records_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_zone_records_post.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_zones_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/network_zones_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/network_zones_post.py +93 -0
- pyincusd-6.23.0/pyincusd/models/networks_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/networks_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/networks_leases_get200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/networks_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/networks_state_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/operation.py +112 -0
- pyincusd-6.23.0/pyincusd/models/operation_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/operations_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/operations_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/profile.py +103 -0
- pyincusd-6.23.0/pyincusd/models/profile_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/profile_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/profile_put.py +93 -0
- pyincusd-6.23.0/pyincusd/models/profiles_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/profiles_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/profiles_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/project.py +99 -0
- pyincusd-6.23.0/pyincusd/models/project_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/project_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/project_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/project_state.py +104 -0
- pyincusd-6.23.0/pyincusd/models/project_state_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/project_state_resource.py +91 -0
- pyincusd-6.23.0/pyincusd/models/projects_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/projects_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/projects_post.py +93 -0
- pyincusd-6.23.0/pyincusd/models/resources.py +147 -0
- pyincusd-6.23.0/pyincusd/models/resources_cpu.py +101 -0
- pyincusd-6.23.0/pyincusd/models/resources_cpu_address_sizes.py +91 -0
- pyincusd-6.23.0/pyincusd/models/resources_cpu_cache.py +93 -0
- pyincusd-6.23.0/pyincusd/models/resources_cpu_core.py +105 -0
- pyincusd-6.23.0/pyincusd/models/resources_cpu_socket.py +125 -0
- pyincusd-6.23.0/pyincusd/models/resources_cpu_thread.py +97 -0
- pyincusd-6.23.0/pyincusd/models/resources_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_gpu.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_gpu_card.py +140 -0
- pyincusd-6.23.0/pyincusd/models/resources_gpu_card_drm.py +101 -0
- pyincusd-6.23.0/pyincusd/models/resources_gpu_card_mdev.py +97 -0
- pyincusd-6.23.0/pyincusd/models/resources_gpu_card_nvidia.py +103 -0
- pyincusd-6.23.0/pyincusd/models/resources_gpu_card_sriov.py +103 -0
- pyincusd-6.23.0/pyincusd/models/resources_load.py +95 -0
- pyincusd-6.23.0/pyincusd/models/resources_memory.py +107 -0
- pyincusd-6.23.0/pyincusd/models/resources_memory_node.py +97 -0
- pyincusd-6.23.0/pyincusd/models/resources_network.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_network_card.py +131 -0
- pyincusd-6.23.0/pyincusd/models/resources_network_card_port.py +117 -0
- pyincusd-6.23.0/pyincusd/models/resources_network_card_port_infiniband.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_network_card_sriov.py +103 -0
- pyincusd-6.23.0/pyincusd/models/resources_network_card_vdpa.py +91 -0
- pyincusd-6.23.0/pyincusd/models/resources_pci.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_pci_device.py +111 -0
- pyincusd-6.23.0/pyincusd/models/resources_pcivpd.py +91 -0
- pyincusd-6.23.0/pyincusd/models/resources_serial.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_serial_device.py +105 -0
- pyincusd-6.23.0/pyincusd/models/resources_storage.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_storage_disk.py +131 -0
- pyincusd-6.23.0/pyincusd/models/resources_storage_disk_partition.py +97 -0
- pyincusd-6.23.0/pyincusd/models/resources_storage_pool.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_storage_pool_inodes.py +91 -0
- pyincusd-6.23.0/pyincusd/models/resources_storage_pool_space.py +91 -0
- pyincusd-6.23.0/pyincusd/models/resources_system.py +121 -0
- pyincusd-6.23.0/pyincusd/models/resources_system_chassis.py +95 -0
- pyincusd-6.23.0/pyincusd/models/resources_system_firmware.py +93 -0
- pyincusd-6.23.0/pyincusd/models/resources_system_motherboard.py +95 -0
- pyincusd-6.23.0/pyincusd/models/resources_usb.py +99 -0
- pyincusd-6.23.0/pyincusd/models/resources_usb_device.py +113 -0
- pyincusd-6.23.0/pyincusd/models/resources_usb_device_interface.py +101 -0
- pyincusd-6.23.0/pyincusd/models/server.py +127 -0
- pyincusd-6.23.0/pyincusd/models/server_environment.py +143 -0
- pyincusd-6.23.0/pyincusd/models/server_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/server_get500_response.py +93 -0
- pyincusd-6.23.0/pyincusd/models/server_get_untrusted200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/server_put.py +89 -0
- pyincusd-6.23.0/pyincusd/models/server_put200_response.py +93 -0
- pyincusd-6.23.0/pyincusd/models/server_put400_response.py +93 -0
- pyincusd-6.23.0/pyincusd/models/server_put403_response.py +93 -0
- pyincusd-6.23.0/pyincusd/models/server_put412_response.py +93 -0
- pyincusd-6.23.0/pyincusd/models/server_storage_driver_info.py +93 -0
- pyincusd-6.23.0/pyincusd/models/server_untrusted.py +113 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_backup.py +94 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_backup_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_backups_post.py +94 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_full.py +119 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_key.py +97 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_key_put.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_keys_post.py +97 -0
- pyincusd-6.23.0/pyincusd/models/storage_bucket_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/storage_buckets_post.py +93 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool.py +105 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_bucket_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_bucket_get_recursion1200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_bucket_key_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_bucket_keys_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_bucket_keys_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_buckets_backup_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_buckets_backups_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_buckets_backups_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_buckets_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_buckets_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_buckets_get_recursion2200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_put.py +91 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_resources200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_state.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volume_type_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volume_type_get_recursion1200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volume_type_state_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_backup_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_backups_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_backups_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_get_recursion2200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_snapshot_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_snapshots_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pool_volumes_type_snapshots_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pools_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_pools_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/models/storage_pools_post.py +95 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume.py +108 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_backup.py +98 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_backup_post.py +89 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_backups_post.py +104 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_full.py +134 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_post.py +109 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_post_target.py +93 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_put.py +93 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_snapshot.py +100 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_snapshot_post.py +97 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_snapshot_put.py +92 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_snapshots_post.py +92 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_source.py +111 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_state.py +93 -0
- pyincusd-6.23.0/pyincusd/models/storage_volume_state_usage.py +91 -0
- pyincusd-6.23.0/pyincusd/models/storage_volumes_post.py +105 -0
- pyincusd-6.23.0/pyincusd/models/warning.py +110 -0
- pyincusd-6.23.0/pyincusd/models/warning_get200_response.py +99 -0
- pyincusd-6.23.0/pyincusd/models/warning_put.py +89 -0
- pyincusd-6.23.0/pyincusd/models/warnings_get200_response.py +95 -0
- pyincusd-6.23.0/pyincusd/models/warnings_get_recursion1200_response.py +103 -0
- pyincusd-6.23.0/pyincusd/py.typed +0 -0
- pyincusd-6.23.0/pyincusd/rest.py +264 -0
- pyincusd-6.23.0/pyincusd.egg-info/PKG-INFO +740 -0
- pyincusd-6.23.0/pyincusd.egg-info/SOURCES.txt +714 -0
- pyincusd-6.23.0/pyincusd.egg-info/dependency_links.txt +1 -0
- pyincusd-6.23.0/pyincusd.egg-info/requires.txt +4 -0
- pyincusd-6.23.0/pyincusd.egg-info/top_level.txt +1 -0
- pyincusd-6.23.0/pyproject.toml +22 -0
- pyincusd-6.23.0/setup.cfg +7 -0
- pyincusd-6.23.0/setup.py +49 -0
- pyincusd-6.23.0/test/test_access_entry.py +54 -0
- pyincusd-6.23.0/test/test_api_get200_response.py +55 -0
- pyincusd-6.23.0/test/test_backup_target.py +57 -0
- pyincusd-6.23.0/test/test_certificate.py +58 -0
- pyincusd-6.23.0/test/test_certificate_add_token.py +56 -0
- pyincusd-6.23.0/test/test_certificate_get200_response.py +62 -0
- pyincusd-6.23.0/test/test_certificate_put.py +57 -0
- pyincusd-6.23.0/test/test_certificates_api.py +88 -0
- pyincusd-6.23.0/test/test_certificates_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_certificates_get_recursion1200_response.py +64 -0
- pyincusd-6.23.0/test/test_certificates_post.py +59 -0
- pyincusd-6.23.0/test/test_cluster.py +54 -0
- pyincusd-6.23.0/test/test_cluster_api.py +130 -0
- pyincusd-6.23.0/test/test_cluster_certificate_put.py +53 -0
- pyincusd-6.23.0/test/test_cluster_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_cluster_group.py +56 -0
- pyincusd-6.23.0/test/test_cluster_group_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_cluster_group_post.py +52 -0
- pyincusd-6.23.0/test/test_cluster_group_put.py +54 -0
- pyincusd-6.23.0/test/test_cluster_groups_api.py +81 -0
- pyincusd-6.23.0/test/test_cluster_groups_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_cluster_groups_get_recursion1200_response.py +62 -0
- pyincusd-6.23.0/test/test_cluster_groups_post.py +55 -0
- pyincusd-6.23.0/test/test_cluster_member.py +62 -0
- pyincusd-6.23.0/test/test_cluster_member_config_key.py +56 -0
- pyincusd-6.23.0/test/test_cluster_member_get200_response.py +66 -0
- pyincusd-6.23.0/test/test_cluster_member_join_token.py +56 -0
- pyincusd-6.23.0/test/test_cluster_member_post.py +52 -0
- pyincusd-6.23.0/test/test_cluster_member_put.py +56 -0
- pyincusd-6.23.0/test/test_cluster_member_state.py +72 -0
- pyincusd-6.23.0/test/test_cluster_member_state_get200_response.py +76 -0
- pyincusd-6.23.0/test/test_cluster_member_state_post.py +53 -0
- pyincusd-6.23.0/test/test_cluster_member_sys_info.py +62 -0
- pyincusd-6.23.0/test/test_cluster_members_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_cluster_members_get_recursion1200_response.py +68 -0
- pyincusd-6.23.0/test/test_cluster_members_post.py +52 -0
- pyincusd-6.23.0/test/test_cluster_members_post202_response.py +68 -0
- pyincusd-6.23.0/test/test_cluster_put.py +58 -0
- pyincusd-6.23.0/test/test_default_api.py +39 -0
- pyincusd-6.23.0/test/test_event.py +56 -0
- pyincusd-6.23.0/test/test_image.py +77 -0
- pyincusd-6.23.0/test/test_image_alias.py +53 -0
- pyincusd-6.23.0/test/test_image_alias_get200_response.py +59 -0
- pyincusd-6.23.0/test/test_image_aliases_entry.py +55 -0
- pyincusd-6.23.0/test/test_image_aliases_entry_post.py +52 -0
- pyincusd-6.23.0/test/test_image_aliases_entry_put.py +53 -0
- pyincusd-6.23.0/test/test_image_aliases_post.py +55 -0
- pyincusd-6.23.0/test/test_image_export_post.py +61 -0
- pyincusd-6.23.0/test/test_image_get200_response.py +81 -0
- pyincusd-6.23.0/test/test_image_metadata.py +65 -0
- pyincusd-6.23.0/test/test_image_metadata_template.py +58 -0
- pyincusd-6.23.0/test/test_image_put.py +56 -0
- pyincusd-6.23.0/test/test_image_source.py +56 -0
- pyincusd-6.23.0/test/test_images_aliases_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_images_aliases_get_recursion1200_response.py +61 -0
- pyincusd-6.23.0/test/test_images_api.py +207 -0
- pyincusd-6.23.0/test/test_images_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_images_get_recursion1_untrusted200_response.py +83 -0
- pyincusd-6.23.0/test/test_images_post.py +73 -0
- pyincusd-6.23.0/test/test_images_post_source.py +63 -0
- pyincusd-6.23.0/test/test_init_cluster_preseed.py +59 -0
- pyincusd-6.23.0/test/test_init_local_preseed.py +65 -0
- pyincusd-6.23.0/test/test_init_networks_project_post.py +56 -0
- pyincusd-6.23.0/test/test_init_preseed.py +74 -0
- pyincusd-6.23.0/test/test_init_profile_project_post.py +56 -0
- pyincusd-6.23.0/test/test_init_storage_volumes_project_post.py +72 -0
- pyincusd-6.23.0/test/test_instance.py +70 -0
- pyincusd-6.23.0/test/test_instance_access200_response.py +60 -0
- pyincusd-6.23.0/test/test_instance_backup.py +56 -0
- pyincusd-6.23.0/test/test_instance_backup_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_instance_backup_post.py +52 -0
- pyincusd-6.23.0/test/test_instance_backups_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_instance_backups_get_recursion1200_response.py +62 -0
- pyincusd-6.23.0/test/test_instance_backups_post.py +64 -0
- pyincusd-6.23.0/test/test_instance_console_get404_response.py +54 -0
- pyincusd-6.23.0/test/test_instance_console_post.py +55 -0
- pyincusd-6.23.0/test/test_instance_debug_repair_post.py +52 -0
- pyincusd-6.23.0/test/test_instance_exec_outputs_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_instance_exec_post.py +61 -0
- pyincusd-6.23.0/test/test_instance_full.py +145 -0
- pyincusd-6.23.0/test/test_instance_get200_response.py +74 -0
- pyincusd-6.23.0/test/test_instance_get_recursion1200_response.py +148 -0
- pyincusd-6.23.0/test/test_instance_logs_get200_response.py +57 -0
- pyincusd-6.23.0/test/test_instance_metadata_get200_response.py +69 -0
- pyincusd-6.23.0/test/test_instance_post.py +65 -0
- pyincusd-6.23.0/test/test_instance_post_target.py +54 -0
- pyincusd-6.23.0/test/test_instance_put.py +60 -0
- pyincusd-6.23.0/test/test_instance_rebuild_post.py +71 -0
- pyincusd-6.23.0/test/test_instance_snapshot.py +65 -0
- pyincusd-6.23.0/test/test_instance_snapshot_get200_response.py +69 -0
- pyincusd-6.23.0/test/test_instance_snapshot_post.py +58 -0
- pyincusd-6.23.0/test/test_instance_snapshot_put.py +52 -0
- pyincusd-6.23.0/test/test_instance_snapshots_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_instance_snapshots_get_recursion1200_response.py +71 -0
- pyincusd-6.23.0/test/test_instance_snapshots_post.py +54 -0
- pyincusd-6.23.0/test/test_instance_source.py +70 -0
- pyincusd-6.23.0/test/test_instance_state.py +100 -0
- pyincusd-6.23.0/test/test_instance_state_cpu.py +53 -0
- pyincusd-6.23.0/test/test_instance_state_disk.py +53 -0
- pyincusd-6.23.0/test/test_instance_state_get200_response.py +104 -0
- pyincusd-6.23.0/test/test_instance_state_memory.py +56 -0
- pyincusd-6.23.0/test/test_instance_state_network.py +72 -0
- pyincusd-6.23.0/test/test_instance_state_network_address.py +55 -0
- pyincusd-6.23.0/test/test_instance_state_network_counters.py +59 -0
- pyincusd-6.23.0/test/test_instance_state_os_info.py +56 -0
- pyincusd-6.23.0/test/test_instance_state_put.py +55 -0
- pyincusd-6.23.0/test/test_instances_api.py +403 -0
- pyincusd-6.23.0/test/test_instances_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_instances_get_recursion1200_response.py +76 -0
- pyincusd-6.23.0/test/test_instances_get_recursion2200_response.py +150 -0
- pyincusd-6.23.0/test/test_instances_post.py +84 -0
- pyincusd-6.23.0/test/test_instances_put.py +56 -0
- pyincusd-6.23.0/test/test_metadata_config_group.py +63 -0
- pyincusd-6.23.0/test/test_metadata_config_key.py +58 -0
- pyincusd-6.23.0/test/test_metadata_configuration.py +68 -0
- pyincusd-6.23.0/test/test_metadata_configuration_get200_response.py +55 -0
- pyincusd-6.23.0/test/test_metrics_api.py +39 -0
- pyincusd-6.23.0/test/test_network.py +60 -0
- pyincusd-6.23.0/test/test_network_acl.py +82 -0
- pyincusd-6.23.0/test/test_network_acl_get200_response.py +86 -0
- pyincusd-6.23.0/test/test_network_acl_post.py +52 -0
- pyincusd-6.23.0/test/test_network_acl_put.py +79 -0
- pyincusd-6.23.0/test/test_network_acl_rule.py +61 -0
- pyincusd-6.23.0/test/test_network_acls_api.py +95 -0
- pyincusd-6.23.0/test/test_network_acls_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_acls_get_recursion1200_response.py +88 -0
- pyincusd-6.23.0/test/test_network_acls_post.py +80 -0
- pyincusd-6.23.0/test/test_network_address_set.py +57 -0
- pyincusd-6.23.0/test/test_network_address_set_get200_response.py +61 -0
- pyincusd-6.23.0/test/test_network_address_set_post.py +52 -0
- pyincusd-6.23.0/test/test_network_address_set_put.py +54 -0
- pyincusd-6.23.0/test/test_network_address_sets_api.py +88 -0
- pyincusd-6.23.0/test/test_network_address_sets_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_address_sets_get_recursion1200_response.py +63 -0
- pyincusd-6.23.0/test/test_network_address_sets_post.py +55 -0
- pyincusd-6.23.0/test/test_network_allocations.py +56 -0
- pyincusd-6.23.0/test/test_network_allocations_api.py +39 -0
- pyincusd-6.23.0/test/test_network_allocations_get200_response.py +62 -0
- pyincusd-6.23.0/test/test_network_forward.py +64 -0
- pyincusd-6.23.0/test/test_network_forward_get200_response.py +68 -0
- pyincusd-6.23.0/test/test_network_forward_get_recursion1200_response.py +70 -0
- pyincusd-6.23.0/test/test_network_forward_port.py +57 -0
- pyincusd-6.23.0/test/test_network_forward_put.py +62 -0
- pyincusd-6.23.0/test/test_network_forwards_api.py +81 -0
- pyincusd-6.23.0/test/test_network_forwards_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_forwards_post.py +63 -0
- pyincusd-6.23.0/test/test_network_get200_response.py +64 -0
- pyincusd-6.23.0/test/test_network_integration.py +56 -0
- pyincusd-6.23.0/test/test_network_integration_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_network_integration_post.py +52 -0
- pyincusd-6.23.0/test/test_network_integration_put.py +53 -0
- pyincusd-6.23.0/test/test_network_integrations_api.py +88 -0
- pyincusd-6.23.0/test/test_network_integrations_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_integrations_get_recursion1200_response.py +62 -0
- pyincusd-6.23.0/test/test_network_integrations_post.py +55 -0
- pyincusd-6.23.0/test/test_network_lease.py +56 -0
- pyincusd-6.23.0/test/test_network_load_balancer.py +69 -0
- pyincusd-6.23.0/test/test_network_load_balancer_backend.py +55 -0
- pyincusd-6.23.0/test/test_network_load_balancer_get200_response.py +73 -0
- pyincusd-6.23.0/test/test_network_load_balancer_get_recursion1200_response.py +75 -0
- pyincusd-6.23.0/test/test_network_load_balancer_port.py +55 -0
- pyincusd-6.23.0/test/test_network_load_balancer_put.py +67 -0
- pyincusd-6.23.0/test/test_network_load_balancer_state.py +61 -0
- pyincusd-6.23.0/test/test_network_load_balancer_state_backend_health.py +58 -0
- pyincusd-6.23.0/test/test_network_load_balancer_state_backend_health_port.py +54 -0
- pyincusd-6.23.0/test/test_network_load_balancer_state_get200_response.py +65 -0
- pyincusd-6.23.0/test/test_network_load_balancers_api.py +88 -0
- pyincusd-6.23.0/test/test_network_load_balancers_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_load_balancers_post.py +68 -0
- pyincusd-6.23.0/test/test_network_peer.py +60 -0
- pyincusd-6.23.0/test/test_network_peer_get200_response.py +64 -0
- pyincusd-6.23.0/test/test_network_peer_get_recursion1200_response.py +66 -0
- pyincusd-6.23.0/test/test_network_peer_put.py +53 -0
- pyincusd-6.23.0/test/test_network_peers_api.py +81 -0
- pyincusd-6.23.0/test/test_network_peers_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_peers_post.py +58 -0
- pyincusd-6.23.0/test/test_network_post.py +52 -0
- pyincusd-6.23.0/test/test_network_put.py +53 -0
- pyincusd-6.23.0/test/test_network_state.py +91 -0
- pyincusd-6.23.0/test/test_network_state_address.py +55 -0
- pyincusd-6.23.0/test/test_network_state_bond.py +58 -0
- pyincusd-6.23.0/test/test_network_state_bridge.py +57 -0
- pyincusd-6.23.0/test/test_network_state_counters.py +55 -0
- pyincusd-6.23.0/test/test_network_state_ovn.py +56 -0
- pyincusd-6.23.0/test/test_network_state_vlan.py +53 -0
- pyincusd-6.23.0/test/test_network_zone.py +56 -0
- pyincusd-6.23.0/test/test_network_zone_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_network_zone_put.py +53 -0
- pyincusd-6.23.0/test/test_network_zone_record.py +60 -0
- pyincusd-6.23.0/test/test_network_zone_record_entry.py +54 -0
- pyincusd-6.23.0/test/test_network_zone_record_get200_response.py +64 -0
- pyincusd-6.23.0/test/test_network_zone_record_put.py +59 -0
- pyincusd-6.23.0/test/test_network_zone_records_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_zone_records_get_recursion1200_response.py +66 -0
- pyincusd-6.23.0/test/test_network_zone_records_post.py +60 -0
- pyincusd-6.23.0/test/test_network_zones_api.py +130 -0
- pyincusd-6.23.0/test/test_network_zones_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_network_zones_get_recursion1200_response.py +62 -0
- pyincusd-6.23.0/test/test_network_zones_post.py +54 -0
- pyincusd-6.23.0/test/test_networks_api.py +102 -0
- pyincusd-6.23.0/test/test_networks_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_networks_get_recursion1200_response.py +66 -0
- pyincusd-6.23.0/test/test_networks_leases_get200_response.py +62 -0
- pyincusd-6.23.0/test/test_networks_post.py +55 -0
- pyincusd-6.23.0/test/test_networks_state_get200_response.py +95 -0
- pyincusd-6.23.0/test/test_operation.py +63 -0
- pyincusd-6.23.0/test/test_operation_get200_response.py +67 -0
- pyincusd-6.23.0/test/test_operations_api.py +88 -0
- pyincusd-6.23.0/test/test_operations_get200_response.py +55 -0
- pyincusd-6.23.0/test/test_operations_get_recursion1200_response.py +69 -0
- pyincusd-6.23.0/test/test_profile.py +57 -0
- pyincusd-6.23.0/test/test_profile_get200_response.py +61 -0
- pyincusd-6.23.0/test/test_profile_post.py +52 -0
- pyincusd-6.23.0/test/test_profile_put.py +54 -0
- pyincusd-6.23.0/test/test_profiles_api.py +88 -0
- pyincusd-6.23.0/test/test_profiles_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_profiles_get_recursion1200_response.py +63 -0
- pyincusd-6.23.0/test/test_profiles_post.py +55 -0
- pyincusd-6.23.0/test/test_project.py +55 -0
- pyincusd-6.23.0/test/test_project_get200_response.py +59 -0
- pyincusd-6.23.0/test/test_project_post.py +52 -0
- pyincusd-6.23.0/test/test_project_put.py +53 -0
- pyincusd-6.23.0/test/test_project_state.py +52 -0
- pyincusd-6.23.0/test/test_project_state_get200_response.py +56 -0
- pyincusd-6.23.0/test/test_project_state_resource.py +53 -0
- pyincusd-6.23.0/test/test_projects_api.py +102 -0
- pyincusd-6.23.0/test/test_projects_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_projects_get_recursion1200_response.py +61 -0
- pyincusd-6.23.0/test/test_projects_post.py +54 -0
- pyincusd-6.23.0/test/test_resources.py +326 -0
- pyincusd-6.23.0/test/test_resources_cpu.py +86 -0
- pyincusd-6.23.0/test/test_resources_cpu_address_sizes.py +53 -0
- pyincusd-6.23.0/test/test_resources_cpu_cache.py +54 -0
- pyincusd-6.23.0/test/test_resources_cpu_core.py +63 -0
- pyincusd-6.23.0/test/test_resources_cpu_socket.py +81 -0
- pyincusd-6.23.0/test/test_resources_cpu_thread.py +56 -0
- pyincusd-6.23.0/test/test_resources_get200_response.py +236 -0
- pyincusd-6.23.0/test/test_resources_gpu.py +104 -0
- pyincusd-6.23.0/test/test_resources_gpu_card.py +125 -0
- pyincusd-6.23.0/test/test_resources_gpu_card_drm.py +58 -0
- pyincusd-6.23.0/test/test_resources_gpu_card_mdev.py +56 -0
- pyincusd-6.23.0/test/test_resources_gpu_card_nvidia.py +59 -0
- pyincusd-6.23.0/test/test_resources_gpu_card_sriov.py +93 -0
- pyincusd-6.23.0/test/test_resources_load.py +55 -0
- pyincusd-6.23.0/test/test_resources_memory.py +64 -0
- pyincusd-6.23.0/test/test_resources_memory_node.py +56 -0
- pyincusd-6.23.0/test/test_resources_network.py +109 -0
- pyincusd-6.23.0/test/test_resources_network_card.py +127 -0
- pyincusd-6.23.0/test/test_resources_network_card_port.py +70 -0
- pyincusd-6.23.0/test/test_resources_network_card_port_infiniband.py +57 -0
- pyincusd-6.23.0/test/test_resources_network_card_sriov.py +94 -0
- pyincusd-6.23.0/test/test_resources_network_card_vdpa.py +53 -0
- pyincusd-6.23.0/test/test_resources_pci.py +67 -0
- pyincusd-6.23.0/test/test_resources_pci_device.py +63 -0
- pyincusd-6.23.0/test/test_resources_pcivpd.py +53 -0
- pyincusd-6.23.0/test/test_resources_serial.py +64 -0
- pyincusd-6.23.0/test/test_resources_serial_device.py +60 -0
- pyincusd-6.23.0/test/test_resources_storage.py +80 -0
- pyincusd-6.23.0/test/test_resources_storage_disk.py +76 -0
- pyincusd-6.23.0/test/test_resources_storage_disk_partition.py +56 -0
- pyincusd-6.23.0/test/test_resources_storage_pool.py +57 -0
- pyincusd-6.23.0/test/test_resources_storage_pool_inodes.py +53 -0
- pyincusd-6.23.0/test/test_resources_storage_pool_space.py +53 -0
- pyincusd-6.23.0/test/test_resources_system.py +73 -0
- pyincusd-6.23.0/test/test_resources_system_chassis.py +55 -0
- pyincusd-6.23.0/test/test_resources_system_firmware.py +54 -0
- pyincusd-6.23.0/test/test_resources_system_motherboard.py +55 -0
- pyincusd-6.23.0/test/test_resources_usb.py +73 -0
- pyincusd-6.23.0/test/test_resources_usb_device.py +69 -0
- pyincusd-6.23.0/test/test_resources_usb_device_interface.py +58 -0
- pyincusd-6.23.0/test/test_server.py +90 -0
- pyincusd-6.23.0/test/test_server_api.py +81 -0
- pyincusd-6.23.0/test/test_server_environment.py +80 -0
- pyincusd-6.23.0/test/test_server_get200_response.py +94 -0
- pyincusd-6.23.0/test/test_server_get500_response.py +54 -0
- pyincusd-6.23.0/test/test_server_get_untrusted200_response.py +62 -0
- pyincusd-6.23.0/test/test_server_put.py +52 -0
- pyincusd-6.23.0/test/test_server_put200_response.py +54 -0
- pyincusd-6.23.0/test/test_server_put400_response.py +54 -0
- pyincusd-6.23.0/test/test_server_put403_response.py +54 -0
- pyincusd-6.23.0/test/test_server_put412_response.py +54 -0
- pyincusd-6.23.0/test/test_server_storage_driver_info.py +54 -0
- pyincusd-6.23.0/test/test_server_untrusted.py +58 -0
- pyincusd-6.23.0/test/test_storage_api.py +480 -0
- pyincusd-6.23.0/test/test_storage_bucket.py +57 -0
- pyincusd-6.23.0/test/test_storage_bucket_backup.py +54 -0
- pyincusd-6.23.0/test/test_storage_bucket_backup_post.py +52 -0
- pyincusd-6.23.0/test/test_storage_bucket_backups_post.py +54 -0
- pyincusd-6.23.0/test/test_storage_bucket_full.py +71 -0
- pyincusd-6.23.0/test/test_storage_bucket_key.py +56 -0
- pyincusd-6.23.0/test/test_storage_bucket_key_put.py +55 -0
- pyincusd-6.23.0/test/test_storage_bucket_keys_post.py +56 -0
- pyincusd-6.23.0/test/test_storage_bucket_put.py +53 -0
- pyincusd-6.23.0/test/test_storage_buckets_post.py +54 -0
- pyincusd-6.23.0/test/test_storage_pool.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_bucket_get200_response.py +61 -0
- pyincusd-6.23.0/test/test_storage_pool_bucket_get_recursion1200_response.py +75 -0
- pyincusd-6.23.0/test/test_storage_pool_bucket_key_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_storage_pool_bucket_keys_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_bucket_keys_get_recursion1200_response.py +62 -0
- pyincusd-6.23.0/test/test_storage_pool_buckets_backup_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_buckets_backups_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_buckets_backups_get_recursion1200_response.py +60 -0
- pyincusd-6.23.0/test/test_storage_pool_buckets_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_buckets_get_recursion1200_response.py +63 -0
- pyincusd-6.23.0/test/test_storage_pool_buckets_get_recursion2200_response.py +77 -0
- pyincusd-6.23.0/test/test_storage_pool_get200_response.py +62 -0
- pyincusd-6.23.0/test/test_storage_pool_put.py +53 -0
- pyincusd-6.23.0/test/test_storage_pool_resources200_response.py +61 -0
- pyincusd-6.23.0/test/test_storage_pool_state.py +57 -0
- pyincusd-6.23.0/test/test_storage_pool_volume_type_get200_response.py +65 -0
- pyincusd-6.23.0/test/test_storage_pool_volume_type_get_recursion1200_response.py +86 -0
- pyincusd-6.23.0/test/test_storage_pool_volume_type_state_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_backup_get200_response.py +60 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_backups_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_backups_get_recursion1200_response.py +62 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_get_recursion1200_response.py +67 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_get_recursion2200_response.py +88 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_snapshot_get200_response.py +61 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_snapshots_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pool_volumes_type_snapshots_get_recursion1200_response.py +63 -0
- pyincusd-6.23.0/test/test_storage_pools_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_storage_pools_get_recursion1200_response.py +64 -0
- pyincusd-6.23.0/test/test_storage_pools_post.py +55 -0
- pyincusd-6.23.0/test/test_storage_volume.py +61 -0
- pyincusd-6.23.0/test/test_storage_volume_backup.py +56 -0
- pyincusd-6.23.0/test/test_storage_volume_backup_post.py +52 -0
- pyincusd-6.23.0/test/test_storage_volume_backups_post.py +63 -0
- pyincusd-6.23.0/test/test_storage_volume_full.py +82 -0
- pyincusd-6.23.0/test/test_storage_volume_post.py +73 -0
- pyincusd-6.23.0/test/test_storage_volume_post_target.py +54 -0
- pyincusd-6.23.0/test/test_storage_volume_put.py +54 -0
- pyincusd-6.23.0/test/test_storage_volume_snapshot.py +57 -0
- pyincusd-6.23.0/test/test_storage_volume_snapshot_post.py +57 -0
- pyincusd-6.23.0/test/test_storage_volume_snapshot_put.py +53 -0
- pyincusd-6.23.0/test/test_storage_volume_snapshots_post.py +53 -0
- pyincusd-6.23.0/test/test_storage_volume_source.py +63 -0
- pyincusd-6.23.0/test/test_storage_volume_state.py +54 -0
- pyincusd-6.23.0/test/test_storage_volume_state_usage.py +53 -0
- pyincusd-6.23.0/test/test_storage_volumes_post.py +70 -0
- pyincusd-6.23.0/test/test_warning.py +62 -0
- pyincusd-6.23.0/test/test_warning_get200_response.py +66 -0
- pyincusd-6.23.0/test/test_warning_put.py +52 -0
- pyincusd-6.23.0/test/test_warnings_api.py +74 -0
- pyincusd-6.23.0/test/test_warnings_get200_response.py +58 -0
- pyincusd-6.23.0/test/test_warnings_get_recursion1200_response.py +68 -0
pyincusd-6.23.0/PKG-INFO
ADDED
|
@@ -0,0 +1,740 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyincusd
|
|
3
|
+
Version: 6.23.0
|
|
4
|
+
Summary: Auto-generated Python client for the Incus daemon REST API
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: Incus upstream
|
|
7
|
+
Author-email: lxc-devel@lists.linuxcontainers.org
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Project-URL: Homepage, https://github.com/anonhostpi/pyincusd
|
|
10
|
+
Project-URL: Incus Docs, https://linuxcontainers.org/incus/docs/main/rest-api/
|
|
11
|
+
Project-URL: Source Spec, https://github.com/lxc/incus/blob/main/doc/rest-api.yaml
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: urllib3>=1.25.3
|
|
15
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
16
|
+
Requires-Dist: pydantic>=2
|
|
17
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
|
|
21
|
+
# pyincusd
|
|
22
|
+
This is the REST API used by all Incus clients.
|
|
23
|
+
Internal endpoints aren't included in this documentation.
|
|
24
|
+
|
|
25
|
+
The Incus API is available over both a local unix+http and remote https API.
|
|
26
|
+
Authentication for local users relies on group membership and access to the unix socket.
|
|
27
|
+
For remote users, the default authentication method is TLS client
|
|
28
|
+
certificates.
|
|
29
|
+
|
|
30
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
31
|
+
|
|
32
|
+
- API version: 1.0
|
|
33
|
+
- Package version: 6.23.0
|
|
34
|
+
- Generator version: 7.22.0-SNAPSHOT
|
|
35
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
36
|
+
For more information, please visit [https://github.com/lxc/incus](https://github.com/lxc/incus)
|
|
37
|
+
|
|
38
|
+
## Requirements.
|
|
39
|
+
|
|
40
|
+
Python 3.10+
|
|
41
|
+
|
|
42
|
+
## Installation & Usage
|
|
43
|
+
### pip install
|
|
44
|
+
|
|
45
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
46
|
+
|
|
47
|
+
```sh
|
|
48
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
49
|
+
```
|
|
50
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
51
|
+
|
|
52
|
+
Then import the package:
|
|
53
|
+
```python
|
|
54
|
+
import pyincusd
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Setuptools
|
|
58
|
+
|
|
59
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
60
|
+
|
|
61
|
+
```sh
|
|
62
|
+
python setup.py install --user
|
|
63
|
+
```
|
|
64
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
65
|
+
|
|
66
|
+
Then import the package:
|
|
67
|
+
```python
|
|
68
|
+
import pyincusd
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Tests
|
|
72
|
+
|
|
73
|
+
Execute `pytest` to run the tests.
|
|
74
|
+
|
|
75
|
+
## Getting Started
|
|
76
|
+
|
|
77
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
78
|
+
|
|
79
|
+
```python
|
|
80
|
+
|
|
81
|
+
import pyincusd
|
|
82
|
+
from pyincusd.rest import ApiException
|
|
83
|
+
from pprint import pprint
|
|
84
|
+
|
|
85
|
+
# Defining the host is optional and defaults to http://localhost
|
|
86
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
87
|
+
configuration = pyincusd.Configuration(
|
|
88
|
+
host = "http://localhost"
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
# Enter a context with an instance of the API client
|
|
94
|
+
with pyincusd.ApiClient(configuration) as api_client:
|
|
95
|
+
# Create an instance of the API class
|
|
96
|
+
api_instance = pyincusd.CertificatesApi(api_client)
|
|
97
|
+
|
|
98
|
+
try:
|
|
99
|
+
# Delete the trusted certificate
|
|
100
|
+
api_response = api_instance.certificate_delete()
|
|
101
|
+
print("The response of CertificatesApi->certificate_delete:\n")
|
|
102
|
+
pprint(api_response)
|
|
103
|
+
except ApiException as e:
|
|
104
|
+
print("Exception when calling CertificatesApi->certificate_delete: %s\n" % e)
|
|
105
|
+
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Documentation for API Endpoints
|
|
109
|
+
|
|
110
|
+
All URIs are relative to *http://localhost*
|
|
111
|
+
|
|
112
|
+
Class | Method | HTTP request | Description
|
|
113
|
+
------------ | ------------- | ------------- | -------------
|
|
114
|
+
*CertificatesApi* | [**certificate_delete**](docs/CertificatesApi.md#certificate_delete) | **DELETE** /1.0/certificates/{fingerprint} | Delete the trusted certificate
|
|
115
|
+
*CertificatesApi* | [**certificate_get**](docs/CertificatesApi.md#certificate_get) | **GET** /1.0/certificates/{fingerprint} | Get the trusted certificate
|
|
116
|
+
*CertificatesApi* | [**certificate_patch**](docs/CertificatesApi.md#certificate_patch) | **PATCH** /1.0/certificates/{fingerprint} | Partially update the trusted certificate
|
|
117
|
+
*CertificatesApi* | [**certificate_put**](docs/CertificatesApi.md#certificate_put) | **PUT** /1.0/certificates/{fingerprint} | Update the trusted certificate
|
|
118
|
+
*CertificatesApi* | [**certificates_get**](docs/CertificatesApi.md#certificates_get) | **GET** /1.0/certificates | Get the trusted certificates
|
|
119
|
+
*CertificatesApi* | [**certificates_get_recursion1**](docs/CertificatesApi.md#certificates_get_recursion1) | **GET** /1.0/certificates?recursion=1 | Get the trusted certificates
|
|
120
|
+
*CertificatesApi* | [**certificates_post**](docs/CertificatesApi.md#certificates_post) | **POST** /1.0/certificates | Add a trusted certificate
|
|
121
|
+
*CertificatesApi* | [**certificates_post_untrusted**](docs/CertificatesApi.md#certificates_post_untrusted) | **POST** /1.0/certificates?public | Add a trusted certificate
|
|
122
|
+
*ClusterApi* | [**cluster_get**](docs/ClusterApi.md#cluster_get) | **GET** /1.0/cluster | Get the cluster configuration
|
|
123
|
+
*ClusterApi* | [**cluster_groups_post**](docs/ClusterApi.md#cluster_groups_post) | **POST** /1.0/cluster/groups | Create a cluster group.
|
|
124
|
+
*ClusterApi* | [**cluster_member_delete**](docs/ClusterApi.md#cluster_member_delete) | **DELETE** /1.0/cluster/members/{name} | Delete the cluster member
|
|
125
|
+
*ClusterApi* | [**cluster_member_get**](docs/ClusterApi.md#cluster_member_get) | **GET** /1.0/cluster/members/{name} | Get the cluster member
|
|
126
|
+
*ClusterApi* | [**cluster_member_patch**](docs/ClusterApi.md#cluster_member_patch) | **PATCH** /1.0/cluster/members/{name} | Partially update the cluster member
|
|
127
|
+
*ClusterApi* | [**cluster_member_post**](docs/ClusterApi.md#cluster_member_post) | **POST** /1.0/cluster/members/{name} | Rename the cluster member
|
|
128
|
+
*ClusterApi* | [**cluster_member_put**](docs/ClusterApi.md#cluster_member_put) | **PUT** /1.0/cluster/members/{name} | Update the cluster member
|
|
129
|
+
*ClusterApi* | [**cluster_member_state_get**](docs/ClusterApi.md#cluster_member_state_get) | **GET** /1.0/cluster/members/{name}/state | Get state of the cluster member
|
|
130
|
+
*ClusterApi* | [**cluster_member_state_post**](docs/ClusterApi.md#cluster_member_state_post) | **POST** /1.0/cluster/members/{name}/state | Evacuate or restore a cluster member
|
|
131
|
+
*ClusterApi* | [**cluster_members_get**](docs/ClusterApi.md#cluster_members_get) | **GET** /1.0/cluster/members | Get the cluster members
|
|
132
|
+
*ClusterApi* | [**cluster_members_get_recursion1**](docs/ClusterApi.md#cluster_members_get_recursion1) | **GET** /1.0/cluster/members?recursion=1 | Get the cluster members
|
|
133
|
+
*ClusterApi* | [**cluster_members_post**](docs/ClusterApi.md#cluster_members_post) | **POST** /1.0/cluster/members | Request a join token
|
|
134
|
+
*ClusterApi* | [**cluster_put**](docs/ClusterApi.md#cluster_put) | **PUT** /1.0/cluster | Update the cluster configuration
|
|
135
|
+
*ClusterApi* | [**clustering_update_cert**](docs/ClusterApi.md#clustering_update_cert) | **PUT** /1.0/cluster/certificate | Update the certificate for the cluster
|
|
136
|
+
*ClusterGroupsApi* | [**cluster_group_delete**](docs/ClusterGroupsApi.md#cluster_group_delete) | **DELETE** /1.0/cluster/groups/{name} | Delete the cluster group.
|
|
137
|
+
*ClusterGroupsApi* | [**cluster_group_get**](docs/ClusterGroupsApi.md#cluster_group_get) | **GET** /1.0/cluster/groups/{name} | Get the cluster group
|
|
138
|
+
*ClusterGroupsApi* | [**cluster_group_patch**](docs/ClusterGroupsApi.md#cluster_group_patch) | **PATCH** /1.0/cluster/groups/{name} | Update the cluster group
|
|
139
|
+
*ClusterGroupsApi* | [**cluster_group_post**](docs/ClusterGroupsApi.md#cluster_group_post) | **POST** /1.0/cluster/groups/{name} | Rename the cluster group
|
|
140
|
+
*ClusterGroupsApi* | [**cluster_group_put**](docs/ClusterGroupsApi.md#cluster_group_put) | **PUT** /1.0/cluster/groups/{name} | Update the cluster group
|
|
141
|
+
*ClusterGroupsApi* | [**cluster_groups_get**](docs/ClusterGroupsApi.md#cluster_groups_get) | **GET** /1.0/cluster/groups | Get the cluster groups
|
|
142
|
+
*ClusterGroupsApi* | [**cluster_groups_get_recursion1**](docs/ClusterGroupsApi.md#cluster_groups_get_recursion1) | **GET** /1.0/cluster/groups?recursion=1 | Get the cluster groups
|
|
143
|
+
*DefaultApi* | [**metadata_configuration_get**](docs/DefaultApi.md#metadata_configuration_get) | **GET** /1.0/metadata/configuration | Get the metadata configuration
|
|
144
|
+
*ImagesApi* | [**image_alias_delete**](docs/ImagesApi.md#image_alias_delete) | **DELETE** /1.0/images/aliases/{name} | Delete the image alias
|
|
145
|
+
*ImagesApi* | [**image_alias_get**](docs/ImagesApi.md#image_alias_get) | **GET** /1.0/images/aliases/{name} | Get the image alias
|
|
146
|
+
*ImagesApi* | [**image_alias_get_untrusted**](docs/ImagesApi.md#image_alias_get_untrusted) | **GET** /1.0/images/aliases/{name}?public | Get the public image alias
|
|
147
|
+
*ImagesApi* | [**image_delete**](docs/ImagesApi.md#image_delete) | **DELETE** /1.0/images/{fingerprint} | Delete the image
|
|
148
|
+
*ImagesApi* | [**image_export_get**](docs/ImagesApi.md#image_export_get) | **GET** /1.0/images/{fingerprint}/export | Get the raw image file(s)
|
|
149
|
+
*ImagesApi* | [**image_export_get_untrusted**](docs/ImagesApi.md#image_export_get_untrusted) | **GET** /1.0/images/{fingerprint}/export?public | Get the raw image file(s)
|
|
150
|
+
*ImagesApi* | [**image_get**](docs/ImagesApi.md#image_get) | **GET** /1.0/images/{fingerprint} | Get the image
|
|
151
|
+
*ImagesApi* | [**image_get_untrusted**](docs/ImagesApi.md#image_get_untrusted) | **GET** /1.0/images/{fingerprint}?public | Get the public image
|
|
152
|
+
*ImagesApi* | [**image_patch**](docs/ImagesApi.md#image_patch) | **PATCH** /1.0/images/{fingerprint} | Partially update the image
|
|
153
|
+
*ImagesApi* | [**image_put**](docs/ImagesApi.md#image_put) | **PUT** /1.0/images/{fingerprint} | Update the image
|
|
154
|
+
*ImagesApi* | [**images_alias_patch**](docs/ImagesApi.md#images_alias_patch) | **PATCH** /1.0/images/aliases/{name} | Partially update the image alias
|
|
155
|
+
*ImagesApi* | [**images_alias_post**](docs/ImagesApi.md#images_alias_post) | **POST** /1.0/images/aliases/{name} | Rename the image alias
|
|
156
|
+
*ImagesApi* | [**images_aliases_get**](docs/ImagesApi.md#images_aliases_get) | **GET** /1.0/images/aliases | Get the image aliases
|
|
157
|
+
*ImagesApi* | [**images_aliases_get_recursion1**](docs/ImagesApi.md#images_aliases_get_recursion1) | **GET** /1.0/images/aliases?recursion=1 | Get the image aliases
|
|
158
|
+
*ImagesApi* | [**images_aliases_post**](docs/ImagesApi.md#images_aliases_post) | **POST** /1.0/images/aliases | Add an image alias
|
|
159
|
+
*ImagesApi* | [**images_aliases_put**](docs/ImagesApi.md#images_aliases_put) | **PUT** /1.0/images/aliases/{name} | Update the image alias
|
|
160
|
+
*ImagesApi* | [**images_export_post**](docs/ImagesApi.md#images_export_post) | **POST** /1.0/images/{fingerprint}/export | Make the server push the image to a remote server
|
|
161
|
+
*ImagesApi* | [**images_get**](docs/ImagesApi.md#images_get) | **GET** /1.0/images | Get the images
|
|
162
|
+
*ImagesApi* | [**images_get_recursion1**](docs/ImagesApi.md#images_get_recursion1) | **GET** /1.0/images?recursion=1 | Get the images
|
|
163
|
+
*ImagesApi* | [**images_get_recursion1_untrusted**](docs/ImagesApi.md#images_get_recursion1_untrusted) | **GET** /1.0/images?public&recursion=1 | Get the public images
|
|
164
|
+
*ImagesApi* | [**images_get_untrusted**](docs/ImagesApi.md#images_get_untrusted) | **GET** /1.0/images?public | Get the public images
|
|
165
|
+
*ImagesApi* | [**images_post**](docs/ImagesApi.md#images_post) | **POST** /1.0/images | Add an image
|
|
166
|
+
*ImagesApi* | [**images_post_untrusted**](docs/ImagesApi.md#images_post_untrusted) | **POST** /1.0/images?public | Add an image
|
|
167
|
+
*ImagesApi* | [**images_refresh_post**](docs/ImagesApi.md#images_refresh_post) | **POST** /1.0/images/{fingerprint}/refresh | Refresh an image
|
|
168
|
+
*ImagesApi* | [**images_secret_post**](docs/ImagesApi.md#images_secret_post) | **POST** /1.0/images/{fingerprint}/secret | Generate secret for retrieval of the image by an untrusted client
|
|
169
|
+
*InstancesApi* | [**instance_access**](docs/InstancesApi.md#instance_access) | **GET** /1.0/instances/{name}/access | Get who has access to an instance
|
|
170
|
+
*InstancesApi* | [**instance_backup_delete**](docs/InstancesApi.md#instance_backup_delete) | **DELETE** /1.0/instances/{name}/backups/{backup} | Delete a backup
|
|
171
|
+
*InstancesApi* | [**instance_backup_export**](docs/InstancesApi.md#instance_backup_export) | **GET** /1.0/instances/{name}/backups/{backup}/export | Get the raw backup file(s)
|
|
172
|
+
*InstancesApi* | [**instance_backup_get**](docs/InstancesApi.md#instance_backup_get) | **GET** /1.0/instances/{name}/backups/{backup} | Get the backup
|
|
173
|
+
*InstancesApi* | [**instance_backup_post**](docs/InstancesApi.md#instance_backup_post) | **POST** /1.0/instances/{name}/backups/{backup} | Rename a backup
|
|
174
|
+
*InstancesApi* | [**instance_backups_get**](docs/InstancesApi.md#instance_backups_get) | **GET** /1.0/instances/{name}/backups | Get the backups
|
|
175
|
+
*InstancesApi* | [**instance_backups_get_recursion1**](docs/InstancesApi.md#instance_backups_get_recursion1) | **GET** /1.0/instances/{name}/backups?recursion=1 | Get the backups
|
|
176
|
+
*InstancesApi* | [**instance_backups_post**](docs/InstancesApi.md#instance_backups_post) | **POST** /1.0/instances/{name}/backups | Create a backup
|
|
177
|
+
*InstancesApi* | [**instance_console_delete**](docs/InstancesApi.md#instance_console_delete) | **DELETE** /1.0/instances/{name}/console | Clear the console log
|
|
178
|
+
*InstancesApi* | [**instance_console_get**](docs/InstancesApi.md#instance_console_get) | **GET** /1.0/instances/{name}/console | Get console output
|
|
179
|
+
*InstancesApi* | [**instance_console_post**](docs/InstancesApi.md#instance_console_post) | **POST** /1.0/instances/{name}/console | Connect to console
|
|
180
|
+
*InstancesApi* | [**instance_debug_memory_get**](docs/InstancesApi.md#instance_debug_memory_get) | **GET** /1.0/instances/{name}/debug/memory | Get memory debug information of an instance
|
|
181
|
+
*InstancesApi* | [**instance_debug_repair_post**](docs/InstancesApi.md#instance_debug_repair_post) | **GET** /1.0/instances/{name}/debug/repair | Trigger a repair action on the instance.
|
|
182
|
+
*InstancesApi* | [**instance_delete**](docs/InstancesApi.md#instance_delete) | **DELETE** /1.0/instances/{name} | Delete an instance
|
|
183
|
+
*InstancesApi* | [**instance_exec_output_delete**](docs/InstancesApi.md#instance_exec_output_delete) | **DELETE** /1.0/instances/{name}/logs/exec-output/{filename} | Delete the exec record-output file
|
|
184
|
+
*InstancesApi* | [**instance_exec_output_get**](docs/InstancesApi.md#instance_exec_output_get) | **GET** /1.0/instances/{name}/logs/exec-output/{filename} | Get the exec-output log file
|
|
185
|
+
*InstancesApi* | [**instance_exec_outputs_get**](docs/InstancesApi.md#instance_exec_outputs_get) | **GET** /1.0/instances/{name}/logs/exec-output | Get the exec record-output files
|
|
186
|
+
*InstancesApi* | [**instance_exec_post**](docs/InstancesApi.md#instance_exec_post) | **POST** /1.0/instances/{name}/exec | Run a command
|
|
187
|
+
*InstancesApi* | [**instance_files_delete**](docs/InstancesApi.md#instance_files_delete) | **DELETE** /1.0/instances/{name}/files | Delete a file
|
|
188
|
+
*InstancesApi* | [**instance_files_get**](docs/InstancesApi.md#instance_files_get) | **GET** /1.0/instances/{name}/files | Get a file
|
|
189
|
+
*InstancesApi* | [**instance_files_head**](docs/InstancesApi.md#instance_files_head) | **HEAD** /1.0/instances/{name}/files | Get metadata for a file
|
|
190
|
+
*InstancesApi* | [**instance_files_post**](docs/InstancesApi.md#instance_files_post) | **POST** /1.0/instances/{name}/files | Create or replace a file
|
|
191
|
+
*InstancesApi* | [**instance_get**](docs/InstancesApi.md#instance_get) | **GET** /1.0/instances/{name} | Get the instance
|
|
192
|
+
*InstancesApi* | [**instance_get_recursion1**](docs/InstancesApi.md#instance_get_recursion1) | **GET** /1.0/instances/{name}?recursion=1 | Get the instance
|
|
193
|
+
*InstancesApi* | [**instance_log_delete**](docs/InstancesApi.md#instance_log_delete) | **DELETE** /1.0/instances/{name}/logs/{filename} | Delete the log file
|
|
194
|
+
*InstancesApi* | [**instance_log_get**](docs/InstancesApi.md#instance_log_get) | **GET** /1.0/instances/{name}/logs/{filename} | Get the log file
|
|
195
|
+
*InstancesApi* | [**instance_logs_get**](docs/InstancesApi.md#instance_logs_get) | **GET** /1.0/instances/{name}/logs | Get the log files
|
|
196
|
+
*InstancesApi* | [**instance_metadata_get**](docs/InstancesApi.md#instance_metadata_get) | **GET** /1.0/instances/{name}/metadata | Get the instance image metadata
|
|
197
|
+
*InstancesApi* | [**instance_metadata_patch**](docs/InstancesApi.md#instance_metadata_patch) | **PATCH** /1.0/instances/{name}/metadata | Partially update the image metadata
|
|
198
|
+
*InstancesApi* | [**instance_metadata_put**](docs/InstancesApi.md#instance_metadata_put) | **PUT** /1.0/instances/{name}/metadata | Update the image metadata
|
|
199
|
+
*InstancesApi* | [**instance_metadata_templates_delete**](docs/InstancesApi.md#instance_metadata_templates_delete) | **DELETE** /1.0/instances/{name}/metadata/templates | Delete a template file
|
|
200
|
+
*InstancesApi* | [**instance_metadata_templates_get**](docs/InstancesApi.md#instance_metadata_templates_get) | **GET** /1.0/instances/{name}/metadata/templates | Get the template file names or a specific
|
|
201
|
+
*InstancesApi* | [**instance_metadata_templates_post**](docs/InstancesApi.md#instance_metadata_templates_post) | **POST** /1.0/instances/{name}/metadata/templates | Create or replace a template file
|
|
202
|
+
*InstancesApi* | [**instance_patch**](docs/InstancesApi.md#instance_patch) | **PATCH** /1.0/instances/{name} | Partially update the instance
|
|
203
|
+
*InstancesApi* | [**instance_post**](docs/InstancesApi.md#instance_post) | **POST** /1.0/instances/{name} | Rename or move/migrate an instance
|
|
204
|
+
*InstancesApi* | [**instance_put**](docs/InstancesApi.md#instance_put) | **PUT** /1.0/instances/{name} | Update the instance
|
|
205
|
+
*InstancesApi* | [**instance_rebuild_post**](docs/InstancesApi.md#instance_rebuild_post) | **POST** /1.0/instances/{name}/rebuild | Rebuild an instance
|
|
206
|
+
*InstancesApi* | [**instance_sftp**](docs/InstancesApi.md#instance_sftp) | **GET** /1.0/instances/{name}/sftp | Get the instance SFTP connection
|
|
207
|
+
*InstancesApi* | [**instance_snapshot_delete**](docs/InstancesApi.md#instance_snapshot_delete) | **DELETE** /1.0/instances/{name}/snapshots/{snapshot} | Delete a snapshot
|
|
208
|
+
*InstancesApi* | [**instance_snapshot_get**](docs/InstancesApi.md#instance_snapshot_get) | **GET** /1.0/instances/{name}/snapshots/{snapshot} | Get the snapshot
|
|
209
|
+
*InstancesApi* | [**instance_snapshot_patch**](docs/InstancesApi.md#instance_snapshot_patch) | **PATCH** /1.0/instances/{name}/snapshots/{snapshot} | Partially update snapshot
|
|
210
|
+
*InstancesApi* | [**instance_snapshot_post**](docs/InstancesApi.md#instance_snapshot_post) | **POST** /1.0/instances/{name}/snapshots/{snapshot} | Rename or move/migrate a snapshot
|
|
211
|
+
*InstancesApi* | [**instance_snapshot_put**](docs/InstancesApi.md#instance_snapshot_put) | **PUT** /1.0/instances/{name}/snapshots/{snapshot} | Update snapshot
|
|
212
|
+
*InstancesApi* | [**instance_snapshots_get**](docs/InstancesApi.md#instance_snapshots_get) | **GET** /1.0/instances/{name}/snapshots | Get the snapshots
|
|
213
|
+
*InstancesApi* | [**instance_snapshots_get_recursion1**](docs/InstancesApi.md#instance_snapshots_get_recursion1) | **GET** /1.0/instances/{name}/snapshots?recursion=1 | Get the snapshots
|
|
214
|
+
*InstancesApi* | [**instance_snapshots_post**](docs/InstancesApi.md#instance_snapshots_post) | **POST** /1.0/instances/{name}/snapshots | Create a snapshot
|
|
215
|
+
*InstancesApi* | [**instance_state_get**](docs/InstancesApi.md#instance_state_get) | **GET** /1.0/instances/{name}/state | Get the runtime state
|
|
216
|
+
*InstancesApi* | [**instance_state_put**](docs/InstancesApi.md#instance_state_put) | **PUT** /1.0/instances/{name}/state | Change the state
|
|
217
|
+
*InstancesApi* | [**instances_get**](docs/InstancesApi.md#instances_get) | **GET** /1.0/instances | Get the instances
|
|
218
|
+
*InstancesApi* | [**instances_get_recursion1**](docs/InstancesApi.md#instances_get_recursion1) | **GET** /1.0/instances?recursion=1 | Get the instances
|
|
219
|
+
*InstancesApi* | [**instances_get_recursion2**](docs/InstancesApi.md#instances_get_recursion2) | **GET** /1.0/instances?recursion=2 | Get the instances
|
|
220
|
+
*InstancesApi* | [**instances_post**](docs/InstancesApi.md#instances_post) | **POST** /1.0/instances | Create a new instance
|
|
221
|
+
*InstancesApi* | [**instances_put**](docs/InstancesApi.md#instances_put) | **PUT** /1.0/instances | Bulk instance state update
|
|
222
|
+
*MetricsApi* | [**metrics_get**](docs/MetricsApi.md#metrics_get) | **GET** /1.0/metrics | Get metrics
|
|
223
|
+
*NetworkAclsApi* | [**network_acl_delete**](docs/NetworkAclsApi.md#network_acl_delete) | **DELETE** /1.0/network-acls/{name} | Delete the network ACL
|
|
224
|
+
*NetworkAclsApi* | [**network_acl_get**](docs/NetworkAclsApi.md#network_acl_get) | **GET** /1.0/network-acls/{name} | Get the network ACL
|
|
225
|
+
*NetworkAclsApi* | [**network_acl_log_get**](docs/NetworkAclsApi.md#network_acl_log_get) | **GET** /1.0/network-acls/{name}/log | Get the network ACL log
|
|
226
|
+
*NetworkAclsApi* | [**network_acl_patch**](docs/NetworkAclsApi.md#network_acl_patch) | **PATCH** /1.0/network-acls/{name} | Partially update the network ACL
|
|
227
|
+
*NetworkAclsApi* | [**network_acl_post**](docs/NetworkAclsApi.md#network_acl_post) | **POST** /1.0/network-acls/{name} | Rename the network ACL
|
|
228
|
+
*NetworkAclsApi* | [**network_acl_put**](docs/NetworkAclsApi.md#network_acl_put) | **PUT** /1.0/network-acls/{name} | Update the network ACL
|
|
229
|
+
*NetworkAclsApi* | [**network_acls_get**](docs/NetworkAclsApi.md#network_acls_get) | **GET** /1.0/network-acls | Get the network ACLs
|
|
230
|
+
*NetworkAclsApi* | [**network_acls_get_recursion1**](docs/NetworkAclsApi.md#network_acls_get_recursion1) | **GET** /1.0/network-acls?recursion=1 | Get the network ACLs
|
|
231
|
+
*NetworkAclsApi* | [**network_acls_post**](docs/NetworkAclsApi.md#network_acls_post) | **POST** /1.0/network-acls | Add a network ACL
|
|
232
|
+
*NetworkAddressSetsApi* | [**network_address_set_delete**](docs/NetworkAddressSetsApi.md#network_address_set_delete) | **DELETE** /1.0/network-address-sets/{name} | Delete the network address set
|
|
233
|
+
*NetworkAddressSetsApi* | [**network_address_set_get**](docs/NetworkAddressSetsApi.md#network_address_set_get) | **GET** /1.0/network-address-sets/{name} | Get the network address set
|
|
234
|
+
*NetworkAddressSetsApi* | [**network_address_set_patch**](docs/NetworkAddressSetsApi.md#network_address_set_patch) | **PATCH** /1.0/network-address-sets/{name} | Partially update the network address set
|
|
235
|
+
*NetworkAddressSetsApi* | [**network_address_set_post**](docs/NetworkAddressSetsApi.md#network_address_set_post) | **POST** /1.0/network-address-sets/{name} | Rename the network address set
|
|
236
|
+
*NetworkAddressSetsApi* | [**network_address_set_put**](docs/NetworkAddressSetsApi.md#network_address_set_put) | **PUT** /1.0/network-address-sets/{name} | Update the network address set
|
|
237
|
+
*NetworkAddressSetsApi* | [**network_address_sets_get**](docs/NetworkAddressSetsApi.md#network_address_sets_get) | **GET** /1.0/network-address-sets | Get the network address sets
|
|
238
|
+
*NetworkAddressSetsApi* | [**network_address_sets_get_recursion1**](docs/NetworkAddressSetsApi.md#network_address_sets_get_recursion1) | **GET** /1.0/network-address-sets?recursion=1 | Get the network address sets
|
|
239
|
+
*NetworkAddressSetsApi* | [**network_address_sets_post**](docs/NetworkAddressSetsApi.md#network_address_sets_post) | **POST** /1.0/network-address-sets | Add a network address set
|
|
240
|
+
*NetworkAllocationsApi* | [**network_allocations_get**](docs/NetworkAllocationsApi.md#network_allocations_get) | **GET** /1.0/network-allocations | Get the network allocations in use (`network`, `network-forward` and `load-balancer` and `instance`)
|
|
241
|
+
*NetworkForwardsApi* | [**network_forward_delete**](docs/NetworkForwardsApi.md#network_forward_delete) | **DELETE** /1.0/networks/{networkName}/forwards/{listenAddress} | Delete the network address forward
|
|
242
|
+
*NetworkForwardsApi* | [**network_forward_get**](docs/NetworkForwardsApi.md#network_forward_get) | **GET** /1.0/networks/{networkName}/forwards/{listenAddress} | Get the network address forward
|
|
243
|
+
*NetworkForwardsApi* | [**network_forward_get_recursion1**](docs/NetworkForwardsApi.md#network_forward_get_recursion1) | **GET** /1.0/networks/{networkName}/forwards?recursion=1 | Get the network address forwards
|
|
244
|
+
*NetworkForwardsApi* | [**network_forward_patch**](docs/NetworkForwardsApi.md#network_forward_patch) | **PATCH** /1.0/networks/{networkName}/forwards/{listenAddress} | Partially update the network address forward
|
|
245
|
+
*NetworkForwardsApi* | [**network_forward_put**](docs/NetworkForwardsApi.md#network_forward_put) | **PUT** /1.0/networks/{networkName}/forwards/{listenAddress} | Update the network address forward
|
|
246
|
+
*NetworkForwardsApi* | [**network_forwards_get**](docs/NetworkForwardsApi.md#network_forwards_get) | **GET** /1.0/networks/{networkName}/forwards | Get the network address forwards
|
|
247
|
+
*NetworkForwardsApi* | [**network_forwards_post**](docs/NetworkForwardsApi.md#network_forwards_post) | **POST** /1.0/networks/{networkName}/forwards | Add a network address forward
|
|
248
|
+
*NetworkIntegrationsApi* | [**network_integration_delete**](docs/NetworkIntegrationsApi.md#network_integration_delete) | **DELETE** /1.0/network-integrations/{integration} | Delete the network integration
|
|
249
|
+
*NetworkIntegrationsApi* | [**network_integration_get**](docs/NetworkIntegrationsApi.md#network_integration_get) | **GET** /1.0/network-integrations/{integration} | Get the network integration
|
|
250
|
+
*NetworkIntegrationsApi* | [**network_integration_patch**](docs/NetworkIntegrationsApi.md#network_integration_patch) | **PATCH** /1.0/network-integrations/{integration} | Partially update the network integration
|
|
251
|
+
*NetworkIntegrationsApi* | [**network_integration_post**](docs/NetworkIntegrationsApi.md#network_integration_post) | **POST** /1.0/network-integrations/{integration} | Rename the network integration
|
|
252
|
+
*NetworkIntegrationsApi* | [**network_integration_put**](docs/NetworkIntegrationsApi.md#network_integration_put) | **PUT** /1.0/network-integrations/{integration} | Update the network integration
|
|
253
|
+
*NetworkIntegrationsApi* | [**network_integrations_get**](docs/NetworkIntegrationsApi.md#network_integrations_get) | **GET** /1.0/network-integrations | Get the network integrations
|
|
254
|
+
*NetworkIntegrationsApi* | [**network_integrations_get_recursion1**](docs/NetworkIntegrationsApi.md#network_integrations_get_recursion1) | **GET** /1.0/network-integrations?recursion=1 | Get the network integrations
|
|
255
|
+
*NetworkIntegrationsApi* | [**network_integrations_post**](docs/NetworkIntegrationsApi.md#network_integrations_post) | **POST** /1.0/network-integrations | Add a network integration
|
|
256
|
+
*NetworkLoadBalancersApi* | [**network_load_balancer_delete**](docs/NetworkLoadBalancersApi.md#network_load_balancer_delete) | **DELETE** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Delete the network address load balancer
|
|
257
|
+
*NetworkLoadBalancersApi* | [**network_load_balancer_get**](docs/NetworkLoadBalancersApi.md#network_load_balancer_get) | **GET** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Get the network address load balancer
|
|
258
|
+
*NetworkLoadBalancersApi* | [**network_load_balancer_get_recursion1**](docs/NetworkLoadBalancersApi.md#network_load_balancer_get_recursion1) | **GET** /1.0/networks/{networkName}/load-balancers?recursion=1 | Get the network address load balancers
|
|
259
|
+
*NetworkLoadBalancersApi* | [**network_load_balancer_patch**](docs/NetworkLoadBalancersApi.md#network_load_balancer_patch) | **PATCH** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Partially update the network address load balancer
|
|
260
|
+
*NetworkLoadBalancersApi* | [**network_load_balancer_put**](docs/NetworkLoadBalancersApi.md#network_load_balancer_put) | **PUT** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Update the network address load balancer
|
|
261
|
+
*NetworkLoadBalancersApi* | [**network_load_balancer_state_get**](docs/NetworkLoadBalancersApi.md#network_load_balancer_state_get) | **GET** /1.0/networks/{networkName}/load-balancers/{listenAddress}/state | Get the network address load balancer state
|
|
262
|
+
*NetworkLoadBalancersApi* | [**network_load_balancers_get**](docs/NetworkLoadBalancersApi.md#network_load_balancers_get) | **GET** /1.0/networks/{networkName}/load-balancers | Get the network address of load balancers
|
|
263
|
+
*NetworkLoadBalancersApi* | [**network_load_balancers_post**](docs/NetworkLoadBalancersApi.md#network_load_balancers_post) | **POST** /1.0/networks/{networkName}/load-balancers | Add a network load balancer
|
|
264
|
+
*NetworkPeersApi* | [**network_peer_delete**](docs/NetworkPeersApi.md#network_peer_delete) | **DELETE** /1.0/networks/{networkName}/peers/{peerName} | Delete the network peer
|
|
265
|
+
*NetworkPeersApi* | [**network_peer_get**](docs/NetworkPeersApi.md#network_peer_get) | **GET** /1.0/networks/{networkName}/peers/{peerName} | Get the network peer
|
|
266
|
+
*NetworkPeersApi* | [**network_peer_get_recursion1**](docs/NetworkPeersApi.md#network_peer_get_recursion1) | **GET** /1.0/networks/{networkName}/peers?recursion=1 | Get the network peers
|
|
267
|
+
*NetworkPeersApi* | [**network_peer_patch**](docs/NetworkPeersApi.md#network_peer_patch) | **PATCH** /1.0/networks/{networkName}/peers/{peerName} | Partially update the network peer
|
|
268
|
+
*NetworkPeersApi* | [**network_peer_put**](docs/NetworkPeersApi.md#network_peer_put) | **PUT** /1.0/networks/{networkName}/peers/{peerName} | Update the network peer
|
|
269
|
+
*NetworkPeersApi* | [**network_peers_get**](docs/NetworkPeersApi.md#network_peers_get) | **GET** /1.0/networks/{networkName}/peers | Get the network peers
|
|
270
|
+
*NetworkPeersApi* | [**network_peers_post**](docs/NetworkPeersApi.md#network_peers_post) | **POST** /1.0/networks/{networkName}/peers | Add a network peer
|
|
271
|
+
*NetworkZonesApi* | [**network_zone_delete**](docs/NetworkZonesApi.md#network_zone_delete) | **DELETE** /1.0/network-zones/{zone} | Delete the network zone
|
|
272
|
+
*NetworkZonesApi* | [**network_zone_get**](docs/NetworkZonesApi.md#network_zone_get) | **GET** /1.0/network-zones/{zone} | Get the network zone
|
|
273
|
+
*NetworkZonesApi* | [**network_zone_patch**](docs/NetworkZonesApi.md#network_zone_patch) | **PATCH** /1.0/network-zones/{zone} | Partially update the network zone
|
|
274
|
+
*NetworkZonesApi* | [**network_zone_put**](docs/NetworkZonesApi.md#network_zone_put) | **PUT** /1.0/network-zones/{zone} | Update the network zone
|
|
275
|
+
*NetworkZonesApi* | [**network_zone_record_delete**](docs/NetworkZonesApi.md#network_zone_record_delete) | **DELETE** /1.0/network-zones/{zone}/records/{name} | Delete the network zone record
|
|
276
|
+
*NetworkZonesApi* | [**network_zone_record_get**](docs/NetworkZonesApi.md#network_zone_record_get) | **GET** /1.0/network-zones/{zone}/records/{name} | Get the network zone record
|
|
277
|
+
*NetworkZonesApi* | [**network_zone_record_patch**](docs/NetworkZonesApi.md#network_zone_record_patch) | **PATCH** /1.0/network-zones/{zone}/records/{name} | Partially update the network zone record
|
|
278
|
+
*NetworkZonesApi* | [**network_zone_record_put**](docs/NetworkZonesApi.md#network_zone_record_put) | **PUT** /1.0/network-zones/{zone}/records/{name} | Update the network zone record
|
|
279
|
+
*NetworkZonesApi* | [**network_zone_records_get**](docs/NetworkZonesApi.md#network_zone_records_get) | **GET** /1.0/network-zones/{zone}/records | Get the network zone records
|
|
280
|
+
*NetworkZonesApi* | [**network_zone_records_get_recursion1**](docs/NetworkZonesApi.md#network_zone_records_get_recursion1) | **GET** /1.0/network-zones/{zone}/records?recursion=1 | Get the network zone records
|
|
281
|
+
*NetworkZonesApi* | [**network_zone_records_post**](docs/NetworkZonesApi.md#network_zone_records_post) | **POST** /1.0/network-zones/{zone}/records | Add a network zone record
|
|
282
|
+
*NetworkZonesApi* | [**network_zones_get**](docs/NetworkZonesApi.md#network_zones_get) | **GET** /1.0/network-zones | Get the network zones
|
|
283
|
+
*NetworkZonesApi* | [**network_zones_get_recursion1**](docs/NetworkZonesApi.md#network_zones_get_recursion1) | **GET** /1.0/network-zones?recursion=1 | Get the network zones
|
|
284
|
+
*NetworkZonesApi* | [**network_zones_post**](docs/NetworkZonesApi.md#network_zones_post) | **POST** /1.0/network-zones | Add a network zone
|
|
285
|
+
*NetworksApi* | [**network_delete**](docs/NetworksApi.md#network_delete) | **DELETE** /1.0/networks/{name} | Delete the network
|
|
286
|
+
*NetworksApi* | [**network_get**](docs/NetworksApi.md#network_get) | **GET** /1.0/networks/{name} | Get the network
|
|
287
|
+
*NetworksApi* | [**network_patch**](docs/NetworksApi.md#network_patch) | **PATCH** /1.0/networks/{name} | Partially update the network
|
|
288
|
+
*NetworksApi* | [**network_post**](docs/NetworksApi.md#network_post) | **POST** /1.0/networks/{name} | Rename the network
|
|
289
|
+
*NetworksApi* | [**network_put**](docs/NetworksApi.md#network_put) | **PUT** /1.0/networks/{name} | Update the network
|
|
290
|
+
*NetworksApi* | [**networks_get**](docs/NetworksApi.md#networks_get) | **GET** /1.0/networks | Get the networks
|
|
291
|
+
*NetworksApi* | [**networks_get_recursion1**](docs/NetworksApi.md#networks_get_recursion1) | **GET** /1.0/networks?recursion=1 | Get the networks
|
|
292
|
+
*NetworksApi* | [**networks_leases_get**](docs/NetworksApi.md#networks_leases_get) | **GET** /1.0/networks/{name}/leases | Get the DHCP leases
|
|
293
|
+
*NetworksApi* | [**networks_post**](docs/NetworksApi.md#networks_post) | **POST** /1.0/networks | Add a network
|
|
294
|
+
*NetworksApi* | [**networks_state_get**](docs/NetworksApi.md#networks_state_get) | **GET** /1.0/networks/{name}/state | Get the network state
|
|
295
|
+
*OperationsApi* | [**operation_delete**](docs/OperationsApi.md#operation_delete) | **DELETE** /1.0/operations/{id} | Cancel the operation
|
|
296
|
+
*OperationsApi* | [**operation_get**](docs/OperationsApi.md#operation_get) | **GET** /1.0/operations/{id} | Get the operation state
|
|
297
|
+
*OperationsApi* | [**operation_wait_get**](docs/OperationsApi.md#operation_wait_get) | **GET** /1.0/operations/{id}/wait | Wait for the operation
|
|
298
|
+
*OperationsApi* | [**operation_wait_get_untrusted**](docs/OperationsApi.md#operation_wait_get_untrusted) | **GET** /1.0/operations/{id}/wait?public | Wait for the operation
|
|
299
|
+
*OperationsApi* | [**operation_websocket_get**](docs/OperationsApi.md#operation_websocket_get) | **GET** /1.0/operations/{id}/websocket | Get the websocket stream
|
|
300
|
+
*OperationsApi* | [**operation_websocket_get_untrusted**](docs/OperationsApi.md#operation_websocket_get_untrusted) | **GET** /1.0/operations/{id}/websocket?public | Get the websocket stream
|
|
301
|
+
*OperationsApi* | [**operations_get**](docs/OperationsApi.md#operations_get) | **GET** /1.0/operations | Get the operations
|
|
302
|
+
*OperationsApi* | [**operations_get_recursion1**](docs/OperationsApi.md#operations_get_recursion1) | **GET** /1.0/operations?recursion=1 | Get the operations
|
|
303
|
+
*ProfilesApi* | [**profile_delete**](docs/ProfilesApi.md#profile_delete) | **DELETE** /1.0/profiles/{name} | Delete the profile
|
|
304
|
+
*ProfilesApi* | [**profile_get**](docs/ProfilesApi.md#profile_get) | **GET** /1.0/profiles/{name} | Get the profile
|
|
305
|
+
*ProfilesApi* | [**profile_patch**](docs/ProfilesApi.md#profile_patch) | **PATCH** /1.0/profiles/{name} | Partially update the profile
|
|
306
|
+
*ProfilesApi* | [**profile_post**](docs/ProfilesApi.md#profile_post) | **POST** /1.0/profiles/{name} | Rename the profile
|
|
307
|
+
*ProfilesApi* | [**profile_put**](docs/ProfilesApi.md#profile_put) | **PUT** /1.0/profiles/{name} | Update the profile
|
|
308
|
+
*ProfilesApi* | [**profiles_get**](docs/ProfilesApi.md#profiles_get) | **GET** /1.0/profiles | Get the profiles
|
|
309
|
+
*ProfilesApi* | [**profiles_get_recursion1**](docs/ProfilesApi.md#profiles_get_recursion1) | **GET** /1.0/profiles?recursion=1 | Get the profiles
|
|
310
|
+
*ProfilesApi* | [**profiles_post**](docs/ProfilesApi.md#profiles_post) | **POST** /1.0/profiles | Add a profile
|
|
311
|
+
*ProjectsApi* | [**project_access**](docs/ProjectsApi.md#project_access) | **GET** /1.0/projects/{name}/access | Get who has access to a project
|
|
312
|
+
*ProjectsApi* | [**project_delete**](docs/ProjectsApi.md#project_delete) | **DELETE** /1.0/projects/{name} | Delete the project
|
|
313
|
+
*ProjectsApi* | [**project_get**](docs/ProjectsApi.md#project_get) | **GET** /1.0/projects/{name} | Get the project
|
|
314
|
+
*ProjectsApi* | [**project_patch**](docs/ProjectsApi.md#project_patch) | **PATCH** /1.0/projects/{name} | Partially update the project
|
|
315
|
+
*ProjectsApi* | [**project_post**](docs/ProjectsApi.md#project_post) | **POST** /1.0/projects/{name} | Rename the project
|
|
316
|
+
*ProjectsApi* | [**project_put**](docs/ProjectsApi.md#project_put) | **PUT** /1.0/projects/{name} | Update the project
|
|
317
|
+
*ProjectsApi* | [**project_state_get**](docs/ProjectsApi.md#project_state_get) | **GET** /1.0/projects/{name}/state | Get the project state
|
|
318
|
+
*ProjectsApi* | [**projects_get**](docs/ProjectsApi.md#projects_get) | **GET** /1.0/projects | Get the projects
|
|
319
|
+
*ProjectsApi* | [**projects_get_recursion1**](docs/ProjectsApi.md#projects_get_recursion1) | **GET** /1.0/projects?recursion=1 | Get the projects
|
|
320
|
+
*ProjectsApi* | [**projects_post**](docs/ProjectsApi.md#projects_post) | **POST** /1.0/projects | Add a project
|
|
321
|
+
*ServerApi* | [**api_get**](docs/ServerApi.md#api_get) | **GET** / | Get the supported API endpoints
|
|
322
|
+
*ServerApi* | [**events_get**](docs/ServerApi.md#events_get) | **GET** /1.0/events | Get the event stream
|
|
323
|
+
*ServerApi* | [**resources_get**](docs/ServerApi.md#resources_get) | **GET** /1.0/resources | Get system resources information
|
|
324
|
+
*ServerApi* | [**server_get**](docs/ServerApi.md#server_get) | **GET** /1.0 | Get the server environment and configuration
|
|
325
|
+
*ServerApi* | [**server_get_untrusted**](docs/ServerApi.md#server_get_untrusted) | **GET** /1.0?public | Get the server environment
|
|
326
|
+
*ServerApi* | [**server_patch**](docs/ServerApi.md#server_patch) | **PATCH** /1.0 | Partially update the server configuration
|
|
327
|
+
*ServerApi* | [**server_put**](docs/ServerApi.md#server_put) | **PUT** /1.0 | Update the server configuration
|
|
328
|
+
*StorageApi* | [**storage_pool_bucket_delete**](docs/StorageApi.md#storage_pool_bucket_delete) | **DELETE** /1.0/storage-pools/{name}/buckets/{bucketName} | Delete the storage bucket
|
|
329
|
+
*StorageApi* | [**storage_pool_bucket_get**](docs/StorageApi.md#storage_pool_bucket_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName} | Get the storage pool bucket
|
|
330
|
+
*StorageApi* | [**storage_pool_bucket_get_recursion1**](docs/StorageApi.md#storage_pool_bucket_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}?recursion=1 | Get the full storage pool bucket details
|
|
331
|
+
*StorageApi* | [**storage_pool_bucket_key_delete**](docs/StorageApi.md#storage_pool_bucket_key_delete) | **DELETE** /1.0/storage-pools/{name}/buckets/{bucketName}/keys/{keyName} | Delete the storage bucket key
|
|
332
|
+
*StorageApi* | [**storage_pool_bucket_key_get**](docs/StorageApi.md#storage_pool_bucket_key_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys/{keyName} | Get the storage pool bucket key
|
|
333
|
+
*StorageApi* | [**storage_pool_bucket_key_post**](docs/StorageApi.md#storage_pool_bucket_key_post) | **POST** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys | Add a storage pool bucket key.
|
|
334
|
+
*StorageApi* | [**storage_pool_bucket_key_put**](docs/StorageApi.md#storage_pool_bucket_key_put) | **PUT** /1.0/storage-pools/{name}/buckets/{bucketName}/keys/{keyName} | Update the storage bucket key
|
|
335
|
+
*StorageApi* | [**storage_pool_bucket_keys_get**](docs/StorageApi.md#storage_pool_bucket_keys_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys | Get the storage pool bucket keys
|
|
336
|
+
*StorageApi* | [**storage_pool_bucket_keys_get_recursion1**](docs/StorageApi.md#storage_pool_bucket_keys_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys?recursion=1 | Get the storage pool bucket keys
|
|
337
|
+
*StorageApi* | [**storage_pool_bucket_patch**](docs/StorageApi.md#storage_pool_bucket_patch) | **PATCH** /1.0/storage-pools/{name}/buckets/{bucketName} | Partially update the storage bucket.
|
|
338
|
+
*StorageApi* | [**storage_pool_bucket_post**](docs/StorageApi.md#storage_pool_bucket_post) | **POST** /1.0/storage-pools/{poolName}/buckets | Add a storage pool bucket.
|
|
339
|
+
*StorageApi* | [**storage_pool_bucket_put**](docs/StorageApi.md#storage_pool_bucket_put) | **PUT** /1.0/storage-pools/{name}/buckets/{bucketName} | Update the storage bucket
|
|
340
|
+
*StorageApi* | [**storage_pool_buckets_backup_delete**](docs/StorageApi.md#storage_pool_buckets_backup_delete) | **DELETE** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName} | Delete a storage bucket backup
|
|
341
|
+
*StorageApi* | [**storage_pool_buckets_backup_export_get**](docs/StorageApi.md#storage_pool_buckets_backup_export_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName}/export | Get the raw backup file
|
|
342
|
+
*StorageApi* | [**storage_pool_buckets_backup_get**](docs/StorageApi.md#storage_pool_buckets_backup_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName} | Get the storage bucket backup
|
|
343
|
+
*StorageApi* | [**storage_pool_buckets_backup_post**](docs/StorageApi.md#storage_pool_buckets_backup_post) | **POST** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName} | Rename a storage bucket backup
|
|
344
|
+
*StorageApi* | [**storage_pool_buckets_backups_get**](docs/StorageApi.md#storage_pool_buckets_backups_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups | Get the storage bucket backups
|
|
345
|
+
*StorageApi* | [**storage_pool_buckets_backups_get_recursion1**](docs/StorageApi.md#storage_pool_buckets_backups_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups?recursion=1 | Get the storage bucket backups
|
|
346
|
+
*StorageApi* | [**storage_pool_buckets_backups_post**](docs/StorageApi.md#storage_pool_buckets_backups_post) | **POST** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups | Create a storage bucket backup
|
|
347
|
+
*StorageApi* | [**storage_pool_buckets_get**](docs/StorageApi.md#storage_pool_buckets_get) | **GET** /1.0/storage-pools/{poolName}/buckets | Get the storage pool buckets
|
|
348
|
+
*StorageApi* | [**storage_pool_buckets_get_recursion1**](docs/StorageApi.md#storage_pool_buckets_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets?recursion=1 | Get the storage pool buckets
|
|
349
|
+
*StorageApi* | [**storage_pool_buckets_get_recursion2**](docs/StorageApi.md#storage_pool_buckets_get_recursion2) | **GET** /1.0/storage-pools/{poolName}/buckets?recursion=2 | Get the storage pool bucket details
|
|
350
|
+
*StorageApi* | [**storage_pool_get**](docs/StorageApi.md#storage_pool_get) | **GET** /1.0/storage-pools/{poolName} | Get the storage pool
|
|
351
|
+
*StorageApi* | [**storage_pool_patch**](docs/StorageApi.md#storage_pool_patch) | **PATCH** /1.0/storage-pools/{poolName} | Partially update the storage pool
|
|
352
|
+
*StorageApi* | [**storage_pool_put**](docs/StorageApi.md#storage_pool_put) | **PUT** /1.0/storage-pools/{poolName} | Update the storage pool
|
|
353
|
+
*StorageApi* | [**storage_pool_resources**](docs/StorageApi.md#storage_pool_resources) | **GET** /1.0/storage-pools/{name}/resources | Get storage pool resources information
|
|
354
|
+
*StorageApi* | [**storage_pool_volume_type_delete**](docs/StorageApi.md#storage_pool_volume_type_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Delete the storage volume
|
|
355
|
+
*StorageApi* | [**storage_pool_volume_type_files_delete**](docs/StorageApi.md#storage_pool_volume_type_files_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Delete a file
|
|
356
|
+
*StorageApi* | [**storage_pool_volume_type_files_get**](docs/StorageApi.md#storage_pool_volume_type_files_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Get a file
|
|
357
|
+
*StorageApi* | [**storage_pool_volume_type_files_head**](docs/StorageApi.md#storage_pool_volume_type_files_head) | **HEAD** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Get metadata for a file
|
|
358
|
+
*StorageApi* | [**storage_pool_volume_type_files_post**](docs/StorageApi.md#storage_pool_volume_type_files_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Create or replace a file
|
|
359
|
+
*StorageApi* | [**storage_pool_volume_type_get**](docs/StorageApi.md#storage_pool_volume_type_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Get the storage volume
|
|
360
|
+
*StorageApi* | [**storage_pool_volume_type_get_recursion1**](docs/StorageApi.md#storage_pool_volume_type_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}?recursion=1 | Get the full storage volume details
|
|
361
|
+
*StorageApi* | [**storage_pool_volume_type_patch**](docs/StorageApi.md#storage_pool_volume_type_patch) | **PATCH** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Partially update the storage volume
|
|
362
|
+
*StorageApi* | [**storage_pool_volume_type_post**](docs/StorageApi.md#storage_pool_volume_type_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Rename or move/migrate a storage volume
|
|
363
|
+
*StorageApi* | [**storage_pool_volume_type_put**](docs/StorageApi.md#storage_pool_volume_type_put) | **PUT** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Update the storage volume
|
|
364
|
+
*StorageApi* | [**storage_pool_volume_type_sftp_get**](docs/StorageApi.md#storage_pool_volume_type_sftp_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/sftp | Get the storage volume SFTP connection
|
|
365
|
+
*StorageApi* | [**storage_pool_volume_type_state_get**](docs/StorageApi.md#storage_pool_volume_type_state_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/state | Get the storage volume state
|
|
366
|
+
*StorageApi* | [**storage_pool_volumes_get**](docs/StorageApi.md#storage_pool_volumes_get) | **GET** /1.0/storage-pools/{poolName}/volumes | Get the storage volumes
|
|
367
|
+
*StorageApi* | [**storage_pool_volumes_get_recursion1**](docs/StorageApi.md#storage_pool_volumes_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes?recursion=1 | Get the storage volumes
|
|
368
|
+
*StorageApi* | [**storage_pool_volumes_post**](docs/StorageApi.md#storage_pool_volumes_post) | **POST** /1.0/storage-pools/{poolName}/volumes | Add a storage volume
|
|
369
|
+
*StorageApi* | [**storage_pool_volumes_type_backup_delete**](docs/StorageApi.md#storage_pool_volumes_type_backup_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName} | Delete a storage volume backup
|
|
370
|
+
*StorageApi* | [**storage_pool_volumes_type_backup_export_get**](docs/StorageApi.md#storage_pool_volumes_type_backup_export_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName}/export | Get the raw backup file
|
|
371
|
+
*StorageApi* | [**storage_pool_volumes_type_backup_get**](docs/StorageApi.md#storage_pool_volumes_type_backup_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName} | Get the storage volume backup
|
|
372
|
+
*StorageApi* | [**storage_pool_volumes_type_backup_post**](docs/StorageApi.md#storage_pool_volumes_type_backup_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName} | Rename a storage volume backup
|
|
373
|
+
*StorageApi* | [**storage_pool_volumes_type_backups_get**](docs/StorageApi.md#storage_pool_volumes_type_backups_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups | Get the storage volume backups
|
|
374
|
+
*StorageApi* | [**storage_pool_volumes_type_backups_get_recursion1**](docs/StorageApi.md#storage_pool_volumes_type_backups_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups?recursion=1 | Get the storage volume backups
|
|
375
|
+
*StorageApi* | [**storage_pool_volumes_type_backups_post**](docs/StorageApi.md#storage_pool_volumes_type_backups_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups | Create a storage volume backup
|
|
376
|
+
*StorageApi* | [**storage_pool_volumes_type_get**](docs/StorageApi.md#storage_pool_volumes_type_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type} | Get the storage volumes
|
|
377
|
+
*StorageApi* | [**storage_pool_volumes_type_get_recursion1**](docs/StorageApi.md#storage_pool_volumes_type_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}?recursion=1 | Get the storage volumes
|
|
378
|
+
*StorageApi* | [**storage_pool_volumes_type_get_recursion2**](docs/StorageApi.md#storage_pool_volumes_type_get_recursion2) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}?recursion=2 | Get the storage volumes with all details
|
|
379
|
+
*StorageApi* | [**storage_pool_volumes_type_post**](docs/StorageApi.md#storage_pool_volumes_type_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type} | Add a storage volume
|
|
380
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshot_delete**](docs/StorageApi.md#storage_pool_volumes_type_snapshot_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Delete a storage volume snapshot
|
|
381
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshot_get**](docs/StorageApi.md#storage_pool_volumes_type_snapshot_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Get the storage volume snapshot
|
|
382
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshot_patch**](docs/StorageApi.md#storage_pool_volumes_type_snapshot_patch) | **PATCH** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Partially update the storage volume snapshot
|
|
383
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshot_post**](docs/StorageApi.md#storage_pool_volumes_type_snapshot_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Rename a storage volume snapshot
|
|
384
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshot_put**](docs/StorageApi.md#storage_pool_volumes_type_snapshot_put) | **PUT** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Update the storage volume snapshot
|
|
385
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshots_get**](docs/StorageApi.md#storage_pool_volumes_type_snapshots_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots | Get the storage volume snapshots
|
|
386
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshots_get_recursion1**](docs/StorageApi.md#storage_pool_volumes_type_snapshots_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots?recursion=1 | Get the storage volume snapshots
|
|
387
|
+
*StorageApi* | [**storage_pool_volumes_type_snapshots_post**](docs/StorageApi.md#storage_pool_volumes_type_snapshots_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots | Create a storage volume snapshot
|
|
388
|
+
*StorageApi* | [**storage_pools_delete**](docs/StorageApi.md#storage_pools_delete) | **DELETE** /1.0/storage-pools/{poolName} | Delete the storage pool
|
|
389
|
+
*StorageApi* | [**storage_pools_get**](docs/StorageApi.md#storage_pools_get) | **GET** /1.0/storage-pools | Get the storage pools
|
|
390
|
+
*StorageApi* | [**storage_pools_get_recursion1**](docs/StorageApi.md#storage_pools_get_recursion1) | **GET** /1.0/storage-pools?recursion=1 | Get the storage pools
|
|
391
|
+
*StorageApi* | [**storage_pools_post**](docs/StorageApi.md#storage_pools_post) | **POST** /1.0/storage-pools | Add a storage pool
|
|
392
|
+
*WarningsApi* | [**warning_delete**](docs/WarningsApi.md#warning_delete) | **DELETE** /1.0/warnings/{uuid} | Delete the warning
|
|
393
|
+
*WarningsApi* | [**warning_get**](docs/WarningsApi.md#warning_get) | **GET** /1.0/warnings/{uuid} | Get the warning
|
|
394
|
+
*WarningsApi* | [**warning_patch**](docs/WarningsApi.md#warning_patch) | **PATCH** /1.0/warnings/{uuid} | Partially update the warning
|
|
395
|
+
*WarningsApi* | [**warning_put**](docs/WarningsApi.md#warning_put) | **PUT** /1.0/warnings/{uuid} | Update the warning
|
|
396
|
+
*WarningsApi* | [**warnings_get**](docs/WarningsApi.md#warnings_get) | **GET** /1.0/warnings | List the warnings
|
|
397
|
+
*WarningsApi* | [**warnings_get_recursion1**](docs/WarningsApi.md#warnings_get_recursion1) | **GET** /1.0/warnings?recursion=1 | Get the warnings
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
## Documentation For Models
|
|
401
|
+
|
|
402
|
+
- [AccessEntry](docs/AccessEntry.md)
|
|
403
|
+
- [ApiGet200Response](docs/ApiGet200Response.md)
|
|
404
|
+
- [BackupTarget](docs/BackupTarget.md)
|
|
405
|
+
- [Certificate](docs/Certificate.md)
|
|
406
|
+
- [CertificateAddToken](docs/CertificateAddToken.md)
|
|
407
|
+
- [CertificateGet200Response](docs/CertificateGet200Response.md)
|
|
408
|
+
- [CertificatePut](docs/CertificatePut.md)
|
|
409
|
+
- [CertificatesGet200Response](docs/CertificatesGet200Response.md)
|
|
410
|
+
- [CertificatesGetRecursion1200Response](docs/CertificatesGetRecursion1200Response.md)
|
|
411
|
+
- [CertificatesPost](docs/CertificatesPost.md)
|
|
412
|
+
- [Cluster](docs/Cluster.md)
|
|
413
|
+
- [ClusterCertificatePut](docs/ClusterCertificatePut.md)
|
|
414
|
+
- [ClusterGet200Response](docs/ClusterGet200Response.md)
|
|
415
|
+
- [ClusterGroup](docs/ClusterGroup.md)
|
|
416
|
+
- [ClusterGroupGet200Response](docs/ClusterGroupGet200Response.md)
|
|
417
|
+
- [ClusterGroupPost](docs/ClusterGroupPost.md)
|
|
418
|
+
- [ClusterGroupPut](docs/ClusterGroupPut.md)
|
|
419
|
+
- [ClusterGroupsGet200Response](docs/ClusterGroupsGet200Response.md)
|
|
420
|
+
- [ClusterGroupsGetRecursion1200Response](docs/ClusterGroupsGetRecursion1200Response.md)
|
|
421
|
+
- [ClusterGroupsPost](docs/ClusterGroupsPost.md)
|
|
422
|
+
- [ClusterMember](docs/ClusterMember.md)
|
|
423
|
+
- [ClusterMemberConfigKey](docs/ClusterMemberConfigKey.md)
|
|
424
|
+
- [ClusterMemberGet200Response](docs/ClusterMemberGet200Response.md)
|
|
425
|
+
- [ClusterMemberJoinToken](docs/ClusterMemberJoinToken.md)
|
|
426
|
+
- [ClusterMemberPost](docs/ClusterMemberPost.md)
|
|
427
|
+
- [ClusterMemberPut](docs/ClusterMemberPut.md)
|
|
428
|
+
- [ClusterMemberState](docs/ClusterMemberState.md)
|
|
429
|
+
- [ClusterMemberStateGet200Response](docs/ClusterMemberStateGet200Response.md)
|
|
430
|
+
- [ClusterMemberStatePost](docs/ClusterMemberStatePost.md)
|
|
431
|
+
- [ClusterMemberSysInfo](docs/ClusterMemberSysInfo.md)
|
|
432
|
+
- [ClusterMembersGet200Response](docs/ClusterMembersGet200Response.md)
|
|
433
|
+
- [ClusterMembersGetRecursion1200Response](docs/ClusterMembersGetRecursion1200Response.md)
|
|
434
|
+
- [ClusterMembersPost](docs/ClusterMembersPost.md)
|
|
435
|
+
- [ClusterMembersPost202Response](docs/ClusterMembersPost202Response.md)
|
|
436
|
+
- [ClusterPut](docs/ClusterPut.md)
|
|
437
|
+
- [Event](docs/Event.md)
|
|
438
|
+
- [Image](docs/Image.md)
|
|
439
|
+
- [ImageAlias](docs/ImageAlias.md)
|
|
440
|
+
- [ImageAliasGet200Response](docs/ImageAliasGet200Response.md)
|
|
441
|
+
- [ImageAliasesEntry](docs/ImageAliasesEntry.md)
|
|
442
|
+
- [ImageAliasesEntryPost](docs/ImageAliasesEntryPost.md)
|
|
443
|
+
- [ImageAliasesEntryPut](docs/ImageAliasesEntryPut.md)
|
|
444
|
+
- [ImageAliasesPost](docs/ImageAliasesPost.md)
|
|
445
|
+
- [ImageExportPost](docs/ImageExportPost.md)
|
|
446
|
+
- [ImageGet200Response](docs/ImageGet200Response.md)
|
|
447
|
+
- [ImageMetadata](docs/ImageMetadata.md)
|
|
448
|
+
- [ImageMetadataTemplate](docs/ImageMetadataTemplate.md)
|
|
449
|
+
- [ImagePut](docs/ImagePut.md)
|
|
450
|
+
- [ImageSource](docs/ImageSource.md)
|
|
451
|
+
- [ImagesAliasesGet200Response](docs/ImagesAliasesGet200Response.md)
|
|
452
|
+
- [ImagesAliasesGetRecursion1200Response](docs/ImagesAliasesGetRecursion1200Response.md)
|
|
453
|
+
- [ImagesGet200Response](docs/ImagesGet200Response.md)
|
|
454
|
+
- [ImagesGetRecursion1Untrusted200Response](docs/ImagesGetRecursion1Untrusted200Response.md)
|
|
455
|
+
- [ImagesPost](docs/ImagesPost.md)
|
|
456
|
+
- [ImagesPostSource](docs/ImagesPostSource.md)
|
|
457
|
+
- [InitClusterPreseed](docs/InitClusterPreseed.md)
|
|
458
|
+
- [InitLocalPreseed](docs/InitLocalPreseed.md)
|
|
459
|
+
- [InitNetworksProjectPost](docs/InitNetworksProjectPost.md)
|
|
460
|
+
- [InitPreseed](docs/InitPreseed.md)
|
|
461
|
+
- [InitProfileProjectPost](docs/InitProfileProjectPost.md)
|
|
462
|
+
- [InitStorageVolumesProjectPost](docs/InitStorageVolumesProjectPost.md)
|
|
463
|
+
- [Instance](docs/Instance.md)
|
|
464
|
+
- [InstanceAccess200Response](docs/InstanceAccess200Response.md)
|
|
465
|
+
- [InstanceBackup](docs/InstanceBackup.md)
|
|
466
|
+
- [InstanceBackupGet200Response](docs/InstanceBackupGet200Response.md)
|
|
467
|
+
- [InstanceBackupPost](docs/InstanceBackupPost.md)
|
|
468
|
+
- [InstanceBackupsGet200Response](docs/InstanceBackupsGet200Response.md)
|
|
469
|
+
- [InstanceBackupsGetRecursion1200Response](docs/InstanceBackupsGetRecursion1200Response.md)
|
|
470
|
+
- [InstanceBackupsPost](docs/InstanceBackupsPost.md)
|
|
471
|
+
- [InstanceConsoleGet404Response](docs/InstanceConsoleGet404Response.md)
|
|
472
|
+
- [InstanceConsolePost](docs/InstanceConsolePost.md)
|
|
473
|
+
- [InstanceDebugRepairPost](docs/InstanceDebugRepairPost.md)
|
|
474
|
+
- [InstanceExecOutputsGet200Response](docs/InstanceExecOutputsGet200Response.md)
|
|
475
|
+
- [InstanceExecPost](docs/InstanceExecPost.md)
|
|
476
|
+
- [InstanceFull](docs/InstanceFull.md)
|
|
477
|
+
- [InstanceGet200Response](docs/InstanceGet200Response.md)
|
|
478
|
+
- [InstanceGetRecursion1200Response](docs/InstanceGetRecursion1200Response.md)
|
|
479
|
+
- [InstanceLogsGet200Response](docs/InstanceLogsGet200Response.md)
|
|
480
|
+
- [InstanceMetadataGet200Response](docs/InstanceMetadataGet200Response.md)
|
|
481
|
+
- [InstancePost](docs/InstancePost.md)
|
|
482
|
+
- [InstancePostTarget](docs/InstancePostTarget.md)
|
|
483
|
+
- [InstancePut](docs/InstancePut.md)
|
|
484
|
+
- [InstanceRebuildPost](docs/InstanceRebuildPost.md)
|
|
485
|
+
- [InstanceSnapshot](docs/InstanceSnapshot.md)
|
|
486
|
+
- [InstanceSnapshotGet200Response](docs/InstanceSnapshotGet200Response.md)
|
|
487
|
+
- [InstanceSnapshotPost](docs/InstanceSnapshotPost.md)
|
|
488
|
+
- [InstanceSnapshotPut](docs/InstanceSnapshotPut.md)
|
|
489
|
+
- [InstanceSnapshotsGet200Response](docs/InstanceSnapshotsGet200Response.md)
|
|
490
|
+
- [InstanceSnapshotsGetRecursion1200Response](docs/InstanceSnapshotsGetRecursion1200Response.md)
|
|
491
|
+
- [InstanceSnapshotsPost](docs/InstanceSnapshotsPost.md)
|
|
492
|
+
- [InstanceSource](docs/InstanceSource.md)
|
|
493
|
+
- [InstanceState](docs/InstanceState.md)
|
|
494
|
+
- [InstanceStateCPU](docs/InstanceStateCPU.md)
|
|
495
|
+
- [InstanceStateDisk](docs/InstanceStateDisk.md)
|
|
496
|
+
- [InstanceStateGet200Response](docs/InstanceStateGet200Response.md)
|
|
497
|
+
- [InstanceStateMemory](docs/InstanceStateMemory.md)
|
|
498
|
+
- [InstanceStateNetwork](docs/InstanceStateNetwork.md)
|
|
499
|
+
- [InstanceStateNetworkAddress](docs/InstanceStateNetworkAddress.md)
|
|
500
|
+
- [InstanceStateNetworkCounters](docs/InstanceStateNetworkCounters.md)
|
|
501
|
+
- [InstanceStateOSInfo](docs/InstanceStateOSInfo.md)
|
|
502
|
+
- [InstanceStatePut](docs/InstanceStatePut.md)
|
|
503
|
+
- [InstancesGet200Response](docs/InstancesGet200Response.md)
|
|
504
|
+
- [InstancesGetRecursion1200Response](docs/InstancesGetRecursion1200Response.md)
|
|
505
|
+
- [InstancesGetRecursion2200Response](docs/InstancesGetRecursion2200Response.md)
|
|
506
|
+
- [InstancesPost](docs/InstancesPost.md)
|
|
507
|
+
- [InstancesPut](docs/InstancesPut.md)
|
|
508
|
+
- [MetadataConfigGroup](docs/MetadataConfigGroup.md)
|
|
509
|
+
- [MetadataConfigKey](docs/MetadataConfigKey.md)
|
|
510
|
+
- [MetadataConfiguration](docs/MetadataConfiguration.md)
|
|
511
|
+
- [MetadataConfigurationGet200Response](docs/MetadataConfigurationGet200Response.md)
|
|
512
|
+
- [Network](docs/Network.md)
|
|
513
|
+
- [NetworkACL](docs/NetworkACL.md)
|
|
514
|
+
- [NetworkACLPost](docs/NetworkACLPost.md)
|
|
515
|
+
- [NetworkACLPut](docs/NetworkACLPut.md)
|
|
516
|
+
- [NetworkACLRule](docs/NetworkACLRule.md)
|
|
517
|
+
- [NetworkACLsPost](docs/NetworkACLsPost.md)
|
|
518
|
+
- [NetworkAclGet200Response](docs/NetworkAclGet200Response.md)
|
|
519
|
+
- [NetworkAclsGet200Response](docs/NetworkAclsGet200Response.md)
|
|
520
|
+
- [NetworkAclsGetRecursion1200Response](docs/NetworkAclsGetRecursion1200Response.md)
|
|
521
|
+
- [NetworkAddressSet](docs/NetworkAddressSet.md)
|
|
522
|
+
- [NetworkAddressSetGet200Response](docs/NetworkAddressSetGet200Response.md)
|
|
523
|
+
- [NetworkAddressSetPost](docs/NetworkAddressSetPost.md)
|
|
524
|
+
- [NetworkAddressSetPut](docs/NetworkAddressSetPut.md)
|
|
525
|
+
- [NetworkAddressSetsGet200Response](docs/NetworkAddressSetsGet200Response.md)
|
|
526
|
+
- [NetworkAddressSetsGetRecursion1200Response](docs/NetworkAddressSetsGetRecursion1200Response.md)
|
|
527
|
+
- [NetworkAddressSetsPost](docs/NetworkAddressSetsPost.md)
|
|
528
|
+
- [NetworkAllocations](docs/NetworkAllocations.md)
|
|
529
|
+
- [NetworkAllocationsGet200Response](docs/NetworkAllocationsGet200Response.md)
|
|
530
|
+
- [NetworkForward](docs/NetworkForward.md)
|
|
531
|
+
- [NetworkForwardGet200Response](docs/NetworkForwardGet200Response.md)
|
|
532
|
+
- [NetworkForwardGetRecursion1200Response](docs/NetworkForwardGetRecursion1200Response.md)
|
|
533
|
+
- [NetworkForwardPort](docs/NetworkForwardPort.md)
|
|
534
|
+
- [NetworkForwardPut](docs/NetworkForwardPut.md)
|
|
535
|
+
- [NetworkForwardsGet200Response](docs/NetworkForwardsGet200Response.md)
|
|
536
|
+
- [NetworkForwardsPost](docs/NetworkForwardsPost.md)
|
|
537
|
+
- [NetworkGet200Response](docs/NetworkGet200Response.md)
|
|
538
|
+
- [NetworkIntegration](docs/NetworkIntegration.md)
|
|
539
|
+
- [NetworkIntegrationGet200Response](docs/NetworkIntegrationGet200Response.md)
|
|
540
|
+
- [NetworkIntegrationPost](docs/NetworkIntegrationPost.md)
|
|
541
|
+
- [NetworkIntegrationPut](docs/NetworkIntegrationPut.md)
|
|
542
|
+
- [NetworkIntegrationsGet200Response](docs/NetworkIntegrationsGet200Response.md)
|
|
543
|
+
- [NetworkIntegrationsGetRecursion1200Response](docs/NetworkIntegrationsGetRecursion1200Response.md)
|
|
544
|
+
- [NetworkIntegrationsPost](docs/NetworkIntegrationsPost.md)
|
|
545
|
+
- [NetworkLease](docs/NetworkLease.md)
|
|
546
|
+
- [NetworkLoadBalancer](docs/NetworkLoadBalancer.md)
|
|
547
|
+
- [NetworkLoadBalancerBackend](docs/NetworkLoadBalancerBackend.md)
|
|
548
|
+
- [NetworkLoadBalancerGet200Response](docs/NetworkLoadBalancerGet200Response.md)
|
|
549
|
+
- [NetworkLoadBalancerGetRecursion1200Response](docs/NetworkLoadBalancerGetRecursion1200Response.md)
|
|
550
|
+
- [NetworkLoadBalancerPort](docs/NetworkLoadBalancerPort.md)
|
|
551
|
+
- [NetworkLoadBalancerPut](docs/NetworkLoadBalancerPut.md)
|
|
552
|
+
- [NetworkLoadBalancerState](docs/NetworkLoadBalancerState.md)
|
|
553
|
+
- [NetworkLoadBalancerStateBackendHealth](docs/NetworkLoadBalancerStateBackendHealth.md)
|
|
554
|
+
- [NetworkLoadBalancerStateBackendHealthPort](docs/NetworkLoadBalancerStateBackendHealthPort.md)
|
|
555
|
+
- [NetworkLoadBalancerStateGet200Response](docs/NetworkLoadBalancerStateGet200Response.md)
|
|
556
|
+
- [NetworkLoadBalancersGet200Response](docs/NetworkLoadBalancersGet200Response.md)
|
|
557
|
+
- [NetworkLoadBalancersPost](docs/NetworkLoadBalancersPost.md)
|
|
558
|
+
- [NetworkPeer](docs/NetworkPeer.md)
|
|
559
|
+
- [NetworkPeerGet200Response](docs/NetworkPeerGet200Response.md)
|
|
560
|
+
- [NetworkPeerGetRecursion1200Response](docs/NetworkPeerGetRecursion1200Response.md)
|
|
561
|
+
- [NetworkPeerPut](docs/NetworkPeerPut.md)
|
|
562
|
+
- [NetworkPeersGet200Response](docs/NetworkPeersGet200Response.md)
|
|
563
|
+
- [NetworkPeersPost](docs/NetworkPeersPost.md)
|
|
564
|
+
- [NetworkPost](docs/NetworkPost.md)
|
|
565
|
+
- [NetworkPut](docs/NetworkPut.md)
|
|
566
|
+
- [NetworkState](docs/NetworkState.md)
|
|
567
|
+
- [NetworkStateAddress](docs/NetworkStateAddress.md)
|
|
568
|
+
- [NetworkStateBond](docs/NetworkStateBond.md)
|
|
569
|
+
- [NetworkStateBridge](docs/NetworkStateBridge.md)
|
|
570
|
+
- [NetworkStateCounters](docs/NetworkStateCounters.md)
|
|
571
|
+
- [NetworkStateOVN](docs/NetworkStateOVN.md)
|
|
572
|
+
- [NetworkStateVLAN](docs/NetworkStateVLAN.md)
|
|
573
|
+
- [NetworkZone](docs/NetworkZone.md)
|
|
574
|
+
- [NetworkZoneGet200Response](docs/NetworkZoneGet200Response.md)
|
|
575
|
+
- [NetworkZonePut](docs/NetworkZonePut.md)
|
|
576
|
+
- [NetworkZoneRecord](docs/NetworkZoneRecord.md)
|
|
577
|
+
- [NetworkZoneRecordEntry](docs/NetworkZoneRecordEntry.md)
|
|
578
|
+
- [NetworkZoneRecordGet200Response](docs/NetworkZoneRecordGet200Response.md)
|
|
579
|
+
- [NetworkZoneRecordPut](docs/NetworkZoneRecordPut.md)
|
|
580
|
+
- [NetworkZoneRecordsGet200Response](docs/NetworkZoneRecordsGet200Response.md)
|
|
581
|
+
- [NetworkZoneRecordsGetRecursion1200Response](docs/NetworkZoneRecordsGetRecursion1200Response.md)
|
|
582
|
+
- [NetworkZoneRecordsPost](docs/NetworkZoneRecordsPost.md)
|
|
583
|
+
- [NetworkZonesGet200Response](docs/NetworkZonesGet200Response.md)
|
|
584
|
+
- [NetworkZonesGetRecursion1200Response](docs/NetworkZonesGetRecursion1200Response.md)
|
|
585
|
+
- [NetworkZonesPost](docs/NetworkZonesPost.md)
|
|
586
|
+
- [NetworksGet200Response](docs/NetworksGet200Response.md)
|
|
587
|
+
- [NetworksGetRecursion1200Response](docs/NetworksGetRecursion1200Response.md)
|
|
588
|
+
- [NetworksLeasesGet200Response](docs/NetworksLeasesGet200Response.md)
|
|
589
|
+
- [NetworksPost](docs/NetworksPost.md)
|
|
590
|
+
- [NetworksStateGet200Response](docs/NetworksStateGet200Response.md)
|
|
591
|
+
- [Operation](docs/Operation.md)
|
|
592
|
+
- [OperationGet200Response](docs/OperationGet200Response.md)
|
|
593
|
+
- [OperationsGet200Response](docs/OperationsGet200Response.md)
|
|
594
|
+
- [OperationsGetRecursion1200Response](docs/OperationsGetRecursion1200Response.md)
|
|
595
|
+
- [Profile](docs/Profile.md)
|
|
596
|
+
- [ProfileGet200Response](docs/ProfileGet200Response.md)
|
|
597
|
+
- [ProfilePost](docs/ProfilePost.md)
|
|
598
|
+
- [ProfilePut](docs/ProfilePut.md)
|
|
599
|
+
- [ProfilesGet200Response](docs/ProfilesGet200Response.md)
|
|
600
|
+
- [ProfilesGetRecursion1200Response](docs/ProfilesGetRecursion1200Response.md)
|
|
601
|
+
- [ProfilesPost](docs/ProfilesPost.md)
|
|
602
|
+
- [Project](docs/Project.md)
|
|
603
|
+
- [ProjectGet200Response](docs/ProjectGet200Response.md)
|
|
604
|
+
- [ProjectPost](docs/ProjectPost.md)
|
|
605
|
+
- [ProjectPut](docs/ProjectPut.md)
|
|
606
|
+
- [ProjectState](docs/ProjectState.md)
|
|
607
|
+
- [ProjectStateGet200Response](docs/ProjectStateGet200Response.md)
|
|
608
|
+
- [ProjectStateResource](docs/ProjectStateResource.md)
|
|
609
|
+
- [ProjectsGet200Response](docs/ProjectsGet200Response.md)
|
|
610
|
+
- [ProjectsGetRecursion1200Response](docs/ProjectsGetRecursion1200Response.md)
|
|
611
|
+
- [ProjectsPost](docs/ProjectsPost.md)
|
|
612
|
+
- [Resources](docs/Resources.md)
|
|
613
|
+
- [ResourcesCPU](docs/ResourcesCPU.md)
|
|
614
|
+
- [ResourcesCPUAddressSizes](docs/ResourcesCPUAddressSizes.md)
|
|
615
|
+
- [ResourcesCPUCache](docs/ResourcesCPUCache.md)
|
|
616
|
+
- [ResourcesCPUCore](docs/ResourcesCPUCore.md)
|
|
617
|
+
- [ResourcesCPUSocket](docs/ResourcesCPUSocket.md)
|
|
618
|
+
- [ResourcesCPUThread](docs/ResourcesCPUThread.md)
|
|
619
|
+
- [ResourcesGPU](docs/ResourcesGPU.md)
|
|
620
|
+
- [ResourcesGPUCard](docs/ResourcesGPUCard.md)
|
|
621
|
+
- [ResourcesGPUCardDRM](docs/ResourcesGPUCardDRM.md)
|
|
622
|
+
- [ResourcesGPUCardMdev](docs/ResourcesGPUCardMdev.md)
|
|
623
|
+
- [ResourcesGPUCardNvidia](docs/ResourcesGPUCardNvidia.md)
|
|
624
|
+
- [ResourcesGPUCardSRIOV](docs/ResourcesGPUCardSRIOV.md)
|
|
625
|
+
- [ResourcesGet200Response](docs/ResourcesGet200Response.md)
|
|
626
|
+
- [ResourcesLoad](docs/ResourcesLoad.md)
|
|
627
|
+
- [ResourcesMemory](docs/ResourcesMemory.md)
|
|
628
|
+
- [ResourcesMemoryNode](docs/ResourcesMemoryNode.md)
|
|
629
|
+
- [ResourcesNetwork](docs/ResourcesNetwork.md)
|
|
630
|
+
- [ResourcesNetworkCard](docs/ResourcesNetworkCard.md)
|
|
631
|
+
- [ResourcesNetworkCardPort](docs/ResourcesNetworkCardPort.md)
|
|
632
|
+
- [ResourcesNetworkCardPortInfiniband](docs/ResourcesNetworkCardPortInfiniband.md)
|
|
633
|
+
- [ResourcesNetworkCardSRIOV](docs/ResourcesNetworkCardSRIOV.md)
|
|
634
|
+
- [ResourcesNetworkCardVDPA](docs/ResourcesNetworkCardVDPA.md)
|
|
635
|
+
- [ResourcesPCI](docs/ResourcesPCI.md)
|
|
636
|
+
- [ResourcesPCIDevice](docs/ResourcesPCIDevice.md)
|
|
637
|
+
- [ResourcesPCIVPD](docs/ResourcesPCIVPD.md)
|
|
638
|
+
- [ResourcesSerial](docs/ResourcesSerial.md)
|
|
639
|
+
- [ResourcesSerialDevice](docs/ResourcesSerialDevice.md)
|
|
640
|
+
- [ResourcesStorage](docs/ResourcesStorage.md)
|
|
641
|
+
- [ResourcesStorageDisk](docs/ResourcesStorageDisk.md)
|
|
642
|
+
- [ResourcesStorageDiskPartition](docs/ResourcesStorageDiskPartition.md)
|
|
643
|
+
- [ResourcesStoragePool](docs/ResourcesStoragePool.md)
|
|
644
|
+
- [ResourcesStoragePoolInodes](docs/ResourcesStoragePoolInodes.md)
|
|
645
|
+
- [ResourcesStoragePoolSpace](docs/ResourcesStoragePoolSpace.md)
|
|
646
|
+
- [ResourcesSystem](docs/ResourcesSystem.md)
|
|
647
|
+
- [ResourcesSystemChassis](docs/ResourcesSystemChassis.md)
|
|
648
|
+
- [ResourcesSystemFirmware](docs/ResourcesSystemFirmware.md)
|
|
649
|
+
- [ResourcesSystemMotherboard](docs/ResourcesSystemMotherboard.md)
|
|
650
|
+
- [ResourcesUSB](docs/ResourcesUSB.md)
|
|
651
|
+
- [ResourcesUSBDevice](docs/ResourcesUSBDevice.md)
|
|
652
|
+
- [ResourcesUSBDeviceInterface](docs/ResourcesUSBDeviceInterface.md)
|
|
653
|
+
- [Server](docs/Server.md)
|
|
654
|
+
- [ServerEnvironment](docs/ServerEnvironment.md)
|
|
655
|
+
- [ServerGet200Response](docs/ServerGet200Response.md)
|
|
656
|
+
- [ServerGet500Response](docs/ServerGet500Response.md)
|
|
657
|
+
- [ServerGetUntrusted200Response](docs/ServerGetUntrusted200Response.md)
|
|
658
|
+
- [ServerPut](docs/ServerPut.md)
|
|
659
|
+
- [ServerPut200Response](docs/ServerPut200Response.md)
|
|
660
|
+
- [ServerPut400Response](docs/ServerPut400Response.md)
|
|
661
|
+
- [ServerPut403Response](docs/ServerPut403Response.md)
|
|
662
|
+
- [ServerPut412Response](docs/ServerPut412Response.md)
|
|
663
|
+
- [ServerStorageDriverInfo](docs/ServerStorageDriverInfo.md)
|
|
664
|
+
- [ServerUntrusted](docs/ServerUntrusted.md)
|
|
665
|
+
- [StorageBucket](docs/StorageBucket.md)
|
|
666
|
+
- [StorageBucketBackup](docs/StorageBucketBackup.md)
|
|
667
|
+
- [StorageBucketBackupPost](docs/StorageBucketBackupPost.md)
|
|
668
|
+
- [StorageBucketBackupsPost](docs/StorageBucketBackupsPost.md)
|
|
669
|
+
- [StorageBucketFull](docs/StorageBucketFull.md)
|
|
670
|
+
- [StorageBucketKey](docs/StorageBucketKey.md)
|
|
671
|
+
- [StorageBucketKeyPut](docs/StorageBucketKeyPut.md)
|
|
672
|
+
- [StorageBucketKeysPost](docs/StorageBucketKeysPost.md)
|
|
673
|
+
- [StorageBucketPut](docs/StorageBucketPut.md)
|
|
674
|
+
- [StorageBucketsPost](docs/StorageBucketsPost.md)
|
|
675
|
+
- [StoragePool](docs/StoragePool.md)
|
|
676
|
+
- [StoragePoolBucketGet200Response](docs/StoragePoolBucketGet200Response.md)
|
|
677
|
+
- [StoragePoolBucketGetRecursion1200Response](docs/StoragePoolBucketGetRecursion1200Response.md)
|
|
678
|
+
- [StoragePoolBucketKeyGet200Response](docs/StoragePoolBucketKeyGet200Response.md)
|
|
679
|
+
- [StoragePoolBucketKeysGet200Response](docs/StoragePoolBucketKeysGet200Response.md)
|
|
680
|
+
- [StoragePoolBucketKeysGetRecursion1200Response](docs/StoragePoolBucketKeysGetRecursion1200Response.md)
|
|
681
|
+
- [StoragePoolBucketsBackupGet200Response](docs/StoragePoolBucketsBackupGet200Response.md)
|
|
682
|
+
- [StoragePoolBucketsBackupsGet200Response](docs/StoragePoolBucketsBackupsGet200Response.md)
|
|
683
|
+
- [StoragePoolBucketsBackupsGetRecursion1200Response](docs/StoragePoolBucketsBackupsGetRecursion1200Response.md)
|
|
684
|
+
- [StoragePoolBucketsGet200Response](docs/StoragePoolBucketsGet200Response.md)
|
|
685
|
+
- [StoragePoolBucketsGetRecursion1200Response](docs/StoragePoolBucketsGetRecursion1200Response.md)
|
|
686
|
+
- [StoragePoolBucketsGetRecursion2200Response](docs/StoragePoolBucketsGetRecursion2200Response.md)
|
|
687
|
+
- [StoragePoolGet200Response](docs/StoragePoolGet200Response.md)
|
|
688
|
+
- [StoragePoolPut](docs/StoragePoolPut.md)
|
|
689
|
+
- [StoragePoolResources200Response](docs/StoragePoolResources200Response.md)
|
|
690
|
+
- [StoragePoolState](docs/StoragePoolState.md)
|
|
691
|
+
- [StoragePoolVolumeTypeGet200Response](docs/StoragePoolVolumeTypeGet200Response.md)
|
|
692
|
+
- [StoragePoolVolumeTypeGetRecursion1200Response](docs/StoragePoolVolumeTypeGetRecursion1200Response.md)
|
|
693
|
+
- [StoragePoolVolumeTypeStateGet200Response](docs/StoragePoolVolumeTypeStateGet200Response.md)
|
|
694
|
+
- [StoragePoolVolumesGet200Response](docs/StoragePoolVolumesGet200Response.md)
|
|
695
|
+
- [StoragePoolVolumesTypeBackupGet200Response](docs/StoragePoolVolumesTypeBackupGet200Response.md)
|
|
696
|
+
- [StoragePoolVolumesTypeBackupsGet200Response](docs/StoragePoolVolumesTypeBackupsGet200Response.md)
|
|
697
|
+
- [StoragePoolVolumesTypeBackupsGetRecursion1200Response](docs/StoragePoolVolumesTypeBackupsGetRecursion1200Response.md)
|
|
698
|
+
- [StoragePoolVolumesTypeGet200Response](docs/StoragePoolVolumesTypeGet200Response.md)
|
|
699
|
+
- [StoragePoolVolumesTypeGetRecursion1200Response](docs/StoragePoolVolumesTypeGetRecursion1200Response.md)
|
|
700
|
+
- [StoragePoolVolumesTypeGetRecursion2200Response](docs/StoragePoolVolumesTypeGetRecursion2200Response.md)
|
|
701
|
+
- [StoragePoolVolumesTypeSnapshotGet200Response](docs/StoragePoolVolumesTypeSnapshotGet200Response.md)
|
|
702
|
+
- [StoragePoolVolumesTypeSnapshotsGet200Response](docs/StoragePoolVolumesTypeSnapshotsGet200Response.md)
|
|
703
|
+
- [StoragePoolVolumesTypeSnapshotsGetRecursion1200Response](docs/StoragePoolVolumesTypeSnapshotsGetRecursion1200Response.md)
|
|
704
|
+
- [StoragePoolsGet200Response](docs/StoragePoolsGet200Response.md)
|
|
705
|
+
- [StoragePoolsGetRecursion1200Response](docs/StoragePoolsGetRecursion1200Response.md)
|
|
706
|
+
- [StoragePoolsPost](docs/StoragePoolsPost.md)
|
|
707
|
+
- [StorageVolume](docs/StorageVolume.md)
|
|
708
|
+
- [StorageVolumeBackup](docs/StorageVolumeBackup.md)
|
|
709
|
+
- [StorageVolumeBackupPost](docs/StorageVolumeBackupPost.md)
|
|
710
|
+
- [StorageVolumeBackupsPost](docs/StorageVolumeBackupsPost.md)
|
|
711
|
+
- [StorageVolumeFull](docs/StorageVolumeFull.md)
|
|
712
|
+
- [StorageVolumePost](docs/StorageVolumePost.md)
|
|
713
|
+
- [StorageVolumePostTarget](docs/StorageVolumePostTarget.md)
|
|
714
|
+
- [StorageVolumePut](docs/StorageVolumePut.md)
|
|
715
|
+
- [StorageVolumeSnapshot](docs/StorageVolumeSnapshot.md)
|
|
716
|
+
- [StorageVolumeSnapshotPost](docs/StorageVolumeSnapshotPost.md)
|
|
717
|
+
- [StorageVolumeSnapshotPut](docs/StorageVolumeSnapshotPut.md)
|
|
718
|
+
- [StorageVolumeSnapshotsPost](docs/StorageVolumeSnapshotsPost.md)
|
|
719
|
+
- [StorageVolumeSource](docs/StorageVolumeSource.md)
|
|
720
|
+
- [StorageVolumeState](docs/StorageVolumeState.md)
|
|
721
|
+
- [StorageVolumeStateUsage](docs/StorageVolumeStateUsage.md)
|
|
722
|
+
- [StorageVolumesPost](docs/StorageVolumesPost.md)
|
|
723
|
+
- [Warning](docs/Warning.md)
|
|
724
|
+
- [WarningGet200Response](docs/WarningGet200Response.md)
|
|
725
|
+
- [WarningPut](docs/WarningPut.md)
|
|
726
|
+
- [WarningsGet200Response](docs/WarningsGet200Response.md)
|
|
727
|
+
- [WarningsGetRecursion1200Response](docs/WarningsGetRecursion1200Response.md)
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
<a id="documentation-for-authorization"></a>
|
|
731
|
+
## Documentation For Authorization
|
|
732
|
+
|
|
733
|
+
Endpoints do not require authorization.
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
## Author
|
|
737
|
+
|
|
738
|
+
lxc-devel@lists.linuxcontainers.org
|
|
739
|
+
|
|
740
|
+
|