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

**********************
ListSolNetworkPackages
**********************



.. py:class:: TelcoNetworkBuilder.Paginator.ListSolNetworkPackages

  ::

    
    paginator = client.get_paginator('list_sol_network_packages')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :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**

      
      ::

        {
            'networkPackages': [
                {
                    'arn': 'string',
                    'id': 'string',
                    'metadata': {
                        'createdAt': datetime(2015, 1, 1),
                        'lastModified': datetime(2015, 1, 1)
                    },
                    'nsdDesigner': 'string',
                    'nsdId': 'string',
                    'nsdInvariantId': 'string',
                    'nsdName': 'string',
                    'nsdOnboardingState': 'CREATED'|'ONBOARDED'|'ERROR',
                    'nsdOperationalState': 'ENABLED'|'DISABLED',
                    'nsdUsageState': 'IN_USE'|'NOT_IN_USE',
                    'nsdVersion': 'string',
                    'vnfPkgIds': [
                        'string',
                    ]
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **networkPackages** *(list) --* 

          Network packages. A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.

          
          

          - *(dict) --* 

            Details of a network package.

             

            A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.

            
            

            - **arn** *(string) --* 

              Network package ARN.

              
            

            - **id** *(string) --* 

              ID of the individual network package.

              
            

            - **metadata** *(dict) --* 

              The metadata of the network package.

              
              

              - **createdAt** *(datetime) --* 

                The date that the resource was created.

                
              

              - **lastModified** *(datetime) --* 

                The date that the resource was last modified.

                
          
            

            - **nsdDesigner** *(string) --* 

              Designer of the onboarded network service descriptor in the network package.

              
            

            - **nsdId** *(string) --* 

              ID of the network service descriptor on which the network package is based.

              
            

            - **nsdInvariantId** *(string) --* 

              Identifies a network service descriptor in a version independent manner.

              
            

            - **nsdName** *(string) --* 

              Name of the onboarded network service descriptor in the network package.

              
            

            - **nsdOnboardingState** *(string) --* 

              Onboarding state of the network service descriptor in the network package.

              
            

            - **nsdOperationalState** *(string) --* 

              Operational state of the network service descriptor in the network package.

              
            

            - **nsdUsageState** *(string) --* 

              Usage state of the network service descriptor in the network package.

              
            

            - **nsdVersion** *(string) --* 

              Version of the onboarded network service descriptor in the network package.

              
            

            - **vnfPkgIds** *(list) --* 

              Identifies the function package for the function package descriptor referenced by the onboarded network package.

              
              

              - *(string) --* 
          
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    