esx kms providers: key server info
The
key_server_info
structure contains fields that describe the current configuration of a key server.Representation:
{
"proxy_server" : {
"hostname" : "string",
"port" : 1
},
"description" : "string",
"kmip_server" : {
"servers" : [
{
"address" : {
"hostname" : "string",
"port" : 1
},
"name" : "string"
},
{
"address" : {
"hostname" : "string",
"port" : 1
},
"name" : "string"
}
],
"username" : "string"
},
"type" : "KMIP",
"connection_timeout" : 1
}
"proxy_server" : {
"hostname" : "string",
"port" : 1
},
"description" : "string",
"kmip_server" : {
"servers" : [
{
"address" : {
"hostname" : "string",
"port" : 1
},
"name" : "string"
},
{
"address" : {
"hostname" : "string",
"port" : 1
},
"name" : "string"
}
],
"username" : "string"
},
"type" : "KMIP",
"connection_timeout" : 1
}
Attributes:
Name | Type | Description |
---|---|---|
Required | ||
type | string | Type of the key server. List the {@name KeyServer) types. Value is one of: KMIP: Key Management Interoperability Protocol (KMIP) based key management server. |
description | string | Description of the key server. |
proxy_server.hostname | string | The IP address or the hostname. |
kmip_server.servers | server[] | List of KMIP compliant key servers. |
kmip_server.servers[].name | string | Name of the server. A unique string chosen by the client. |
kmip_server.servers[].address | network_address | The server's address. |
kmip_server.servers[].address.hostname | string | The IP address or the hostname. |
Optional | ||
proxy_server | network_address | Proxy server configuration. Optional. If unset, proxy server configuration will not be set. |
proxy_server.port | long | The port for the connection. Optional. If unset, a default port depending on the server type will be used or 443 if it's not explicitly specified. |
connection_timeout | long | Connection timeout in seconds. Optional. If unset, connection timeout will be unset. |
kmip_server | kmip_server_info | Key Server configuration detail for KMIP based KMS. Optional. It is only relevant when type has value KMIP. This field is optional and it is only relevant when the value of type is KMIP. |
kmip_server.servers[].address.port | long | The port for the connection. Optional. If unset, a default port depending on the server type will be used or 443 if it's not explicitly specified. |
kmip_server.username | string | Username for authentication. Optional. If unset, username will not be set. |