vcenter hlm community: add spec

The add_spec structure is the specification used for connecting to another node and adding it to the local community. Warning: This structure is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

Representation:

{
    "hostname""string",
    "port""string",
    "ssl_thumbprint""string",
    "ssl_verify"true,
    "token""string",
    "admin_groups"[
        "string",
        "string"
    ]
}

Attributes:

Name Type Description
Required
hostname string The hostname for the target node. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

token string The base64 encoded authentication token usable in the target node's domain and issued by its Security Token Service service. The token should be prefixed with a type. Currently, only saml tokens are supported. For example: "sign=LKJSDLKDJ..." where prefix is "sign=" for a saml token. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

Optional
port string The HTTPS port of the target node. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

Optional. If unset 443 will be used as default.

ssl_thumbprint string The SHA-256 thumbprint of the SSL certificate of the target node. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

Optional. This field is only relevant if ssl_verify is set and has the value true.

ssl_verify boolean SSL verification should be enabled or disabled. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

Optional. If unset, verification will be enabled.

admin_groups string[] The list of groups to be added to which administrator access should be granted. Group names should be un UPN format. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.

Optional. if unset no groups will have administrator access.