catalystwan 0.33.7.dev0__tar.gz → 0.33.7.dev2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (582) hide show
  1. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/PKG-INFO +1 -1
  2. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/report.py +29 -9
  3. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/service.py +83 -17
  4. catalystwan-0.33.7.dev2/catalystwan/api/builders/feature_profiles/transport.py +214 -0
  5. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/feature_profile_api.py +213 -142
  6. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/__init__.py +13 -39
  7. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +10 -10
  8. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +10 -10
  9. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +10 -10
  10. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +19 -11
  11. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +23 -0
  12. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +6 -6
  13. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +43 -16
  14. catalystwan-0.33.7.dev2/catalystwan/endpoints/configuration/network_hierarchy.py +13 -0
  15. catalystwan-0.33.7.dev2/catalystwan/endpoints/configuration/topology_group.py +25 -0
  16. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_feature_profile.py +8 -11
  17. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/endpoints_container.py +5 -1
  18. catalystwan-0.33.7.dev2/catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +397 -0
  19. catalystwan-0.33.7.dev2/catalystwan/integration_tests/feature_profile/sdwan/test_extended_community.py +53 -0
  20. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_service.py +69 -20
  21. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_system.py +70 -0
  22. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +87 -67
  23. catalystwan-0.33.7.dev2/catalystwan/integration_tests/profile_builder/base.py +22 -0
  24. catalystwan-0.33.7.dev2/catalystwan/integration_tests/profile_builder/test_pb_service.py +78 -0
  25. catalystwan-0.33.7.dev2/catalystwan/integration_tests/profile_builder/test_pb_transport.py +56 -0
  26. catalystwan-0.33.7.dev2/catalystwan/integration_tests/test_data/__init__.py +117 -0
  27. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/common.py +9 -3
  28. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/config_migration.py +173 -13
  29. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/common.py +136 -17
  30. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/parcel.py +27 -6
  31. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +13 -0
  32. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +334 -0
  33. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +336 -0
  34. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +220 -0
  35. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +2 -2
  36. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +816 -0
  37. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +2 -1
  38. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +5 -2
  39. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +0 -1
  40. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +34 -0
  41. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +10 -2
  42. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +6 -10
  43. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +2 -1
  44. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +26 -0
  45. {catalystwan-0.33.7.dev0/catalystwan/models/configuration/feature_profile/sdwan/transport → catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/routing}/bgp.py +7 -34
  46. {catalystwan-0.33.7.dev0/catalystwan/models/configuration/feature_profile/sdwan/service → catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/routing}/ospf.py +2 -1
  47. {catalystwan-0.33.7.dev0/catalystwan/models/configuration/feature_profile/sdwan/service → catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/routing}/ospfv3.py +11 -7
  48. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +11 -19
  49. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +2 -2
  50. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +21 -48
  51. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +6 -0
  52. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +173 -0
  53. catalystwan-0.33.7.dev2/catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +173 -0
  54. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +12 -4
  55. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +4 -2
  56. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +3 -2
  57. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +1 -1
  58. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +11 -60
  59. catalystwan-0.33.7.dev2/catalystwan/models/configuration/network_hierarchy.py +88 -0
  60. catalystwan-0.33.7.dev2/catalystwan/models/configuration/topology_group.py +35 -0
  61. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/control.py +1 -0
  62. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/app.py +6 -0
  63. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/policy_definition.py +2 -3
  64. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_data/__init__.py +7 -3
  65. catalystwan-0.33.7.dev2/catalystwan/tests/config_migration/test_data/feature_templates/dhcp.py +31 -0
  66. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_data/feature_templates/interface.py +79 -0
  67. catalystwan-0.33.7.dev2/catalystwan/tests/config_migration/test_data/feature_templates/ospfv3.py +147 -0
  68. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_normalizer.py +3 -0
  69. catalystwan-0.33.7.dev2/catalystwan/tests/config_migration/test_transform.py +516 -0
  70. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_endpoints.py +7 -10
  71. catalystwan-0.33.7.dev2/catalystwan/tests/test_extended_community_converter.py +38 -0
  72. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_feature_profile_api.py +11 -6
  73. catalystwan-0.33.7.dev2/catalystwan/tests/test_mirror_converter.py +31 -0
  74. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/converters/feature_template/bgp.py +244 -0
  75. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/cellular_controller.py +6 -0
  76. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/converters/feature_template/dhcp.py +118 -0
  77. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/ethernet.py +2 -1
  78. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/lan/ethernet.py +13 -8
  79. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/lan/ipsec.py +16 -3
  80. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/normalizer.py +9 -7
  81. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/ospf.py +7 -5
  82. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/ospfv3.py +34 -23
  83. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/parcel_factory.py +4 -4
  84. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/vpn.py +332 -329
  85. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/ethernet.py +13 -5
  86. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/converters/policy/policy_definitions.py +186 -0
  87. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/policy/policy_lists.py +162 -41
  88. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/converters/utils.py +7 -0
  89. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/creators/config_pusher.py +242 -0
  90. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/creators/strategy/parcels.py +70 -15
  91. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/factories/feature_profile_api.py +2 -0
  92. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/reverters/config_reverter.py +65 -0
  93. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/steps/constants.py +21 -0
  94. catalystwan-0.33.7.dev2/catalystwan/utils/config_migration/steps/transform.py +258 -0
  95. catalystwan-0.33.7.dev2/catalystwan/utils/model.py +35 -0
  96. catalystwan-0.33.7.dev2/catalystwan/utils/type_check.py +21 -0
  97. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/workflows/config_migration.py +146 -33
  98. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/pyproject.toml +1 -1
  99. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/setup.py +5 -1
  100. catalystwan-0.33.7.dev0/catalystwan/api/builders/feature_profiles/transport.py +0 -119
  101. catalystwan-0.33.7.dev0/catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +0 -120
  102. catalystwan-0.33.7.dev0/catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +0 -32
  103. catalystwan-0.33.7.dev0/catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +0 -442
  104. catalystwan-0.33.7.dev0/catalystwan/models/configuration/topology_group.py +0 -13
  105. catalystwan-0.33.7.dev0/catalystwan/tests/config_migration/test_data/feature_templates/malformed.py +0 -19
  106. catalystwan-0.33.7.dev0/catalystwan/tests/config_migration/test_transform.py +0 -253
  107. catalystwan-0.33.7.dev0/catalystwan/utils/config_migration/converters/feature_template/bgp.py +0 -91
  108. catalystwan-0.33.7.dev0/catalystwan/utils/config_migration/converters/feature_template/dhcp.py +0 -108
  109. catalystwan-0.33.7.dev0/catalystwan/utils/config_migration/converters/policy/policy_definitions.py +0 -62
  110. catalystwan-0.33.7.dev0/catalystwan/utils/config_migration/creators/config_pusher.py +0 -121
  111. catalystwan-0.33.7.dev0/catalystwan/utils/config_migration/reverters/config_reverter.py +0 -34
  112. catalystwan-0.33.7.dev0/catalystwan/utils/config_migration/steps/transform.py +0 -166
  113. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/LICENSE +0 -0
  114. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/README.md +0 -0
  115. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/__init__.py +0 -0
  116. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/abstractions.py +0 -0
  117. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/__init__.py +0 -0
  118. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/admin_tech_api.py +0 -0
  119. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/administration.py +0 -0
  120. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/alarms_api.py +0 -0
  121. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/api_container.py +0 -0
  122. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/basic_api.py +0 -0
  123. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/__init__.py +0 -0
  124. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/__init__.py +0 -0
  125. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/builder_factory.py +0 -0
  126. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/cli.py +0 -0
  127. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/other.py +0 -0
  128. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/builders/feature_profiles/system.py +0 -0
  129. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/config_device_inventory_api.py +0 -0
  130. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/config_group_api.py +0 -0
  131. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/configuration_groups/parcel.py +0 -0
  132. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/dashboard_api.py +0 -0
  133. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/device_action_api.py +0 -0
  134. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/logs_api.py +0 -0
  135. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/monitoring_status_api.py +0 -0
  136. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/mtt_aaa_api.py +0 -0
  137. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/omp_api.py +0 -0
  138. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/packet_capture_api.py +0 -0
  139. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/parcel_api.py +0 -0
  140. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/partition_manager_api.py +0 -0
  141. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/policy_api.py +0 -0
  142. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/resource_pool_api.py +0 -0
  143. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/software_action_api.py +0 -0
  144. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/speedtest_api.py +0 -0
  145. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/task_status_api.py +0 -0
  146. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/template_api.py +0 -0
  147. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/README.md +0 -0
  148. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/bool_str.py +0 -0
  149. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/cli_template.py +0 -0
  150. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/device_template/device_template.py +0 -0
  151. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/device_template/device_template_payload.json.j2 +0 -0
  152. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/device_variable.py +0 -0
  153. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/feature_template.py +0 -0
  154. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/feature_template_field.py +0 -0
  155. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/feature_template_payload.py +0 -0
  156. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_aaa_model.py +0 -0
  157. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_banner_model.py +0 -0
  158. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_bfd_model.py +0 -0
  159. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_bgp_model.py +0 -0
  160. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_logging_model.py +0 -0
  161. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_ntp_model.py +0 -0
  162. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_omp_model.py +0 -0
  163. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_ospf.py +0 -0
  164. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_ospfv3.py +0 -0
  165. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_secure_internet_gateway.py +0 -0
  166. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_snmp_model.py +0 -0
  167. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_system.py +0 -0
  168. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_vpn_interface_model.py +0 -0
  169. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cisco_vpn_model.py +0 -0
  170. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/cli_template.py +0 -0
  171. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/omp_vsmart_model.py +0 -0
  172. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/security_vsmart_model.py +0 -0
  173. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/supported.py +0 -0
  174. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/models/system_vsmart_model.py +0 -0
  175. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/aaa/aaa_model.py +0 -0
  176. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/aaa/feature/aaa.json.j2 +0 -0
  177. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/aaa/feature/accounting.json.j2 +0 -0
  178. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/aaa/feature/radius.json.j2 +0 -0
  179. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/aaa/feature/tacacs.json.j2 +0 -0
  180. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/aaa/feature/user.json.j2 +0 -0
  181. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/cisco_vpn/cisco_vpn_model.py +0 -0
  182. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/cisco_vpn/feature/cisco_vpn.json.j2 +0 -0
  183. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/cisco_vpn/feature/dns.json.j2 +0 -0
  184. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/cisco_vpn/feature/ipv4route.json.j2 +0 -0
  185. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/cisco_vpn/feature/ipv6route.json.j2 +0 -0
  186. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/cisco_vpn/feature/mapping.json.j2 +0 -0
  187. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/tenant/tenant.json.j2 +0 -0
  188. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/templates/payloads/tenant/tenant_model.py +0 -0
  189. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/tenant_backup_restore_api.py +0 -0
  190. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/tenant_management_api.py +0 -0
  191. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/tenant_migration_api.py +0 -0
  192. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/api/versions_utils.py +0 -0
  193. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/dataclasses.py +0 -0
  194. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/administration_user_and_group.py +0 -0
  195. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/certificate_management_device.py +0 -0
  196. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/certificate_management_vmanage.py +0 -0
  197. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/client.py +0 -0
  198. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/cluster_management.py +0 -0
  199. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/device/software_update.py +0 -0
  200. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/disaster_recovery.py +0 -0
  201. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +0 -0
  202. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +0 -0
  203. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +0 -0
  204. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +0 -0
  205. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/abstractions.py +0 -0
  206. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/access_control_list.py +0 -0
  207. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +0 -0
  208. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/aip.py +0 -0
  209. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/amp.py +0 -0
  210. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/cflowd.py +0 -0
  211. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/control.py +0 -0
  212. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/device_access.py +0 -0
  213. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +0 -0
  214. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/dns_security.py +0 -0
  215. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +0 -0
  216. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +0 -0
  217. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/mesh.py +0 -0
  218. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/qos_map.py +0 -0
  219. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/rewrite.py +0 -0
  220. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/route_policy.py +0 -0
  221. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/rule_set.py +0 -0
  222. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/security_group.py +0 -0
  223. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +0 -0
  224. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +0 -0
  225. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/traffic_data.py +0 -0
  226. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/url_filtering.py +0 -0
  227. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +0 -0
  228. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +0 -0
  229. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/app.py +0 -0
  230. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/app_probe.py +0 -0
  231. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/as_path.py +0 -0
  232. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/class_map.py +0 -0
  233. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/color.py +0 -0
  234. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/community.py +0 -0
  235. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +0 -0
  236. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/data_prefix.py +0 -0
  237. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/expanded_community.py +0 -0
  238. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/extended_community.py +0 -0
  239. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/fqdn.py +0 -0
  240. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/geo_location.py +0 -0
  241. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/ips_signature.py +0 -0
  242. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +0 -0
  243. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/local_app.py +0 -0
  244. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/local_domain.py +0 -0
  245. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/mirror.py +0 -0
  246. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/policer.py +0 -0
  247. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/port.py +0 -0
  248. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +0 -0
  249. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/prefix.py +0 -0
  250. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/protocol_name.py +0 -0
  251. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/region.py +0 -0
  252. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/site.py +0 -0
  253. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/sla.py +0 -0
  254. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +0 -0
  255. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/tloc.py +0 -0
  256. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/trunkgroup.py +0 -0
  257. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/umbrella_data.py +0 -0
  258. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/url_allow_list.py +0 -0
  259. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/url_block_list.py +0 -0
  260. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/vpn.py +0 -0
  261. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/list/zone.py +0 -0
  262. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/security_template.py +0 -0
  263. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/vedge_template.py +0 -0
  264. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/policy/vsmart_template.py +0 -0
  265. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration/software_actions.py +0 -0
  266. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_dashboard_status.py +0 -0
  267. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_device_actions.py +0 -0
  268. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_device_inventory.py +0 -0
  269. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_device_template.py +0 -0
  270. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_group.py +0 -0
  271. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/configuration_settings.py +0 -0
  272. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/misc.py +0 -0
  273. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/monitoring/device_details.py +0 -0
  274. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/monitoring/server_info.py +0 -0
  275. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/monitoring/status.py +0 -0
  276. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/real_time_monitoring/reboot_history.py +0 -0
  277. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/sdavc_cloud_connector.py +0 -0
  278. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/tenant_backup_restore.py +0 -0
  279. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/tenant_management.py +0 -0
  280. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/tenant_migration.py +0 -0
  281. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/endpoints/troubleshooting_tools/device_connectivity.py +0 -0
  282. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/exceptions.py +0 -0
  283. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/base.py +0 -0
  284. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +0 -0
  285. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +0 -0
  286. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_other.py +0 -0
  287. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +0 -0
  288. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +0 -0
  289. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/test_config_migration.py +0 -0
  290. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/integration_tests/test_find_template_values.py +0 -0
  291. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/logging.conf +0 -0
  292. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/common.py +0 -0
  293. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/docs/README.md +0 -0
  294. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/docs/diagram.png +0 -0
  295. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/README.md +0 -0
  296. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/builder.py +0 -0
  297. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +0 -0
  298. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +0 -0
  299. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +0 -0
  300. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +0 -0
  301. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +0 -0
  302. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +0 -0
  303. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +0 -0
  304. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +0 -0
  305. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +0 -0
  306. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +0 -0
  307. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +0 -0
  308. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +0 -0
  309. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +0 -0
  310. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +0 -0
  311. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +0 -0
  312. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +0 -0
  313. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +0 -0
  314. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +0 -0
  315. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/policer.py +0 -0
  316. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +0 -0
  317. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +0 -0
  318. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +0 -0
  319. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +0 -0
  320. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +0 -0
  321. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +0 -0
  322. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +0 -0
  323. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +0 -0
  324. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +0 -0
  325. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +0 -0
  326. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +0 -0
  327. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +0 -0
  328. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +0 -0
  329. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +0 -0
  330. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +0 -0
  331. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +0 -0
  332. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +0 -0
  333. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +0 -0
  334. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +0 -0
  335. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +0 -0
  336. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +0 -0
  337. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +0 -0
  338. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +0 -0
  339. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +0 -0
  340. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +0 -0
  341. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +0 -0
  342. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +0 -0
  343. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +0 -0
  344. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +0 -0
  345. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +0 -0
  346. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +0 -0
  347. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +0 -0
  348. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +0 -0
  349. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +0 -0
  350. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +0 -0
  351. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +0 -0
  352. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +0 -0
  353. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +0 -0
  354. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +0 -0
  355. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +0 -0
  356. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +0 -0
  357. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +0 -0
  358. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +0 -0
  359. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +0 -0
  360. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +0 -0
  361. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +0 -0
  362. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/security.py +0 -0
  363. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +0 -0
  364. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +0 -0
  365. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +0 -0
  366. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +0 -0
  367. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +0 -0
  368. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +0 -0
  369. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +0 -0
  370. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +0 -0
  371. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +0 -0
  372. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +0 -0
  373. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +0 -0
  374. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +0 -0
  375. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +0 -0
  376. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +0 -0
  377. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/configuration/profile_type.py +0 -0
  378. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/device_inventory.py +0 -0
  379. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/feature_profile_parcel.py +0 -0
  380. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/misc/application_protocols.py +0 -0
  381. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/monitoring/server_info.py +0 -0
  382. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/__init__.py +0 -0
  383. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/centralized.py +0 -0
  384. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/access_control_list.py +0 -0
  385. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/access_control_list_ipv6.py +0 -0
  386. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/aip.py +0 -0
  387. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/amp.py +0 -0
  388. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/cflowd.py +0 -0
  389. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/device_access.py +0 -0
  390. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/device_access_ipv6.py +0 -0
  391. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/dns_security.py +0 -0
  392. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/hub_and_spoke.py +0 -0
  393. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/intrusion_prevention.py +0 -0
  394. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/mesh.py +0 -0
  395. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/qos_map.py +0 -0
  396. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/rewrite.py +0 -0
  397. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/route_policy.py +0 -0
  398. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/rule_set.py +0 -0
  399. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/security_group.py +0 -0
  400. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/ssl_decryption.py +0 -0
  401. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +0 -0
  402. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/traffic_data.py +0 -0
  403. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/url_filtering.py +0 -0
  404. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/vpn_membership.py +0 -0
  405. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/definition/zone_based_firewall.py +0 -0
  406. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/app_probe.py +0 -0
  407. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/as_path.py +0 -0
  408. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/class_map.py +0 -0
  409. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/color.py +0 -0
  410. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/communities.py +0 -0
  411. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/data_ipv6_prefix.py +0 -0
  412. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/data_prefix.py +0 -0
  413. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/fqdn.py +0 -0
  414. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/geo_location.py +0 -0
  415. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/ips_signature.py +0 -0
  416. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/ipv6_prefix.py +0 -0
  417. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/local_app.py +0 -0
  418. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/local_domain.py +0 -0
  419. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/mirror.py +0 -0
  420. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/policer.py +0 -0
  421. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/port.py +0 -0
  422. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/preferred_color_group.py +0 -0
  423. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/prefix.py +0 -0
  424. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/protocol_name.py +0 -0
  425. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/region.py +0 -0
  426. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/site.py +0 -0
  427. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/sla.py +0 -0
  428. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/threat_grid_api_key.py +0 -0
  429. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/tloc.py +0 -0
  430. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/trunkgroup.py +0 -0
  431. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/umbrella_data.py +0 -0
  432. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/url.py +0 -0
  433. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/vpn.py +0 -0
  434. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/list/zone.py +0 -0
  435. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/localized.py +0 -0
  436. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/policy.py +0 -0
  437. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/policy_list.py +0 -0
  438. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/policy/security.py +0 -0
  439. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/templates.py +0 -0
  440. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/models/tenant.py +0 -0
  441. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/response.py +0 -0
  442. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/session.py +0 -0
  443. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/__init__.py +0 -0
  444. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_converter_chooser.py +0 -0
  445. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_data/feature_templates/__init__.py +0 -0
  446. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_data/feature_templates/vpn.py +0 -0
  447. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_device_template_with_info.py +0 -0
  448. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/config_migration/test_merge_parcels.py +0 -0
  449. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/models/__init__.py +0 -0
  450. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/Basic_Cisco_VPN_Model.json +0 -0
  451. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/banner_1.json +0 -0
  452. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/alias.json +0 -0
  453. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/basic.json +0 -0
  454. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/basic_no_value.json +0 -0
  455. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/children.json +0 -0
  456. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/children_nested.json +0 -0
  457. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/children_nested_datapath.json +0 -0
  458. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/basic/data_path.json +0 -0
  459. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/cisco_bfd.json +0 -0
  460. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/complex_aaa.json +0 -0
  461. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/complex_cisco_vpn.json +0 -0
  462. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/default_cisco_system.json +0 -0
  463. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/iuo.json +0 -0
  464. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/omp_1.json +0 -0
  465. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/omp_2.json +0 -0
  466. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/definitions/omp_3.json +0 -0
  467. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/__init__.py +0 -0
  468. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/cisco_aaa.py +0 -0
  469. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/cisco_banner.py +0 -0
  470. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/cisco_bfd.py +0 -0
  471. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/cisco_system.py +0 -0
  472. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/cisco_vpn.py +0 -0
  473. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/models/omp_vsmart.py +0 -0
  474. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/basic/alias.json +0 -0
  475. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/basic/basic.json +0 -0
  476. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/basic/children.json +0 -0
  477. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/basic/children_nested.json +0 -0
  478. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/basic/children_nested_datapath.json +0 -0
  479. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/basic/data_path.json +0 -0
  480. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/cedge_aaa.json +0 -0
  481. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/cisco_banner.json +0 -0
  482. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/cisco_bfd.json +0 -0
  483. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/cisco_system.json +0 -0
  484. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/cisco_vpn.json +0 -0
  485. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/schemas/omp-vsmart.json +0 -0
  486. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/test_chose_model.py +0 -0
  487. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/test_deserialize_model.py +0 -0
  488. /catalystwan-0.33.7.dev0/catalystwan/tests/templates/test_find_template_values.py → /catalystwan-0.33.7.dev2/catalystwan/tests/templates/test_find_template_values_2.py +0 -0
  489. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/test_generate_payload.py +0 -0
  490. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/templates/test_serialize_model.py +0 -0
  491. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_admin_tech_api.py +0 -0
  492. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_administration.py +0 -0
  493. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_alarms_api.py +0 -0
  494. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_cli_template.py +0 -0
  495. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_creation_tools.py +0 -0
  496. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_device_action_api.py +0 -0
  497. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_devices_api.py +0 -0
  498. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_feature_template_field.py +0 -0
  499. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_logs_api.py +0 -0
  500. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_models_common.py +0 -0
  501. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_monitoring_server_info.py +0 -0
  502. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_monitoring_status_api.py +0 -0
  503. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_mtt_aaa_api.py +0 -0
  504. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_normalize_to_model_definition.py +0 -0
  505. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_omp_api.py +0 -0
  506. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_packet_capture.py +0 -0
  507. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_partition_manager_api.py +0 -0
  508. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_response.py +0 -0
  509. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_session.py +0 -0
  510. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_software_action_api.py +0 -0
  511. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_speed_test_api.py +0 -0
  512. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_task_status_api.py +0 -0
  513. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_templates.py +0 -0
  514. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_tenant_backup_restore_api.py +0 -0
  515. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_tenant_management_api.py +0 -0
  516. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_tenant_migration_api.py +0 -0
  517. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_typed_list.py +0 -0
  518. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_version.py +0 -0
  519. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_version_utils.py +0 -0
  520. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/tests/test_vmanage_auth.py +0 -0
  521. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/typed_list.py +0 -0
  522. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/__init__.py +0 -0
  523. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/alarm_status.py +0 -0
  524. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/certificate_status.py +0 -0
  525. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/colors.py +0 -0
  526. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/exceptions.py +0 -0
  527. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/__init__.py +0 -0
  528. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/aaa.py +0 -0
  529. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/appqoe.py +0 -0
  530. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/banner.py +0 -0
  531. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/base.py +0 -0
  532. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/basic.py +0 -0
  533. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/bfd.py +0 -0
  534. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/cellular_profile.py +0 -0
  535. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/cli.py +0 -0
  536. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/cloud_credentials.py +0 -0
  537. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/eigrp.py +0 -0
  538. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/global_.py +0 -0
  539. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/gps.py +0 -0
  540. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/helpers.py +0 -0
  541. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/lan/gre.py +0 -0
  542. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/lan/multilink.py +0 -0
  543. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/lan/svi.py +0 -0
  544. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/logging_.py +0 -0
  545. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/model_definition_normalizer.py +0 -0
  546. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/multicast.py +0 -0
  547. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/ntp.py +0 -0
  548. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/omp.py +0 -0
  549. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/security.py +0 -0
  550. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/sig.py +0 -0
  551. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/snmp.py +0 -0
  552. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/switchport.py +0 -0
  553. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/thousandeyes.py +0 -0
  554. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/ucse.py +0 -0
  555. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/cellular.py +0 -0
  556. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/gre.py +0 -0
  557. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/ipsec.py +0 -0
  558. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/multilink.py +0 -0
  559. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/protocol_over.py +0 -0
  560. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wan/t1e1serial.py +0 -0
  561. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/converters/feature_template/wireless_lan.py +0 -0
  562. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/factories/parcel_pusher.py +0 -0
  563. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_migration/steps/__init__.py +0 -0
  564. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/config_status.py +0 -0
  565. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/creation_tools.py +0 -0
  566. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/dashboard.py +0 -0
  567. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/device_model.py +0 -0
  568. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/dict.py +0 -0
  569. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/feature_template/choose_model.py +0 -0
  570. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/feature_template/find_template_values.py +0 -0
  571. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/operation_status.py +0 -0
  572. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/personality.py +0 -0
  573. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/pydantic_field.py +0 -0
  574. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/reachability.py +0 -0
  575. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/session_type.py +0 -0
  576. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/template_type.py +0 -0
  577. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/timezone.py +0 -0
  578. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/upgrades_helper.py +0 -0
  579. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/utils/validate_status.py +0 -0
  580. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/version.py +0 -0
  581. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/vmanage_auth.py +0 -0
  582. {catalystwan-0.33.7.dev0 → catalystwan-0.33.7.dev2}/catalystwan/workflows/tenant_migration.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: catalystwan
