├── .gitattributes ├── .gitignore ├── License.txt ├── README.md ├── cookbooks ├── arcgis-egdb │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ ├── egdb_postgres.rb │ │ ├── egdb_sqlserver.rb │ │ ├── register_egdb.rb │ │ ├── sql_alias.rb │ │ └── sqlcmd.rb │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ └── default_spec.rb │ ├── templates │ │ └── default │ │ │ ├── Create-SQLAliases.ps1.erb │ │ │ ├── RDS_Creation.ps1.erb │ │ │ ├── RDS_create_connection_files.py.erb │ │ │ ├── RDS_create_egdb_geodata.sql.erb │ │ │ ├── RDS_create_sde_login_user.sql.erb │ │ │ ├── RDS_enable_enterprise_egdb_geodata.py.erb │ │ │ ├── RDS_postgres.bat.erb │ │ │ ├── RDS_postgres.sh.erb │ │ │ ├── create_sde_schema_install_postgis.sql.erb │ │ │ └── enable_enterprise_gdb.py.erb │ └── test │ │ ├── fixtures │ │ └── cookbooks │ │ │ ├── download-setups-s3 │ │ │ ├── attributes │ │ │ │ ├── default.rb │ │ │ │ └── server.rb │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ │ ├── auth_files.rb │ │ │ │ └── server.rb │ │ │ └── postgresql-test │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ ├── client.rb │ │ │ └── server.rb │ │ └── integration │ │ ├── default │ │ └── serverspec │ │ │ ├── Gemfile │ │ │ └── default_spec.rb │ │ └── helpers │ │ └── serverspec │ │ └── spec_helper.rb ├── arcgis-enterprise │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── License.txt │ ├── README.md │ ├── Thorfile │ ├── Vagrantfile │ ├── attributes │ │ ├── datasources.rb │ │ ├── datastore.rb │ │ ├── default.rb │ │ ├── fileserver.rb │ │ ├── portal.rb │ │ ├── server.rb │ │ ├── webadaptor.rb │ │ └── webstyles.rb │ ├── chefignore │ ├── libraries │ │ ├── datastore_admin_client.rb │ │ ├── datastore_tools.rb │ │ ├── esri_properties.rb │ │ ├── portal_admin_client.rb │ │ ├── portal_rest_client.rb │ │ ├── server_admin_client.rb │ │ ├── server_rest_client.rb │ │ └── utils.rb │ ├── metadata.rb │ ├── providers │ │ ├── datasources.rb │ │ ├── datastore.rb │ │ ├── gis_service.rb │ │ ├── patches.rb │ │ ├── portal.rb │ │ ├── server.rb │ │ ├── webadaptor.rb │ │ └── webstyles.rb │ ├── recipes │ │ ├── authbind.rb │ │ ├── clean.rb │ │ ├── datasources.rb │ │ ├── datastore.rb │ │ ├── datastore_prepare_upgrade.rb │ │ ├── datastore_standby.rb │ │ ├── delete_server_site.rb │ │ ├── disable_geoanalytics.rb │ │ ├── disable_imagehosting.rb │ │ ├── disable_knowledgeserver.rb │ │ ├── disable_loopback_check.rb │ │ ├── disable_rasteranalytics.rb │ │ ├── egdb.rb │ │ ├── enable_geoanalytics.rb │ │ ├── enable_imagehosting.rb │ │ ├── enable_knowledgeserver.rb │ │ ├── enable_rasteranalytics.rb │ │ ├── enterprise_installed.rb │ │ ├── enterprise_uninstalled.rb │ │ ├── enterprise_validate.rb │ │ ├── federation.rb │ │ ├── fileserver.rb │ │ ├── hosts.rb │ │ ├── install_datastore.rb │ │ ├── install_patches.rb │ │ ├── install_portal.rb │ │ ├── install_portal_wa.rb │ │ ├── install_server.rb │ │ ├── install_server_wa.rb │ │ ├── iptables.rb │ │ ├── lp-install.rb │ │ ├── portal.rb │ │ ├── portal_security.rb │ │ ├── portal_settings.rb │ │ ├── portal_standby.rb │ │ ├── portal_wa.rb │ │ ├── post_install.rb │ │ ├── preconfigure_windows_for_tk.rb │ │ ├── register_machine.rb │ │ ├── remove_datastore_machine.rb │ │ ├── server.rb │ │ ├── server_data_items.rb │ │ ├── server_node.rb │ │ ├── server_security.rb │ │ ├── server_wa.rb │ │ ├── services.rb │ │ ├── start_datastore.rb │ │ ├── start_portal.rb │ │ ├── start_server.rb │ │ ├── stop_datastore.rb │ │ ├── stop_machine.rb │ │ ├── stop_portal.rb │ │ ├── stop_server.rb │ │ ├── system.rb │ │ ├── unfederate_server.rb │ │ ├── uninstall_datastore.rb │ │ ├── uninstall_portal.rb │ │ ├── uninstall_server.rb │ │ ├── uninstall_webadaptors.rb │ │ ├── unregister_machine.rb │ │ ├── unregister_machines.rb │ │ ├── unregister_portal_machine.rb │ │ ├── unregister_server_wa.rb │ │ ├── unregister_stopped_machines.rb │ │ ├── webgisdr_export.rb │ │ ├── webgisdr_import.rb │ │ └── webstyles.rb │ ├── resources │ │ ├── datasources.rb │ │ ├── datastore.rb │ │ ├── gis_service.rb │ │ ├── patches.rb │ │ ├── portal.rb │ │ ├── server.rb │ │ ├── webadaptor.rb │ │ └── webstyles.rb │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ └── default_spec.rb │ ├── templates │ │ ├── default │ │ │ ├── NodeAgentExt.xml.erb │ │ │ ├── arcgisdatastore.erb │ │ │ ├── arcgisdatastore.service.erb │ │ │ ├── arcgisportal.erb │ │ │ ├── arcgisportal.service.erb │ │ │ ├── arcgisserver.erb │ │ │ ├── arcgisserver.service.erb │ │ │ ├── hostidentifier.properties.erb │ │ │ └── hostname.properties.erb │ │ └── redhat │ │ │ ├── arcgisdatastore.erb │ │ │ ├── arcgisportal.erb │ │ │ └── arcgisserver.erb │ └── test │ │ ├── fixtures │ │ └── cookbooks │ │ │ └── download-setups-s3 │ │ │ ├── attributes │ │ │ ├── datastore.rb │ │ │ ├── default.rb │ │ │ ├── portal.rb │ │ │ ├── server.rb │ │ │ └── webadaptor.rb │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ ├── auth_files.rb │ │ │ ├── datastore.rb │ │ │ ├── portal.rb │ │ │ ├── server.rb │ │ │ └── webadaptor.rb │ │ └── integration │ │ ├── default │ │ └── serverspec │ │ │ ├── Gemfile │ │ │ └── default_spec.rb │ │ ├── helpers │ │ └── serverspec │ │ │ └── spec_helper.rb │ │ ├── iis │ │ └── serverspec │ │ │ ├── Gemfile │ │ │ └── iis_spec.rb │ │ ├── webgis-linux │ │ └── serverspec │ │ │ ├── Gemfile │ │ │ └── webgis_spec.rb │ │ └── webgis │ │ └── serverspec │ │ ├── Gemfile │ │ └── webgis_spec.rb ├── arcgis-geoevent │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── metadata.rb │ ├── providers │ │ └── geoevent.rb │ ├── recipes │ │ ├── admin_reset.rb │ │ ├── default.rb │ │ ├── install_patches.rb │ │ ├── lp-install.rb │ │ ├── start_server.rb │ │ ├── stop_server.rb │ │ └── uninstall.rb │ ├── resources │ │ └── geoevent.rb │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ └── default_spec.rb │ ├── templates │ │ └── default │ │ │ ├── ArcGISGeoEvent-service.erb │ │ │ ├── ArcGISGeoEventGateway-service.erb │ │ │ ├── geoevent.service.erb │ │ │ └── geoeventGateway.service.erb │ └── test │ │ ├── fixtures │ │ └── cookbooks │ │ │ └── download-setups-s3 │ │ │ ├── attributes │ │ │ ├── default.rb │ │ │ ├── geoevent.rb │ │ │ └── server.rb │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ ├── auth_files.rb │ │ │ ├── geoevent.rb │ │ │ └── server.rb │ │ └── integration │ │ ├── default │ │ └── serverspec │ │ │ ├── Gemfile │ │ │ └── default_spec.rb │ │ ├── helpers │ │ └── serverspec │ │ │ └── spec_helper.rb │ │ └── iis │ │ └── serverspec │ │ ├── Gemfile │ │ └── iis_spec.rb ├── arcgis-insights │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ ├── providers │ │ └── insights.rb │ ├── recipes │ │ ├── default.rb │ │ ├── install_patches.rb │ │ └── uninstall.rb │ └── resources │ │ └── insights.rb ├── arcgis-license-manager │ ├── .gitignore │ ├── Berksfile │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── libraries │ │ ├── esri_properties.rb │ │ └── utils.rb │ ├── metadata.rb │ ├── providers │ │ ├── licensemanager.rb │ │ └── user.rb │ ├── recipes │ │ ├── default.rb │ │ ├── licensemanager.rb │ │ └── uninstall.rb │ └── resources │ │ ├── licensemanager.rb │ │ └── user.rb ├── arcgis-mission │ ├── .gitignore │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── libraries │ │ └── server_admin_client.rb │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ ├── federation.rb │ │ ├── fileserver.rb │ │ ├── install_patches.rb │ │ ├── install_server.rb │ │ ├── install_server_wa.rb │ │ ├── server.rb │ │ ├── server_node.rb │ │ ├── server_wa.rb │ │ ├── uninstall_server.rb │ │ ├── uninstall_server_wa.rb │ │ ├── unregister_machine.rb │ │ └── unregister_server_wa.rb │ ├── resources │ │ └── server.rb │ └── templates │ │ └── default │ │ ├── agsmission.service.erb │ │ └── hostname.properties.erb ├── arcgis-notebooks │ ├── .gitignore │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── libraries │ │ └── server_admin_client.rb │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ ├── docker.rb │ │ ├── federation.rb │ │ ├── fileserver.rb │ │ ├── install_patches.rb │ │ ├── install_server.rb │ │ ├── install_server_wa.rb │ │ ├── iptables.rb │ │ ├── restart_docker.rb │ │ ├── samples_data.rb │ │ ├── server.rb │ │ ├── server_node.rb │ │ ├── server_wa.rb │ │ ├── uninstall_samples_data.rb │ │ ├── uninstall_server.rb │ │ ├── uninstall_server_wa.rb │ │ ├── unregister_machine.rb │ │ └── unregister_server_wa.rb │ ├── resources │ │ ├── data.rb │ │ └── server.rb │ └── templates │ │ └── default │ │ ├── agsnotebook.service.erb │ │ └── hostname.properties.erb ├── arcgis-pro │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── License.txt │ ├── README.md │ ├── Thorfile │ ├── Vagrantfile │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── libraries │ │ └── utils.rb │ ├── metadata.rb │ ├── providers │ │ └── pro.rb │ ├── recipes │ │ ├── default.rb │ │ ├── install_pro.rb │ │ ├── ms_dotnet.rb │ │ ├── patches.rb │ │ ├── uninstall.rb │ │ └── webview2.rb │ ├── resources │ │ └── pro.rb │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ └── default_spec.rb │ └── test │ │ ├── fixtures │ │ └── cookbooks │ │ │ └── download-setups-s3 │ │ │ ├── attributes │ │ │ ├── default.rb │ │ │ └── pro.rb │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ ├── auth_files.rb │ │ │ └── pro.rb │ │ └── integration │ │ ├── default │ │ └── serverspec │ │ │ ├── Gemfile │ │ │ └── default_spec.rb │ │ └── helpers │ │ └── serverspec │ │ └── spec_helper.rb ├── arcgis-repository │ ├── .gitignore │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── libraries │ │ ├── downloader.rb │ │ ├── downloads_api_client.rb │ │ ├── patches_client.rb │ │ ├── repository_client.rb │ │ ├── token_service_client.rb │ │ └── utils.rb │ ├── metadata.rb │ ├── recipes │ │ ├── aws_cli.rb │ │ ├── azure_cli.rb │ │ ├── azure_files.rb │ │ ├── default.rb │ │ ├── files.rb │ │ ├── fileserver.rb │ │ ├── patches.rb │ │ ├── s3files.rb │ │ └── s3files2.rb │ └── resources │ │ ├── files.rb │ │ └── patches.rb ├── arcgis-video │ ├── .gitignore │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── libraries │ │ └── server_admin_client.rb │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ ├── federation.rb │ │ ├── install_patches.rb │ │ ├── install_server.rb │ │ ├── install_server_wa.rb │ │ ├── server.rb │ │ ├── server_node.rb │ │ ├── server_wa.rb │ │ ├── uninstall_server.rb │ │ ├── uninstall_server_wa.rb │ │ └── unregister_server_wa.rb │ ├── resources │ │ └── server.rb │ └── templates │ │ └── default │ │ ├── agsvideo.service.erb │ │ └── hostname.properties.erb ├── arcgis-workflow-manager │ ├── .gitignore │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── server.rb │ ├── chefignore │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ ├── federation.rb │ │ ├── install_patches.rb │ │ ├── install_server.rb │ │ ├── server.rb │ │ └── uninstall_server.rb │ ├── resources │ │ └── server.rb │ └── templates │ │ └── default │ │ └── workflowmanager.service.erb ├── arcgis │ ├── Berksfile │ ├── CHANGELOG.md │ ├── README.md │ └── metadata.rb ├── esri-iis │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ ├── providers │ │ └── iis.rb │ ├── recipes │ │ ├── default.rb │ │ └── install.rb │ └── resources │ │ └── iis.rb └── esri-tomcat │ ├── .gitignore │ ├── .kitchen.ec2.yml │ ├── .kitchen.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── License.txt │ ├── README.md │ ├── attributes │ └── default.rb │ ├── chefignore │ ├── metadata.rb │ ├── recipes │ ├── configure_ssl.rb │ ├── default.rb │ ├── firewalld.rb │ ├── install.rb │ ├── iptables.rb │ └── openjdk.rb │ ├── spec │ ├── spec_helper.rb │ └── unit │ │ └── recipes │ │ └── default_spec.rb │ ├── templates │ └── default │ │ └── server.xml.erb │ └── test │ └── smoke │ └── default │ └── install.rb ├── misc_scripts ├── CreateGISServerConnectionFile.py ├── RegisterFolderAsDatasource.py └── RegisterSdeFileAsDatasource.py └── templates ├── arcgis-datastore ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-primary.json │ │ ├── arcgis-datastore-graph-standby.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-primary.json │ │ ├── arcgis-datastore-graph-standby.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-primary.json │ │ ├── arcgis-datastore-graph-standby.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-primary.json │ │ ├── arcgis-datastore-graph-standby.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-primary.json │ │ ├── arcgis-datastore-graph-standby.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-primary.json │ │ ├── arcgis-datastore-graph-standby.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-node.json │ │ ├── arcgis-datastore-graph.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json │ └── windows │ │ ├── arcgis-datastore-files.json │ │ ├── arcgis-datastore-fileserver.json │ │ ├── arcgis-datastore-graph-node.json │ │ ├── arcgis-datastore-graph.json │ │ ├── arcgis-datastore-install.json │ │ ├── arcgis-datastore-object-node.json │ │ ├── arcgis-datastore-object.json │ │ ├── arcgis-datastore-patches-apply.json │ │ ├── arcgis-datastore-patches.json │ │ ├── arcgis-datastore-relational-primary.json │ │ ├── arcgis-datastore-relational-standby.json │ │ ├── arcgis-datastore-remove-machine.json │ │ ├── arcgis-datastore-s3files.json │ │ ├── arcgis-datastore-spatiotemporal-node.json │ │ ├── arcgis-datastore-spatiotemporal.json │ │ ├── arcgis-datastore-tilecache-cluster-node.json │ │ ├── arcgis-datastore-tilecache-cluster.json │ │ ├── arcgis-datastore-tilecache-primary.json │ │ └── arcgis-datastore-tilecache-standby.json └── 12.0 │ ├── README.md │ ├── linux │ ├── arcgis-datastore-files.json │ ├── arcgis-datastore-fileserver.json │ ├── arcgis-datastore-graph-node.json │ ├── arcgis-datastore-graph.json │ ├── arcgis-datastore-install.json │ ├── arcgis-datastore-object-node.json │ ├── arcgis-datastore-object.json │ ├── arcgis-datastore-patches-apply.json │ ├── arcgis-datastore-patches.json │ ├── arcgis-datastore-relational-primary.json │ ├── arcgis-datastore-relational-standby.json │ ├── arcgis-datastore-remove-machine.json │ ├── arcgis-datastore-s3files.json │ ├── arcgis-datastore-spatiotemporal-node.json │ └── arcgis-datastore-spatiotemporal.json │ └── windows │ ├── arcgis-datastore-files.json │ ├── arcgis-datastore-fileserver.json │ ├── arcgis-datastore-graph-node.json │ ├── arcgis-datastore-graph.json │ ├── arcgis-datastore-install.json │ ├── arcgis-datastore-object-node.json │ ├── arcgis-datastore-object.json │ ├── arcgis-datastore-patches-apply.json │ ├── arcgis-datastore-patches.json │ ├── arcgis-datastore-relational-primary.json │ ├── arcgis-datastore-relational-standby.json │ ├── arcgis-datastore-remove-machine.json │ ├── arcgis-datastore-s3files.json │ ├── arcgis-datastore-spatiotemporal-node.json │ └── arcgis-datastore-spatiotemporal.json ├── arcgis-egdb ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-files.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-files.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-files.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-files.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-files.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ └── arcgis-egdb-rds-postgres.json │ └── windows │ │ ├── arcgis-egdb-rds-postgres-files.json │ │ ├── arcgis-egdb-rds-postgres-s3files.json │ │ ├── arcgis-egdb-rds-postgres.json │ │ ├── arcgis-egdb-rds-sqlserver-files.json │ │ ├── arcgis-egdb-rds-sqlserver-node.json │ │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ │ └── arcgis-egdb-rds-sqlserver.json └── 12.0 │ ├── README.md │ ├── linux │ ├── arcgis-egdb-rds-postgres-files.json │ ├── arcgis-egdb-rds-postgres-s3files.json │ └── arcgis-egdb-rds-postgres.json │ └── windows │ ├── arcgis-egdb-rds-postgres-files.json │ ├── arcgis-egdb-rds-postgres-s3files.json │ ├── arcgis-egdb-rds-postgres.json │ ├── arcgis-egdb-rds-sqlserver-files.json │ ├── arcgis-egdb-rds-sqlserver-node.json │ ├── arcgis-egdb-rds-sqlserver-s3files.json │ └── arcgis-egdb-rds-sqlserver.json ├── arcgis-enterprise-base ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json │ └── windows │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json │ └── windows │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json │ └── windows │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json │ └── windows │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ └── arcgis-enterprise-standby.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ ├── arcgis-enterprise-standby.json │ │ ├── arcgis-enterprise-webgisdr-export.json │ │ └── arcgis-enterprise-webgisdr-import.json │ └── windows │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ ├── arcgis-enterprise-standby.json │ │ ├── arcgis-enterprise-webgisdr-export.json │ │ └── arcgis-enterprise-webgisdr-import.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-cloud-object-store.json │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ ├── arcgis-enterprise-standby.json │ │ ├── arcgis-enterprise-webgisdr-export.json │ │ ├── arcgis-enterprise-webgisdr-import.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-enterprise-cloud-object-store.json │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ ├── arcgis-enterprise-standby.json │ │ ├── arcgis-enterprise-webgisdr-export.json │ │ ├── arcgis-enterprise-webgisdr-import.json │ │ └── unregister-machine.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── arcgis-enterprise-cloud-object-store.json │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ ├── arcgis-enterprise-standby.json │ │ ├── arcgis-enterprise-webgisdr-export.json │ │ ├── arcgis-enterprise-webgisdr-import.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-enterprise-cloud-object-store.json │ │ ├── arcgis-enterprise-files.json │ │ ├── arcgis-enterprise-fileserver.json │ │ ├── arcgis-enterprise-install.json │ │ ├── arcgis-enterprise-patches-apply.json │ │ ├── arcgis-enterprise-patches.json │ │ ├── arcgis-enterprise-primary.json │ │ ├── arcgis-enterprise-s3files.json │ │ ├── arcgis-enterprise-standby.json │ │ ├── arcgis-enterprise-webgisdr-export.json │ │ ├── arcgis-enterprise-webgisdr-import.json │ │ └── unregister-machine.json └── 12.0 │ ├── README.md │ ├── linux │ ├── arcgis-enterprise-cloud-object-store.json │ ├── arcgis-enterprise-files.json │ ├── arcgis-enterprise-fileserver.json │ ├── arcgis-enterprise-install.json │ ├── arcgis-enterprise-patches-apply.json │ ├── arcgis-enterprise-patches.json │ ├── arcgis-enterprise-primary.json │ ├── arcgis-enterprise-s3files.json │ ├── arcgis-enterprise-standby.json │ ├── arcgis-enterprise-webgisdr-export.json │ ├── arcgis-enterprise-webgisdr-import.json │ └── unregister-machine.json │ └── windows │ ├── arcgis-enterprise-cloud-object-store.json │ ├── arcgis-enterprise-files.json │ ├── arcgis-enterprise-fileserver.json │ ├── arcgis-enterprise-install.json │ ├── arcgis-enterprise-patches-apply.json │ ├── arcgis-enterprise-patches.json │ ├── arcgis-enterprise-primary.json │ ├── arcgis-enterprise-s3files.json │ ├── arcgis-enterprise-standby.json │ ├── arcgis-enterprise-webgisdr-export.json │ ├── arcgis-enterprise-webgisdr-import.json │ └── unregister-machine.json ├── arcgis-geoevent-server ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json │ └── windows │ │ ├── geoevent-server-federation.json │ │ ├── geoevent-server-files.json │ │ ├── geoevent-server-fileserver.json │ │ ├── geoevent-server-install.json │ │ ├── geoevent-server-patches-apply.json │ │ ├── geoevent-server-patches.json │ │ ├── geoevent-server-reset.json │ │ ├── geoevent-server-s3files.json │ │ └── geoevent-server.json └── 12.0 │ ├── README.md │ ├── linux │ ├── geoevent-server-federation.json │ ├── geoevent-server-files.json │ ├── geoevent-server-fileserver.json │ ├── geoevent-server-install.json │ ├── geoevent-server-patches-apply.json │ ├── geoevent-server-patches.json │ ├── geoevent-server-s3files.json │ └── geoevent-server.json │ └── windows │ ├── geoevent-server-federation.json │ ├── geoevent-server-files.json │ ├── geoevent-server-fileserver.json │ ├── geoevent-server-install.json │ ├── geoevent-server-patches-apply.json │ ├── geoevent-server-patches.json │ ├── geoevent-server-reset.json │ ├── geoevent-server-s3files.json │ └── geoevent-server.json ├── arcgis-license-manager ├── 2021.0 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2021.1 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2022.0 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2022.1 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2023.0 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2024.0 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2024.1 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json ├── 2025.0 │ ├── README.md │ ├── linux │ │ └── arcgis-license-manager-install.json │ └── windows │ │ └── arcgis-license-manager-install.json └── 2025.1 │ ├── README.md │ ├── linux │ └── arcgis-license-manager-install.json │ └── windows │ └── arcgis-license-manager-install.json ├── arcgis-mission-server ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json │ └── windows │ │ ├── mission-server-federation.json │ │ ├── mission-server-files.json │ │ ├── mission-server-fileserver.json │ │ ├── mission-server-install.json │ │ ├── mission-server-node.json │ │ ├── mission-server-patches-apply.json │ │ ├── mission-server-patches.json │ │ ├── mission-server-s3files.json │ │ ├── mission-server-unregister-machine.json │ │ └── mission-server.json └── 12.0 │ ├── README.md │ ├── linux │ ├── mission-server-federation.json │ ├── mission-server-files.json │ ├── mission-server-fileserver.json │ ├── mission-server-install.json │ ├── mission-server-node.json │ ├── mission-server-patches-apply.json │ ├── mission-server-patches.json │ ├── mission-server-s3files.json │ ├── mission-server-unregister-machine.json │ └── mission-server.json │ └── windows │ ├── mission-server-federation.json │ ├── mission-server-files.json │ ├── mission-server-fileserver.json │ ├── mission-server-install.json │ ├── mission-server-node.json │ ├── mission-server-patches-apply.json │ ├── mission-server-patches.json │ ├── mission-server-s3files.json │ ├── mission-server-unregister-machine.json │ └── mission-server.json ├── arcgis-notebook-server ├── 10.9.1 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json ├── 11.0 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-files.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json ├── 11.1 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-files.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json ├── 11.2 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-files.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json ├── 11.3 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-files.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json ├── 11.4 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-files.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json ├── 11.5 │ ├── README.md │ └── linux │ │ ├── notebook-server-federation.json │ │ ├── notebook-server-files.json │ │ ├── notebook-server-fileserver.json │ │ ├── notebook-server-install.json │ │ ├── notebook-server-node.json │ │ ├── notebook-server-patches-apply.json │ │ ├── notebook-server-patches.json │ │ ├── notebook-server-s3files.json │ │ ├── notebook-server-unregister-node.json │ │ └── notebook-server.json └── 12.0 │ ├── README.md │ └── linux │ ├── notebook-server-federation.json │ ├── notebook-server-files.json │ ├── notebook-server-fileserver.json │ ├── notebook-server-install.json │ ├── notebook-server-node.json │ ├── notebook-server-patches-apply.json │ ├── notebook-server-patches.json │ ├── notebook-server-s3files.json │ ├── notebook-server-unregister-node.json │ └── notebook-server.json ├── arcgis-portal ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json │ └── windows │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json │ └── windows │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json │ └── windows │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json │ └── windows │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json │ └── windows │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ └── arcgis-portal-standby.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ ├── arcgis-portal-standby.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ ├── arcgis-portal-standby.json │ │ └── unregister-machine.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ ├── arcgis-portal-standby.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-portal-files.json │ │ ├── arcgis-portal-fileserver.json │ │ ├── arcgis-portal-install.json │ │ ├── arcgis-portal-patches-apply.json │ │ ├── arcgis-portal-patches.json │ │ ├── arcgis-portal-primary.json │ │ ├── arcgis-portal-s3files.json │ │ ├── arcgis-portal-standby.json │ │ └── unregister-machine.json └── 12.0 │ ├── README.md │ ├── linux │ ├── arcgis-portal-files.json │ ├── arcgis-portal-fileserver.json │ ├── arcgis-portal-install.json │ ├── arcgis-portal-patches-apply.json │ ├── arcgis-portal-patches.json │ ├── arcgis-portal-primary.json │ ├── arcgis-portal-s3files.json │ ├── arcgis-portal-standby.json │ └── unregister-machine.json │ └── windows │ ├── arcgis-portal-files.json │ ├── arcgis-portal-fileserver.json │ ├── arcgis-portal-install.json │ ├── arcgis-portal-patches-apply.json │ ├── arcgis-portal-patches.json │ ├── arcgis-portal-primary.json │ ├── arcgis-portal-s3files.json │ ├── arcgis-portal-standby.json │ └── unregister-machine.json ├── arcgis-pro ├── 2.9 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ └── ms-dotnet-s3files.json ├── 3.0.3 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ └── ms-dotnet-s3files.json ├── 3.0 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ └── ms-dotnet-s3files.json ├── 3.1 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ └── ms-dotnet-s3files.json ├── 3.2 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ └── ms-dotnet-s3files.json ├── 3.3 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ ├── ms-dotnet-s3files.json │ │ ├── webview2-install.json │ │ └── webview2-s3files.json ├── 3.4 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ ├── ms-dotnet-s3files.json │ │ ├── webview2-install.json │ │ └── webview2-s3files.json ├── 3.5 │ ├── README.md │ └── windows │ │ ├── arcgis-pro-concurrent-use.json │ │ ├── arcgis-pro-install.json │ │ ├── arcgis-pro-named-user.json │ │ ├── arcgis-pro-s3files.json │ │ ├── arcgis-pro-single-use.json │ │ ├── ms-dotnet-install.json │ │ ├── ms-dotnet-s3files.json │ │ ├── webview2-install.json │ │ └── webview2-s3files.json └── 3.6 │ ├── README.md │ └── windows │ ├── arcgis-pro-concurrent-use.json │ ├── arcgis-pro-install.json │ ├── arcgis-pro-named-user.json │ ├── arcgis-pro-s3files.json │ ├── arcgis-pro-single-use.json │ ├── ms-dotnet-install.json │ ├── ms-dotnet-s3files.json │ ├── webview2-install.json │ └── webview2-s3files.json ├── arcgis-server ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── geoanalytics-federation.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json │ └── windows │ │ ├── arcgis-server-files.json │ │ ├── arcgis-server-fileserver.json │ │ ├── arcgis-server-install.json │ │ ├── arcgis-server-node.json │ │ ├── arcgis-server-patches-apply.json │ │ ├── arcgis-server-patches.json │ │ ├── arcgis-server-raster-store.json │ │ ├── arcgis-server-s3files.json │ │ ├── arcgis-server.json │ │ ├── gis-server-federation.json │ │ ├── imagehosting-federation.json │ │ ├── knowledgeserver-federation.json │ │ ├── rasteranalytics-federation.json │ │ ├── unfederate-server.json │ │ └── unregister-machine.json └── 12.0 │ ├── README.md │ ├── linux │ ├── arcgis-server-files.json │ ├── arcgis-server-fileserver.json │ ├── arcgis-server-install.json │ ├── arcgis-server-node.json │ ├── arcgis-server-patches-apply.json │ ├── arcgis-server-patches.json │ ├── arcgis-server-raster-store.json │ ├── arcgis-server-s3files.json │ ├── arcgis-server.json │ ├── gis-server-federation.json │ ├── imagehosting-federation.json │ ├── knowledgeserver-federation.json │ ├── rasteranalytics-federation.json │ ├── unfederate-server.json │ └── unregister-machine.json │ └── windows │ ├── arcgis-server-files.json │ ├── arcgis-server-fileserver.json │ ├── arcgis-server-install.json │ ├── arcgis-server-node.json │ ├── arcgis-server-patches-apply.json │ ├── arcgis-server-patches.json │ ├── arcgis-server-raster-store.json │ ├── arcgis-server-s3files.json │ ├── arcgis-server.json │ ├── gis-server-federation.json │ ├── imagehosting-federation.json │ ├── knowledgeserver-federation.json │ ├── rasteranalytics-federation.json │ ├── unfederate-server.json │ └── unregister-machine.json ├── arcgis-video-server ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── video-server-federation.json │ │ ├── video-server-files.json │ │ ├── video-server-install.json │ │ ├── video-server-patches-apply.json │ │ ├── video-server-patches.json │ │ ├── video-server-s3files.json │ │ └── video-server.json │ └── windows │ │ ├── video-server-federation.json │ │ ├── video-server-files.json │ │ ├── video-server-install.json │ │ ├── video-server-patches-apply.json │ │ ├── video-server-patches.json │ │ ├── video-server-s3files.json │ │ └── video-server.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── video-server-federation.json │ │ ├── video-server-files.json │ │ ├── video-server-install.json │ │ ├── video-server-patches-apply.json │ │ ├── video-server-patches.json │ │ ├── video-server-s3files.json │ │ └── video-server.json │ └── windows │ │ ├── video-server-federation.json │ │ ├── video-server-files.json │ │ ├── video-server-install.json │ │ ├── video-server-patches-apply.json │ │ ├── video-server-patches.json │ │ ├── video-server-s3files.json │ │ └── video-server.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── video-server-federation.json │ │ ├── video-server-files.json │ │ ├── video-server-fileserver.json │ │ ├── video-server-install.json │ │ ├── video-server-node.json │ │ ├── video-server-patches-apply.json │ │ ├── video-server-patches.json │ │ ├── video-server-s3files.json │ │ └── video-server.json │ └── windows │ │ ├── video-server-federation.json │ │ ├── video-server-files.json │ │ ├── video-server-fileserver.json │ │ ├── video-server-install.json │ │ ├── video-server-node.json │ │ ├── video-server-patches-apply.json │ │ ├── video-server-patches.json │ │ ├── video-server-s3files.json │ │ └── video-server.json └── 12.0 │ ├── README.md │ ├── linux │ ├── video-server-federation.json │ ├── video-server-files.json │ ├── video-server-fileserver.json │ ├── video-server-install.json │ ├── video-server-node.json │ ├── video-server-patches-apply.json │ ├── video-server-patches.json │ ├── video-server-s3files.json │ └── video-server.json │ └── windows │ ├── video-server-federation.json │ ├── video-server-files.json │ ├── video-server-fileserver.json │ ├── video-server-install.json │ ├── video-server-node.json │ ├── video-server-patches-apply.json │ ├── video-server-patches.json │ ├── video-server-s3files.json │ └── video-server.json ├── arcgis-webadaptor ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-video-server-webadaptor-install.json │ │ ├── arcgis-video-server-webadaptor-unregister.json │ │ ├── arcgis-video-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-video-server-webadaptor-install.json │ │ ├── arcgis-video-server-webadaptor-unregister.json │ │ ├── arcgis-video-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-video-server-webadaptor-install.json │ │ ├── arcgis-video-server-webadaptor-unregister.json │ │ ├── arcgis-video-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-video-server-webadaptor-install.json │ │ ├── arcgis-video-server-webadaptor-unregister.json │ │ ├── arcgis-video-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-notebook-server-webadaptor-install.json │ │ ├── arcgis-notebook-server-webadaptor-unregister.json │ │ ├── arcgis-notebook-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-video-server-webadaptor-install.json │ │ ├── arcgis-video-server-webadaptor-unregister.json │ │ ├── arcgis-video-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json │ └── windows │ │ ├── arcgis-mission-server-webadaptor-install.json │ │ ├── arcgis-mission-server-webadaptor-unregister.json │ │ ├── arcgis-mission-server-webadaptor.json │ │ ├── arcgis-portal-webadaptor-install.json │ │ ├── arcgis-portal-webadaptor.json │ │ ├── arcgis-server-webadaptor-install.json │ │ ├── arcgis-server-webadaptor-unregister.json │ │ ├── arcgis-server-webadaptor.json │ │ ├── arcgis-video-server-webadaptor-install.json │ │ ├── arcgis-video-server-webadaptor-unregister.json │ │ ├── arcgis-video-server-webadaptor.json │ │ ├── arcgis-webadaptor-files.json │ │ ├── arcgis-webadaptor-patches-apply.json │ │ ├── arcgis-webadaptor-patches.json │ │ └── arcgis-webadaptor-s3files.json └── 12.0 │ ├── README.md │ ├── linux │ ├── arcgis-mission-server-webadaptor-install.json │ ├── arcgis-mission-server-webadaptor-unregister.json │ ├── arcgis-mission-server-webadaptor.json │ ├── arcgis-notebook-server-webadaptor-install.json │ ├── arcgis-notebook-server-webadaptor-unregister.json │ ├── arcgis-notebook-server-webadaptor.json │ ├── arcgis-portal-webadaptor-install.json │ ├── arcgis-portal-webadaptor.json │ ├── arcgis-server-webadaptor-install.json │ ├── arcgis-server-webadaptor-unregister.json │ ├── arcgis-server-webadaptor.json │ ├── arcgis-video-server-webadaptor-install.json │ ├── arcgis-video-server-webadaptor-unregister.json │ ├── arcgis-video-server-webadaptor.json │ ├── arcgis-webadaptor-files.json │ ├── arcgis-webadaptor-patches-apply.json │ ├── arcgis-webadaptor-patches.json │ └── arcgis-webadaptor-s3files.json │ └── windows │ ├── arcgis-mission-server-webadaptor-install.json │ ├── arcgis-mission-server-webadaptor-unregister.json │ ├── arcgis-mission-server-webadaptor.json │ ├── arcgis-portal-webadaptor-install.json │ ├── arcgis-portal-webadaptor.json │ ├── arcgis-server-webadaptor-install.json │ ├── arcgis-server-webadaptor-unregister.json │ ├── arcgis-server-webadaptor.json │ ├── arcgis-video-server-webadaptor-install.json │ ├── arcgis-video-server-webadaptor-unregister.json │ ├── arcgis-video-server-webadaptor.json │ ├── arcgis-webadaptor-files.json │ ├── arcgis-webadaptor-patches-apply.json │ ├── arcgis-webadaptor-patches.json │ └── arcgis-webadaptor-s3files.json ├── arcgis-workflow-manager ├── 10.9.1 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json ├── 11.0 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json ├── 11.1 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json ├── 11.2 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json ├── 11.3 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json ├── 11.4 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json ├── 11.5 │ ├── README.md │ ├── linux │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json │ └── windows │ │ ├── workflow-manager-files.json │ │ ├── workflow-manager-fileserver.json │ │ ├── workflow-manager-s3files.json │ │ ├── workflow-manager-server-federation.json │ │ ├── workflow-manager-server-install.json │ │ ├── workflow-manager-server-node.json │ │ ├── workflow-manager-server-patches-apply.json │ │ ├── workflow-manager-server-patches.json │ │ └── workflow-manager-server.json └── 12.0 │ ├── README.md │ ├── linux │ ├── workflow-manager-files.json │ ├── workflow-manager-fileserver.json │ ├── workflow-manager-s3files.json │ ├── workflow-manager-server-federation.json │ ├── workflow-manager-server-install.json │ ├── workflow-manager-server-node.json │ ├── workflow-manager-server-patches-apply.json │ ├── workflow-manager-server-patches.json │ └── workflow-manager-server.json │ └── windows │ ├── workflow-manager-files.json │ ├── workflow-manager-fileserver.json │ ├── workflow-manager-s3files.json │ ├── workflow-manager-server-federation.json │ ├── workflow-manager-server-install.json │ ├── workflow-manager-server-node.json │ ├── workflow-manager-server-patches-apply.json │ ├── workflow-manager-server-patches.json │ └── workflow-manager-server.json └── tools └── copy_attributes.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/recipes/egdb_postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/recipes/egdb_postgres.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/recipes/egdb_sqlserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/recipes/egdb_sqlserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/recipes/register_egdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/recipes/register_egdb.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/recipes/sql_alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/recipes/sql_alias.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/recipes/sqlcmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/recipes/sqlcmd.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/spec/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/templates/default/RDS_Creation.ps1.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/templates/default/RDS_Creation.ps1.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/templates/default/RDS_postgres.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/templates/default/RDS_postgres.bat.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-egdb/templates/default/RDS_postgres.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-egdb/templates/default/RDS_postgres.sh.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/Gemfile -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/Thorfile -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/Vagrantfile -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/datasources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/datasources.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/fileserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/fileserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/webadaptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/webadaptor.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/attributes/webstyles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/attributes/webstyles.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/datastore_admin_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/datastore_admin_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/datastore_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/datastore_tools.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/esri_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/esri_properties.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/portal_admin_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/portal_admin_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/portal_rest_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/portal_rest_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/server_admin_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/server_admin_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/server_rest_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/server_rest_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/libraries/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/libraries/utils.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/datasources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/datasources.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/gis_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/gis_service.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/webadaptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/webadaptor.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/providers/webstyles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/providers/webstyles.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/authbind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/authbind.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/clean.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/datasources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/datasources.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/datastore_standby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/datastore_standby.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/delete_server_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/delete_server_site.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/disable_geoanalytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/disable_geoanalytics.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/disable_imagehosting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/disable_imagehosting.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/disable_knowledgeserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/disable_knowledgeserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/disable_loopback_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/disable_loopback_check.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/disable_rasteranalytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/disable_rasteranalytics.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/egdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/egdb.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enable_geoanalytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enable_geoanalytics.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enable_imagehosting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enable_imagehosting.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enable_knowledgeserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enable_knowledgeserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enable_rasteranalytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enable_rasteranalytics.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enterprise_installed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enterprise_installed.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enterprise_uninstalled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enterprise_uninstalled.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/enterprise_validate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/enterprise_validate.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/federation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/federation.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/fileserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/fileserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/hosts.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/install_datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/install_datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/install_portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/install_portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/install_portal_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/install_portal_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/install_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/install_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/install_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/install_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/iptables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/iptables.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/lp-install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/lp-install.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/portal_security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/portal_security.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/portal_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/portal_settings.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/portal_standby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/portal_standby.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/portal_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/portal_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/post_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/post_install.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/register_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/register_machine.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/remove_datastore_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/remove_datastore_machine.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/server_data_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/server_data_items.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/server_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/server_node.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/server_security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/server_security.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/services.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/start_datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/start_datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/start_portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/start_portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/start_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/start_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/stop_datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/stop_datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/stop_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/stop_machine.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/stop_portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/stop_portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/stop_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/stop_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/system.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/unfederate_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/unfederate_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/uninstall_datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/uninstall_datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/uninstall_portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/uninstall_portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/uninstall_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/uninstall_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/uninstall_webadaptors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/uninstall_webadaptors.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/unregister_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/unregister_machine.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/unregister_machines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/unregister_machines.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/unregister_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/unregister_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/webgisdr_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/webgisdr_export.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/webgisdr_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/webgisdr_import.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/recipes/webstyles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/recipes/webstyles.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/datasources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/datasources.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/datastore.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/gis_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/gis_service.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/portal.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/webadaptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/webadaptor.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/resources/webstyles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/resources/webstyles.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/spec/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/templates/default/arcgisportal.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/templates/default/arcgisportal.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/templates/default/arcgisserver.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/templates/default/arcgisserver.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/templates/redhat/arcgisportal.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/templates/redhat/arcgisportal.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/templates/redhat/arcgisserver.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-enterprise/templates/redhat/arcgisserver.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-enterprise/test/integration/iis/serverspec/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'winrm' 4 | -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/Gemfile -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/providers/geoevent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/providers/geoevent.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/admin_reset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/admin_reset.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/lp-install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/lp-install.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/start_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/start_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/stop_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/stop_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/recipes/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/recipes/uninstall.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/resources/geoevent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/resources/geoevent.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/spec/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-geoevent/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-geoevent/test/integration/iis/serverspec/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'winrm' 4 | -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/providers/insights.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/providers/insights.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/recipes/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/recipes/uninstall.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-insights/resources/insights.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-insights/resources/insights.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/libraries/esri_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/libraries/esri_properties.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/libraries/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/libraries/utils.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/providers/licensemanager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/providers/licensemanager.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/providers/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/providers/user.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/recipes/licensemanager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/recipes/licensemanager.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/recipes/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/recipes/uninstall.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/resources/licensemanager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/resources/licensemanager.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-license-manager/resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-license-manager/resources/user.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/libraries/server_admin_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/libraries/server_admin_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/federation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/federation.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/fileserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/fileserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/install_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/install_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/install_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/install_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/server_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/server_node.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/uninstall_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/uninstall_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/uninstall_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/uninstall_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/unregister_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/unregister_machine.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/recipes/unregister_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/recipes/unregister_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-mission/resources/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-mission/resources/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/libraries/server_admin_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/libraries/server_admin_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/docker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/docker.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/federation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/federation.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/fileserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/fileserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/install_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/install_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/install_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/install_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/iptables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/iptables.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/restart_docker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/restart_docker.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/samples_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/samples_data.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/server_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/server_node.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/uninstall_samples_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/uninstall_samples_data.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/uninstall_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/uninstall_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/uninstall_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/uninstall_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/unregister_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/unregister_machine.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/recipes/unregister_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/recipes/unregister_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/resources/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/resources/data.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-notebooks/resources/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-notebooks/resources/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/Gemfile -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/Thorfile -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/Vagrantfile -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/libraries/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/libraries/utils.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/providers/pro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/providers/pro.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/recipes/install_pro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/recipes/install_pro.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/recipes/ms_dotnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/recipes/ms_dotnet.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/recipes/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/recipes/patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/recipes/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/recipes/uninstall.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/recipes/webview2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/recipes/webview2.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/resources/pro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/resources/pro.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/spec/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-pro/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-pro/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/libraries/downloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/libraries/downloader.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/libraries/downloads_api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/libraries/downloads_api_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/libraries/patches_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/libraries/patches_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/libraries/repository_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/libraries/repository_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/libraries/token_service_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/libraries/token_service_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/libraries/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/libraries/utils.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/aws_cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/aws_cli.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/azure_cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/azure_cli.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/azure_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/azure_files.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/files.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/fileserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/fileserver.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/s3files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/s3files.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/recipes/s3files2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/recipes/s3files2.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/resources/files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/resources/files.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-repository/resources/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-repository/resources/patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-video/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-video/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-video/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-video/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-video/libraries/server_admin_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/libraries/server_admin_client.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/federation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/federation.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/install_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/install_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/install_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/install_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/server_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/server_node.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/uninstall_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/uninstall_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/uninstall_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/uninstall_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/recipes/unregister_server_wa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/recipes/unregister_server_wa.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/resources/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/resources/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-video/templates/default/agsvideo.service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-video/templates/default/agsvideo.service.erb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/.gitignore -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/License.txt -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/attributes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/attributes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/chefignore -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/metadata.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/recipes/federation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/recipes/federation.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/recipes/install_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/recipes/install_patches.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/recipes/install_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/recipes/install_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/recipes/uninstall_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/recipes/uninstall_server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis-workflow-manager/resources/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis-workflow-manager/resources/server.rb -------------------------------------------------------------------------------- /cookbooks/arcgis/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis/Berksfile -------------------------------------------------------------------------------- /cookbooks/arcgis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/arcgis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis/README.md -------------------------------------------------------------------------------- /cookbooks/arcgis/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/arcgis/metadata.rb -------------------------------------------------------------------------------- /cookbooks/esri-iis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/.gitignore -------------------------------------------------------------------------------- /cookbooks/esri-iis/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/esri-iis/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/esri-iis/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/esri-iis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/esri-iis/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/License.txt -------------------------------------------------------------------------------- /cookbooks/esri-iis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/README.md -------------------------------------------------------------------------------- /cookbooks/esri-iis/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/esri-iis/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/metadata.rb -------------------------------------------------------------------------------- /cookbooks/esri-iis/providers/iis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/providers/iis.rb -------------------------------------------------------------------------------- /cookbooks/esri-iis/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/esri-iis/recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/recipes/install.rb -------------------------------------------------------------------------------- /cookbooks/esri-iis/resources/iis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-iis/resources/iis.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/.gitignore -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/.kitchen.ec2.yml -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/License.txt -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/README.md -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/chefignore -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/metadata.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/recipes/configure_ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/recipes/configure_ssl.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/recipes/firewalld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/recipes/firewalld.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/recipes/install.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/recipes/iptables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/recipes/iptables.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/recipes/openjdk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/recipes/openjdk.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/spec/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/templates/default/server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/templates/default/server.xml.erb -------------------------------------------------------------------------------- /cookbooks/esri-tomcat/test/smoke/default/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/cookbooks/esri-tomcat/test/smoke/default/install.rb -------------------------------------------------------------------------------- /misc_scripts/CreateGISServerConnectionFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/misc_scripts/CreateGISServerConnectionFile.py -------------------------------------------------------------------------------- /misc_scripts/RegisterFolderAsDatasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/misc_scripts/RegisterFolderAsDatasource.py -------------------------------------------------------------------------------- /misc_scripts/RegisterSdeFileAsDatasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/misc_scripts/RegisterSdeFileAsDatasource.py -------------------------------------------------------------------------------- /templates/arcgis-datastore/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-datastore/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-datastore/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.0/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.0/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.1/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.1/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.2/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.2/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.3/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.3/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.4/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.4/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/11.5/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/11.5/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-egdb/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-egdb/12.0/linux/arcgis-egdb-rds-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-egdb/12.0/linux/arcgis-egdb-rds-postgres.json -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-enterprise-base/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-enterprise-base/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-geoevent-server/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-geoevent-server/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2021.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2021.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2021.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2021.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2022.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2022.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2022.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2022.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2023.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2023.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2024.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2024.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2024.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2024.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2025.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2025.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-license-manager/2025.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-license-manager/2025.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.0/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.0/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.1/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.1/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.2/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.2/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.3/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.3/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.4/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.4/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/11.5/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/11.5/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-mission-server/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-mission-server/12.0/linux/mission-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-mission-server/12.0/linux/mission-server.json -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-notebook-server/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-notebook-server/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/10.9.1/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/10.9.1/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/10.9.1/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/10.9.1/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/10.9.1/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/10.9.1/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/10.9.1/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/10.9.1/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/10.9.1/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/10.9.1/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/windows/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/windows/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/windows/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/windows/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/windows/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/windows/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/windows/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/windows/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.0/windows/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.0/windows/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/windows/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/windows/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/windows/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/windows/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/windows/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/windows/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/windows/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/windows/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.1/windows/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.1/windows/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/windows/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/windows/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/windows/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/windows/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/windows/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/windows/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/windows/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/windows/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.2/windows/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.2/windows/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/windows/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/windows/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/windows/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/windows/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/windows/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/windows/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/windows/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/windows/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.3/windows/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.3/windows/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.4/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.4/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/windows/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/windows/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/windows/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/windows/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/11.5/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/11.5/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/arcgis-portal-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/arcgis-portal-install.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/arcgis-portal-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/arcgis-portal-patches.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/arcgis-portal-primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/arcgis-portal-primary.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/arcgis-portal-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/arcgis-portal-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/arcgis-portal-standby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/arcgis-portal-standby.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/windows/arcgis-portal-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/windows/arcgis-portal-files.json -------------------------------------------------------------------------------- /templates/arcgis-portal/12.0/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-portal/12.0/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/2.9/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/2.9/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0.3/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0.3/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.0/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.0/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.1/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.1/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.2/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.2/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/webview2-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/webview2-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.3/windows/webview2-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.3/windows/webview2-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/webview2-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/webview2-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.4/windows/webview2-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.4/windows/webview2-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/webview2-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/webview2-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.5/windows/webview2-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.5/windows/webview2-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/README.md -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/arcgis-pro-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/arcgis-pro-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/arcgis-pro-named-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/arcgis-pro-named-user.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/arcgis-pro-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/arcgis-pro-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/arcgis-pro-single-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/arcgis-pro-single-use.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/ms-dotnet-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/ms-dotnet-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/ms-dotnet-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/ms-dotnet-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/webview2-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/webview2-install.json -------------------------------------------------------------------------------- /templates/arcgis-pro/3.6/windows/webview2-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-pro/3.6/windows/webview2-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/10.9.1/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/10.9.1/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.0/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.0/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.1/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.1/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.2/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.2/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.3/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.3/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.4/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.4/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/11.5/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/11.5/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/arcgis-server-install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/arcgis-server-install.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/arcgis-server-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/arcgis-server-patches.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/arcgis-server-s3files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/arcgis-server-s3files.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/gis-server-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/gis-server-federation.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/linux/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/linux/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/windows/arcgis-server-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/windows/arcgis-server-files.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/windows/arcgis-server-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/windows/arcgis-server-node.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/windows/arcgis-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/windows/arcgis-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/windows/unfederate-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/windows/unfederate-server.json -------------------------------------------------------------------------------- /templates/arcgis-server/12.0/windows/unregister-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-server/12.0/windows/unregister-machine.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.3/linux/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.3/linux/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.3/windows/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.3/windows/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.4/linux/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.4/linux/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.4/windows/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.4/windows/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.5/linux/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.5/linux/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/11.5/windows/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/11.5/windows/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-video-server/12.0/linux/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/12.0/linux/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-video-server/12.0/windows/video-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-video-server/12.0/windows/video-server.json -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-webadaptor/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-webadaptor/12.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/10.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/10.9.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/11.0/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/11.1/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/11.2/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/11.3/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/11.4/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/11.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/11.5/README.md -------------------------------------------------------------------------------- /templates/arcgis-workflow-manager/12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/arcgis-workflow-manager/12.0/README.md -------------------------------------------------------------------------------- /templates/tools/copy_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-cookbook/HEAD/templates/tools/copy_attributes.rb --------------------------------------------------------------------------------