TelcoNetworkBuilder.Paginator.
ListSolNetworkOperations
¶paginator = client.get_paginator('list_sol_network_operations')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from TelcoNetworkBuilder.Client.list_sol_network_operations()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'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)
},
'nsInstanceId': 'string',
'operationState': 'PROCESSING'|'COMPLETED'|'FAILED'|'CANCELLING'|'CANCELLED'
},
],
'NextToken': 'string'
}
Response Structure
Lists network operation occurrences. Lifecycle management operations are deploy, update, or delete operations.
Information parameters for a network operation.
Network operation ARN.
Error related to this specific network operation.
A human-readable explanation specific to this occurrence of the problem.
A human-readable title of the problem type.
ID of this network operation.
Type of lifecycle management network operation.
Metadata related to this network operation.
The date that the resource was created.
The date that the resource was last modified.
ID of the network instance related to this operation.
The state of the network operation.
A token to resume pagination.