DefinedEntityType

DefinedEntityType
DefinedEntityType

Describes what a defined entity type should look like.

JSON Example
{
    "id": "urn:vcloud:type:vmware:vspheresddc:1.0.0",
    "name": "vspheresddc",
    "description": "string",
    "nss": "sddc",
    "version": "1.1.0",
    "inheritedVersion": "1.0.0",
    "externalId": "123",
    "schema": {
        "application/json": {
            "type": "object",
            "properties": {
                "rectangle": {
                    "$ref": "#/components/schemas/Rectangle"
                }
            },
            "definitions": {
                "size": {
                    "type": "number",
                    "minimum": 0
                },
                "Rectangle": {
                    "type": "object",
                    "properties": {
                        "a": {
                            "$ref": "#/components/schemas/size"
                        },
                        "b": {
                            "$ref": "#/components/schemas/size"
                        }
                    }
                }
            }
        }
    },
    "vendor": "vmware",
    "interfaces": [
        "urn:vcloud:interface:vmware.sddc:1.0.0"
    ],
    "readonly": false
}
string
id
Optional

The id of the defined entity type in URN format.

string
name
Optional

The name of the defined entity type.

string
description
Optional

Description of the defined entity type.

string
nss
Optional

A unique namespace specific string. The combination of nss and version must be unique.

string
version
Optional

The version of the defined entity type. The combination of nss and version must be unique. The version string must follow semantic versioning rules.

string
inheritedVersion
Optional

To be used when creating a new version of a defined entity type. Specifies the version of the type that will be the template for the authorization configuration of a the new version. The Type ACLs and the access requirements of the Type Behaviors of the new version will be copied from those of the inherited version. If the value of this property is '0', then the new type version will not inherit another version and will have the default authorization settings, just like the first version of a new type.

string
externalId
Optional

An external entity's id that this definition may apply to.

object
schema
Optional

The JSON-Schema valid definition of the defined entity type. If no JSON Schema version is specified, version 4 will be assumed.

string
vendor
Optional

The vendor name.

array of string
interfaces
Optional

List of interface ids that this defined entity type is referenced by.

object
hooks
Optional

A mapping defining which behaviors should be invoked upon specific lifecycle events, like PostCreate, PostUpdate, PreDelete. For example: "hooks": { "PostCreate": "urn:vcloud:behavior-interface:postCreateHook:vendorA:containerCluster:1.0.0" }

boolean
readonly
Optional

True if the entity type cannot be modified.