3
- Version: 0.33.7.dev0
3
+ Version: 0.33.7.dev2
4
4
  Summary: Cisco Catalyst WAN SDK for Python
5
5
  Home-page: https://github.com/cisco-open/cisco-catalyst-wan-sdk
6
6
  Author: kagorski
@@ -1,13 +1,13 @@
1
+ # Copyright 2023 Cisco Systems, Inc. and its affiliates
1
2
  import functools
2
3
  from typing import Any, List, Optional, Tuple, Union
3
4
  from uuid import UUID
4
5
 
5
6
  from pydantic import BaseModel, ConfigDict, Field
7
+ from requests import Response
6
8
 
7
9
  from catalystwan.exceptions import ManagerErrorInfo, ManagerHTTPError
8
- from catalystwan.models.configuration.feature_profile.parcel import AnyParcel, ParcelType
9
-
10
- ParcelName = str
10
+ from catalystwan.models.configuration.feature_profile.parcel import AnyParcel
11
11
 
12
12
 
13
13
  def handle_build_report(func):
@@ -37,11 +37,18 @@ class FailedRequestDetails(BaseModel):
37
37
  headers: str
38
38
  body: str
39
39
 
40
+ @staticmethod
41
+ def from_response(response: Response):
42
+ request = response.request
43
+ FailedRequestDetails(
44
+ method=str(request.method), url=str(request.url), headers=str(request.headers), body=str(request.body)
45
+ )
46
+
40
47
 
41
48
  class FailedParcel(BaseModel):
42
49
  model_config = ConfigDict(populate_by_name=True)
43
- parcel_name: ParcelName = Field(serialization_alias="parcelName", validation_alias="parcelName")
44
- parcel_type: ParcelType = Field(serialization_alias="parcelType", validation_alias="parcelType")
50
+ parcel_name: str = Field(serialization_alias="parcelName", validation_alias="parcelName")
51
+ parcel_type: str = Field(serialization_alias="parcelType", validation_alias="parcelType")
45
52
  error_info: Union[ManagerErrorInfo, str] = Field(serialization_alias="errorInfo", validation_alias="errorInfo")
46
53
  request_details: Optional[FailedRequestDetails] = Field(
47
54
  default=None, serialization_alias="failedRequest", validation_alias="failedRequest"
@@ -52,20 +59,20 @@ class FeatureProfileBuildReport(BaseModel):
52
59
  model_config = ConfigDict(populate_by_name=True)
53
60
  profile_name: str = Field(serialization_alias="profileName", validation_alias="profileName")
54
61
  profile_uuid: UUID = Field(serialization_alias="profileUuid", validation_alias="profileUuid")
55
- created_parcels: List[Tuple[ParcelName, UUID]] = Field(
62
+ created_parcels: List[Tuple[str, UUID]] = Field(
56
63
  default_factory=list, serialization_alias="createdParcels", validation_alias="createdParcels"
57
64
  )
58
65
  failed_parcels: List[FailedParcel] = Field(
59
66
  default_factory=list, serialization_alias="failedParcels", validation_alias="failedParcels"
60
67
  )
61
68
 
62
- def add_created_parcel(self, parcel_name: ParcelName, parcel_uuid: UUID) -> None:
69
+ def add_created_parcel(self, parcel_name: str, parcel_uuid: UUID) -> None:
63
70
  self.created_parcels.append((parcel_name, parcel_uuid))
64
71
 
65
72
  def add_failed_parcel(
66
73
  self,
67
- parcel_name: ParcelName,
68
- parcel_type: ParcelType,
74
+ parcel_name: str,
75
+ parcel_type: str,
69
76
  error_info: Union[ManagerErrorInfo, str],
70
77
  request: Optional[Any] = None,
71
78
  ) -> None:
@@ -82,3 +89,16 @@ class FeatureProfileBuildReport(BaseModel):
82
89
  parcel_name=parcel_name, parcel_type=parcel_type, error_info=error_info, request_details=request
83
90
  )
84
91
  )
