:doc:`TelcoNetworkBuilder <../../tnb>` / Paginator / ListSolNetworkOperations

************************
ListSolNetworkOperations
************************



.. py:class:: TelcoNetworkBuilder.Paginator.ListSolNetworkOperations

  ::

    
    paginator = client.get_paginator('list_sol_network_operations')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`TelcoNetworkBuilder.Client.list_sol_network_operations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          nsInstanceId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type nsInstanceId: string
    :param nsInstanceId: 

      Network instance id filter, to retrieve network operations associated to a network instance.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: 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) --* 

          A token to resume pagination.

          
    