TelcoNetworkBuilder / Client / list_sol_network_operations
list_sol_network_operations#
- TelcoNetworkBuilder.Client.list_sol_network_operations(**kwargs)#
Lists details for a network operation, including when the operation started and the status of the operation.
A network operation is any operation that is done to your network, such as network instance instantiation or termination.
See also: AWS API Documentation
Request Syntax
response = client.list_sol_network_operations( maxResults=123, nextToken='string', nsInstanceId='string' )
- Parameters:
maxResults (integer) – The maximum number of results to include in the response.
nextToken (string) – The token for the next page of results.
nsInstanceId (string) – Network instance id filter, to retrieve network operations associated to a network instance.
- Return type:
dict
- Returns:
Response Syntax
{ 'networkOperations': [ { 'arn': 'string', 'error': { 'detail': 'string', 'title': 'string' }, 'id': 'string', 'lcmOperationType': 'INSTANTIATE'|'UPDATE'|'TERMINATE', 'metadata': { 'createdAt': datetime(2015, 1, 1), 'lastModified': datetime(2015, 1, 1), 'nsdInfoId': 'string', 'vnfInstanceId': 'string' }, 'nsInstanceId': 'string', 'operationState': 'PROCESSING'|'COMPLETED'|'FAILED'|'CANCELLING'|'CANCELLED', 'updateType': 'MODIFY_VNF_INFORMATION'|'UPDATE_NS' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
networkOperations (list) –
Lists network operation occurrences. Lifecycle management operations are deploy, update, or delete operations.
(dict) –
Information parameters for a network operation.
arn (string) –
Network operation ARN.
error (dict) –
Error related to this specific network operation.
detail (string) –
A human-readable explanation specific to this occurrence of the problem.
title (string) –
A human-readable title of the problem type.
id (string) –
ID of this network operation.
lcmOperationType (string) –
Type of lifecycle management network operation.
metadata (dict) –
Metadata related to this network operation.
createdAt (datetime) –
The date that the resource was created.
lastModified (datetime) –
The date that the resource was last modified.
nsdInfoId (string) –
The network service descriptor id used for the operation.
Only present if the updateType is
UPDATE_NS
.vnfInstanceId (string) –
The network function id used for the operation.
Only present if the updateType is
MODIFY_VNF_INFO
.
nsInstanceId (string) –
ID of the network instance related to this operation.
operationState (string) –
The state of the network operation.
updateType (string) –
Type of the update. Only present if the network operation lcmOperationType is
UPDATE
.
nextToken (string) –
The token to use to retrieve the next page of results. This value is
null
when there are no more results to return.
Exceptions
TelcoNetworkBuilder.Client.exceptions.InternalServerException
TelcoNetworkBuilder.Client.exceptions.ThrottlingException
TelcoNetworkBuilder.Client.exceptions.ValidationException
TelcoNetworkBuilder.Client.exceptions.AccessDeniedException