You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Work in Progress

Lifecycle Management Interface

This interface allows the CNF Manager (CNFM) client to invoke AS-CNF lifecycle management operations of AS-CNF instances towards the CNFM.

The operations provide through this interfaces are:

  • Create AS Identifier
  • Instantiate AS
  • Terminate AS
  • Delete AS Identifier
  • Update AS

Create ASD Instance Resource

REST Interfaces

  • POST  .../as_instances (CreateAsRequest)
  • 201 Created (AsInstance)
  • // Send AsIdentifierCreationNotification


Note: KeyValuePairs data type is typically realized as Hashmap or Hashtable

CreateAsRequest

Attribute NameData TypeCardinalityDescription

asdId

Identifier (UUID)1Identifier that identifies the ASD which defines the AS instance to be created.

asInstanceName

String0..1Human-readable name of the AS instance to be created.

asInstanceDescription

String0..1Human-readable description of the AS instance to be created.

metadata

KeyValuePairs0..1If present, this attribute provides additional initial values, overriding those obtained from the ASD, for the metadata attribute in "AsInstance".

Instantiate AS Instance Resource

REST Interfaces

  • POST .../as_instances/{asInstanceId}/instantiate (InstantiateAsRequest)
  • 202 Accepted ()
  • Send asLcmOperationOccurrenceNotification (STARTING/PROCESSING/COMPLETED)
  • 200 OK (AsLcmOpOcc:operationState=COMPLETED)

InstantiateAsRequest


Attribute NameData TypeCardinalityDescription

deploymentItems

DeploymentItemMetadata1..Nlifecycle parameters for deploymentItems

additionalParams

KeyValuePairs0..1Additional input parameters for the instantiation process





DeploymentItemMetadata


Attribute NameData TypeCardinalityDescription
deploymentItemIdIdentifier1

lifecycleParameterKeyValues

KeyValuesPairs0..N

Terminate AS

REST Interfaces

  • POST .../as_instances/{asInstanceId}/instantiate (InstantiateAsRequest)
  • 202 Accepted ()
  • Send asLcmOperationOccurrenceNotification (STARTING/PROCESSING/COMPLETED)
  • 200 OK (AsLcmOpOcc:operationState=COMPLETED)

TerminateAsRequest

Attribute NameData TypeCardinalityDescription
terminationTypeEnum1
  • FORCEFUL
  • GRACEFUL
gracefulTerminationTimeoutInteger0..1The unit is seconds
additionalParamsKeyValuePairs0..1Additional parameters passed by the CNFM client

Delete AS Instance Resource

REST Interfaces

  • DELETE .../as_instances/{asInstanceId}
  • 204 No Content
  • Send AsIdentifierDeletionNotification to Client

Update


TBD

  • No labels