mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-04-28 14:04:55 +00:00
11 lines
201 B
Perl
Executable File
11 lines
201 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use PVE::Cluster;
|
|
use PVE::RESTHandler;
|
|
|
|
my $schema = PVE::Cluster::get_datacenter_schema();
|
|
|
|
print PVE::RESTHandler::dump_properties($schema->{properties});
|