Skip to content
Snippets Groups Projects
Commit 8d67588f authored by AHMADABB's avatar AHMADABB
Browse files

EGM First Commit on SOL5 Robot Tests.

parent 3481c26a
No related branches found
No related tags found
No related merge requests found
Showing
with 686 additions and 0 deletions
/.project
*** Settings ***
Resource environment/variables.txt
Resource NSFMOperationKeywords.robot
Library REST ${NFVO_SCHEMA}://${NFVO_HOST}:${NFVO_PORT}
Library JSONLibrary
Library JSONSchemaLibrary schemas/
Library OperatingSystem
*** Test Cases ***
POST Alarms - Method not implemented
[Documentation] Test ID: 8.4.2.1
... Test title:POST Alarms - Method not implemented
... Test objective: The objective is to post alarms
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do POST Alarms
Check HTTP Response Status Code Is 405
Get information about multiple alarms
[Documentation] Test ID: 8.4.2.2
... Test title: Get information about multiple alarms
... Test objective: The objective is to retrieve information about the alarm list
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do GET Alarms
Check HTTP Response Status Code Is 200
Check HTTP Response Header ContentType is ${CONTENT_TYPE}
Check HTTP Response Body Json Schema Is alarms.schema.json
Get information about multiple alarms with filters
[Documentation] Test ID: 8.4.2.2-2
... Test title: Get information about multiple alarms with filters
... Test objective: The objective is to retrieve information about the alarm list with filters
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do GET Alarms With Filters
Check HTTP Response Status Code Is 200
Check HTTP Response Header ContentType is ${CONTENT_TYPE}
Check HTTP Response Body Json Schema Is alarms.schema.json
Get information about multiple alarms Bad Request Invalid attribute-based filtering parameters
[Documentation] Test ID: 8.4.2.2-3
... Test title: Get information about multiple alarms - with Invalid attribute-based filtering parameters
... Test objective: The objective is to retrieve information about the alarm list
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do GET Alarms With Invalid Filters
Check HTTP Response Status Code Is 400
Check HTTP Response Body Json Schema Is ProblemDetails.schema.json
PUT Alarms - Method not implemented
[Documentation] Test ID: 8.4.2.3
... Test title: PUT Alarms - Method not implemented
... Test objective: The objective is to put alarms
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do PUT Alarms
Check HTTP Response Status Code Is 405
PATCH Alarms - Method not implemented
[Documentation] Test ID: 8.4.2.4
... Test title: PATCH Alarms - Method not implemented
... Test objective: The objective is to post alarms
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do PATCH Alarms
Check HTTP Response Status Code Is 405
DELETE Alarms - Method not implemented
[Documentation] Test ID: 8.4.2.5
... Test title: DELETE Alarms - Method not implemented
... Test objective: The objective is to DELETE alarms
... Pre-conditions:
... Reference: section 8.4.2 - SOL005 v2.4.1
... Config ID:
... Applicability:
... Post-Conditions:
Do DELETE Alarms
Check HTTP Response Status Code Is 405
*** Settings ***
Resource environment/variables.txt
Library REST ${NFVO_SCHEMA}://${NFVO_HOST}:${NFVO_PORT}
Library JSONLibrary
Library JSONSchemaLibrary schemas/
Library OperatingSystem
*** Keywords ***
Check HTTP Response Status Code Is
[Arguments] ${expected_status}
Log Validate Status code
Should Be Equal ${response[0]['status']} ${expected_status}
Log Status code validated
Check HTTP Response Header Contains
[Arguments] ${CONTENT_TYPE}
Should Contain ${response.headers} ${CONTENT_TYPE}
Log Header is present
Check HTTP Response Body Json Schema Is
[Arguments] ${schema}
Validate Json ${schema} ${response[0]['body']}
Log Json Schema Validation OK
Check HTTP Response Header ContentType is
[Arguments] ${expected_contentType}
Log Validate content type
Should Be Equal ${response[0]['headers']['Content-Type']} ${expected_contentType}
Log Content Type validated
Do POST Alarms
log Trying to perform a PUT. This method should not be implemented
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
Post ${apiRoot}/${apiName}/${apiVersion}/alarms
${outputResponse}= Output Response
Set Global Variable @{response} ${outputResponse}
Do PATCH Alarms
log Trying to perform a PATCH. This method should not be implemented
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
${response} = Patch ${apiRoot}/${apiName}/${apiVersion}/alarms
Do PUT Alarms
log Trying to perform a PUT. This method should not be implemented
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
${response} = Put ${apiRoot}/${apiName}/${apiVersion}/alarms
Do DELETE Alarms
log Trying to perform a DELETE. This method should not be implemented
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
${response} = Delete ${apiRoot}/${apiName}/${apiVersion}/alarms
Do GET Alarms
Log Query NFVO The GET method queries information about multiple alarms.
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
Log Execute Query
${response} = Get ${apiRoot}/${apiName}/${apiVersion}/alarms
Do GET Alarms With Filters
Log Query NFVO The GET method queries information about multiple alarms with filters.
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
Log Execute Query
${response} = Get ${apiRoot}/${apiName}/${apiVersion}/alarms?${alarm_filter}=${nsInstanceId}
Do GET Alarms With Invalid Filters
Log Query NFVO The GET method queries information about multiple alarms with filters.
Set Headers {"Accept":"${ACCEPT}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"Authorization":"${AUTHORIZATION}"}
Log Execute Query
${response} = Get ${apiRoot}/${apiName}/${apiVersion}/alarms?${invalid_alarm_filter}=${Id}
\ No newline at end of file
*** Variables ***
${NFVO_HOST} localhost # Hostname of the VNFM
${NFVO_PORT} 8080 # Listening port of the VNFM
${NFVO_SCHEMA} https
${AUTHORIZATION} Bearer QWxhZGRpbjpvcGVuIHNlc2FtZQ==
${ACCEPT} application/json
${AUTH_USAGE} 1
${alarm_filter} nsInstanceId
${nsInstanceId} 007c111c-38a1-42c0-a666-7475ecb1567c
${invalid_alarm_filter} badFilter
${apiRoot} /
${apiName} nsfm
${apiVersion} v1
${CONTENT_TYPE} application/json
${NFVO_DUPLICATION} 0
${alarmId} 6fc3539c-e602-4afa-8e13-962fb5a7d81d
${Etag}= an etag
${Etag_modified}= a modified etag
${CONTENT_TYPE_PATCH} application/merge-patch+json
${PerceivedSeverity} CRITICAL
${sub_filter} filter
${sub_filter_invalid} filter_invalid
${subscriptionId} 6fc3539c-e602-4afa-8e13-962fb5a7d81f
${callback_uri} http://localhost
${callback_port} 9091
${callback_endpoint} /endpoint
${callback_endpoint_error} /endpoint_404
${sleep_interval} 20s
${AlarmNotification} {}
${AlarmClearedNotification} {}
${AlarmListRebuiltNotification} {}
${response} {}
{
"description": "The enumeration EventType represents those types of events that trigger an alarm. - COMMUNICATIONS_ALARM: An alarm of this type is associated with the\n procedure and/or process required conveying information from one point\n to another (ITU-T Recommendation X.733).\n- PROCESSING_ERROR_ALARM: An alarm of this type is associated with a\n software or processing fault (ITU-T Recommendation X.733).\n- ENVIRONMENTAL_ALARM: An alarm of this type is associated with a\n condition related to an enclosure in which the equipment resides\n (ITU-T Recommendation X.733).\n- QOS_ALARM: An alarm of this type is associated with degradation in the\n quality of a service (ITU-T Recommendation X.733).\n- EQUIPMENT_ALARM: An alarm of this type is associated with an equipment\n fault (ITU-T Recommendation X.733).\n",
"type": "string",
"enum": [
"COMMUNICATIONS_ALARM",
"PROCESSING_ERROR_ALARM",
"ENVIRONMENTAL_ALARM",
"QOS_ALARM",
"EQUIPMENT_ALARM"
]
}
\ No newline at end of file
{
"description": "This type represents the faulty component that has a negative impact on an NS. It shall comply with the provisions defined in Table 8.5.3.4-1.\n",
"type": "object",
"properties": {
"faultyNestedNsInstanceId": {
"description": "Identifier of the faulty nested NS instance.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"faultyResourceType": {
"description": "Identifier of the faulty NS virtual link instance.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"faultyNsVirtualLinkInstanceId": {
"description": "Identifier of the faulty VNF instance.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
}
}
}
\ No newline at end of file
{
"description": "This type represents the faulty virtual resources that have a negative impact on a NS.\n",
"type": "object",
"required": [
"faultyResource",
"faultyResourceType"
],
"properties": {
"faultyResource": {
"description": "Information that identifies the faulty resource instance and its managing entity.\n",
"$ref": "SOL005_def.yaml#/definitions/ResourceHandle"
},
"faultyResourceType": {
"description": "Type of the faulty resource.\n",
"$ref": "#/definitions/FaultyResourceType"
}
}
}
\ No newline at end of file
{
"description": "The enumeration FaultyResourceType represents those types of faulty resource. Acceptable values are: - COMPUTE - Virtual compute resource. - STORAGE - Virtual storage resource. - NETWORK - Virtual network resource.\n",
"type": "string",
"enum": [
"COMPUTE",
"STORAGE",
"NETWORK"
]
}
\ No newline at end of file
{
"description": "This type represents a subscription filter related to notifications about NS faults. It shall comply with the provisions defined in Table 8.5.3.2-1. At a particular nesting level in the filter structure, the following applies: All attributes shall match in order for the filter to match (logical \"and\" between different filter attributes). If an attribute is an array, the attribute shall match if at least one of the values in the array matches (logical \"or\" between the values of one filter attribute)..\n",
"type": "object",
"properties": {
"nsInstanceSubscriptionFilter": {
"description": "Filter criteria to select NS instances about which to notify. \n",
"$ref": "SOL005_def.yaml#/definitions/NsInstanceSubscriptionFilter"
},
"notificationTypes": {
"description": "Match particular notification types. Permitted values: - AlarmNotification - AlarmClearedNotification - AlarmListRebuiltNotification.\n",
"type": "array",
"items": {
"type": "string",
"enum": [
"AlarmNotification",
"AlarmClearedNotification",
"AlarmListRebuiltNotification"
]
}
},
"faultyResourceTypes": {
"description": "Match alarms related to NSs with a faulty resource type listed in this attribute.\n",
"type": "array",
"items": {
"$ref": "#/definitions/FaultyResourceType"
}
},
"perceivedSeverities": {
"description": "Match VNF alarms with a perceived severity listed in this attribute.\n",
"type": "array",
"items": {
"$ref": "#/definitions/PerceivedSeverityType"
}
},
"eventTypes": {
"description": "Match VNF alarms with an event type listed in this attribute.\n",
"type": "array",
"items": {
"$ref": "#/definitions/EventType"
}
},
"probableCauses": {
"description": "Match VNF alarms with a probable cause listed in this attribute.\n",
"type": "array",
"items": {
"type": "string"
}
}
}
}
\ No newline at end of file
{
"description": "This type represents a subscription related to notifications about VNF faults.\n",
"type": "object",
"required": [
"id",
"callbackUri",
"_links"
],
"properties": {
"id": {
"description": "Identifier of this subscription resource.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"filter": {
"description": "Filter settings for this subscription, to define the subset of all notifications this subscription relates to. A particular notification is sent to the subscriber if the filter matches, or if there is no filter.\n",
"$ref": "#/definitions/FmNotificationsFilter"
},
"callbackUri": {
"description": "The URI of the endpoint to send the notification to.\n",
"type": "string",
"format": "url"
},
"_links": {
"description": "Links for this resource.\n",
"type": "object",
"required": [
"self"
],
"properties": {
"self": {
"description": "URI of this resource.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
}
}
}
}
}
\ No newline at end of file
{
"description": "This type represents a subscription request related to notifications about VNF faults.\n",
"type": "object",
"required": [
"callbackUri"
],
"properties": {
"filter": {
"description": "Filter settings for this subscription, to define the subset of all notifications this subscription relates to. A particular notification is sent to the subscriber if the filter matches, or if there is no filter.\n",
"$ref": "#/definitions/FmNotificationsFilter"
},
"callbackUri": {
"description": "The URI of the endpoint to send the notification to.\n",
"type": "string",
"format": "url"
},
"authentication": {
"description": "Authentication parameters to configure the use of Authorization when sending notifications corresponding to this subscription. This attribute shall only be present if the subscriber requires authorization of notifications.\n",
"$ref": "SOL005_def.yaml#/definitions/SubscriptionAuthentication"
}
}
}
\ No newline at end of file
{
"description": "Indicates the relative level of urgency for operator attention. * CRITICAL: The Critical severity level indicates that a service\n affecting condition has occurred and an immediate corrective action\n is required. Such a severity can be reported, for example, when a\n managed object becomes totally out of service and its capability needs\n to be restored (ITU-T Recommendation X.733).\n* MAJOR: The Major severity level indicates that a service affecting\n condition has developed and an urgent corrective action is required.\n Such a severity can be reported, for example, when there is a severe\n degradation in the capability of the managed object and its full\n capability needs to be restored (ITU-T Recommendation X.733).\n* MINOR: The Minor severity level indicates the existence of a\n non-service affecting fault condition and that corrective action\n should be taken in order to prevent a more serious (for example,\n service affecting) fault. Such a severity can be reported, for\n example, when the detected alarm condition is not currently degrading\n the capacity of the managed object (ITU-T Recommendation X.733).\n* WARNING: The Warning severity level indicates the detection of a\n potential or impending service affecting fault, before any significant\n effects have been felt. Action should be taken to further diagnose (if\n necessary) and correct the problem in order to prevent it from\n becoming a more serious service affecting fault (ITU-T Recommendation\n X.733).\n* INDETERMINATE: The Indeterminate severity level indicates that the\n severity level cannot be determined (ITU-T Recommendation X.733).\n* CLEARED: The Cleared severity level indicates the clearing of one or\n more previously reported alarms. This alarm clears all alarms for this\n managed object that have the same Alarm type, Probable cause and\n Specific problems (if given) (ITU-T Recommendation X.733).\n",
"type": "string",
"enum": [
"CRITICAL",
"MAJOR",
"MINOR",
"WARNING",
"INDETERMINATE",
"CLEARED"
]
}
\ No newline at end of file
{
"description": "The alarm data type encapsulates information about an alarm. It shall comply with the provisions defined in Table 8.5.2.4-1\n",
"type": "object",
"required": [
"id",
"managedObjectId",
"alarmRaisedTime",
"rootCauseFaultyComponent",
"ackState",
"perceivedSeverity",
"eventTime",
"eventType",
"probableCause",
"isRootCause",
"_links"
],
"properties": {
"id": {
"description": "Identifier of this Alarm information element.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"managedObjectId": {
"description": "Identifier of the affected NS instance.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"rootCauseFaultyComponent": {
"description": "The NS components that are causing the NS fault.\n",
"$ref": "#/definitions/FaultyComponentInfo"
},
"rootCauseFaultyResource": {
"description": "The virtualised resources that are causing the NS fault. It shall be present when the faulty component is \"NS Virtual Link\" or \"VNF\".\n",
"$ref": "#/definitions/FaultyResourceInfo"
},
"alarmRaisedTime": {
"description": "Alarm identifier.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"alarmChangedTime": {
"description": "The time stamp indicating when the alarm was cleared.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"alarmClearedTime": {
"description": "Links to resources related to this notification.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"ackState": {
"description": "Acknowledgment state of the alarm. Permitted values: UNACKNOWLEDGED ACKNOWLEDGED\n",
"type": "string",
"enum": [
"UNACKNOWLEDGED",
"ACKNOWLEDGED"
]
},
"perceivedSeverity": {
"description": "Perceived severity of the managed object failure.\n",
"$ref": "#/definitions/PerceivedSeverityType"
},
"eventTime": {
"description": "Time stamp indicating when the fault was observed.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"eventType": {
"description": "Type of event.\n",
"$ref": "#/definitions/EventType"
},
"faultType": {
"description": "Additional information to clarify the type of the fault.\n",
"type": "string"
},
"probableCause": {
"description": "Information about the probable cause of the fault.\n",
"type": "string"
},
"isRootCause": {
"description": "Attribute indicating if this fault is the root for other correlated alarms. If TRUE, then the alarms listed in the attribute CorrelatedAlarmId are caused by this fault.\n",
"type": "boolean"
},
"correlatedAlarmIds": {
"description": "List of identifiers of other alarms correlated to this fault.\n",
"type": "array",
"items": {
"$ref": "SOL005_def.yaml#/definitions/Identifier"
}
},
"faultDetails": {
"description": "Provides additional information about the fault..\n",
"type": "string"
},
"_links": {
"description": "Links for this resource.\n",
"type": "object",
"required": [
"self"
],
"properties": {
"self": {
"description": "URI of this resource.\n",
"$ref": "SOL005_def.yaml#/definitions/Link",
"objectInstance": {
"description": "Link to the resource representing the NS instance to which the notified alarm is correlated. Shall be present if the NS instance information is accessible as a resource.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
}
}
}
}
}
}
\ No newline at end of file
{
"description": "This type represents an alarm cleared notification about VNF faults. The notification shall be triggered by the VNFM when an alarm has been cleared.\n",
"type": "object",
"required": [
"id",
"notificationType",
"subscriptionId",
"timeStamp",
"alarmId",
"alarmClearedTime",
"_links"
],
"properties": {
"id": {
"description": "Identifier of this notification. If a notification is sent multiple times due to multiple subscriptions, the \"id\" attribute of all these notifications shall have the same value.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"notificationType": {
"description": "Discriminator for the different notification types. Shall be set to \"AlarmClearedNotification\" for this notification type.\n",
"type": "string",
"enum": [
"AlarmClearedNotification"
]
},
"subscriptionId": {
"description": "Identifier of the subscription that this notification relates to.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"timeStamp": {
"description": "Date-time of the generation of the notification.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"alarmId": {
"description": "Alarm identifier.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"alarmClearedTime": {
"description": "The time stamp indicating when the alarm was cleared.\n"
},
"_links": {
"description": "Links to resources related to this notification.\n",
"type": "object",
"required": [
"subscription",
"alarm"
],
"properties": {
"subscription": {
"description": "Link to the related subscription.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
},
"alarm": {
"description": "Link to the resource that represents the related alarm.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
}
}
}
}
}
\ No newline at end of file
{
"description": "This type represents a notification that the alarm list has been rebuilt, e.g. if the VNFM detects its storage holding the alarm list is corrupted. The notification shall be triggered by the VNFM when the alarm list has been rebuilt.\n",
"type": "object",
"required": [
"id",
"notificationType",
"subscriptionId",
"timeStamp",
"_links"
],
"properties": {
"id": {
"description": "Identifier of this notification. If a notification is sent multiple times due to multiple subscriptions, the \"id\" attribute of all these notifications shall have the same value.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"notificationType": {
"description": "Discriminator for the different notification types. Shall be set to \"AlarmListRebuiltNotification\" for this notification type.\n",
"type": "string",
"enum": [
"AlarmListRebuiltNotification"
]
},
"subscriptionId": {
"description": "Identifier of the subscription that this notification relates to.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"timeStamp": {
"description": "Date-time of the generation of the notification.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"_links": {
"description": "Links to resources related to this notification.\n",
"type": "object",
"required": [
"subscription",
"alarms"
],
"properties": {
"subscription": {
"description": "Link to the related subscription.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
},
"alarms": {
"description": "Link to the alarm list, i.e. the \"Alarms\" resource.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
}
}
}
}
}
\ No newline at end of file
{
"description": "This type represents attribute modifications for an \"Individual alarm\" resource, i.e. modifications to a resource representation based on the \"Alarm\" data type. The attributes of \"Alarm\" that can be modified according to the provisions in clause 8.5.2.4 are included in the \"AlarmModifications\" data type. The \"AlarmModifications\" data type shall comply with the provisions defined in Table 8.5.2.8-1.\n",
"type": "object",
"required": [
"ackState"
],
"properties": {
"ackState": {
"description": "New value of the \"ackState\" attribute in \"Alarm\". Permitted values: - ACKNOWLEDGED\n",
"type": "string",
"enum": [
"ACKNOWLEDGED"
]
}
}
}
\ No newline at end of file
{
"description": "This type represents an alarm notification about NS faults.\n",
"type": "object",
"required": [
"id",
"notificationType",
"subscriptionId",
"timeStamp",
"alarm",
"_links"
],
"properties": {
"id": {
"description": "Identifier of this notification. If a notification is sent multiple times due to multiple subscriptions, the \"id\" attribute of all these notifications shall have the same value.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"notificationType": {
"description": "Discriminator for the different notification types. Shall be set to \"AlarmNotification\" for this notification type.\n",
"type": "string",
"enum": [
"AlarmClearedNotification"
]
},
"subscriptionId": {
"description": "Identifier of the subscription that this notification relates to.\n",
"$ref": "SOL005_def.yaml#/definitions/Identifier"
},
"timeStamp": {
"description": "Date-time of the generation of the notification.\n",
"$ref": "SOL005_def.yaml#/definitions/DateTime"
},
"alarm": {
"description": "Information about an alarm including AlarmId, affected NS identifier, and FaultDetails.\n",
"$ref": "#/definitions/Alarm"
},
"alarmClearedTime": {
"description": "The time stamp indicating when the alarm was cleared.\n"
},
"_links": {
"description": "Links to resources related to this notification.\n",
"type": "object",
"required": [
"subscription",
"alarm"
],
"properties": {
"subscription": {
"description": "Link to the related subscription.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
},
"alarm": {
"description": "Link to the resource that represents the related alarm.\n",
"$ref": "SOL005_def.yaml#/definitions/Link"
}
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment