ListSolNetworkOperations

class 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'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    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.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

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)
            },
            'nsInstanceId': 'string',
            'operationState': 'PROCESSING'|'COMPLETED'|'FAILED'|'CANCELLING'|'CANCELLED'
        },
    ],
    '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.

        • nsInstanceId (string) --

          ID of the network instance related to this operation.

        • operationState (string) --

          The state of the network operation.

    • NextToken (string) --

      A token to resume pagination.