catalystwan 0.41.2.dev9__py3-none-any.whl → 0.41.3__py3-none-any.whl
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.
- catalystwan/ENDPOINTS.md +611 -0
- catalystwan/__init__.py +2 -3
- catalystwan/api/administration.py +2 -13
- catalystwan/api/api_container.py +1 -4
- catalystwan/api/config_group_api.py +16 -41
- catalystwan/api/configuration_groups/parcel.py +30 -100
- catalystwan/api/configuration_groups/parcels/cellular_controller.py +33 -0
- catalystwan/api/feature_profile_api.py +237 -2016
- catalystwan/api/policy_api.py +116 -470
- catalystwan/api/template_api.py +44 -113
- catalystwan/api/templates/README.md +47 -61
- catalystwan/api/templates/cli_template.py +7 -17
- catalystwan/api/templates/device_template/device_template.py +32 -127
- catalystwan/api/templates/device_template/device_template_payload.json.j2 +19 -0
- catalystwan/api/templates/feature_template.py +3 -3
- catalystwan/api/templates/models/cisco_aaa_model.py +42 -289
- catalystwan/api/templates/models/cisco_banner_model.py +2 -11
- catalystwan/api/templates/models/cisco_bfd_model.py +36 -31
- catalystwan/api/templates/models/cisco_bgp_model.py +131 -382
- catalystwan/api/templates/models/cisco_logging_model.py +43 -80
- catalystwan/api/templates/models/cisco_ntp_model.py +15 -34
- catalystwan/api/templates/models/cisco_omp_model.py +60 -70
- catalystwan/api/templates/models/cisco_ospf.py +74 -143
- catalystwan/api/templates/models/cisco_ospfv3.py +95 -217
- catalystwan/api/templates/models/cisco_secure_internet_gateway.py +142 -304
- catalystwan/api/templates/models/cisco_snmp_model.py +52 -66
- catalystwan/api/templates/models/cisco_system.py +129 -238
- catalystwan/api/templates/models/cisco_vpn_interface_model.py +275 -632
- catalystwan/api/templates/models/cisco_vpn_model.py +270 -433
- catalystwan/api/templates/models/cli_template.py +2 -3
- catalystwan/api/templates/models/omp_vsmart_model.py +10 -46
- catalystwan/api/templates/models/security_vsmart_model.py +8 -11
- catalystwan/api/templates/models/supported.py +4 -10
- catalystwan/api/templates/models/system_vsmart_model.py +27 -164
- catalystwan/apigw_auth.py +2 -6
- catalystwan/dataclasses.py +53 -2
- catalystwan/endpoints/__init__.py +41 -41
- catalystwan/endpoints/certificate_management_device.py +0 -4
- catalystwan/endpoints/cluster_management.py +9 -30
- catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +12 -35
- catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +11 -164
- catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +26 -144
- catalystwan/endpoints/configuration/policy/definition/access_control_list.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/control.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/device_access.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/mesh.py +11 -2
- catalystwan/endpoints/configuration/policy/definition/qos_map.py +11 -2
- catalystwan/endpoints/configuration/policy/definition/rewrite.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/rule_set.py +11 -2
- catalystwan/endpoints/configuration/policy/definition/security_group.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/traffic_data.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +11 -6
- catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +11 -6
- catalystwan/endpoints/configuration/policy/list/app.py +16 -3
- catalystwan/endpoints/configuration/policy/list/app_probe.py +15 -6
- catalystwan/endpoints/configuration/policy/list/as_path.py +16 -3
- catalystwan/endpoints/configuration/policy/list/class_map.py +16 -3
- catalystwan/endpoints/configuration/policy/list/color.py +16 -3
- catalystwan/endpoints/configuration/policy/list/community.py +16 -3
- catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +15 -6
- catalystwan/endpoints/configuration/policy/list/data_prefix.py +16 -3
- catalystwan/endpoints/configuration/policy/list/expanded_community.py +15 -6
- catalystwan/endpoints/configuration/policy/list/fqdn.py +16 -3
- catalystwan/endpoints/configuration/policy/list/geo_location.py +16 -3
- catalystwan/endpoints/configuration/policy/list/ips_signature.py +15 -6
- catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +16 -3
- catalystwan/endpoints/configuration/policy/list/local_app.py +16 -3
- catalystwan/endpoints/configuration/policy/list/local_domain.py +16 -3
- catalystwan/endpoints/configuration/policy/list/mirror.py +16 -3
- catalystwan/endpoints/configuration/policy/list/policer.py +16 -3
- catalystwan/endpoints/configuration/policy/list/port.py +16 -3
- catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +15 -6
- catalystwan/endpoints/configuration/policy/list/prefix.py +16 -4
- catalystwan/endpoints/configuration/policy/list/protocol_name.py +15 -6
- catalystwan/endpoints/configuration/policy/list/region.py +10 -2
- catalystwan/endpoints/configuration/policy/list/site.py +16 -3
- catalystwan/endpoints/configuration/policy/list/sla.py +16 -3
- catalystwan/endpoints/configuration/policy/list/tloc.py +16 -3
- catalystwan/endpoints/configuration/policy/list/url_allow_list.py +16 -3
- catalystwan/endpoints/configuration/policy/list/url_block_list.py +16 -3
- catalystwan/endpoints/configuration/policy/list/vpn.py +16 -3
- catalystwan/endpoints/configuration/policy/list/zone.py +16 -3
- catalystwan/endpoints/configuration/policy/security_template.py +3 -2
- catalystwan/endpoints/configuration/software_actions.py +4 -2
- catalystwan/endpoints/configuration_dashboard_status.py +2 -2
- catalystwan/endpoints/configuration_device_template.py +1 -15
- catalystwan/endpoints/configuration_feature_profile.py +11 -8
- catalystwan/endpoints/configuration_group.py +5 -28
- catalystwan/endpoints/configuration_settings.py +1 -90
- catalystwan/endpoints/endpoints_container.py +18 -82
- catalystwan/endpoints/real_time_monitoring/reboot_history.py +3 -1
- catalystwan/endpoints/tenant_migration.py +0 -2
- catalystwan/exceptions.py +0 -24
- catalystwan/integration_tests/test_find_template_values.py +18 -7
- catalystwan/models/common.py +2 -1898
- catalystwan/models/configuration/common.py +0 -1
- catalystwan/models/configuration/config_migration.py +36 -0
- catalystwan/models/configuration/feature_profile/common.py +149 -634
- catalystwan/models/configuration/feature_profile/sdwan/management/vpn.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +60 -69
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +20 -34
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +6 -8
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +4 -13
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +7 -9
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +9 -11
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +10 -25
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/{policer.py → policier.py} +10 -12
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +10 -29
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +8 -23
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +31 -12
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +10 -16
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +7 -8
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +6 -8
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +5 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +11 -21
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +15 -36
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +18 -14
- catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +409 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +42 -77
- catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +288 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +64 -107
- catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +42 -39
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +88 -7
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +156 -232
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +108 -38
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +84 -77
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +56 -62
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +121 -112
- catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +57 -56
- catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +21 -15
- catalystwan/models/configuration/feature_profile/sdwan/{routing → service}/ospf.py +47 -55
- catalystwan/models/configuration/feature_profile/sdwan/{routing → service}/ospfv3.py +72 -74
- catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +110 -358
- catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +25 -17
- catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +58 -50
- catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +21 -12
- catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +31 -27
- catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +10 -58
- catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +23 -26
- catalystwan/models/configuration/profile_type.py +6 -1
- catalystwan/models/policy/__init__.py +69 -282
- catalystwan/models/policy/centralized.py +29 -26
- catalystwan/models/policy/{definition → definitions}/access_control_list.py +17 -47
- catalystwan/models/policy/{definition → definitions}/access_control_list_ipv6.py +18 -42
- catalystwan/models/policy/{definition → definitions}/control.py +25 -48
- catalystwan/models/policy/{definition → definitions}/device_access.py +11 -22
- catalystwan/models/policy/{definition → definitions}/device_access_ipv6.py +11 -20
- catalystwan/models/policy/{definition → definitions}/hub_and_spoke.py +4 -18
- catalystwan/models/policy/{definition → definitions}/mesh.py +1 -13
- catalystwan/models/policy/{definition → definitions}/qos_map.py +32 -39
- catalystwan/models/policy/{definition → definitions}/rewrite.py +2 -12
- catalystwan/models/policy/{definition → definitions}/rule_set.py +48 -66
- catalystwan/models/policy/{definition → definitions}/security_group.py +14 -38
- catalystwan/models/policy/{definition → definitions}/traffic_data.py +61 -184
- catalystwan/models/policy/{definition → definitions}/vpn_membership.py +1 -13
- catalystwan/models/policy/{definition → definitions}/zone_based_firewall.py +32 -93
- catalystwan/models/policy/lists.py +330 -0
- catalystwan/models/policy/lists_entries.py +444 -0
- catalystwan/models/policy/localized.py +16 -34
- catalystwan/models/policy/policy.py +10 -14
- catalystwan/models/policy/policy_definition.py +173 -673
- catalystwan/models/policy/policy_list.py +27 -38
- catalystwan/models/policy/security.py +46 -145
- catalystwan/response.py +2 -6
- catalystwan/session.py +1 -1
- catalystwan/tests/templates/definitions/{cisco_vpn_basic.json → Basic_Cisco_VPN_Model.json} +2 -2
- catalystwan/tests/templates/definitions/complex_aaa.json +277 -0
- catalystwan/tests/templates/definitions/{cisco_vpn_complex.json → complex_cisco_vpn.json} +12 -27
- catalystwan/tests/templates/definitions/{cisco_aaa.json → iuo.json} +15 -44
- catalystwan/tests/templates/definitions/omp_1.json +11 -0
- catalystwan/tests/templates/definitions/{omp_vsmart_2.json → omp_2.json} +2 -16
- catalystwan/tests/templates/definitions/{omp_vsmart_3.json → omp_3.json} +2 -16
- catalystwan/tests/templates/models/__init__.py +13 -46
- catalystwan/tests/templates/models/cisco_aaa.py +48 -81
- catalystwan/tests/templates/models/cisco_banner.py +2 -2
- catalystwan/tests/templates/models/cisco_bfd.py +6 -4
- catalystwan/tests/templates/models/cisco_system.py +3 -108
- catalystwan/tests/templates/models/cisco_vpn.py +72 -42
- catalystwan/tests/templates/models/omp_vsmart.py +8 -28
- catalystwan/tests/templates/schemas/cedge_aaa.json +1 -1
- catalystwan/tests/templates/schemas/cisco_system.json +0 -242
- catalystwan/tests/templates/schemas/cisco_vpn.json +1 -53
- catalystwan/tests/templates/schemas/omp-vsmart.json +0 -20
- catalystwan/tests/templates/test_chose_model.py +10 -6
- catalystwan/tests/templates/test_deserialize_model.py +4 -4
- catalystwan/tests/templates/test_find_template_values.py +0 -229
- catalystwan/tests/templates/test_serialize_model.py +2 -1
- catalystwan/tests/test_cli_template.py +9 -8
- catalystwan/tests/test_endpoints.py +11 -42
- catalystwan/tests/test_templates.py +19 -16
- catalystwan/utils/feature_template/find_template_values.py +9 -22
- catalystwan/utils/timezone.py +422 -0
- catalystwan/workflows/tenant_migration.py +1 -1
- {catalystwan-0.41.2.dev9.dist-info → catalystwan-0.41.3.dist-info}/METADATA +1 -20
- catalystwan-0.41.3.dist-info/RECORD +353 -0
- catalystwan/api/builders/__init__.py +0 -14
- catalystwan/api/builders/feature_profiles/__init__.py +0 -0
- catalystwan/api/builders/feature_profiles/application_priority.py +0 -58
- catalystwan/api/builders/feature_profiles/builder_factory.py +0 -59
- catalystwan/api/builders/feature_profiles/cli.py +0 -76
- catalystwan/api/builders/feature_profiles/mixins.py +0 -44
- catalystwan/api/builders/feature_profiles/other.py +0 -79
- catalystwan/api/builders/feature_profiles/report.py +0 -155
- catalystwan/api/builders/feature_profiles/service.py +0 -248
- catalystwan/api/builders/feature_profiles/system.py +0 -80
- catalystwan/api/builders/feature_profiles/transport.py +0 -256
- catalystwan/api/builders/feature_profiles/uc_voice.py +0 -287
- catalystwan/api/templates/models/aaa_model.py +0 -387
- catalystwan/api/templates/models/vpn_vsmart_interface_model.py +0 -198
- catalystwan/api/templates/models/vpn_vsmart_model.py +0 -124
- catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +0 -107
- catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +0 -60
- catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +0 -83
- catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +0 -88
- catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +0 -62
- catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +0 -154
- catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +0 -88
- catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +0 -93
- catalystwan/endpoints/configuration/feature_profile/sdwan/uc_voice.py +0 -77
- catalystwan/endpoints/configuration/network_hierarchy.py +0 -47
- catalystwan/endpoints/configuration/packages.py +0 -36
- catalystwan/endpoints/configuration/policy/abstractions.py +0 -49
- catalystwan/endpoints/configuration/policy/definition/aip.py +0 -52
- catalystwan/endpoints/configuration/policy/definition/amp.py +0 -52
- catalystwan/endpoints/configuration/policy/definition/app_route.py +0 -50
- catalystwan/endpoints/configuration/policy/definition/cflowd.py +0 -46
- catalystwan/endpoints/configuration/policy/definition/dial_peer.py +0 -57
- catalystwan/endpoints/configuration/policy/definition/dns_security.py +0 -50
- catalystwan/endpoints/configuration/policy/definition/fxo_port.py +0 -57
- catalystwan/endpoints/configuration/policy/definition/fxs_did_port.py +0 -57
- catalystwan/endpoints/configuration/policy/definition/fxs_port.py +0 -57
- catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +0 -52
- catalystwan/endpoints/configuration/policy/definition/pri_isdn_port.py +0 -57
- catalystwan/endpoints/configuration/policy/definition/route_policy.py +0 -50
- catalystwan/endpoints/configuration/policy/definition/srst_phone_profile.py +0 -59
- catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +0 -50
- catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +0 -52
- catalystwan/endpoints/configuration/policy/definition/url_filtering.py +0 -50
- catalystwan/endpoints/configuration/policy/definition/vpn_qos_map.py +0 -50
- catalystwan/endpoints/configuration/policy/list/extended_community.py +0 -52
- catalystwan/endpoints/configuration/policy/list/fax_protocol.py +0 -48
- catalystwan/endpoints/configuration/policy/list/identity.py +0 -48
- catalystwan/endpoints/configuration/policy/list/media_profile.py +0 -52
- catalystwan/endpoints/configuration/policy/list/modem_pass_through.py +0 -52
- catalystwan/endpoints/configuration/policy/list/scalable_group_tag.py +0 -52
- catalystwan/endpoints/configuration/policy/list/supervisory_disconnect.py +0 -52
- catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +0 -52
- catalystwan/endpoints/configuration/policy/list/translation_profile.py +0 -52
- catalystwan/endpoints/configuration/policy/list/translation_rules.py +0 -52
- catalystwan/endpoints/configuration/policy/list/trunkgroup.py +0 -48
- catalystwan/endpoints/configuration/policy/list/umbrella_data.py +0 -52
- catalystwan/endpoints/configuration/policy/voice_template.py +0 -39
- catalystwan/endpoints/configuration/policy_group.py +0 -30
- catalystwan/endpoints/configuration/topology_group.py +0 -51
- catalystwan/endpoints/configuration_general_template.py +0 -31
- catalystwan/endpoints/configuration_template_master.py +0 -48
- catalystwan/integration_tests/base.py +0 -81
- catalystwan/integration_tests/feature_profile/sdwan/__init__.py +0 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/__init__.py +0 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/base.py +0 -33
- catalystwan/integration_tests/feature_profile/sdwan/policy/test_extended_community.py +0 -33
- catalystwan/integration_tests/feature_profile/sdwan/policy/test_security_app_list.py +0 -32
- catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +0 -433
- catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +0 -54
- catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +0 -106
- catalystwan/integration_tests/feature_profile/sdwan/test_other.py +0 -49
- catalystwan/integration_tests/feature_profile/sdwan/test_service.py +0 -1078
- catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +0 -322
- catalystwan/integration_tests/feature_profile/sdwan/test_ssl_decryption.py +0 -85
- catalystwan/integration_tests/feature_profile/sdwan/test_system.py +0 -368
- catalystwan/integration_tests/feature_profile/sdwan/test_tracker.py +0 -127
- catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +0 -1698
- catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +0 -93
- catalystwan/integration_tests/feature_profile/test_parcel.py +0 -54
- catalystwan/integration_tests/profile_builder/__init__.py +0 -0
- catalystwan/integration_tests/profile_builder/test_pb_service.py +0 -197
- catalystwan/integration_tests/profile_builder/test_pb_transport.py +0 -226
- catalystwan/integration_tests/profile_builder/test_pb_uc_voice.py +0 -277
- catalystwan/integration_tests/test_data/__init__.py +0 -117
- catalystwan/integration_tests/test_network_hierarchy.py +0 -82
- catalystwan/integration_tests/test_settings.py +0 -30
- catalystwan/models/configuration/feature_profile/parcel.py +0 -245
- catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +0 -13
- catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +0 -298
- catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +0 -344
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +0 -218
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/cloud_probe.py +0 -61
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +0 -31
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +0 -102
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +0 -1057
- catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +0 -23
- catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +0 -18
- catalystwan/models/configuration/feature_profile/sdwan/cli/full_config.py +0 -15
- catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +0 -13
- catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +0 -110
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +0 -23
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +0 -493
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +0 -171
- catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +0 -25
- catalystwan/models/configuration/feature_profile/sdwan/other/cybervision.py +0 -44
- catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +0 -147
- catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +0 -110
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +0 -22
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +0 -34
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_network_object.py +0 -15
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_service_object.py +0 -254
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +0 -27
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/network_object_group.py +0 -15
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/object_group.py +0 -15
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/service_object_group.py +0 -21
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +0 -64
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +0 -79
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/identity.py +0 -30
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +0 -58
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/object_group.py +0 -72
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/rule_set.py +0 -137
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/scalable_group_tag.py +0 -26
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +0 -126
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +0 -165
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +0 -148
- catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +0 -26
- catalystwan/models/configuration/feature_profile/sdwan/routing/bgp.py +0 -609
- catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +0 -91
- catalystwan/models/configuration/feature_profile/sdwan/service/dual_router_ha.py +0 -26
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +0 -101
- catalystwan/models/configuration/feature_profile/sdwan/service/service_chain.py +0 -38
- catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +0 -19
- catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +0 -379
- catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +0 -59
- catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +0 -30
- catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +0 -290
- catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +0 -69
- catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +0 -157
- catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +0 -157
- catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +0 -163
- catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +0 -162
- catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +0 -75
- catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +0 -103
- catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +0 -120
- catalystwan/models/configuration/feature_profile/sdwan/system/security.py +0 -179
- catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +0 -173
- catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +0 -29
- catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +0 -425
- catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +0 -60
- catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +0 -23
- catalystwan/models/configuration/feature_profile/sdwan/trackers/__init__.py +0 -36
- catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker.py +0 -96
- catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker_group.py +0 -63
- catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +0 -93
- catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +0 -71
- catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +0 -37
- catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +0 -121
- catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +0 -124
- catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +0 -285
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +0 -173
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +0 -389
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +0 -46
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +0 -137
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +0 -219
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +0 -405
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +0 -195
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/__init__.py +0 -62
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/analog_interface.py +0 -436
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/call_routing.py +0 -179
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py +0 -380
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/dsp_farm.py +0 -193
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/media_profile.py +0 -17
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/server_group.py +0 -51
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/srst.py +0 -86
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/supervisory_disconnect.py +0 -69
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_profile.py +0 -42
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_rule.py +0 -31
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/trunk_group.py +0 -26
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_global.py +0 -57
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_tenant.py +0 -40
- catalystwan/models/configuration/network_hierarchy/__init__.py +0 -24
- catalystwan/models/configuration/network_hierarchy/cflowd.py +0 -128
- catalystwan/models/configuration/network_hierarchy/node.py +0 -88
- catalystwan/models/configuration/network_hierarchy/security_logging.py +0 -91
- catalystwan/models/configuration/packages.py +0 -57
- catalystwan/models/configuration/policy_group.py +0 -74
- catalystwan/models/configuration/topology_group.py +0 -52
- catalystwan/models/policy/definition/aip.py +0 -60
- catalystwan/models/policy/definition/amp.py +0 -65
- catalystwan/models/policy/definition/app_route.py +0 -246
- catalystwan/models/policy/definition/cflowd.py +0 -95
- catalystwan/models/policy/definition/dial_peer.py +0 -60
- catalystwan/models/policy/definition/dns_security.py +0 -130
- catalystwan/models/policy/definition/fxo_port.py +0 -63
- catalystwan/models/policy/definition/fxs_did_port.py +0 -58
- catalystwan/models/policy/definition/fxs_port.py +0 -56
- catalystwan/models/policy/definition/intrusion_prevention.py +0 -55
- catalystwan/models/policy/definition/pri_isdn_port.py +0 -48
- catalystwan/models/policy/definition/route_policy.py +0 -187
- catalystwan/models/policy/definition/srst_phone_profile.py +0 -37
- catalystwan/models/policy/definition/ssl_decryption.py +0 -209
- catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +0 -88
- catalystwan/models/policy/definition/url_filtering.py +0 -70
- catalystwan/models/policy/definition/vpn_qos_map.py +0 -46
- catalystwan/models/policy/list/app.py +0 -44
- catalystwan/models/policy/list/app_probe.py +0 -42
- catalystwan/models/policy/list/as_path.py +0 -30
- catalystwan/models/policy/list/class_map.py +0 -30
- catalystwan/models/policy/list/color.py +0 -28
- catalystwan/models/policy/list/communities.py +0 -83
- catalystwan/models/policy/list/data_ipv6_prefix.py +0 -30
- catalystwan/models/policy/list/data_prefix.py +0 -30
- catalystwan/models/policy/list/fax_protocol.py +0 -45
- catalystwan/models/policy/list/fqdn.py +0 -24
- catalystwan/models/policy/list/geo_location.py +0 -33
- catalystwan/models/policy/list/identity.py +0 -29
- catalystwan/models/policy/list/ips_signature.py +0 -27
- catalystwan/models/policy/list/ipv6_prefix.py +0 -33
- catalystwan/models/policy/list/local_app.py +0 -45
- catalystwan/models/policy/list/local_domain.py +0 -36
- catalystwan/models/policy/list/media_profile.py +0 -44
- catalystwan/models/policy/list/mirror.py +0 -27
- catalystwan/models/policy/list/modem_pass_through.py +0 -27
- catalystwan/models/policy/list/policer.py +0 -39
- catalystwan/models/policy/list/port.py +0 -33
- catalystwan/models/policy/list/preferred_color_group.py +0 -82
- catalystwan/models/policy/list/prefix.py +0 -33
- catalystwan/models/policy/list/protocol_name.py +0 -26
- catalystwan/models/policy/list/region.py +0 -45
- catalystwan/models/policy/list/scalable_group_tag.py +0 -30
- catalystwan/models/policy/list/site.py +0 -34
- catalystwan/models/policy/list/sla.py +0 -77
- catalystwan/models/policy/list/supervisory_disconnect.py +0 -62
- catalystwan/models/policy/list/threat_grid_api_key.py +0 -32
- catalystwan/models/policy/list/tloc.py +0 -32
- catalystwan/models/policy/list/translation_profile.py +0 -32
- catalystwan/models/policy/list/translation_rules.py +0 -29
- catalystwan/models/policy/list/trunkgroup.py +0 -56
- catalystwan/models/policy/list/umbrella_data.py +0 -30
- catalystwan/models/policy/list/url.py +0 -39
- catalystwan/models/policy/list/vpn.py +0 -40
- catalystwan/models/policy/list/zone.py +0 -46
- catalystwan/models/policy/voice.py +0 -77
- catalystwan/models/settings.py +0 -41
- catalystwan/models/templates.py +0 -79
- catalystwan/tests/builders/test_report.py +0 -60
- catalystwan/tests/builders/uc_voice.py +0 -85
- catalystwan/tests/models/__init__.py +0 -0
- catalystwan/tests/models/configuration/feature_profile/sdwan/policy_object/security/test_url.py +0 -73
- catalystwan/tests/models/test_digital_interface.py +0 -56
- catalystwan/tests/templates/definitions/aaa_basic.json +0 -96
- catalystwan/tests/templates/definitions/aaa_complex.json +0 -464
- catalystwan/tests/templates/definitions/cisco_aaa_complex.json +0 -361
- catalystwan/tests/templates/definitions/cisco_logging_complex.json +0 -268
- catalystwan/tests/templates/definitions/cisco_ntp_complex.json +0 -143
- catalystwan/tests/templates/definitions/cisco_omp_complex.json +0 -175
- catalystwan/tests/templates/definitions/cisco_ospf_complex.json +0 -302
- catalystwan/tests/templates/definitions/cisco_sig.json +0 -405
- catalystwan/tests/templates/definitions/cisco_snmp_complex.json +0 -258
- catalystwan/tests/templates/definitions/cisco_system_complex.json +0 -502
- catalystwan/tests/templates/definitions/cisco_vpn_interface_complex.json +0 -821
- catalystwan/tests/templates/definitions/omp_vsmart_1.json +0 -26
- catalystwan/tests/templates/definitions/omp_vsmart_complex.json +0 -73
- catalystwan/tests/templates/definitions/security_vsmart_complex.json +0 -24
- catalystwan/tests/templates/definitions/system_vsmart_complex.json +0 -193
- catalystwan/tests/templates/definitions/vpn_vsmart_basic.json +0 -17
- catalystwan/tests/templates/definitions/vpn_vsmart_complex.json +0 -179
- catalystwan/tests/templates/definitions/vpn_vsmart_interface_basic.json +0 -42
- catalystwan/tests/templates/definitions/vpn_vsmart_interface_complex.json +0 -208
- catalystwan/tests/templates/models/aaa.py +0 -106
- catalystwan/tests/templates/models/cisco_logging.py +0 -65
- catalystwan/tests/templates/models/cisco_ntp.py +0 -17
- catalystwan/tests/templates/models/cisco_omp.py +0 -37
- catalystwan/tests/templates/models/cisco_ospf.py +0 -60
- catalystwan/tests/templates/models/cisco_secure_internet_gateway.py +0 -95
- catalystwan/tests/templates/models/cisco_snmp.py +0 -40
- catalystwan/tests/templates/models/cisco_vpn_interface.py +0 -200
- catalystwan/tests/templates/models/security_vsmart.py +0 -11
- catalystwan/tests/templates/models/system_vsmart.py +0 -37
- catalystwan/tests/templates/models/vpn_vsmart.py +0 -32
- catalystwan/tests/templates/models/vpn_vsmart_interface.py +0 -54
- catalystwan/tests/templates/schemas/aaa.json +0 -1096
- catalystwan/tests/templates/schemas/cisco_logging.json +0 -577
- catalystwan/tests/templates/schemas/cisco_ntp.json +0 -265
- catalystwan/tests/templates/schemas/cisco_omp.json +0 -479
- catalystwan/tests/templates/schemas/cisco_ospf.json +0 -908
- catalystwan/tests/templates/schemas/cisco_secure_internet_gateway.json +0 -1520
- catalystwan/tests/templates/schemas/cisco_snmp.json +0 -561
- catalystwan/tests/templates/schemas/cisco_vpn_interface.json +0 -3348
- catalystwan/tests/templates/schemas/security-vsmart.json +0 -58
- catalystwan/tests/templates/schemas/system-vsmart.json +0 -2585
- catalystwan/tests/templates/schemas/vpn-vsmart-interface.json +0 -859
- catalystwan/tests/templates/schemas/vpn-vsmart.json +0 -445
- catalystwan/tests/templates/test_find_template_values_2.py +0 -193
- catalystwan/tests/test_feature_profile_api.py +0 -282
- catalystwan/tests/test_models_common.py +0 -53
- catalystwan/utils/model.py +0 -48
- catalystwan/utils/persona.py +0 -5
- catalystwan/utils/type_check.py +0 -22
- catalystwan/workflows/backup_restore_device_templates.py +0 -467
- catalystwan-0.41.2.dev9.dist-info/RECORD +0 -641
- /catalystwan/tests/templates/definitions/{cisco_banner.json → banner_1.json} +0 -0
- {catalystwan-0.41.2.dev9.dist-info → catalystwan-0.41.3.dist-info}/LICENSE +0 -0
- {catalystwan-0.41.2.dev9.dist-info → catalystwan-0.41.3.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,422 @@
|
|
|
1
|
+
# Copyright 2023 Cisco Systems, Inc. and its affiliates
|
|
2
|
+
|
|
3
|
+
from enum import Enum
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Timezone(str, Enum):
|
|
7
|
+
EUROPE_ANDORRA = "Europe/Andorra"
|
|
8
|
+
ASIA_DUBAI = "Asia/Dubai"
|
|
9
|
+
ASIA_KABUL_ = "Asia/Kabul"
|
|
10
|
+
AMERICA_ANTIGUA_ = "America/Antigua"
|
|
11
|
+
AMERICA_ANGUILLA_ = "America/Anguilla"
|
|
12
|
+
EUROPE_TIRANE_ = "Europe/Tirane"
|
|
13
|
+
ASIA_YEREVAN_ = "Asia/Yerevan"
|
|
14
|
+
AFRICA_LUANDA_ = "Africa/Luanda"
|
|
15
|
+
ANTARCTICA_MCMURDO = "Antarctica/McMurdo"
|
|
16
|
+
ANTARCTICA_ROTHERA = "Antarctica/Rothera"
|
|
17
|
+
ANTARCTICA_PALMER = "Antarctica/Palmer"
|
|
18
|
+
ANTARCTICA_MAWSON = "Antarctica/Mawson"
|
|
19
|
+
ANTARCTICA_DAVIS = "Antarctica/Davis"
|
|
20
|
+
ANTARCTICA_CASEY = "Antarctica/Casey"
|
|
21
|
+
ANTARCTICA_VOSTOK = "Antarctica/Vostok"
|
|
22
|
+
ANTARCTICA_DUMONTDURVILLE = "Antarctica/DumontDUrville"
|
|
23
|
+
ANTARCTICA_SYOWA = "Antarctica/Syowa"
|
|
24
|
+
AMERICA_ARGENTINA_BUENOS_AIRES = "America/Argentina/Buenos_Aires"
|
|
25
|
+
AMERICA_ARGENTINA_CORDOBA = "America/Argentina/Cordoba"
|
|
26
|
+
AMERICA_ARGENTINA_SALTA = "America/Argentina/Salta"
|
|
27
|
+
AMERICA_ARGENTINA_JUJUY = "America/Argentina/Jujuy"
|
|
28
|
+
AMERICA_ARGENTINA_TUCUMAN = "America/Argentina/Tucuman"
|
|
29
|
+
AMERICA_ARGENTINA_CATAMARCA = "America/Argentina/Catamarca"
|
|
30
|
+
AMERICA_ARGENTINA_LA_RIOJA = "America/Argentina/La_Rioja"
|
|
31
|
+
AMERICA_ARGENTINA_SAN_JUAN = "America/Argentina/San_Juan"
|
|
32
|
+
AMERICA_ARGENTINA_MENDOZA = "America/Argentina/Mendoza"
|
|
33
|
+
AMERICA_ARGENTINA_SAN_LUIS = "America/Argentina/San_Luis"
|
|
34
|
+
AMERICA_ARGENTINA_RIO_GALLEGOS = "America/Argentina/Rio_Gallegos"
|
|
35
|
+
AMERICA_ARGENTINA_USHUAIA = "America/Argentina/Ushuaia"
|
|
36
|
+
PACIFIC_PAGO_PAGO = "Pacific/Pago_Pago"
|
|
37
|
+
EUROPE_VIENNA = "Europe/Vienna"
|
|
38
|
+
AUSTRALIA_LORD_HOWE = "Australia/Lord_Howe"
|
|
39
|
+
ANTARCTICA_MACQUARIE = "Antarctica/Macquarie"
|
|
40
|
+
AUSTRALIA_HOBART = "Australia/Hobart"
|
|
41
|
+
AUSTRALIA_CURRIE = "Australia/Currie"
|
|
42
|
+
AUSTRALIA_MELBOURNE = "Australia/Melbourne"
|
|
43
|
+
AUSTRALIA_SYDNEY = "Australia/Sydney"
|
|
44
|
+
AUSTRALIA_BROKEN_HILL = "Australia/Broken_Hill"
|
|
45
|
+
AUSTRALIA_BRISBANE = "Australia/Brisbane"
|
|
46
|
+
AUSTRALIA_LINDEMAN = "Australia/Lindeman"
|
|
47
|
+
AUSTRALIA_ADELAIDE = "Australia/Adelaide"
|
|
48
|
+
AUSTRALIA_DARWIN = "Australia/Darwin"
|
|
49
|
+
AUSTRALIA_PERTH = "Australia/Perth"
|
|
50
|
+
AUSTRALIA_EUCLA = "Australia/Eucla"
|
|
51
|
+
AMERICA_ARUBA = "America/Aruba"
|
|
52
|
+
EUROPE_MARIEHAMN = "Europe/Mariehamn"
|
|
53
|
+
ASIA_BAKU = "Asia/Baku"
|
|
54
|
+
EUROPE_SARAJEVO = "Europe/Sarajevo"
|
|
55
|
+
AMERICA_BARBADOS = "America/Barbados"
|
|
56
|
+
ASIA_DHAKA = "Asia/Dhaka"
|
|
57
|
+
EUROPE_BRUSSELS = "Europe/Brussels"
|
|
58
|
+
AFRICA_OUAGADOUGOU = "Africa/Ouagadougou"
|
|
59
|
+
EUROPE_SOFIA = "Europe/Sofia"
|
|
60
|
+
ASIA_BAHRAIN = "Asia/Bahrain"
|
|
61
|
+
AFRICA_BUJUMBURA = "Africa/Bujumbura"
|
|
62
|
+
AFRICA_PORTO_NOVO = "Africa/Porto-Novo"
|
|
63
|
+
AMERICA_ST_BARTHELEMY = "America/St_Barthelemy"
|
|
64
|
+
ATLANTIC_BERMUDA = "Atlantic/Bermuda"
|
|
65
|
+
ASIA_BRUNEI = "Asia/Brunei"
|
|
66
|
+
AMERICA_LA_PAZ = "America/La_Paz"
|
|
67
|
+
AMERICA_KRALENDIJK = "America/Kralendijk"
|
|
68
|
+
AMERICA_NORONHA = "America/Noronha"
|
|
69
|
+
AMERICA_BELEM = "America/Belem"
|
|
70
|
+
AMERICA_FORTALEZA = "America/Fortaleza"
|
|
71
|
+
AMERICA_RECIFE = "America/Recife"
|
|
72
|
+
AMERICA_ARAGUAINA = "America/Araguaina"
|
|
73
|
+
AMERICA_MACEIO = "America/Maceio"
|
|
74
|
+
AMERICA_BAHIA = "America/Bahia"
|
|
75
|
+
AMERICA_SAO_PAULO = "America/Sao_Paulo"
|
|
76
|
+
AMERICA_CAMPO_GRANDE = "America/Campo_Grande"
|
|
77
|
+
AMERICA_CUIABA = "America/Cuiaba"
|
|
78
|
+
AMERICA_SANTAREM = "America/Santarem"
|
|
79
|
+
AMERICA_PORTO_VELHO = "America/Porto_Velho"
|
|
80
|
+
AMERICA_BOA_VISTA = "America/Boa_Vista"
|
|
81
|
+
AMERICA_MANAUS = "America/Manaus"
|
|
82
|
+
AMERICA_EIRUNEPE = "America/Eirunepe"
|
|
83
|
+
AMERICA_RIO_BRANCO = "America/Rio_Branco"
|
|
84
|
+
AMERICA_NASSAU = "America/Nassau"
|
|
85
|
+
ASIA_THIMPHU = "Asia/Thimphu"
|
|
86
|
+
AFRICA_GABORONE = "Africa/Gaborone"
|
|
87
|
+
EUROPE_MINSK = "Europe/Minsk"
|
|
88
|
+
AMERICA_BELIZE = "America/Belize"
|
|
89
|
+
AMERICA_ST_JOHNS = "America/St_Johns"
|
|
90
|
+
AMERICA_HALIFAX = "America/Halifax"
|
|
91
|
+
AMERICA_GLACE_BAY = "America/Glace_Bay"
|
|
92
|
+
AMERICA_MONCTON = "America/Moncton"
|
|
93
|
+
AMERICA_GOOSE_BAY = "America/Goose_Bay"
|
|
94
|
+
AMERICA_BLANC_SABLON = "America/Blanc-Sablon"
|
|
95
|
+
AMERICA_TORONTO = "America/Toronto"
|
|
96
|
+
AMERICA_NIPIGON = "America/Nipigon"
|
|
97
|
+
AMERICA_THUNDER_BAY = "America/Thunder_Bay"
|
|
98
|
+
AMERICA_IQALUIT = "America/Iqaluit"
|
|
99
|
+
AMERICA_PANGNIRTUNG = "America/Pangnirtung"
|
|
100
|
+
AMERICA_RESOLUTE = "America/Resolute"
|
|
101
|
+
AMERICA_ATIKOKAN = "America/Atikokan"
|
|
102
|
+
AMERICA_RANKIN_INLET = "America/Rankin_Inlet"
|
|
103
|
+
AMERICA_WINNIPEG = "America/Winnipeg"
|
|
104
|
+
AMERICA_RAINY_RIVER = "America/Rainy_River"
|
|
105
|
+
AMERICA_REGINA = "America/Regina"
|
|
106
|
+
AMERICA_SWIFT_CURRENT = "America/Swift_Current"
|
|
107
|
+
AMERICA_EDMONTON = "America/Edmonton"
|
|
108
|
+
AMERICA_CAMBRIDGE_BAY = "America/Cambridge_Bay"
|
|
109
|
+
AMERICA_YELLOWKNIFE = "America/Yellowknife"
|
|
110
|
+
AMERICA_INUVIK = "America/Inuvik"
|
|
111
|
+
AMERICA_CRESTON = "America/Creston"
|
|
112
|
+
AMERICA_DAWSON_CREEK = "America/Dawson_Creek"
|
|
113
|
+
AMERICA_VANCOUVER = "America/Vancouver"
|
|
114
|
+
AMERICA_WHITEHORSE = "America/Whitehorse"
|
|
115
|
+
AMERICA_DAWSON = "America/Dawson"
|
|
116
|
+
INDIAN_COCOS = "Indian/Cocos"
|
|
117
|
+
AFRICA_KINSHASA = "Africa/Kinshasa"
|
|
118
|
+
AFRICA_LUBUMBASHI = "Africa/Lubumbashi"
|
|
119
|
+
AFRICA_BANGUI = "Africa/Bangui"
|
|
120
|
+
AFRICA_BRAZZAVILLE = "Africa/Brazzaville"
|
|
121
|
+
EUROPE_ZURICH = "Europe/Zurich"
|
|
122
|
+
AFRICA_ABIDJAN = "Africa/Abidjan"
|
|
123
|
+
PACIFIC_RAROTONGA = "Pacific/Rarotonga"
|
|
124
|
+
AMERICA_SANTIAGO = "America/Santiago"
|
|
125
|
+
PACIFIC_EASTER = "Pacific/Easter"
|
|
126
|
+
AFRICA_DOUALA = "Africa/Douala"
|
|
127
|
+
ASIA_SHANGHAI = "Asia/Shanghai"
|
|
128
|
+
ASIA_HARBIN = "Asia/Harbin"
|
|
129
|
+
ASIA_CHONGQING = "Asia/Chongqing"
|
|
130
|
+
ASIA_URUMQI = "Asia/Urumqi"
|
|
131
|
+
ASIA_KASHGAR = "Asia/Kashgar"
|
|
132
|
+
AMERICA_BOGOTA = "America/Bogota"
|
|
133
|
+
AMERICA_COSTA_RICA = "America/Costa_Rica"
|
|
134
|
+
AMERICA_HAVANA = "America/Havana"
|
|
135
|
+
ATLANTIC_CAPE_VERDE = "Atlantic/Cape_Verde"
|
|
136
|
+
AMERICA_CURACAO = "America/Curacao"
|
|
137
|
+
INDIAN_CHRISTMAS = "Indian/Christmas"
|
|
138
|
+
ASIA_NICOSIA = "Asia/Nicosia"
|
|
139
|
+
EUROPE_PRAGUE = "Europe/Prague"
|
|
140
|
+
EUROPE_BERLIN = "Europe/Berlin"
|
|
141
|
+
EUROPE_BUSINGEN = "Europe/Busingen"
|
|
142
|
+
AFRICA_DJIBOUTI = "Africa/Djibouti"
|
|
143
|
+
EUROPE_COPENHAGEN = "Europe/Copenhagen"
|
|
144
|
+
AMERICA_DOMINICA = "America/Dominica"
|
|
145
|
+
AMERICA_SANTO_DOMINGO = "America/Santo_Domingo"
|
|
146
|
+
AFRICA_ALGIERS = "Africa/Algiers"
|
|
147
|
+
AMERICA_GUAYAQUIL = "America/Guayaquil"
|
|
148
|
+
PACIFIC_GALAPAGOS = "Pacific/Galapagos"
|
|
149
|
+
EUROPE_TALLINN = "Europe/Tallinn"
|
|
150
|
+
AFRICA_CAIRO = "Africa/Cairo"
|
|
151
|
+
AFRICA_EL_AAIUN = "Africa/El_Aaiun"
|
|
152
|
+
AFRICA_ASMARA = "Africa/Asmara"
|
|
153
|
+
EUROPE_MADRID = "Europe/Madrid"
|
|
154
|
+
AFRICA_CEUTA = "Africa/Ceuta"
|
|
155
|
+
ATLANTIC_CANARY = "Atlantic/Canary"
|
|
156
|
+
AFRICA_ADDIS_ABABA = "Africa/Addis_Ababa"
|
|
157
|
+
EUROPE_HELSINKI = "Europe/Helsinki"
|
|
158
|
+
PACIFIC_FIJI = "Pacific/Fiji"
|
|
159
|
+
ATLANTIC_STANLEY = "Atlantic/Stanley"
|
|
160
|
+
PACIFIC_CHUUK = "Pacific/Chuuk"
|
|
161
|
+
PACIFIC_POHNPEI = "Pacific/Pohnpei"
|
|
162
|
+
PACIFIC_KOSRAE = "Pacific/Kosrae"
|
|
163
|
+
ATLANTIC_FAROE = "Atlantic/Faroe"
|
|
164
|
+
EUROPE_PARIS = "Europe/Paris"
|
|
165
|
+
AFRICA_LIBREVILLE = "Africa/Libreville"
|
|
166
|
+
EUROPE_LONDON = "Europe/London"
|
|
167
|
+
AMERICA_GRENADA = "America/Grenada"
|
|
168
|
+
ASIA_TBILISI = "Asia/Tbilisi"
|
|
169
|
+
AMERICA_CAYENNE = "America/Cayenne"
|
|
170
|
+
EUROPE_GUERNSEY = "Europe/Guernsey"
|
|
171
|
+
AFRICA_ACCRA = "Africa/Accra"
|
|
172
|
+
EUROPE_GIBRALTAR = "Europe/Gibraltar"
|
|
173
|
+
AMERICA_GODTHAB = "America/Godthab"
|
|
174
|
+
AMERICA_DANMARKSHAVN = "America/Danmarkshavn"
|
|
175
|
+
AMERICA_SCORESBYSUND = "America/Scoresbysund"
|
|
176
|
+
AMERICA_THULE = "America/Thule"
|
|
177
|
+
AFRICA_BANJUL = "Africa/Banjul"
|
|
178
|
+
AFRICA_CONAKRY = "Africa/Conakry"
|
|
179
|
+
AMERICA_GUADELOUPE = "America/Guadeloupe"
|
|
180
|
+
AFRICA_MALABO = "Africa/Malabo"
|
|
181
|
+
EUROPE_ATHENS = "Europe/Athens"
|
|
182
|
+
ATLANTIC_SOUTH_GEORGIA = "Atlantic/South_Georgia"
|
|
183
|
+
AMERICA_GUATEMALA = "America/Guatemala"
|
|
184
|
+
PACIFIC_GUAM = "Pacific/Guam"
|
|
185
|
+
AFRICA_BISSAU = "Africa/Bissau"
|
|
186
|
+
AMERICA_GUYANA = "America/Guyana"
|
|
187
|
+
ASIA_HONG_KONG = "Asia/Hong_Kong"
|
|
188
|
+
AMERICA_TEGUCIGALPA = "America/Tegucigalpa"
|
|
189
|
+
EUROPE_ZAGREB = "Europe/Zagreb"
|
|
190
|
+
AMERICA_PORT_AU_PRINCE = "America/Port-au-Prince"
|
|
191
|
+
EUROPE_BUDAPEST = "Europe/Budapest"
|
|
192
|
+
ASIA_JAKARTA = "Asia/Jakarta"
|
|
193
|
+
ASIA_PONTIANAK = "Asia/Pontianak"
|
|
194
|
+
ASIA_MAKASSAR = "Asia/Makassar"
|
|
195
|
+
ASIA_JAYAPURA = "Asia/Jayapura"
|
|
196
|
+
EUROPE_DUBLIN = "Europe/Dublin"
|
|
197
|
+
ASIA_JERUSALEM = "Asia/Jerusalem"
|
|
198
|
+
EUROPE_ISLE_OF_MAN = "Europe/Isle_of_Man"
|
|
199
|
+
ASIA_KOLKATA = "Asia/Kolkata"
|
|
200
|
+
INDIAN_CHAGOS = "Indian/Chagos"
|
|
201
|
+
ASIA_BAGHDAD = "Asia/Baghdad"
|
|
202
|
+
ASIA_TEHRAN = "Asia/Tehran"
|
|
203
|
+
ATLANTIC_REYKJAVIK = "Atlantic/Reykjavik"
|
|
204
|
+
EUROPE_ROME = "Europe/Rome"
|
|
205
|
+
EUROPE_JERSEY = "Europe/Jersey"
|
|
206
|
+
AMERICA_JAMAICA = "America/Jamaica"
|
|
207
|
+
ASIA_AMMAN = "Asia/Amman"
|
|
208
|
+
ASIA_TOKYO = "Asia/Tokyo"
|
|
209
|
+
AFRICA_NAIROBI = "Africa/Nairobi"
|
|
210
|
+
ASIA_BISHKEK = "Asia/Bishkek"
|
|
211
|
+
ASIA_PHNOM_PENH = "Asia/Phnom_Penh"
|
|
212
|
+
PACIFIC_TARAWA = "Pacific/Tarawa"
|
|
213
|
+
PACIFIC_ENDERBURY = "Pacific/Enderbury"
|
|
214
|
+
PACIFIC_KIRITIMATI = "Pacific/Kiritimati"
|
|
215
|
+
INDIAN_COMORO = "Indian/Comoro"
|
|
216
|
+
AMERICA_ST_KITTS = "America/St_Kitts"
|
|
217
|
+
ASIA_PYONGYANG = "Asia/Pyongyang"
|
|
218
|
+
ASIA_SEOUL = "Asia/Seoul"
|
|
219
|
+
ASIA_KUWAIT = "Asia/Kuwait"
|
|
220
|
+
AMERICA_CAYMAN = "America/Cayman"
|
|
221
|
+
ASIA_ALMATY = "Asia/Almaty"
|
|
222
|
+
ASIA_QYZYLORDA = "Asia/Qyzylorda"
|
|
223
|
+
ASIA_AQTOBE = "Asia/Aqtobe"
|
|
224
|
+
ASIA_AQTAU = "Asia/Aqtau"
|
|
225
|
+
ASIA_ORAL = "Asia/Oral"
|
|
226
|
+
ASIA_VIENTIANE = "Asia/Vientiane"
|
|
227
|
+
ASIA_BEIRUT = "Asia/Beirut"
|
|
228
|
+
AMERICA_ST_LUCIA = "America/St_Lucia"
|
|
229
|
+
EUROPE_VADUZ = "Europe/Vaduz"
|
|
230
|
+
ASIA_COLOMBO = "Asia/Colombo"
|
|
231
|
+
AFRICA_MONROVIA = "Africa/Monrovia"
|
|
232
|
+
AFRICA_MASERU = "Africa/Maseru"
|
|
233
|
+
EUROPE_VILNIUS = "Europe/Vilnius"
|
|
234
|
+
EUROPE_LUXEMBOURG = "Europe/Luxembourg"
|
|
235
|
+
EUROPE_RIGA = "Europe/Riga"
|
|
236
|
+
AFRICA_TRIPOLI = "Africa/Tripoli"
|
|
237
|
+
AFRICA_CASABLANCA = "Africa/Casablanca"
|
|
238
|
+
EUROPE_MONACO = "Europe/Monaco"
|
|
239
|
+
EUROPE_CHISINAU = "Europe/Chisinau"
|
|
240
|
+
EUROPE_PODGORICA = "Europe/Podgorica"
|
|
241
|
+
AMERICA_MARIGOT = "America/Marigot"
|
|
242
|
+
INDIAN_ANTANANARIVO = "Indian/Antananarivo"
|
|
243
|
+
PACIFIC_MAJURO = "Pacific/Majuro"
|
|
244
|
+
PACIFIC_KWAJALEIN = "Pacific/Kwajalein"
|
|
245
|
+
EUROPE_SKOPJE = "Europe/Skopje"
|
|
246
|
+
AFRICA_BAMAKO = "Africa/Bamako"
|
|
247
|
+
ASIA_RANGOON = "Asia/Rangoon"
|
|
248
|
+
ASIA_ULAANBAATAR = "Asia/Ulaanbaatar"
|
|
249
|
+
ASIA_HOVD = "Asia/Hovd"
|
|
250
|
+
ASIA_CHOIBALSAN = "Asia/Choibalsan"
|
|
251
|
+
ASIA_MACAU = "Asia/Macau"
|
|
252
|
+
PACIFIC_SAIPAN = "Pacific/Saipan"
|
|
253
|
+
AMERICA_MARTINIQUE = "America/Martinique"
|
|
254
|
+
AFRICA_NOUAKCHOTT = "Africa/Nouakchott"
|
|
255
|
+
AMERICA_MONTSERRAT = "America/Montserrat"
|
|
256
|
+
EUROPE_MALTA = "Europe/Malta"
|
|
257
|
+
INDIAN_MAURITIUS = "Indian/Mauritius"
|
|
258
|
+
INDIAN_MALDIVES = "Indian/Maldives"
|
|
259
|
+
AFRICA_BLANTYRE = "Africa/Blantyre"
|
|
260
|
+
AMERICA_MEXICO_CITY = "America/Mexico_City"
|
|
261
|
+
AMERICA_CANCUN = "America/Cancun"
|
|
262
|
+
AMERICA_MERIDA = "America/Merida"
|
|
263
|
+
AMERICA_MONTERREY = "America/Monterrey"
|
|
264
|
+
AMERICA_MATAMOROS = "America/Matamoros"
|
|
265
|
+
AMERICA_MAZATLAN = "America/Mazatlan"
|
|
266
|
+
AMERICA_CHIHUAHUA = "America/Chihuahua"
|
|
267
|
+
AMERICA_OJINAGA = "America/Ojinaga"
|
|
268
|
+
AMERICA_HERMOSILLO = "America/Hermosillo"
|
|
269
|
+
AMERICA_TIJUANA = "America/Tijuana"
|
|
270
|
+
AMERICA_SANTA_ISABEL = "America/Santa_Isabel"
|
|
271
|
+
AMERICA_BAHIA_BANDERAS = "America/Bahia_Banderas"
|
|
272
|
+
ASIA_KUALA_LUMPUR = "Asia/Kuala_Lumpur"
|
|
273
|
+
ASIA_KUCHING = "Asia/Kuching"
|
|
274
|
+
AFRICA_MAPUTO = "Africa/Maputo"
|
|
275
|
+
AFRICA_WINDHOEK = "Africa/Windhoek"
|
|
276
|
+
PACIFIC_NOUMEA = "Pacific/Noumea"
|
|
277
|
+
AFRICA_NIAMEY = "Africa/Niamey"
|
|
278
|
+
PACIFIC_NORFOLK = "Pacific/Norfolk"
|
|
279
|
+
AFRICA_LAGOS = "Africa/Lagos"
|
|
280
|
+
AMERICA_MANAGUA = "America/Managua"
|
|
281
|
+
EUROPE_AMSTERDAM = "Europe/Amsterdam"
|
|
282
|
+
EUROPE_OSLO = "Europe/Oslo"
|
|
283
|
+
ASIA_KATHMANDU = "Asia/Kathmandu"
|
|
284
|
+
PACIFIC_NAURU = "Pacific/Nauru"
|
|
285
|
+
PACIFIC_NIUE = "Pacific/Niue"
|
|
286
|
+
PACIFIC_AUCKLAND = "Pacific/Auckland"
|
|
287
|
+
PACIFIC_CHATHAM = "Pacific/Chatham"
|
|
288
|
+
ASIA_MUSCAT = "Asia/Muscat"
|
|
289
|
+
AMERICA_PANAMA = "America/Panama"
|
|
290
|
+
AMERICA_LIMA = "America/Lima"
|
|
291
|
+
PACIFIC_TAHITI = "Pacific/Tahiti"
|
|
292
|
+
PACIFIC_MARQUESAS = "Pacific/Marquesas"
|
|
293
|
+
PACIFIC_GAMBIER = "Pacific/Gambier"
|
|
294
|
+
PACIFIC_PORT_MORESBY = "Pacific/Port_Moresby"
|
|
295
|
+
ASIA_MANILA = "Asia/Manila"
|
|
296
|
+
ASIA_KARACHI = "Asia/Karachi"
|
|
297
|
+
EUROPE_WARSAW = "Europe/Warsaw"
|
|
298
|
+
AMERICA_MIQUELON = "America/Miquelon"
|
|
299
|
+
PACIFIC_PITCAIRN = "Pacific/Pitcairn"
|
|
300
|
+
AMERICA_PUERTO_RICO = "America/Puerto_Rico"
|
|
301
|
+
ASIA_GAZA = "Asia/Gaza"
|
|
302
|
+
ASIA_HEBRON = "Asia/Hebron"
|
|
303
|
+
EUROPE_LISBON = "Europe/Lisbon"
|
|
304
|
+
ATLANTIC_MADEIRA = "Atlantic/Madeira"
|
|
305
|
+
ATLANTIC_AZORES = "Atlantic/Azores"
|
|
306
|
+
PACIFIC_PALAU = "Pacific/Palau"
|
|
307
|
+
AMERICA_ASUNCION = "America/Asuncion"
|
|
308
|
+
ASIA_QATAR = "Asia/Qatar"
|
|
309
|
+
INDIAN_REUNION = "Indian/Reunion"
|
|
310
|
+
EUROPE_BUCHAREST = "Europe/Bucharest"
|
|
311
|
+
EUROPE_BELGRADE = "Europe/Belgrade"
|
|
312
|
+
EUROPE_KALININGRAD = "Europe/Kaliningrad"
|
|
313
|
+
EUROPE_MOSCOW = "Europe/Moscow"
|
|
314
|
+
EUROPE_VOLGOGRAD = "Europe/Volgograd"
|
|
315
|
+
EUROPE_SAMARA = "Europe/Samara"
|
|
316
|
+
ASIA_YEKATERINBURG = "Asia/Yekaterinburg"
|
|
317
|
+
ASIA_OMSK = "Asia/Omsk"
|
|
318
|
+
ASIA_NOVOSIBIRSK = "Asia/Novosibirsk"
|
|
319
|
+
ASIA_NOVOKUZNETSK = "Asia/Novokuznetsk"
|
|
320
|
+
ASIA_KRASNOYARSK = "Asia/Krasnoyarsk"
|
|
321
|
+
ASIA_IRKUTSK = "Asia/Irkutsk"
|
|
322
|
+
ASIA_YAKUTSK = "Asia/Yakutsk"
|
|
323
|
+
ASIA_KHANDYGA = "Asia/Khandyga"
|
|
324
|
+
ASIA_VLADIVOSTOK = "Asia/Vladivostok"
|
|
325
|
+
ASIA_SAKHALIN = "Asia/Sakhalin"
|
|
326
|
+
ASIA_UST_NERA = "Asia/Ust-Nera"
|
|
327
|
+
ASIA_MAGADAN = "Asia/Magadan"
|
|
328
|
+
ASIA_KAMCHATKA = "Asia/Kamchatka"
|
|
329
|
+
ASIA_ANADYR = "Asia/Anadyr"
|
|
330
|
+
AFRICA_KIGALI = "Africa/Kigali"
|
|
331
|
+
ASIA_RIYADH = "Asia/Riyadh"
|
|
332
|
+
PACIFIC_GUADALCANAL = "Pacific/Guadalcanal"
|
|
333
|
+
INDIAN_MAHE = "Indian/Mahe"
|
|
334
|
+
AFRICA_KHARTOUM = "Africa/Khartoum"
|
|
335
|
+
EUROPE_STOCKHOLM = "Europe/Stockholm"
|
|
336
|
+
ASIA_SINGAPORE = "Asia/Singapore"
|
|
337
|
+
ATLANTIC_ST_HELENA = "Atlantic/St_Helena"
|
|
338
|
+
EUROPE_LJUBLJANA = "Europe/Ljubljana"
|
|
339
|
+
ARCTIC_LONGYEARBYEN = "Arctic/Longyearbyen"
|
|
340
|
+
EUROPE_BRATISLAVA = "Europe/Bratislava"
|
|
341
|
+
AFRICA_FREETOWN = "Africa/Freetown"
|
|
342
|
+
EUROPE_SAN_MARINO = "Europe/San_Marino"
|
|
343
|
+
AFRICA_DAKAR = "Africa/Dakar"
|
|
344
|
+
AFRICA_MOGADISHU = "Africa/Mogadishu"
|
|
345
|
+
AMERICA_PARAMARIBO = "America/Paramaribo"
|
|
346
|
+
AFRICA_JUBA = "Africa/Juba"
|
|
347
|
+
AFRICA_SAO_TOME = "Africa/Sao_Tome"
|
|
348
|
+
AMERICA_EL_SALVADOR = "America/El_Salvador"
|
|
349
|
+
AMERICA_LOWER_PRINCES = "America/Lower_Princes"
|
|
350
|
+
ASIA_DAMASCUS = "Asia/Damascus"
|
|
351
|
+
AFRICA_MBABANE = "Africa/Mbabane"
|
|
352
|
+
AMERICA_GRAND_TURK = "America/Grand_Turk"
|
|
353
|
+
AFRICA_NDJAMENA = "Africa/Ndjamena"
|
|
354
|
+
INDIAN_KERGUELEN = "Indian/Kerguelen"
|
|
355
|
+
AFRICA_LOME = "Africa/Lome"
|
|
356
|
+
ASIA_BANGKOK = "Asia/Bangkok"
|
|
357
|
+
ASIA_DUSHANBE = "Asia/Dushanbe"
|
|
358
|
+
PACIFIC_FAKAOFO = "Pacific/Fakaofo"
|
|
359
|
+
ASIA_DILI = "Asia/Dili"
|
|
360
|
+
ASIA_ASHGABAT = "Asia/Ashgabat"
|
|
361
|
+
AFRICA_TUNIS = "Africa/Tunis"
|
|
362
|
+
PACIFIC_TONGATAPU = "Pacific/Tongatapu"
|
|
363
|
+
EUROPE_ISTANBUL = "Europe/Istanbul"
|
|
364
|
+
AMERICA_PORT_OF_SPAIN = "America/Port_of_Spain"
|
|
365
|
+
PACIFIC_FUNAFUTI = "Pacific/Funafuti"
|
|
366
|
+
ASIA_TAIPEI = "Asia/Taipei"
|
|
367
|
+
AFRICA_DAR_ES_SALAAM = "Africa/Dar_es_Salaam"
|
|
368
|
+
EUROPE_KIEV = "Europe/Kiev"
|
|
369
|
+
EUROPE_UZHGOROD = "Europe/Uzhgorod"
|
|
370
|
+
EUROPE_ZAPOROZHYE = "Europe/Zaporozhye"
|
|
371
|
+
EUROPE_SIMFEROPOL = "Europe/Simferopol"
|
|
372
|
+
AFRICA_KAMPALA = "Africa/Kampala"
|
|
373
|
+
PACIFIC_JOHNSTON = "Pacific/Johnston"
|
|
374
|
+
PACIFIC_MIDWAY = "Pacific/Midway"
|
|
375
|
+
PACIFIC_WAKE = "Pacific/Wake"
|
|
376
|
+
AMERICA_NEW_YORK = "America/New_York"
|
|
377
|
+
AMERICA_DETROIT = "America/Detroit"
|
|
378
|
+
AMERICA_KENTUCKY_LOUISVILLE = "America/Kentucky/Louisville"
|
|
379
|
+
AMERICA_KENTUCKY_MONTICELLO = "America/Kentucky/Monticello"
|
|
380
|
+
AMERICA_INDIANA_INDIANAPOLIS = "America/Indiana/Indianapolis"
|
|
381
|
+
AMERICA_INDIANA_VINCENNES = "America/Indiana/Vincennes"
|
|
382
|
+
AMERICA_INDIANA_WINAMAC = "America/Indiana/Winamac"
|
|
383
|
+
AMERICA_INDIANA_MARENGO = "America/Indiana/Marengo"
|
|
384
|
+
AMERICA_INDIANA_PETERSBURG = "America/Indiana/Petersburg"
|
|
385
|
+
AMERICA_INDIANA_VEVAY = "America/Indiana/Vevay"
|
|
386
|
+
AMERICA_CHICAGO = "America/Chicago"
|
|
387
|
+
AMERICA_INDIANA_TELL_CITY = "America/Indiana/Tell_City"
|
|
388
|
+
AMERICA_INDIANA_KNOX = "America/Indiana/Knox"
|
|
389
|
+
AMERICA_MENOMINEE = "America/Menominee"
|
|
390
|
+
AMERICA_NORTH_DAKOTA_CENTER = "America/North_Dakota/Center"
|
|
391
|
+
AMERICA_NORTH_DAKOTA_NEW_SALEM = "America/North_Dakota/New_Salem"
|
|
392
|
+
AMERICA_NORTH_DAKOTA_BEULAH = "America/North_Dakota/Beulah"
|
|
393
|
+
AMERICA_DENVER = "America/Denver"
|
|
394
|
+
AMERICA_BOISE = "America/Boise"
|
|
395
|
+
AMERICA_PHOENIX = "America/Phoenix"
|
|
396
|
+
AMERICA_LOS_ANGELES = "America/Los_Angeles"
|
|
397
|
+
AMERICA_ANCHORAGE = "America/Anchorage"
|
|
398
|
+
AMERICA_JUNEAU = "America/Juneau"
|
|
399
|
+
AMERICA_SITKA = "America/Sitka"
|
|
400
|
+
AMERICA_YAKUTAT = "America/Yakutat"
|
|
401
|
+
AMERICA_NOME = "America/Nome"
|
|
402
|
+
AMERICA_ADAK = "America/Adak"
|
|
403
|
+
AMERICA_METLAKATLA = "America/Metlakatla"
|
|
404
|
+
PACIFIC_HONOLULU = "Pacific/Honolulu"
|
|
405
|
+
AMERICA_MONTEVIDEO = "America/Montevideo"
|
|
406
|
+
ASIA_SAMARKAND = "Asia/Samarkand"
|
|
407
|
+
ASIA_TASHKENT = "Asia/Tashkent"
|
|
408
|
+
EUROPE_VATICAN = "Europe/Vatican"
|
|
409
|
+
AMERICA_ST_VINCENT = "America/St_Vincent"
|
|
410
|
+
AMERICA_CARACAS = "America/Caracas"
|
|
411
|
+
AMERICA_TORTOLA = "America/Tortola"
|
|
412
|
+
AMERICA_ST_THOMAS = "America/St_Thomas"
|
|
413
|
+
ASIA_HO_CHI_MINH = "Asia/Ho_Chi_Minh"
|
|
414
|
+
PACIFIC_EFATE = "Pacific/Efate"
|
|
415
|
+
PACIFIC_WALLIS = "Pacific/Wallis"
|
|
416
|
+
PACIFIC_APIA = "Pacific/Apia"
|
|
417
|
+
ASIA_ADEN = "Asia/Aden"
|
|
418
|
+
INDIAN_MAYOTTE = "Indian/Mayotte"
|
|
419
|
+
AFRICA_JOHANNESBURG = "Africa/Johannesburg"
|
|
420
|
+
AFRICA_LUSAKA = "Africa/Lusaka"
|
|
421
|
+
AFRICA_HARARE = "Africa/Harare"
|
|
422
|
+
UTC = "UTC"
|
|
@@ -103,7 +103,7 @@ def migration_preconditions_check(
|
|
|
103
103
|
problems.append(
|
|
104
104
|
"Migration to MT (using provider) is expected to be initiated from ST (using single tenant)"
|
|
105
105
|
)
|
|
106
|
-
if
|
|
106
|
+
if not tenant.org_name.startswith(target_org):
|
|
107
107
|
problems.append(f"Provided '{tenant.org_name}' but target organization is '{target_org}'")
|
|
108
108
|
|
|
109
109
|
# Checks for ST target
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: catalystwan
|
|
3
|
-
Version: 0.41.
|
|
3
|
+
Version: 0.41.3
|
|
4
4
|
Summary: Cisco Catalyst WAN SDK for Python
|
|
5
5
|
Author: kagorski
|
|
6
6
|
Author-email: kagorski@cisco.com
|
|
@@ -490,25 +490,6 @@ migrate_task.wait_for_completed()
|
|
|
490
490
|
```
|
|
491
491
|
</details>
|
|
492
492
|
|
|
493
|
-
<details>
|
|
494
|
-
<summary> <b>Feature Templates</b> <i>(click to expand)</i></summary>
|
|
495
|
-
|
|
496
|
-
```python
|
|
497
|
-
from catalystwan.api.templates.models.omp_vsmart_model import OMPvSmart
|
|
498
|
-
|
|
499
|
-
omp_vsmart = OMPvSmart(
|
|
500
|
-
name="my_first_template",
|
|
501
|
-
description="NA",
|
|
502
|
-
device_models=["vsmart"]
|
|
503
|
-
|
|
504
|
-
)
|
|
505
|
-
|
|
506
|
-
session.api.templates.create(omp_vsmart)
|
|
507
|
-
```
|
|
508
|
-
|
|
509
|
-
More details about how to use and how to add new: [Feature Templates README.md](https://github.com/cisco-open/cisco-catalyst-wan-sdk/blob/main/catalystwan/api/templates/README.md)
|
|
510
|
-
</details>
|
|
511
|
-
|
|
512
493
|
<details>
|
|
513
494
|
<summary> <b>Export Templates to CSV</b> <i>(click to expand)</i></summary>
|
|
514
495
|
|