92
+
93
+
94
+ def handle_build_report_for_failed_subparcel(
95
+ build_report: FeatureProfileBuildReport, parent: AnyParcel, subparcel: AnyParcel
96
+ ) -> None:
97
+ parent_failed_to_create_message = (
98
+ f"Parent parcel: {parent.parcel_name} failed to create. This subparcel is dependent on it."
99
+ )
100
+ build_report.add_failed_parcel(
101
+ parcel_name=subparcel.parcel_name,
102
+ parcel_type=subparcel._get_parcel_type(),
103
+ error_info=parent_failed_to_create_message,
104
+ )
@@ -1,3 +1,4 @@
1
+ # Copyright 2023 Cisco Systems, Inc. and its affiliates
1
2
  from __future__ import annotations
2
3
 
3
4
  import logging
@@ -8,10 +9,16 @@ from uuid import UUID, uuid4
8
9
  from pydantic import Field
9
10
  from typing_extensions import Annotated
10
11
 
11
- from catalystwan.api.builders.feature_profiles.report import FeatureProfileBuildReport, handle_build_report
12
+ from catalystwan.api.builders.feature_profiles.report import (
13
+ FeatureProfileBuildReport,
14
+ handle_build_report,
15
+ handle_build_report_for_failed_subparcel,
16
+ )
12
17
  from catalystwan.api.feature_profile_api import ServiceFeatureProfileAPI
