InstantiateNsRequest.json 2.9 KB
Newer Older
aureliano sinatra's avatar
aureliano sinatra committed
{
	"type": "object",
	"required": [
		"nsFlavourId"
	],
	"properties": {
		"nsFlavourId": {
			"description": "Identifier of the NS deployment flavor to be instantiated.\n",
			"$ref": "SOL005_def.yaml#/definitions/IdentifierInNsd"
		},
		"sapData": {
			"description": "Create data concerning the SAPs of this NS.\n",
			"type": "array",
			"items": {
				"$ref": "#/definitions/SapData"
			}
		},
		"addpnfData": {
			"description": "Information on the PNF(s) that are part of this NS.\n",
			"type": "array",
			"items": {
				"$ref": "#/definitions/AddPnfData"
			}
		},
		"vnfInstanceData": {
			"description": "Specify an existing VNF instance to be used in the NS. If needed, the VNF Profile to be used for this VNF instance is also provided.\n",
			"type": "array",
			"items": {
				"$ref": "#/definitions/VnfInstanceData"
			}
		},
		"nestedNsInstanceId": {
			"description": "Specify an existing NS instance to be used as a nested NS within the NS.\n",
			"type": "array",
			"items": {
				"$ref": "SOL005_def.yaml#/definitions/Identifier"
			}
		},
		"localizationLanguage": {
			"description": "Defines the location constraints for the VNF to be instantiated as part of the NS instantiation. An example can be a constraint for the VNF to be in a specific geographic location..\n",
			"type": "array",
			"items": {
				"$ref": "#/definitions/VnfLocationConstraint"
			}
		},
		"additionalParamsForNs": {
			"description": "Allows the OSS/BSS to provide additional parameter(s) at the NS level (as opposed to the VNF level, which is covered in additionalParamsForVnf)..\n",
			"$ref": "SOL005_def.yaml#/definitions/KeyValuePairs"
		},
		"additionalParamsForVnf": {
			"description": "Allows the OSS/BSS to provide additional parameter(s) per VNF instance (as opposed to the NS level, which is covered in additionalParamsForNs). This is for VNFs that are to be created by the NFVO as part of the NS instantiation and not for existing VNF that are referenced for reuse..\n",
			"type": "array",
			"items": {
				"$ref": "#/definitions/ParamsForVnf"
			}
		},
		"startTime": {
			"description": "Timestamp indicating the earliest time to instantiate the NS.  Cardinality \"0\" indicates the NS instantiation takes place immediately.\n",
			"$ref": "SOL005_def.yaml#/definitions/DateTime"
		},
		"nsInstantiationLevelId": {
			"description": "Identifies one of the NS instantiation levels declared in the DF applicable to this NS instance. If not present, the default NS instantiation level as declared in the NSD shall be used.\n",
			"$ref": "SOL005_def.yaml#/definitions/IdentifierInNsd"
		},
		"additionalAffinityOrAntiAffiniityRule": {
			"description": "Specifies additional affinity or anti-affinity constraint for the VNF instances to be instantiated as part of the NS instantiation. Shall not conflict with rules already specified in the NSD.\n",
			"type": "array",
			"items": {
				"$ref": "#/definitions/AffinityOrAntiAffinityRule"
			}
		}
	}
AHMADABB's avatar
AHMADABB committed
}