TelcoNetworkBuilder / Client / list_sol_network_operations

list_sol_network_operations#

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

Request Syntax

response = client.list_sol_network_operations(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of results to include in the response.

  • nextToken (string) – The token for the next page of results.

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) –

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

Exceptions