mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-01-10 01:17:51 +03:00
12 lines
214 B
Perl
Executable File
12 lines
214 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use lib '.';
|
|
use strict;
|
|
use warnings;
|
|
use PVE::Cluster;
|
|
use PVE::RESTHandler;
|
|
|
|
my $schema = PVE::Cluster::get_datacenter_schema();
|
|
|
|
print PVE::RESTHandler::dump_properties($schema->{properties});
|