:doc:`TelcoNetworkBuilder <../../tnb>` / Client / list_sol_network_operations

***************************
list_sol_network_operations
***************************



.. py:method:: 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 <https://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperations>`_  


  **Request Syntax**
  ::

    response = client.list_sol_network_operations(
        maxResults=123,
        nextToken='string',
        nsInstanceId='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to include in the response.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next page of results.

    

  
  :type nsInstanceId: string
  :param nsInstanceId: 

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

    

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

        The token to use to retrieve the next page of results. This value is ``null`` when there are no more results to return.

        
  
  **Exceptions**
  
  *   :py:class:`TelcoNetworkBuilder.Client.exceptions.InternalServerException`

  
  *   :py:class:`TelcoNetworkBuilder.Client.exceptions.ThrottlingException`

  
  *   :py:class:`TelcoNetworkBuilder.Client.exceptions.ValidationException`

  
  *   :py:class:`TelcoNetworkBuilder.Client.exceptions.AccessDeniedException`

  