API Cookbook: KerberosKDC
- 03 Jan 2023
- 1 Minute to read
-
Print
-
DarkLight
-
PDF
API Cookbook: KerberosKDC
- Updated on 03 Jan 2023
- 1 Minute to read
-
Print
-
DarkLight
-
PDF
This API cookbook recipe describes how to configure KerberosKDC using the Delphix Engine API.
{
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
}
}
}
Was this article helpful?