0090-CloudPlatformsAndServices.json 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{
  "enumDefs": [],
  "structDefs": [],
  "classificationDefs": [
    {
      "name": "CloudProvider",
      "description":"The cloud provider is the organization that provides and runs the infrastructure for a cloud service. Typically the host it offers is actually a HostCluster. The cloud provider may offer infrastructure as a service (IaaS), in which case, an organization can deploy VirtualContainers onto the cloud provider's HostCluster.",
      "superTypes": [],
      "entityTypes":["Host"],
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "providerName",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    },
    {
      "name": "CloudPlatform",
24
      "description":"If the cloud provider is offering platform as a service (PaaS), an application may deploy server capability onto the cloud platform.",
25
      "superTypes": [],
26
      "entityTypes":["SoftwareServer"],
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "type",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    },
    {
      "name": "CloudService",
      "description":"If the cloud provider is offering Software as a Service (SaaS) then it has provided APIs backed by pre-deployed server capability that an organization can call as a cloud service.",
      "superTypes": [],
43
      "entityTypes":["SoftwareServerCapability"],
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "offeringName",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        },
        {
          "name": "type",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    }
  ],
  "entityDefs": [],
  "relationshipDefs": []
}