ACE Management Server Administrator's Manual
PRIMARY KEY(macPoolUID),
FOREIGN KEY(aceUID) REFERENCES PolicyDb_Ace(aceUID));
/* Instance customization data */
CREATE TABLE PolicyDb_UserData (
userDataPK VARCHAR(516),
aceUID VARCHAR(128),
packageUID VARCHAR(128),
activator VARCHAR(128),
udataName VARCHAR(128),
udataType INTEGER NOT NULL,
udataValue VARCHAR(2048),
udtTsCreated VARCHAR(21) DEFAULT 0 NOT NULL,
udtTsLastModified VARCHAR(21) DEFAULT 0 NOT NULL,
deleted VARCHAR(7) DEFAULT 'FALSE',
FOREIGN KEY(aceUID) REFERENCES PolicyDb_Ace(aceUID),
FOREIGN KEY(packageUID) REFERENCES PolicyDb_Package(packageUID),
PRIMARY KEY(userDataPK));
/* ACE Master policy set */
CREATE TABLE PolicyDb_RuntimePolicy (
aceUID VARCHAR(128),
policyVersion INTEGER,
clientPolicyData VARCHAR(2000),
clientPolicyDataExtKey VARCHAR(128),
hostPolicyData VARCHAR(2000),
hostPolicyDataExtKey VARCHAR(128),
expirationType INTEGER NOT NULL,
expValue_1 VARCHAR(21) NOT NULL,
expValue_2 VARCHAR(21) NOT NULL,
cacheLifetime VARCHAR(21) NOT NULL,
rtpInstType INTEGER NOT NULL,
rtpAuthType INTEGER NOT NULL,
rtpUseInstanceLimit VARCHAR(7)
DEFAULT 'FALSE' NOT NULL,
rtpInstanceLimit INTEGER NOT NULL,
rtpUsePerUserInstanceLimit VARCHAR(7)
DEFAULT 'FALSE' NOT NULL,
rtpPerUserInstanceLimit INTEGER NOT NULL, /* Max no. of ACE instances per user */
copyPolicy INTEGER DEFAULT 0 NOT NULL,
published VARCHAR(7) DEFAULT 'FALSE' NOT NULL,/* Policy published (update locked)*/
rtpTsCreated VARCHAR(21) DEFAULT 0 NOT NULL,
rtpTsLastModified VARCHAR(21) DEFAULT 0 NOT NULL,
deleted VARCHAR(7) DEFAULT 'FALSE',
PRIMARY KEY (aceUID, policyVersion),
FOREIGN KEY(aceUID) REFERENCES PolicyDb_Ace(aceUID));
/* ACE Management Server info - reserved for future use */
CREATE TABLE PolicyDb_AcescServer (
serverHostname VARCHAR(128),
serverPort INTEGER,
secure VARCHAR(7) DEFAULT 'FALSE' NOT NULL,
sslCertificateExtKey VARCHAR(128),
sslCertificateChainExtKey VARCHAR(128),
PRIMARY KEY (serverHostname, serverPort));
/* Audit Event Log Event Types lookup table */
CREATE TABLE PolicyDb_EventType (
eventType INTEGER,
eventMessage VARCHAR(1024),
eventCategory INTEGER,
eventCategoryName VARCHAR(128),
eventLogLevel INTEGER,
PRIMARY KEY (eventType));
/* Audit Event Log data */
CREATE TABLE PolicyDb_Event (
58
/* Primary key */
/* ACE for which this UserData is defined */
/* Package for which this UserData is used */
/* The user */
/* User data entry name */
/* Attribute of the date */
/* User data entry value */
/* Creation timestamp */
/* Last modified timestamp */
/* Is this entry deleted (tombstone) */
/* The ACE it belongs to. */
/* Version of the RT Policy for this ACE */
/* Runtime policy for the guest OS */
/* If too long store in LongField table */
/* Runtime policy for the host OS (NQ) */
/* If too long store in LongField table */
/* Expiration Type (enum) */
/* Expiration value (depends on type) */
/* Expiration value (depends on type) */
/* How long could work without server */
/* Instantiation authentication check type */
/* Runtime authentication check type */
/* Limit number of instances for this ACE? */
/* Max no. of ACE instances allowed */
/* Limit number of instances per user? */
/* Behavior if VM instance is copied */
/* Creation timestamp */
/* Last modified timestamp */
/* Is this entry deleted (tombstone) */
/* Host name of the server computer */
/* TCP port number server is listening on */
/* Whether HTTPS is enabled */
/* SSL Certificate data, key to stored */
/* in LongField table */
/* SSL Certificate Chain data, key to */
/* stored in LongField table */
/* Event Type code (PK) */
/* Printable message for this event type */
/* Event Category code */
/* Event Category printable name */
/* Event Log Level */
VMware, Inc.
Need help?
Do you have a question about the ACE Management Server and is the answer not in the manual?
Questions and answers