13
18
  from catalystwan.endpoints.configuration.feature_profile.sdwan.service import ServiceFeatureProfile
14
19
  from catalystwan.models.configuration.feature_profile.common import FeatureProfileCreationPayload
20
+ from catalystwan.models.configuration.feature_profile.parcel import ParcelAssociationPayload
21
+ from catalystwan.models.configuration.feature_profile.sdwan.routing import AnyRoutingParcel
15
22
  from catalystwan.models.configuration.feature_profile.sdwan.service import (
16
23
  AnyServiceParcel,
17
24
  AppqoeParcel,
@@ -54,7 +61,9 @@ class ServiceFeatureProfileBuilder:
54
61
  self._endpoints = ServiceFeatureProfile(session)
55
62
  self._independent_items: List[IndependedParcels] = []
56
63
  self._independent_items_vpns: Dict[UUID, LanVpnParcel] = {}
57
- self._depended_items_on_vpns: Dict[UUID, List[DependedVpnSubparcels]] = defaultdict(list)
64
+ self._dependent_items_on_vpns: Dict[UUID, List[DependedVpnSubparcels]] = defaultdict(list)
65
+ self._dependent_routing_items_on_vpns: Dict[UUID, List[AnyRoutingParcel]] = defaultdict(list)
66
+ self._interfaces_with_attached_dhcp_server: Dict[str, LanVpnDhcpServerParcel] = {}
58
67
 
59
68
  def add_profile_name_and_description(self, feature_profile: FeatureProfileCreationPayload) -> None:
60
69
  """
@@ -96,19 +105,47 @@ class ServiceFeatureProfileBuilder:
96
105
  self._independent_items_vpns[vpn_tag] = parcel
97
106
  return vpn_tag
98
107
 
108
+ def add_parcel_routing_attached(self, vpn_tag: UUID, parcel: AnyRoutingParcel) -> None:
109
+ """
110
+ Adds a routing parcel to the builder.
111
+
112
+ Args:
113
+ vpn_tag (UUID): The UUID of the VPN.
114
+ parcel (AnyServiceParcel): The routing parcel to add.
115
+
116
+ Returns:
117
+ None
118
+ """
119
+ logger.debug(f"Adding routing parcel {parcel.parcel_name} to VPN {vpn_tag}")
120
+ self._dependent_routing_items_on_vpns[vpn_tag].append(parcel)
121
+
99
122
  def add_parcel_vpn_subparcel(self, vpn_tag: UUID, parcel: DependedVpnSubparcels) -> None:
100
123
  """
101
124
  Adds an subparcel parcel dependent on a VPN to the builder.
102
125
 
103
126
  Args:
104
127
  vpn_tag (UUID): The UUID of the VPN.
105
- parcel (DependedInterfaceParcels): The interface parcel to add.
128
+ parcel (DependedVpnSubparcels): The interface parcel to add.
106
129
 
107
130
  Returns:
108
131
  None
109
132
  """
110
133
  logger.debug(f"Adding subparcel parcel {parcel.parcel_name} to VPN {vpn_tag}")
111
- self._depended_items_on_vpns[vpn_tag].append(parcel)
134
+ self._dependent_items_on_vpns[vpn_tag].append(parcel)
135
+
136
+ def add_parcel_dhcp_server(self, interface_parcel_name: str, parcel: LanVpnDhcpServerParcel) -> None:
137
+ """
138
+ Adds a DHCP server parcel to the builder.
139
+
140
+ Args:
141
+ interface_tag (UUID): The UUID of the interface.
142
+ parcel (LanVpnDhcpServerParcel): The DHCP server parcel to add.
143
+
144
+ Returns:
145
+ UUID: The UUID tag of the added DHCP server parcel.
146
+ """
147
+ logger.debug(f"Adding DHCP server parcel {parcel.parcel_name} to interface {interface_parcel_name}")
148
+ self._interfaces_with_attached_dhcp_server[interface_parcel_name] = parcel
112
149
 
113
150
  def build(self) -> FeatureProfileBuildReport:
114
151
  """
@@ -124,21 +161,50 @@ class ServiceFeatureProfileBuilder:
124
161
  self._create_parcel(profile_uuid, parcel)
125
162
  for vpn_tag, vpn_parcel in self._independent_items_vpns.items():
126
163
  vpn_uuid = self._create_parcel(profile_uuid, vpn_parcel)
127
- if vpn_uuid is None:
128
- for sub_parcel in self._depended_items_on_vpns[vpn_tag]:
129
- subparcel_fail_message = (
130
- f"Parent parcel: {vpn_parcel.parcel_name} failed to create. This subparcel is dependent on it."
164
+
165
+ for routing_parcel in self._dependent_routing_items_on_vpns[vpn_tag]:
166
+ if vpn_uuid is None:
167
+ handle_build_report_for_failed_subparcel(self.build_report, vpn_parcel, routing_parcel)
168
+ else:
169
+ routing_uuid = self._create_parcel(profile_uuid, routing_parcel)
170
+ if not routing_uuid:
171
+ continue
172
+ self._endpoints.associate_with_vpn(
173
+ profile_uuid,
174
+ vpn_uuid,
175
+ routing_parcel._get_parcel_type(),
176
+ payload=ParcelAssociationPayload(parcel_id=routing_uuid),
131
177
  )
132
- self.build_report.add_failed_parcel(
133
- sub_parcel.parcel_name,
134
- sub_parcel._get_parcel_type(), # type: ignore
135
- subparcel_fail_message
136
- # incompatible type "str"; expected ParcelType, we will fix _get_parcel_type()
137
- # to return ParcelType but for now it gives circular import
178
+
179
+ for sub_parcel in self._dependent_items_on_vpns[vpn_tag]:
180
+ if vpn_uuid is None:
181
+ handle_build_report_for_failed_subparcel(self.build_report, vpn_parcel, sub_parcel)
182
+ else:
183
+ parcel_uuid = self._create_parcel(profile_uuid, sub_parcel, vpn_uuid)
184
+ dhcp_server = self._interfaces_with_attached_dhcp_server.get(sub_parcel.parcel_name)
185
+
186
+ if dhcp_server is None:
187
+ # The interface does not have a DHCP server attached
188
+ continue
189
+
190
+ if parcel_uuid is None:
191
+ # The parent could not be created
192
+ handle_build_report_for_failed_subparcel(self.build_report, sub_parcel, dhcp_server)
193
+ continue
194
+
195
+ dhcp_server_uuid = self._create_parcel(profile_uuid, dhcp_server)
196
+
197
+ if dhcp_server_uuid is None:
198
+ # The DHCP server could not be created
199
+ continue
200
+
201
+ self._endpoints.associate_dhcp_server_with_vpn_interface(
202
+ profile_uuid=profile_uuid,
203
+ vpn_uuid=vpn_uuid,
204
+ interface_parcel_type=sub_parcel._get_parcel_type().replace("lan/vpn/", ""),
205
+ interface_uuid=parcel_uuid,
206
+ payload=ParcelAssociationPayload(parcel_id=dhcp_server_uuid),
138
207
  )
139
- else:
140
- for sub_parcel in self._depended_items_on_vpns[vpn_tag]:
141
- self._create_parcel(profile_uuid, sub_parcel, vpn_uuid)
142
208
 
143
209
  return self.build_report
144
210
 
@@ -0,0 +1,214 @@
1
+ # Copyright 2023 Cisco Systems, Inc. and its affiliates
2
+ from __future__ import annotations
3
+
4
+ import logging
5
+ from collections import defaultdict
6
+ from typing import TYPE_CHECKING, Dict, List, Optional, Union
7
+ from uuid import UUID, uuid4
8
+
9
+ from catalystwan.api.builders.feature_profiles.report import (
10
+ FeatureProfileBuildReport,
11
+ handle_build_report,
12
+ handle_build_report_for_failed_subparcel,
13
+ )
14
+ from catalystwan.api.feature_profile_api import TransportFeatureProfileAPI
15
+ from catalystwan.endpoints.configuration.feature_profile.sdwan.transport import TransportFeatureProfile
16
+ from catalystwan.models.configuration.feature_profile.common import FeatureProfileCreationPayload
17
+ from catalystwan.models.configuration.feature_profile.parcel import ParcelAssociationPayload
18
+ from catalystwan.models.configuration.feature_profile.sdwan.routing import AnyRoutingParcel
19
+ from catalystwan.models.configuration.feature_profile.sdwan.transport import (
20
+ AnyTransportParcel,
21
+ AnyTransportSuperParcel,
22
+ AnyTransportVpnParcel,
23
+ AnyTransportVpnSubParcel,
24
+ )
25
+ from catalystwan.models.configuration.feature_profile.sdwan.transport.cellular_controller import (
26
+ CellularControllerParcel,
27
+ )
28
+ from catalystwan.models.configuration.feature_profile.sdwan.transport.cellular_profile import CellularProfileParcel
29
+ from catalystwan.models.configuration.feature_profile.sdwan.transport.gps import GpsParcel
30
+
31
+ logger = logging.getLogger(__name__)
32
+
33
+ if TYPE_CHECKING:
34
+ from catalystwan.session import ManagerSession
35
+
36
+
37
+ class TransportAndManagementProfileBuilder:
38
+ """
39
+ A class for building system feature profiles.
40
+ """
41
+
42
+ def __init__(self, session: ManagerSession) -> None:
43
+ """
44
+ Initialize a new instance of the Service class.
45
+
46
+ Args:
47
+ session (ManagerSession): The ManagerSession object used for API communication.
48
+ profile_uuid (UUID): The UUID of the profile.
49
+ """
50
+ self._profile: FeatureProfileCreationPayload
51
+ self._api = TransportFeatureProfileAPI(session)
52
+ self._endpoints = TransportFeatureProfile(session)
53
+ self._independent_items: List[AnyTransportSuperParcel] = []
54
+ self._independent_items_vpns: Dict[UUID, AnyTransportVpnParcel] = {}
55
+ self._independent_items_cellular_controllers: Dict[UUID, CellularControllerParcel] = {}
56
+ self._dependent_items_on_vpns: Dict[UUID, List[AnyTransportVpnSubParcel]] = defaultdict(list)
57
+ self._dependent_routing_items_on_vpns: Dict[UUID, List[AnyRoutingParcel]] = defaultdict(list)
58
+ self._dependent_items_on_cellular_controllers: Dict[
59
+ UUID, List[Union[CellularProfileParcel, GpsParcel]]
60
+ ] = defaultdict(list)
61
+
62
+ def add_profile_name_and_description(self, feature_profile: FeatureProfileCreationPayload) -> None:
63
+ """
64
+ Adds a name and description to the feature profile.
65
+
66
+ Args:
67
+ name (str): The name of the feature profile.
68
+ description (str): The description of the feature profile.
69
+
70
+ Returns:
71
+ None
72
+ """
73
+ self._profile = feature_profile
74
+
75
+ def add_parcel(self, parcel: AnyTransportSuperParcel) -> None:
76
+ """
77
+ Adds a parcel to the feature profile.
78
+
79
+ Args:
80
+ parcel (AnyTransportSuperParcel): The parcel to add.
81
+
82
+ Returns:
83
+ None
84
+ """
85
+ self._independent_items.append(parcel)
86
+
87
+ def add_parcel_routing_attached(self, vpn_tag: UUID, parcel: AnyRoutingParcel) -> None:
88
+ """
89
+ Adds a routing parcel to the feature profile.
90
+
91
+ Args:
92
+ parcel (AnyRoutingParcel): The parcel to add.
93
+
94
+ Returns:
95
+ None
96
+ """
97
+ logger.debug(f"Attaching routing {parcel.parcel_name} with to VPN with tag {vpn_tag}")
98
+ self._dependent_routing_items_on_vpns[vpn_tag].append(parcel)
99
+
100
+ def add_parcel_vpn(self, parcel: AnyTransportVpnParcel) -> UUID:
101
+ """
102
+ Adds a VPN parcel to the builder.
103
+
104
+ Args:
105
+ parcel (LanVpnParcel): The VPN parcel to add.
106
+
107
+ Returns:
108
+ UUID: The UUID tag of the added VPN parcel.
109
+ """
110
+ vpn_tag = uuid4()
111
+ logger.debug(f"Adding VPN parcel {parcel.parcel_name} with tag {vpn_tag}")
112
+ self._independent_items_vpns[vpn_tag] = parcel
113
+ return vpn_tag
114
+
115
+ def add_parcel_cellular_controller(self, parcel: CellularControllerParcel) -> UUID:
116
+ """
117
+ Adds a cellular controller parcel to the builder.
118
+
119
+ Args:
120
+ parcel (CellularControllerParcel): The cellular controller parcel to add.
121
+
122
+ Returns:
123
+ UUID: The UUID tag of the added cellular controller parcel.
124
+ """
125
+ cellular_controller_tag = uuid4()
126
+ logger.debug(f"Adding cellular controller parcel {parcel.parcel_name} with tag {cellular_controller_tag}")
127
+ self._independent_items_cellular_controllers[cellular_controller_tag] = parcel
128
+ return cellular_controller_tag
129
+
130
+ def add_cellular_controller_subparcel(
131
+ self, cellular_controller_tag: UUID, parcel: Union[CellularProfileParcel, GpsParcel]
132
+ ) -> None:
133
+ """
134
+ Adds a subparcel to the cellular controller parcel.
135
+
136
+ Args:
137
+ cellular_controller_tag (UUID): The UUID of the cellular controller.
138
+ parcel (Union[CellularProfileParcel, GpsParcel]): The subparcel to add.
139
+
140
+ Returns:
141
+ None
142
+ """
143
+ self._dependent_items_on_cellular_controllers[cellular_controller_tag].append(parcel)
144
+
145
+ def add_vpn_subparcel(self, vpn_tag: UUID, parcel: AnyTransportVpnSubParcel) -> None:
146
+ """
147
+ Adds a parcel to the feature profile.
148
+
149
+ Args:
150
+ parcel (AnyTransportVpnSubParcel): The parcel to add.
151
+
152
+ Returns:
153
+ None
154
+ """
155
+ self._dependent_items_on_vpns[vpn_tag].append(parcel)
156
+
157
+ def build(self) -> FeatureProfileBuildReport:
158
+ """
159
+ Builds the feature profile.
160
+
161
+ Returns:
162
+ UUID: The UUID of the created feature profile.
163
+ """
164
+
165
+ profile_uuid = self._endpoints.create_transport_feature_profile(self._profile).id
166
+ self.build_report = FeatureProfileBuildReport(profile_uuid=profile_uuid, profile_name=self._profile.name)
167
+ for parcel in self._independent_items:
168
+ self._create_parcel(profile_uuid, parcel)
169
+
170
+ for vpn_tag, vpn_parcel in self._independent_items_vpns.items():
171
+ vpn_uuid = self._create_parcel(profile_uuid, vpn_parcel)
172
+ for vpn_subparcel in self._dependent_items_on_vpns[vpn_tag]:
173
+ if vpn_uuid is None:
174
+ handle_build_report_for_failed_subparcel(self.build_report, vpn_parcel, vpn_subparcel)
175
+ else:
176
+ self._create_parcel(profile_uuid, vpn_subparcel, vpn_uuid)
177
+
178
+ for routing_parcel in self._dependent_routing_items_on_vpns[vpn_tag]:
179
+ if vpn_uuid is None:
180
+ handle_build_report_for_failed_subparcel(self.build_report, vpn_parcel, routing_parcel)
181
+ else:
182
+ routing_uuid = self._create_parcel(profile_uuid, routing_parcel)
183
+ if not routing_uuid:
184
+ continue
185
+ self._endpoints.associate_with_vpn(
186
+ profile_uuid,
187
+ vpn_uuid,
188
+ routing_parcel._get_parcel_type(),
189
+ payload=ParcelAssociationPayload(parcel_id=routing_uuid),
190
+ )
191
+
192
+ for cellular_controller_tag, cellular_controller_parcel in self._independent_items_cellular_controllers.items():
193
+ controller_uuid = self._create_parcel(profile_uuid, cellular_controller_parcel)
194
+ for cellular_subparcel in self._dependent_items_on_cellular_controllers[cellular_controller_tag]:
195
+ if controller_uuid is None:
196
+ handle_build_report_for_failed_subparcel(
197
+ self.build_report, cellular_controller_parcel, cellular_subparcel
198
+ )
199
+ else:
200
+ parcel_uuid = self._create_parcel(profile_uuid, cellular_subparcel)
201
+ if not parcel_uuid:
202
+ continue
203
+ self._endpoints.associate_with_cellular_controller(
204
+ profile_uuid,
205
+ controller_uuid,
206
+ cellular_subparcel._get_parcel_type(),
207
+ ParcelAssociationPayload(parcel_id=parcel_uuid),
208
+ )
209
+
210
+ return self.build_report
211
+
212
+ @handle_build_report
213
+ def _create_parcel(self, profile_uuid: UUID, parcel: AnyTransportParcel, vpn_uuid: Optional[None] = None) -> UUID:
214
+ return self._api.create_parcel(profile_uuid, parcel, vpn_uuid).id