API cookbook: KerberosKDC
This API cookbook recipe describes how to configure KerberosKDC using the Delphix Engine API.
CODE
{
name: "KerberosKDC",
description: "Kerberos Client Configuration.",
extends: {
$ref: "/delphix-typed-object.json"
},
properties: {
hostname: {
description: "KDC Server hostname.",
type: "string",
format: "host",
create: "required",
update: "optional"
},
port: {
description: "KDC Server port number.",
type: "integer",
create: "required",
update: "optional",
minimum: 0,
maximum: 65535,
default: 88
}
}
}