├── .gitignore ├── .vscode └── launch.json ├── Ansible ├── Intro │ ├── condition.yml │ ├── condition2.yml │ ├── facts.yml │ ├── loops.yml │ ├── playbook.yml │ ├── setup.sh │ ├── stats.yml │ └── variables.yml ├── Junos │ ├── facts.yml │ ├── host_vars │ │ ├── 10.10.10.150.yml │ │ └── 10.10.10.151.yml │ ├── vlan.yml │ └── vlans.yml ├── eveng │ ├── lab1 │ │ ├── baseconfig.yml │ │ ├── group_vars │ │ │ └── lab1.yml │ │ └── host_vars │ │ │ ├── 10.10.21.200.yml │ │ │ ├── 10.10.21.202.yml │ │ │ ├── 10.10.21.203.yml │ │ │ ├── 10.10.21.204.yml │ │ │ ├── 10.10.21.205.yml │ │ │ ├── 10.10.21.206.yml │ │ │ ├── 10.10.21.207.yml │ │ │ └── 10.10.21.208.yml │ ├── lab2 │ │ ├── group_vars │ │ │ └── lab2.yml │ │ ├── host_vars │ │ │ ├── 10.10.21.211.yml │ │ │ ├── 10.10.21.212.yml │ │ │ ├── 10.10.21.213.yml │ │ │ ├── 10.10.21.214.yml │ │ │ ├── 10.10.21.215.yml │ │ │ ├── 10.10.21.216.yml │ │ │ ├── 10.10.21.217.yml │ │ │ ├── 10.10.21.218.yml │ │ │ ├── 10.10.21.219.yml │ │ │ ├── 10.10.21.220.yml │ │ │ └── 10.10.21.221.yml │ │ └── ipv4config.yml │ └── lab3 │ │ ├── group_vars │ │ └── lab3.yml │ │ ├── host_vars │ │ ├── 10.10.21.231.yml │ │ ├── 10.10.21.232.yml │ │ ├── 10.10.21.233.yml │ │ ├── 10.10.21.234.yml │ │ ├── 10.10.21.235.yml │ │ ├── 10.10.21.236.yml │ │ ├── 10.10.21.237.yml │ │ ├── 10.10.21.238.yml │ │ ├── 10.10.21.239.yml │ │ └── 10.10.21.240.yml │ │ └── lab3config.yml ├── iosxe │ ├── facts.yml │ └── show.yml ├── networking │ ├── .ansible_env │ ├── delLoop.yml │ ├── group_vars │ │ └── switches.yml │ ├── host_vars │ │ ├── 172.16.1.4.yml │ │ └── 172.16.1.68.yml │ ├── loopback.yml │ └── network.yml └── restconf │ ├── files │ └── ietf_inteface.j2 │ ├── host_vars │ ├── 172.16.1.25.yml │ └── ios-xe-mgmt-latest.cisco.com.yml │ ├── jinja.yml │ ├── output.json │ ├── restconf_config.yml │ └── restconf_get.yml ├── Postman ├── DNA │ ├── DNA.postman_collection.json │ ├── DNA.postman_environment.json │ ├── client-health response.json │ └── network-topology.json ├── IOS-XE │ ├── IOS-XE.postman_collection.json │ └── IOS-XE.postman_environment.json ├── Meraki │ ├── Meraki.postman_collection.json │ └── Meraki.postman_environment.json └── Restconf-YANG │ └── Restconf.postman_collection.json ├── Powershell ├── Networking │ ├── RESTCONF.ps1 │ ├── aci.ps1 │ ├── dna.ps1 │ ├── meraki.ps1 │ ├── sdwan.ps1 │ ├── ubnt.ps1 │ └── ucs.ps1 ├── Powershell7 │ ├── ActiveDirectory │ │ ├── ADGroups.ps1 │ │ ├── PSDrive.ps1 │ │ ├── Users.ps1 │ │ └── userprops.ps1 │ ├── Azure │ │ ├── connect.ps1 │ │ ├── networks.ps1 │ │ ├── rgs.ps1 │ │ ├── shutdown.ps1 │ │ └── vms.ps1 │ ├── CommonTasks │ │ ├── email.ps1 │ │ ├── jobs.ps1 │ │ └── remoting.ps1 │ ├── Data │ │ ├── csv.ps1 │ │ ├── excel.ps1 │ │ ├── json.ps1 │ │ ├── sql.ps1 │ │ └── sw.json │ ├── Linux │ │ ├── help.ps1 │ │ ├── os.ps1 │ │ └── services.ps1 │ ├── Modules │ │ ├── install.ps1 │ │ ├── module.ps1 │ │ └── uninstall.ps1 │ ├── OS │ │ ├── cim.ps1 │ │ ├── env.ps1 │ │ ├── files.ps1 │ │ └── nav.ps1 │ ├── RealWorld │ │ ├── ftpauto.ps1 │ │ └── jsonsql.ps1 │ └── Web │ │ ├── api.ps1 │ │ ├── ftp.ps1 │ │ ├── pokeapi.ps1 │ │ ├── postapi.ps1 │ │ ├── webdownload.ps1 │ │ └── webparse.ps1 └── az500 │ └── storage │ └── byok.ps1 ├── Python ├── AppDev │ ├── Dockerfile │ ├── app │ │ ├── db.txt │ │ ├── filename.log │ │ ├── myApi.py │ │ ├── myApi_ub.py │ │ └── routerclass.py │ ├── docker-compose.yml │ ├── init.sh │ ├── requirements.txt │ └── tests │ │ └── test_flask.py ├── Azure │ ├── Functions │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── Meraki │ │ │ ├── __init__.py │ │ │ ├── function.json │ │ │ └── sample.dat │ │ ├── host.json │ │ ├── proxies.json │ │ └── requirements.txt │ └── MerakiLocationScan │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── MerakiLoc │ │ ├── __init__.py │ │ ├── function.json │ │ └── sample.dat │ │ ├── host.json │ │ ├── proxies.json │ │ └── requirements.txt ├── Data │ ├── azkvdemo.py │ ├── demo.html │ ├── security.py │ ├── sql.py │ ├── starwars.py │ ├── starwars.xlsx │ └── swexcel.py ├── Docker │ ├── Dockerfile │ ├── build.sh │ ├── install.sh │ ├── myAPI │ │ └── myAPI.py │ ├── requirements.txt │ ├── sqlcont.sh │ └── swdocker.sh └── Networking │ ├── ACI │ ├── ACI Requests.py │ └── ACItoolkit.py │ ├── Collaboration │ ├── cleanup.py │ ├── uds Get Users.py │ ├── webex sdk.py │ └── webex.py │ ├── DNA │ ├── Client-Health.py │ ├── DNACauth.py │ ├── DNACclienthealth.py │ ├── DNACcommandrunner.py │ ├── DNACcreatesite.py │ ├── DNACdevices.py │ ├── DNACdiscovery.py │ ├── DNACgetsites.py │ ├── DNACsdadev.py │ ├── ENAUTOauthentication.py │ ├── ENAUTOclienthealth.py │ ├── ENAUTOcommandrunner.py │ ├── ENAUTOdevdiscovery.py │ ├── ENAUTOdna.py │ ├── ENAUTOgetinventory.py │ ├── ENAUTOgetsites.py │ ├── ENAUTOwebhooks.py │ ├── auth.py │ ├── client-detail wifi.py │ ├── createsite.py │ ├── dnademo.py │ ├── dnasdk.py │ ├── getsite.py │ └── getsitetop.py │ ├── IOS-XE │ ├── EANUTOrestconfcapabilities.py │ ├── ENAUTOcapabilities.py │ ├── ENAUTOedit.py │ ├── ENAUTOget.py │ ├── ENAUTOnetmiko.py │ ├── ENAUTOrestconfGET.py │ ├── ENAUTOrestconfPOST.py │ ├── ENAUTOtelemetry.py │ ├── __pycache__ │ │ └── interfaces.cpython-37.pyc │ ├── csr8000v.yml │ ├── ios_config.xml │ ├── netconf ENCOR.py │ ├── netconf-1.py │ ├── netconf-2.py │ ├── netconf-3.py │ ├── netconf-4.py │ ├── netconf-5.py │ ├── netconf-editconfig.py │ ├── netconf-eigrp-yang.py │ ├── netconf-filter.xml │ ├── netconfdemo.py │ ├── powerbi.py │ ├── pyangdemo.py │ ├── pyangint.py │ ├── restconf ENCOR.py │ ├── restconf-get.py │ ├── router_info.py │ ├── scrapli-yang │ │ ├── nc-rpc.py │ │ ├── nc-subtree.py │ │ └── nc-xpath.py │ ├── scrapli │ │ ├── mydevice.py │ │ ├── netconf-subtree.py │ │ ├── netconf-xpath.py │ │ └── scrapli-xpathrpc.py │ ├── scrpli-eigrp.py │ └── yangdemo.py │ ├── IOS │ ├── cli.py │ ├── show int trunks.py │ ├── show int.py │ ├── show ints.py │ ├── show ip int br.py │ ├── show ip int brief.py │ ├── show spann.py │ ├── showver.py │ └── spann.py │ ├── Junos │ ├── Untitled-1.py │ ├── facts.py │ ├── getconfig.py │ ├── junos.py │ ├── netconf.sh │ ├── pyez-config.py │ ├── pyez-exception.py │ ├── pyez-facts.py │ ├── pyez-geconfig.py │ ├── pyez-rpc.py │ ├── restapi.py │ ├── rpc_get_sample.xml │ └── rpc_set_example.xml │ ├── Meraki │ ├── DEVCORenableSSID.py │ ├── DEVCORgetnets.py │ ├── DEVCORgetssids.py │ ├── ENAUTOgetorgs.py │ ├── ENAUTOmerakiCRUD.py │ ├── MerakiSDK.py │ ├── client usage.py │ ├── get client events.py │ ├── get licenses.py │ ├── get meraki admins.py │ ├── get net traffic.py │ ├── get switch settings.py │ ├── get traffic shaping.py │ ├── getclients.py │ ├── getclienttraffic.py │ ├── getdevices.py │ ├── getnetworks.py │ ├── getvlans.py │ └── merakidemo.py │ ├── NAPALM │ └── napalmdemo.py │ ├── NSO │ ├── bash commands.sh │ └── nso.py │ ├── NX-API │ ├── NXAPI-RealWorld.py │ └── nxapi.py │ ├── Nornir │ ├── bgp_deploy.py │ ├── bgp_options.j2 │ ├── bgp_template.j2 │ ├── clean_ospf.py │ ├── config-yml.py │ ├── config.yml │ ├── defaults │ │ └── default.yml │ ├── del_ospf.py │ ├── groups │ │ └── groups.yml │ ├── helloworld.py │ ├── hosts │ │ └── hosts.yml │ ├── interfaces.j2 │ ├── isis_config.j2 │ ├── isis_interfaces.j2 │ ├── juniperfacts.py │ ├── junos_isis_template.py │ ├── junos_ospf_template.py │ ├── junosintterse.py │ ├── junospf.py │ ├── lacp_chassis.j2 │ ├── lacp_ints.j2 │ ├── lacp_template.py │ ├── nornir.log │ ├── ospf.j2 │ ├── rpctest.py │ ├── scraplisis.py │ ├── shisisnei.py │ └── thirty_one_maker.py │ ├── PyATSGenie │ └── testbed.yml │ ├── PyNTC │ └── junos.py │ ├── SDWAN │ ├── ENAUTOadminapi.py │ ├── ENAUTOauthentication.py │ ├── ENAUTOcertmgmt.py │ ├── ENAUTOcreatetemplates.py │ ├── ENAUTOdeviceinventory.py │ ├── ENAUTOgetdata.py │ ├── ENAUTOgettemplates.py │ ├── ENSDWI │ │ ├── datetimehandler.py │ │ ├── ensdwiauth.py │ │ ├── ensdwibfdstats.py │ │ ├── ensdwicontrolconn.py │ │ ├── ensdwidevices.py │ │ ├── ensdwievents.py │ │ ├── ensdwitunnelstats.py │ │ └── main.py │ └── Get Devices.py │ ├── Security │ ├── ASA.py │ ├── fmc access pol assign.py │ ├── fmc create policy.py │ └── fmc get apps.py │ ├── UCS │ └── ucs.py │ └── Ubiquiti │ └── ubnt.py ├── README.md ├── SQL ├── DP300 │ ├── Backups │ │ ├── SWDB_schema.sql │ │ ├── backup_filegroups.sql │ │ ├── backups.sql │ │ ├── restore.sql │ │ ├── restore_filegroups.sql │ │ └── restore_pages.sql │ ├── FCI │ │ └── create_cluster.ps1 │ ├── SampleData │ │ ├── createClinicsDB.sql │ │ └── createNLDB.sql │ ├── alwaysenc │ │ ├── Program.cs │ │ └── azkv.ps1 │ ├── audit │ │ └── changetrack.sql │ ├── authentication │ │ └── auth.sql │ ├── authorization │ │ ├── db.sql │ │ ├── server.sql │ │ └── tier.sql │ ├── encAtRest │ │ ├── Cell level enc.sql │ │ ├── TDE.sql │ │ ├── ddmask.sql │ │ └── diskenc.ps1 │ ├── identify query issue │ │ └── querystore.sql │ ├── index │ │ ├── fragment.sql │ │ ├── fragment_cstore.sql │ │ ├── missing.sql │ │ └── utilization.sql │ └── sec │ │ └── az_tde.ps1 └── DP500 │ ├── Adv Data Sources │ ├── demo.pbix │ ├── deploy_ml_model.ipynb │ ├── ml_rpt.pbix │ ├── swapi_people.json │ └── yellow_tripdata_2022-04.parquet │ ├── PREDICT │ ├── build.py │ ├── build_model.ipynb │ ├── cali1.model.onnx │ ├── features.csv │ └── target.csv │ ├── Pwsh Monitor │ └── pwsh.ps1 │ ├── Query DW │ ├── bigger sum.sql │ ├── rank.sql │ ├── snowflake.sql │ └── sum.sql │ ├── Query Synapse │ ├── product1.json │ └── product2.json │ ├── sourcecontrol │ ├── DevOpsProd-basedata.bim │ ├── DevOpsProd-basedata.khutc.tmuo │ ├── OLS.pbix │ ├── basedata.pbix │ ├── basedatamodel.bim │ ├── basedatamodel.khutc.tmuo │ ├── calcgrps.pbix │ ├── demo.sql │ ├── drls.pbix │ ├── functions.pbix │ ├── rls.pbix │ ├── sampledatafoodsales.xlsx │ └── sqlrls.pbix │ └── spark query │ ├── SalesOrderDetail.csv │ ├── basic_query.ipynb │ ├── create_catalog.ipynb │ ├── define_schema.ipynb │ └── sql_query.ipynb ├── env.py └── sqlscript ├── ExternalSrcs.json ├── Filepath.json ├── Qry_JSON_columns.json ├── Query_JSON.json ├── Serverless-Curr-Defined.json └── Serverless-Currency-Infer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Ansible/Intro/condition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/condition.yml -------------------------------------------------------------------------------- /Ansible/Intro/condition2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/condition2.yml -------------------------------------------------------------------------------- /Ansible/Intro/facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/facts.yml -------------------------------------------------------------------------------- /Ansible/Intro/loops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/loops.yml -------------------------------------------------------------------------------- /Ansible/Intro/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/playbook.yml -------------------------------------------------------------------------------- /Ansible/Intro/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/setup.sh -------------------------------------------------------------------------------- /Ansible/Intro/stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/stats.yml -------------------------------------------------------------------------------- /Ansible/Intro/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Intro/variables.yml -------------------------------------------------------------------------------- /Ansible/Junos/facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Junos/facts.yml -------------------------------------------------------------------------------- /Ansible/Junos/host_vars/10.10.10.150.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Junos/host_vars/10.10.10.150.yml -------------------------------------------------------------------------------- /Ansible/Junos/host_vars/10.10.10.151.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Junos/host_vars/10.10.10.151.yml -------------------------------------------------------------------------------- /Ansible/Junos/vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Junos/vlan.yml -------------------------------------------------------------------------------- /Ansible/Junos/vlans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/Junos/vlans.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/baseconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/baseconfig.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/group_vars/lab1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/group_vars/lab1.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.200.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.200.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.202.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.202.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.203.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.203.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.204.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.204.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.205.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.205.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.206.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.206.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.207.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.207.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab1/host_vars/10.10.21.208.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab1/host_vars/10.10.21.208.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/group_vars/lab2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/group_vars/lab2.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.211.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.211.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.212.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.212.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.213.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.213.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.214.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.214.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.215.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.215.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.216.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.216.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.217.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.217.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.218.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.218.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.219.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.219.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.220.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.220.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/host_vars/10.10.21.221.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/host_vars/10.10.21.221.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab2/ipv4config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab2/ipv4config.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/group_vars/lab3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/group_vars/lab3.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.231.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.231.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.232.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.232.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.233.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.233.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.234.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.234.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.235.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.235.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.236.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.236.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.237.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.237.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.238.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.238.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.239.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.239.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/host_vars/10.10.21.240.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/host_vars/10.10.21.240.yml -------------------------------------------------------------------------------- /Ansible/eveng/lab3/lab3config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/eveng/lab3/lab3config.yml -------------------------------------------------------------------------------- /Ansible/iosxe/facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/iosxe/facts.yml -------------------------------------------------------------------------------- /Ansible/iosxe/show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/iosxe/show.yml -------------------------------------------------------------------------------- /Ansible/networking/.ansible_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/.ansible_env -------------------------------------------------------------------------------- /Ansible/networking/delLoop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/delLoop.yml -------------------------------------------------------------------------------- /Ansible/networking/group_vars/switches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/group_vars/switches.yml -------------------------------------------------------------------------------- /Ansible/networking/host_vars/172.16.1.4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/host_vars/172.16.1.4.yml -------------------------------------------------------------------------------- /Ansible/networking/host_vars/172.16.1.68.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/host_vars/172.16.1.68.yml -------------------------------------------------------------------------------- /Ansible/networking/loopback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/loopback.yml -------------------------------------------------------------------------------- /Ansible/networking/network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/networking/network.yml -------------------------------------------------------------------------------- /Ansible/restconf/files/ietf_inteface.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/files/ietf_inteface.j2 -------------------------------------------------------------------------------- /Ansible/restconf/host_vars/172.16.1.25.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/host_vars/172.16.1.25.yml -------------------------------------------------------------------------------- /Ansible/restconf/host_vars/ios-xe-mgmt-latest.cisco.com.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/host_vars/ios-xe-mgmt-latest.cisco.com.yml -------------------------------------------------------------------------------- /Ansible/restconf/jinja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/jinja.yml -------------------------------------------------------------------------------- /Ansible/restconf/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/output.json -------------------------------------------------------------------------------- /Ansible/restconf/restconf_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/restconf_config.yml -------------------------------------------------------------------------------- /Ansible/restconf/restconf_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Ansible/restconf/restconf_get.yml -------------------------------------------------------------------------------- /Postman/DNA/DNA.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/DNA/DNA.postman_collection.json -------------------------------------------------------------------------------- /Postman/DNA/DNA.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/DNA/DNA.postman_environment.json -------------------------------------------------------------------------------- /Postman/DNA/client-health response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/DNA/client-health response.json -------------------------------------------------------------------------------- /Postman/DNA/network-topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/DNA/network-topology.json -------------------------------------------------------------------------------- /Postman/IOS-XE/IOS-XE.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/IOS-XE/IOS-XE.postman_collection.json -------------------------------------------------------------------------------- /Postman/IOS-XE/IOS-XE.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/IOS-XE/IOS-XE.postman_environment.json -------------------------------------------------------------------------------- /Postman/Meraki/Meraki.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/Meraki/Meraki.postman_collection.json -------------------------------------------------------------------------------- /Postman/Meraki/Meraki.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/Meraki/Meraki.postman_environment.json -------------------------------------------------------------------------------- /Postman/Restconf-YANG/Restconf.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Postman/Restconf-YANG/Restconf.postman_collection.json -------------------------------------------------------------------------------- /Powershell/Networking/RESTCONF.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/RESTCONF.ps1 -------------------------------------------------------------------------------- /Powershell/Networking/aci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/aci.ps1 -------------------------------------------------------------------------------- /Powershell/Networking/dna.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/dna.ps1 -------------------------------------------------------------------------------- /Powershell/Networking/meraki.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/meraki.ps1 -------------------------------------------------------------------------------- /Powershell/Networking/sdwan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/sdwan.ps1 -------------------------------------------------------------------------------- /Powershell/Networking/ubnt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/ubnt.ps1 -------------------------------------------------------------------------------- /Powershell/Networking/ucs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Networking/ucs.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/ActiveDirectory/ADGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/ActiveDirectory/ADGroups.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/ActiveDirectory/PSDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/ActiveDirectory/PSDrive.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/ActiveDirectory/Users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/ActiveDirectory/Users.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/ActiveDirectory/userprops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/ActiveDirectory/userprops.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Azure/connect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Azure/connect.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Azure/networks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Azure/networks.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Azure/rgs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Azure/rgs.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Azure/shutdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Azure/shutdown.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Azure/vms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Azure/vms.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/CommonTasks/email.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/CommonTasks/email.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/CommonTasks/jobs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/CommonTasks/jobs.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/CommonTasks/remoting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/CommonTasks/remoting.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Data/csv.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Powershell/Powershell7/Data/excel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Data/excel.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Data/json.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Data/json.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Data/sql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Data/sql.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Data/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Data/sw.json -------------------------------------------------------------------------------- /Powershell/Powershell7/Linux/help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Linux/help.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Linux/os.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Linux/os.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Linux/services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Linux/services.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Modules/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Modules/install.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Modules/module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Modules/module.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Modules/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Modules/uninstall.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/OS/cim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/OS/cim.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/OS/env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/OS/env.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/OS/files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/OS/files.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/OS/nav.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/OS/nav.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/RealWorld/ftpauto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/RealWorld/ftpauto.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/RealWorld/jsonsql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/RealWorld/jsonsql.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Web/api.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Web/api.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Web/ftp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Web/ftp.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Web/pokeapi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Web/pokeapi.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Web/postapi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Web/postapi.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Web/webdownload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Web/webdownload.ps1 -------------------------------------------------------------------------------- /Powershell/Powershell7/Web/webparse.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/Powershell7/Web/webparse.ps1 -------------------------------------------------------------------------------- /Powershell/az500/storage/byok.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Powershell/az500/storage/byok.ps1 -------------------------------------------------------------------------------- /Python/AppDev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/Dockerfile -------------------------------------------------------------------------------- /Python/AppDev/app/db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/app/db.txt -------------------------------------------------------------------------------- /Python/AppDev/app/filename.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/AppDev/app/myApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/app/myApi.py -------------------------------------------------------------------------------- /Python/AppDev/app/myApi_ub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/app/myApi_ub.py -------------------------------------------------------------------------------- /Python/AppDev/app/routerclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/app/routerclass.py -------------------------------------------------------------------------------- /Python/AppDev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/docker-compose.yml -------------------------------------------------------------------------------- /Python/AppDev/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/init.sh -------------------------------------------------------------------------------- /Python/AppDev/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.2 -------------------------------------------------------------------------------- /Python/AppDev/tests/test_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/AppDev/tests/test_flask.py -------------------------------------------------------------------------------- /Python/Azure/Functions/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /Python/Azure/Functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/Functions/.gitignore -------------------------------------------------------------------------------- /Python/Azure/Functions/Meraki/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/Functions/Meraki/__init__.py -------------------------------------------------------------------------------- /Python/Azure/Functions/Meraki/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/Functions/Meraki/function.json -------------------------------------------------------------------------------- /Python/Azure/Functions/Meraki/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Python/Azure/Functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/Functions/host.json -------------------------------------------------------------------------------- /Python/Azure/Functions/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/Functions/proxies.json -------------------------------------------------------------------------------- /Python/Azure/Functions/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-functions -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/.gitignore -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/.vscode/extensions.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/.vscode/launch.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/.vscode/settings.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/.vscode/tasks.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/MerakiLoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/MerakiLoc/__init__.py -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/MerakiLoc/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/MerakiLoc/function.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/MerakiLoc/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/host.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Azure/MerakiLocationScan/proxies.json -------------------------------------------------------------------------------- /Python/Azure/MerakiLocationScan/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-functions -------------------------------------------------------------------------------- /Python/Data/azkvdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/azkvdemo.py -------------------------------------------------------------------------------- /Python/Data/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/demo.html -------------------------------------------------------------------------------- /Python/Data/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/security.py -------------------------------------------------------------------------------- /Python/Data/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/sql.py -------------------------------------------------------------------------------- /Python/Data/starwars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/starwars.py -------------------------------------------------------------------------------- /Python/Data/starwars.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/starwars.xlsx -------------------------------------------------------------------------------- /Python/Data/swexcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Data/swexcel.py -------------------------------------------------------------------------------- /Python/Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Docker/Dockerfile -------------------------------------------------------------------------------- /Python/Docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Docker/build.sh -------------------------------------------------------------------------------- /Python/Docker/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Docker/install.sh -------------------------------------------------------------------------------- /Python/Docker/myAPI/myAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Docker/myAPI/myAPI.py -------------------------------------------------------------------------------- /Python/Docker/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.1 -------------------------------------------------------------------------------- /Python/Docker/sqlcont.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Docker/sqlcont.sh -------------------------------------------------------------------------------- /Python/Docker/swdocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Docker/swdocker.sh -------------------------------------------------------------------------------- /Python/Networking/ACI/ACI Requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/ACI/ACI Requests.py -------------------------------------------------------------------------------- /Python/Networking/ACI/ACItoolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/ACI/ACItoolkit.py -------------------------------------------------------------------------------- /Python/Networking/Collaboration/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Collaboration/cleanup.py -------------------------------------------------------------------------------- /Python/Networking/Collaboration/uds Get Users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Collaboration/uds Get Users.py -------------------------------------------------------------------------------- /Python/Networking/Collaboration/webex sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Collaboration/webex sdk.py -------------------------------------------------------------------------------- /Python/Networking/Collaboration/webex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Collaboration/webex.py -------------------------------------------------------------------------------- /Python/Networking/DNA/Client-Health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/Client-Health.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACauth.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACclienthealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACclienthealth.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACcommandrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACcommandrunner.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACcreatesite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACcreatesite.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACdevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACdevices.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACdiscovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACdiscovery.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACgetsites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACgetsites.py -------------------------------------------------------------------------------- /Python/Networking/DNA/DNACsdadev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/DNACsdadev.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOauthentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOauthentication.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOclienthealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOclienthealth.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOcommandrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOcommandrunner.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOdevdiscovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOdevdiscovery.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOdna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOdna.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOgetinventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOgetinventory.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOgetsites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOgetsites.py -------------------------------------------------------------------------------- /Python/Networking/DNA/ENAUTOwebhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/ENAUTOwebhooks.py -------------------------------------------------------------------------------- /Python/Networking/DNA/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/auth.py -------------------------------------------------------------------------------- /Python/Networking/DNA/client-detail wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/client-detail wifi.py -------------------------------------------------------------------------------- /Python/Networking/DNA/createsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/createsite.py -------------------------------------------------------------------------------- /Python/Networking/DNA/dnademo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/dnademo.py -------------------------------------------------------------------------------- /Python/Networking/DNA/dnasdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/dnasdk.py -------------------------------------------------------------------------------- /Python/Networking/DNA/getsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/getsite.py -------------------------------------------------------------------------------- /Python/Networking/DNA/getsitetop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/DNA/getsitetop.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/EANUTOrestconfcapabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/EANUTOrestconfcapabilities.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOcapabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOcapabilities.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOedit.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOget.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOnetmiko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOnetmiko.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOrestconfGET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOrestconfGET.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOrestconfPOST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOrestconfPOST.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ENAUTOtelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ENAUTOtelemetry.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/__pycache__/interfaces.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/__pycache__/interfaces.cpython-37.pyc -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/csr8000v.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/csr8000v.yml -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/ios_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/ios_config.xml -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf ENCOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf ENCOR.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-1.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-2.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-3.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-4.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-5.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-editconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-editconfig.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-eigrp-yang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-eigrp-yang.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconf-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconf-filter.xml -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/netconfdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/netconfdemo.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/powerbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/powerbi.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/pyangdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/pyangdemo.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/pyangint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/pyangint.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/restconf ENCOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/restconf ENCOR.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/restconf-get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/restconf-get.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/router_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/router_info.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli-yang/nc-rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli-yang/nc-rpc.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli-yang/nc-subtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli-yang/nc-subtree.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli-yang/nc-xpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli-yang/nc-xpath.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli/mydevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli/mydevice.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli/netconf-subtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli/netconf-subtree.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli/netconf-xpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli/netconf-xpath.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrapli/scrapli-xpathrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrapli/scrapli-xpathrpc.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/scrpli-eigrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/scrpli-eigrp.py -------------------------------------------------------------------------------- /Python/Networking/IOS-XE/yangdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS-XE/yangdemo.py -------------------------------------------------------------------------------- /Python/Networking/IOS/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/cli.py -------------------------------------------------------------------------------- /Python/Networking/IOS/show int trunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/show int trunks.py -------------------------------------------------------------------------------- /Python/Networking/IOS/show int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/show int.py -------------------------------------------------------------------------------- /Python/Networking/IOS/show ints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/show ints.py -------------------------------------------------------------------------------- /Python/Networking/IOS/show ip int br.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/show ip int br.py -------------------------------------------------------------------------------- /Python/Networking/IOS/show ip int brief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/show ip int brief.py -------------------------------------------------------------------------------- /Python/Networking/IOS/show spann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/show spann.py -------------------------------------------------------------------------------- /Python/Networking/IOS/showver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/showver.py -------------------------------------------------------------------------------- /Python/Networking/IOS/spann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/IOS/spann.py -------------------------------------------------------------------------------- /Python/Networking/Junos/Untitled-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/Untitled-1.py -------------------------------------------------------------------------------- /Python/Networking/Junos/facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/facts.py -------------------------------------------------------------------------------- /Python/Networking/Junos/getconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/getconfig.py -------------------------------------------------------------------------------- /Python/Networking/Junos/junos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/junos.py -------------------------------------------------------------------------------- /Python/Networking/Junos/netconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/netconf.sh -------------------------------------------------------------------------------- /Python/Networking/Junos/pyez-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/pyez-config.py -------------------------------------------------------------------------------- /Python/Networking/Junos/pyez-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/pyez-exception.py -------------------------------------------------------------------------------- /Python/Networking/Junos/pyez-facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/pyez-facts.py -------------------------------------------------------------------------------- /Python/Networking/Junos/pyez-geconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/pyez-geconfig.py -------------------------------------------------------------------------------- /Python/Networking/Junos/pyez-rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/pyez-rpc.py -------------------------------------------------------------------------------- /Python/Networking/Junos/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/restapi.py -------------------------------------------------------------------------------- /Python/Networking/Junos/rpc_get_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/rpc_get_sample.xml -------------------------------------------------------------------------------- /Python/Networking/Junos/rpc_set_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Junos/rpc_set_example.xml -------------------------------------------------------------------------------- /Python/Networking/Meraki/DEVCORenableSSID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/DEVCORenableSSID.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/DEVCORgetnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/DEVCORgetnets.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/DEVCORgetssids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/DEVCORgetssids.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/ENAUTOgetorgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/ENAUTOgetorgs.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/ENAUTOmerakiCRUD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/ENAUTOmerakiCRUD.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/MerakiSDK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/MerakiSDK.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/client usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/client usage.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/get client events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/get client events.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/get licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/get licenses.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/get meraki admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/get meraki admins.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/get net traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/get net traffic.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/get switch settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/get switch settings.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/get traffic shaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/get traffic shaping.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/getclients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/getclients.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/getclienttraffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/getclienttraffic.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/getdevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/getdevices.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/getnetworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/getnetworks.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/getvlans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/getvlans.py -------------------------------------------------------------------------------- /Python/Networking/Meraki/merakidemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Meraki/merakidemo.py -------------------------------------------------------------------------------- /Python/Networking/NAPALM/napalmdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/NAPALM/napalmdemo.py -------------------------------------------------------------------------------- /Python/Networking/NSO/bash commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/NSO/bash commands.sh -------------------------------------------------------------------------------- /Python/Networking/NSO/nso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/NSO/nso.py -------------------------------------------------------------------------------- /Python/Networking/NX-API/NXAPI-RealWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/NX-API/NXAPI-RealWorld.py -------------------------------------------------------------------------------- /Python/Networking/NX-API/nxapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/NX-API/nxapi.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/bgp_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/bgp_deploy.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/bgp_options.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/bgp_options.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/bgp_template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/bgp_template.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/clean_ospf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/clean_ospf.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/config-yml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/config-yml.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/config.yml -------------------------------------------------------------------------------- /Python/Networking/Nornir/defaults/default.yml: -------------------------------------------------------------------------------- 1 | --- 2 | username: 'cisco' -------------------------------------------------------------------------------- /Python/Networking/Nornir/del_ospf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/del_ospf.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/groups/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/groups/groups.yml -------------------------------------------------------------------------------- /Python/Networking/Nornir/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/helloworld.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/hosts/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/hosts/hosts.yml -------------------------------------------------------------------------------- /Python/Networking/Nornir/interfaces.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/interfaces.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/isis_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/isis_config.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/isis_interfaces.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/isis_interfaces.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/juniperfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/juniperfacts.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/junos_isis_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/junos_isis_template.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/junos_ospf_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/junos_ospf_template.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/junosintterse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/junosintterse.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/junospf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/junospf.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/lacp_chassis.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/lacp_chassis.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/lacp_ints.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/lacp_ints.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/lacp_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/lacp_template.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/nornir.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Networking/Nornir/ospf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/ospf.j2 -------------------------------------------------------------------------------- /Python/Networking/Nornir/rpctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/rpctest.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/scraplisis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/scraplisis.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/shisisnei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/shisisnei.py -------------------------------------------------------------------------------- /Python/Networking/Nornir/thirty_one_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Nornir/thirty_one_maker.py -------------------------------------------------------------------------------- /Python/Networking/PyATSGenie/testbed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/PyATSGenie/testbed.yml -------------------------------------------------------------------------------- /Python/Networking/PyNTC/junos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/PyNTC/junos.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOadminapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOadminapi.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOauthentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOauthentication.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOcertmgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOcertmgmt.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOcreatetemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOcreatetemplates.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOdeviceinventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOdeviceinventory.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOgetdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOgetdata.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENAUTOgettemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENAUTOgettemplates.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/datetimehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/datetimehandler.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/ensdwiauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/ensdwiauth.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/ensdwibfdstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/ensdwibfdstats.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/ensdwicontrolconn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/ensdwicontrolconn.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/ensdwidevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/ensdwidevices.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/ensdwievents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/ensdwievents.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/ensdwitunnelstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/ensdwitunnelstats.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/ENSDWI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/ENSDWI/main.py -------------------------------------------------------------------------------- /Python/Networking/SDWAN/Get Devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/SDWAN/Get Devices.py -------------------------------------------------------------------------------- /Python/Networking/Security/ASA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Security/ASA.py -------------------------------------------------------------------------------- /Python/Networking/Security/fmc access pol assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Security/fmc access pol assign.py -------------------------------------------------------------------------------- /Python/Networking/Security/fmc create policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Security/fmc create policy.py -------------------------------------------------------------------------------- /Python/Networking/Security/fmc get apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Security/fmc get apps.py -------------------------------------------------------------------------------- /Python/Networking/UCS/ucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/UCS/ucs.py -------------------------------------------------------------------------------- /Python/Networking/Ubiquiti/ubnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/Python/Networking/Ubiquiti/ubnt.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/README.md -------------------------------------------------------------------------------- /SQL/DP300/Backups/SWDB_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/Backups/SWDB_schema.sql -------------------------------------------------------------------------------- /SQL/DP300/Backups/backup_filegroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/Backups/backup_filegroups.sql -------------------------------------------------------------------------------- /SQL/DP300/Backups/backups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/Backups/backups.sql -------------------------------------------------------------------------------- /SQL/DP300/Backups/restore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/Backups/restore.sql -------------------------------------------------------------------------------- /SQL/DP300/Backups/restore_filegroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/Backups/restore_filegroups.sql -------------------------------------------------------------------------------- /SQL/DP300/Backups/restore_pages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/Backups/restore_pages.sql -------------------------------------------------------------------------------- /SQL/DP300/FCI/create_cluster.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/FCI/create_cluster.ps1 -------------------------------------------------------------------------------- /SQL/DP300/SampleData/createClinicsDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/SampleData/createClinicsDB.sql -------------------------------------------------------------------------------- /SQL/DP300/SampleData/createNLDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/SampleData/createNLDB.sql -------------------------------------------------------------------------------- /SQL/DP300/alwaysenc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/alwaysenc/Program.cs -------------------------------------------------------------------------------- /SQL/DP300/alwaysenc/azkv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/alwaysenc/azkv.ps1 -------------------------------------------------------------------------------- /SQL/DP300/audit/changetrack.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/audit/changetrack.sql -------------------------------------------------------------------------------- /SQL/DP300/authentication/auth.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/authentication/auth.sql -------------------------------------------------------------------------------- /SQL/DP300/authorization/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/authorization/db.sql -------------------------------------------------------------------------------- /SQL/DP300/authorization/server.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/authorization/server.sql -------------------------------------------------------------------------------- /SQL/DP300/authorization/tier.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/authorization/tier.sql -------------------------------------------------------------------------------- /SQL/DP300/encAtRest/Cell level enc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/encAtRest/Cell level enc.sql -------------------------------------------------------------------------------- /SQL/DP300/encAtRest/TDE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/encAtRest/TDE.sql -------------------------------------------------------------------------------- /SQL/DP300/encAtRest/ddmask.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/encAtRest/ddmask.sql -------------------------------------------------------------------------------- /SQL/DP300/encAtRest/diskenc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/encAtRest/diskenc.ps1 -------------------------------------------------------------------------------- /SQL/DP300/identify query issue/querystore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/identify query issue/querystore.sql -------------------------------------------------------------------------------- /SQL/DP300/index/fragment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/index/fragment.sql -------------------------------------------------------------------------------- /SQL/DP300/index/fragment_cstore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/index/fragment_cstore.sql -------------------------------------------------------------------------------- /SQL/DP300/index/missing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/index/missing.sql -------------------------------------------------------------------------------- /SQL/DP300/index/utilization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/index/utilization.sql -------------------------------------------------------------------------------- /SQL/DP300/sec/az_tde.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP300/sec/az_tde.ps1 -------------------------------------------------------------------------------- /SQL/DP500/Adv Data Sources/demo.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Adv Data Sources/demo.pbix -------------------------------------------------------------------------------- /SQL/DP500/Adv Data Sources/deploy_ml_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Adv Data Sources/deploy_ml_model.ipynb -------------------------------------------------------------------------------- /SQL/DP500/Adv Data Sources/ml_rpt.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Adv Data Sources/ml_rpt.pbix -------------------------------------------------------------------------------- /SQL/DP500/Adv Data Sources/swapi_people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Adv Data Sources/swapi_people.json -------------------------------------------------------------------------------- /SQL/DP500/Adv Data Sources/yellow_tripdata_2022-04.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Adv Data Sources/yellow_tripdata_2022-04.parquet -------------------------------------------------------------------------------- /SQL/DP500/PREDICT/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/PREDICT/build.py -------------------------------------------------------------------------------- /SQL/DP500/PREDICT/build_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/PREDICT/build_model.ipynb -------------------------------------------------------------------------------- /SQL/DP500/PREDICT/cali1.model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/PREDICT/cali1.model.onnx -------------------------------------------------------------------------------- /SQL/DP500/PREDICT/features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/PREDICT/features.csv -------------------------------------------------------------------------------- /SQL/DP500/PREDICT/target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/PREDICT/target.csv -------------------------------------------------------------------------------- /SQL/DP500/Pwsh Monitor/pwsh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Pwsh Monitor/pwsh.ps1 -------------------------------------------------------------------------------- /SQL/DP500/Query DW/bigger sum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Query DW/bigger sum.sql -------------------------------------------------------------------------------- /SQL/DP500/Query DW/rank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Query DW/rank.sql -------------------------------------------------------------------------------- /SQL/DP500/Query DW/snowflake.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Query DW/snowflake.sql -------------------------------------------------------------------------------- /SQL/DP500/Query DW/sum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Query DW/sum.sql -------------------------------------------------------------------------------- /SQL/DP500/Query Synapse/product1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Query Synapse/product1.json -------------------------------------------------------------------------------- /SQL/DP500/Query Synapse/product2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/Query Synapse/product2.json -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/DevOpsProd-basedata.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/DevOpsProd-basedata.bim -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/DevOpsProd-basedata.khutc.tmuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/DevOpsProd-basedata.khutc.tmuo -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/OLS.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/OLS.pbix -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/basedata.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/basedata.pbix -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/basedatamodel.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/basedatamodel.bim -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/basedatamodel.khutc.tmuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/basedatamodel.khutc.tmuo -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/calcgrps.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/calcgrps.pbix -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/demo.sql: -------------------------------------------------------------------------------- 1 | SELECT * 2 | FROM dbo.myTable 3 | WHERE column = 1 -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/drls.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/drls.pbix -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/functions.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/functions.pbix -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/rls.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/rls.pbix -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/sampledatafoodsales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/sampledatafoodsales.xlsx -------------------------------------------------------------------------------- /SQL/DP500/sourcecontrol/sqlrls.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/sourcecontrol/sqlrls.pbix -------------------------------------------------------------------------------- /SQL/DP500/spark query/SalesOrderDetail.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/spark query/SalesOrderDetail.csv -------------------------------------------------------------------------------- /SQL/DP500/spark query/basic_query.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/spark query/basic_query.ipynb -------------------------------------------------------------------------------- /SQL/DP500/spark query/create_catalog.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/spark query/create_catalog.ipynb -------------------------------------------------------------------------------- /SQL/DP500/spark query/define_schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/spark query/define_schema.ipynb -------------------------------------------------------------------------------- /SQL/DP500/spark query/sql_query.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/SQL/DP500/spark query/sql_query.ipynb -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/env.py -------------------------------------------------------------------------------- /sqlscript/ExternalSrcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/sqlscript/ExternalSrcs.json -------------------------------------------------------------------------------- /sqlscript/Filepath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/sqlscript/Filepath.json -------------------------------------------------------------------------------- /sqlscript/Qry_JSON_columns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/sqlscript/Qry_JSON_columns.json -------------------------------------------------------------------------------- /sqlscript/Query_JSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/sqlscript/Query_JSON.json -------------------------------------------------------------------------------- /sqlscript/Serverless-Curr-Defined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/sqlscript/Serverless-Curr-Defined.json -------------------------------------------------------------------------------- /sqlscript/Serverless-Currency-Infer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKnox/CodeSamples/HEAD/sqlscript/Serverless-Currency-Infer.json --------------------------------------------------------------------------------