├── .gitignore ├── CONTRIBUTING.md ├── ContributorAgreement.txt ├── LICENSE ├── README.md ├── authentication ├── README.md └── scripts │ ├── generateToken_Python.ipynb │ ├── getAccessToken_fromRefreshToken.ipynb │ ├── registerClient_generateToken_AdminUser.ipynb │ └── registerClient_generateToken_AuthCode.ipynb ├── images └── repo-video.jpg ├── import.csv ├── postman ├── README.md ├── authentication │ ├── README.md │ └── authentication-process.postman-collection.json ├── auto-machine-learning │ ├── README.md │ └── auto-machine-learning-postman-collection.json ├── catalog │ ├── create-and-run-discovery-agent │ │ ├── README.md │ │ └── create-and-run-discovery-agent.postman_collection.json │ ├── create-and-search-on-tags │ │ ├── README.md │ │ └── create-and-search-on-tags.postman_collection.json │ ├── create-and-use-asset │ │ ├── README.md │ │ └── create-and-use-asset.postman_collection.json │ ├── download-upload-to-cas-profiled-metrics-data │ │ ├── README.md │ │ └── download-upload-to-cas-profiled-metrics-data.postman_collection.json │ ├── overview.md │ ├── sasserver.postman_environment.json │ └── use-search-to-lookup-resources │ │ ├── README.md │ │ └── use-search-to-lookup-resources.postman_collection.json ├── glossary │ ├── drafts-use-cases │ │ ├── README.md │ │ └── drafts-use-cases.postman_collection.json │ ├── import-terms-use-cases │ │ ├── README.md │ │ └── import-terms-use-case.postman_collection.json │ ├── term-type-use-cases │ │ ├── README.md │ │ └── term-types-use-case.postman_collection.json │ └── terms-use-cases │ │ ├── README.md │ │ └── terms-use-case.postman_collection.json ├── job-execution │ ├── README.md │ └── job-execution-postman-collection.json ├── mas-real-time-scoring │ ├── README.md │ └── mas-real-time-scoring-postman-collection.json ├── modeling-and-deployment │ ├── README.md │ └── modeling-and-deployment-postman-collection.json ├── open-source-modeling │ ├── README.md │ ├── data │ │ ├── HMEQPERFSCORED_1_Q1.csv │ │ ├── gboost_obj_3_6_5.pkl │ │ ├── gboost_score.py │ │ └── gboost_train.py │ └── open-source-modeling-and-deployment-postman-collection.json ├── postman-template-README.md └── text-analytics-scoring │ ├── README.md │ ├── concepts-categories │ ├── README.md │ ├── data │ │ └── RESTAURANT_REVIEWS.csv │ └── text-analytics-concepts-categories-postman-collection.json │ └── sentiment │ ├── README.md │ └── text-analytics-sentiment-postman-collection.json ├── python ├── README.md ├── authentication │ ├── README.md │ ├── access_token.txt │ ├── authentication.ipynb │ ├── authentication.py │ ├── get-access-token.ipynb │ ├── get-access-token.py │ ├── refresh_token.txt │ ├── registerClient_generateToken_Python_2023.ipynb │ └── registerClient_generateToken_Python_pre2023.ipynb ├── auto-machine-learning │ ├── auto-machine-learning.ipynb │ ├── auto-machine-learning.py │ └── readme.md ├── catalog │ ├── create-and-run-discovery-agent │ │ ├── README.md │ │ └── create-and-run-discovery-agent.ipynb │ ├── create-and-search-on-tags │ │ ├── README.md │ │ └── create-and-search-on-tags.ipynb │ ├── create-and-use-asset │ │ ├── README.md │ │ └── create-and-use-asset.ipynb │ ├── download-upload-to-cas-profiled-metrics-data │ │ ├── README.md │ │ └── download-upload-to-cas-profiled-metrics-data_requests_notebook.ipynb │ ├── overview.md │ └── use-search-to-lookup-resources │ │ ├── README.md │ │ └── use-search-to-lookup-resources.ipynb ├── execute-sas-code │ ├── README.md │ ├── execute-sas-code.ipynb │ └── execute-sas-code.py ├── glossary │ ├── drafts-use-cases │ │ ├── README.md │ │ └── drafts_use_cases.ipynb │ ├── import-terms-use-cases │ │ ├── README.md │ │ └── import_terms_use_cases.ipynb │ ├── term-type-use-cases │ │ ├── README.md │ │ └── term_type_use_cases.ipynb │ └── terms-use-cases │ │ ├── README.md │ │ └── terms_use_cases.ipynb ├── job-execution │ ├── README.md │ ├── job-execution.ipynb │ └── job-execution.py ├── mas-real-time-scoring │ ├── README.md │ ├── hmeq_test.csv │ ├── mas-real-time-scoring.ipynb │ └── mas-real-time-scoring.py ├── python-template-README.md ├── retail-pricing │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── end-to-end-api-examples.iml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── README.md │ ├── examples │ │ ├── data_loading_example.py │ │ ├── job_creation_example.py │ │ ├── job_creation_example_2.py │ │ ├── job_creation_example_3.py │ │ ├── lifecycle_example.py │ │ ├── lifecycle_example2.py │ │ ├── lifecycle_example3.py │ │ └── lifecycle_example4.py │ ├── pricing_optimization.py │ └── schema_collection.py └── text-analytics-scoring │ ├── concepts-categories │ ├── README.md │ ├── text-analytics-concepts-categories.ipynb │ └── text-analytics-concepts-categories.py │ ├── readme.MD │ └── sentiment │ ├── README.md │ ├── text-analytics-sentiment.ipynb │ └── text-analytics-sentiment.py └── r ├── README.md ├── authentication ├── authentication-r.ipynb ├── authentication-r.r ├── get-access-token-r.ipynb ├── get-access-token-r.r └── readme.md ├── job-execution ├── README.md ├── job-definition-crud-r.ipynb ├── job-execution-r.ipynb ├── job_definition-crud-r.r └── job_execution-r.r └── r-template-README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ContributorAgreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/ContributorAgreement.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/README.md -------------------------------------------------------------------------------- /authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/authentication/README.md -------------------------------------------------------------------------------- /authentication/scripts/generateToken_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/authentication/scripts/generateToken_Python.ipynb -------------------------------------------------------------------------------- /authentication/scripts/getAccessToken_fromRefreshToken.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/authentication/scripts/getAccessToken_fromRefreshToken.ipynb -------------------------------------------------------------------------------- /authentication/scripts/registerClient_generateToken_AdminUser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/authentication/scripts/registerClient_generateToken_AdminUser.ipynb -------------------------------------------------------------------------------- /authentication/scripts/registerClient_generateToken_AuthCode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/authentication/scripts/registerClient_generateToken_AuthCode.ipynb -------------------------------------------------------------------------------- /images/repo-video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/images/repo-video.jpg -------------------------------------------------------------------------------- /import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/import.csv -------------------------------------------------------------------------------- /postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/README.md -------------------------------------------------------------------------------- /postman/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/authentication/README.md -------------------------------------------------------------------------------- /postman/authentication/authentication-process.postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/authentication/authentication-process.postman-collection.json -------------------------------------------------------------------------------- /postman/auto-machine-learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/auto-machine-learning/README.md -------------------------------------------------------------------------------- /postman/auto-machine-learning/auto-machine-learning-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/auto-machine-learning/auto-machine-learning-postman-collection.json -------------------------------------------------------------------------------- /postman/catalog/create-and-run-discovery-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/create-and-run-discovery-agent/README.md -------------------------------------------------------------------------------- /postman/catalog/create-and-run-discovery-agent/create-and-run-discovery-agent.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/create-and-run-discovery-agent/create-and-run-discovery-agent.postman_collection.json -------------------------------------------------------------------------------- /postman/catalog/create-and-search-on-tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/create-and-search-on-tags/README.md -------------------------------------------------------------------------------- /postman/catalog/create-and-search-on-tags/create-and-search-on-tags.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/create-and-search-on-tags/create-and-search-on-tags.postman_collection.json -------------------------------------------------------------------------------- /postman/catalog/create-and-use-asset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/create-and-use-asset/README.md -------------------------------------------------------------------------------- /postman/catalog/create-and-use-asset/create-and-use-asset.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/create-and-use-asset/create-and-use-asset.postman_collection.json -------------------------------------------------------------------------------- /postman/catalog/download-upload-to-cas-profiled-metrics-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/download-upload-to-cas-profiled-metrics-data/README.md -------------------------------------------------------------------------------- /postman/catalog/download-upload-to-cas-profiled-metrics-data/download-upload-to-cas-profiled-metrics-data.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/download-upload-to-cas-profiled-metrics-data/download-upload-to-cas-profiled-metrics-data.postman_collection.json -------------------------------------------------------------------------------- /postman/catalog/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/overview.md -------------------------------------------------------------------------------- /postman/catalog/sasserver.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/sasserver.postman_environment.json -------------------------------------------------------------------------------- /postman/catalog/use-search-to-lookup-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/use-search-to-lookup-resources/README.md -------------------------------------------------------------------------------- /postman/catalog/use-search-to-lookup-resources/use-search-to-lookup-resources.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/catalog/use-search-to-lookup-resources/use-search-to-lookup-resources.postman_collection.json -------------------------------------------------------------------------------- /postman/glossary/drafts-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/drafts-use-cases/README.md -------------------------------------------------------------------------------- /postman/glossary/drafts-use-cases/drafts-use-cases.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/drafts-use-cases/drafts-use-cases.postman_collection.json -------------------------------------------------------------------------------- /postman/glossary/import-terms-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/import-terms-use-cases/README.md -------------------------------------------------------------------------------- /postman/glossary/import-terms-use-cases/import-terms-use-case.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/import-terms-use-cases/import-terms-use-case.postman_collection.json -------------------------------------------------------------------------------- /postman/glossary/term-type-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/term-type-use-cases/README.md -------------------------------------------------------------------------------- /postman/glossary/term-type-use-cases/term-types-use-case.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/term-type-use-cases/term-types-use-case.postman_collection.json -------------------------------------------------------------------------------- /postman/glossary/terms-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/terms-use-cases/README.md -------------------------------------------------------------------------------- /postman/glossary/terms-use-cases/terms-use-case.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/glossary/terms-use-cases/terms-use-case.postman_collection.json -------------------------------------------------------------------------------- /postman/job-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/job-execution/README.md -------------------------------------------------------------------------------- /postman/job-execution/job-execution-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/job-execution/job-execution-postman-collection.json -------------------------------------------------------------------------------- /postman/mas-real-time-scoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/mas-real-time-scoring/README.md -------------------------------------------------------------------------------- /postman/mas-real-time-scoring/mas-real-time-scoring-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/mas-real-time-scoring/mas-real-time-scoring-postman-collection.json -------------------------------------------------------------------------------- /postman/modeling-and-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/modeling-and-deployment/README.md -------------------------------------------------------------------------------- /postman/modeling-and-deployment/modeling-and-deployment-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/modeling-and-deployment/modeling-and-deployment-postman-collection.json -------------------------------------------------------------------------------- /postman/open-source-modeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/open-source-modeling/README.md -------------------------------------------------------------------------------- /postman/open-source-modeling/data/HMEQPERFSCORED_1_Q1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/open-source-modeling/data/HMEQPERFSCORED_1_Q1.csv -------------------------------------------------------------------------------- /postman/open-source-modeling/data/gboost_obj_3_6_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/open-source-modeling/data/gboost_obj_3_6_5.pkl -------------------------------------------------------------------------------- /postman/open-source-modeling/data/gboost_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/open-source-modeling/data/gboost_score.py -------------------------------------------------------------------------------- /postman/open-source-modeling/data/gboost_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/open-source-modeling/data/gboost_train.py -------------------------------------------------------------------------------- /postman/open-source-modeling/open-source-modeling-and-deployment-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/open-source-modeling/open-source-modeling-and-deployment-postman-collection.json -------------------------------------------------------------------------------- /postman/postman-template-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/postman-template-README.md -------------------------------------------------------------------------------- /postman/text-analytics-scoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/text-analytics-scoring/README.md -------------------------------------------------------------------------------- /postman/text-analytics-scoring/concepts-categories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/text-analytics-scoring/concepts-categories/README.md -------------------------------------------------------------------------------- /postman/text-analytics-scoring/concepts-categories/data/RESTAURANT_REVIEWS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/text-analytics-scoring/concepts-categories/data/RESTAURANT_REVIEWS.csv -------------------------------------------------------------------------------- /postman/text-analytics-scoring/concepts-categories/text-analytics-concepts-categories-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/text-analytics-scoring/concepts-categories/text-analytics-concepts-categories-postman-collection.json -------------------------------------------------------------------------------- /postman/text-analytics-scoring/sentiment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/text-analytics-scoring/sentiment/README.md -------------------------------------------------------------------------------- /postman/text-analytics-scoring/sentiment/text-analytics-sentiment-postman-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/postman/text-analytics-scoring/sentiment/text-analytics-sentiment-postman-collection.json -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/README.md -------------------------------------------------------------------------------- /python/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/README.md -------------------------------------------------------------------------------- /python/authentication/access_token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/access_token.txt -------------------------------------------------------------------------------- /python/authentication/authentication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/authentication.ipynb -------------------------------------------------------------------------------- /python/authentication/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/authentication.py -------------------------------------------------------------------------------- /python/authentication/get-access-token.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/get-access-token.ipynb -------------------------------------------------------------------------------- /python/authentication/get-access-token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/get-access-token.py -------------------------------------------------------------------------------- /python/authentication/refresh_token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/refresh_token.txt -------------------------------------------------------------------------------- /python/authentication/registerClient_generateToken_Python_2023.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/registerClient_generateToken_Python_2023.ipynb -------------------------------------------------------------------------------- /python/authentication/registerClient_generateToken_Python_pre2023.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/authentication/registerClient_generateToken_Python_pre2023.ipynb -------------------------------------------------------------------------------- /python/auto-machine-learning/auto-machine-learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/auto-machine-learning/auto-machine-learning.ipynb -------------------------------------------------------------------------------- /python/auto-machine-learning/auto-machine-learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/auto-machine-learning/auto-machine-learning.py -------------------------------------------------------------------------------- /python/auto-machine-learning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/auto-machine-learning/readme.md -------------------------------------------------------------------------------- /python/catalog/create-and-run-discovery-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/create-and-run-discovery-agent/README.md -------------------------------------------------------------------------------- /python/catalog/create-and-run-discovery-agent/create-and-run-discovery-agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/create-and-run-discovery-agent/create-and-run-discovery-agent.ipynb -------------------------------------------------------------------------------- /python/catalog/create-and-search-on-tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/create-and-search-on-tags/README.md -------------------------------------------------------------------------------- /python/catalog/create-and-search-on-tags/create-and-search-on-tags.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/create-and-search-on-tags/create-and-search-on-tags.ipynb -------------------------------------------------------------------------------- /python/catalog/create-and-use-asset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/create-and-use-asset/README.md -------------------------------------------------------------------------------- /python/catalog/create-and-use-asset/create-and-use-asset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/create-and-use-asset/create-and-use-asset.ipynb -------------------------------------------------------------------------------- /python/catalog/download-upload-to-cas-profiled-metrics-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/download-upload-to-cas-profiled-metrics-data/README.md -------------------------------------------------------------------------------- /python/catalog/download-upload-to-cas-profiled-metrics-data/download-upload-to-cas-profiled-metrics-data_requests_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/download-upload-to-cas-profiled-metrics-data/download-upload-to-cas-profiled-metrics-data_requests_notebook.ipynb -------------------------------------------------------------------------------- /python/catalog/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/overview.md -------------------------------------------------------------------------------- /python/catalog/use-search-to-lookup-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/use-search-to-lookup-resources/README.md -------------------------------------------------------------------------------- /python/catalog/use-search-to-lookup-resources/use-search-to-lookup-resources.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/catalog/use-search-to-lookup-resources/use-search-to-lookup-resources.ipynb -------------------------------------------------------------------------------- /python/execute-sas-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/execute-sas-code/README.md -------------------------------------------------------------------------------- /python/execute-sas-code/execute-sas-code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/execute-sas-code/execute-sas-code.ipynb -------------------------------------------------------------------------------- /python/execute-sas-code/execute-sas-code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/execute-sas-code/execute-sas-code.py -------------------------------------------------------------------------------- /python/glossary/drafts-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/drafts-use-cases/README.md -------------------------------------------------------------------------------- /python/glossary/drafts-use-cases/drafts_use_cases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/drafts-use-cases/drafts_use_cases.ipynb -------------------------------------------------------------------------------- /python/glossary/import-terms-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/import-terms-use-cases/README.md -------------------------------------------------------------------------------- /python/glossary/import-terms-use-cases/import_terms_use_cases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/import-terms-use-cases/import_terms_use_cases.ipynb -------------------------------------------------------------------------------- /python/glossary/term-type-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/term-type-use-cases/README.md -------------------------------------------------------------------------------- /python/glossary/term-type-use-cases/term_type_use_cases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/term-type-use-cases/term_type_use_cases.ipynb -------------------------------------------------------------------------------- /python/glossary/terms-use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/terms-use-cases/README.md -------------------------------------------------------------------------------- /python/glossary/terms-use-cases/terms_use_cases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/glossary/terms-use-cases/terms_use_cases.ipynb -------------------------------------------------------------------------------- /python/job-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/job-execution/README.md -------------------------------------------------------------------------------- /python/job-execution/job-execution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/job-execution/job-execution.ipynb -------------------------------------------------------------------------------- /python/job-execution/job-execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/job-execution/job-execution.py -------------------------------------------------------------------------------- /python/mas-real-time-scoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/mas-real-time-scoring/README.md -------------------------------------------------------------------------------- /python/mas-real-time-scoring/hmeq_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/mas-real-time-scoring/hmeq_test.csv -------------------------------------------------------------------------------- /python/mas-real-time-scoring/mas-real-time-scoring.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/mas-real-time-scoring/mas-real-time-scoring.ipynb -------------------------------------------------------------------------------- /python/mas-real-time-scoring/mas-real-time-scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/mas-real-time-scoring/mas-real-time-scoring.py -------------------------------------------------------------------------------- /python/python-template-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/python-template-README.md -------------------------------------------------------------------------------- /python/retail-pricing/.gitignore: -------------------------------------------------------------------------------- 1 | conf.ini 2 | -------------------------------------------------------------------------------- /python/retail-pricing/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /python/retail-pricing/.idea/end-to-end-api-examples.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/.idea/end-to-end-api-examples.iml -------------------------------------------------------------------------------- /python/retail-pricing/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /python/retail-pricing/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /python/retail-pricing/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/.idea/misc.xml -------------------------------------------------------------------------------- /python/retail-pricing/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/.idea/modules.xml -------------------------------------------------------------------------------- /python/retail-pricing/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/.idea/vcs.xml -------------------------------------------------------------------------------- /python/retail-pricing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/README.md -------------------------------------------------------------------------------- /python/retail-pricing/examples/data_loading_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/data_loading_example.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/job_creation_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/job_creation_example.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/job_creation_example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/job_creation_example_2.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/job_creation_example_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/job_creation_example_3.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/lifecycle_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/lifecycle_example.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/lifecycle_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/lifecycle_example2.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/lifecycle_example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/lifecycle_example3.py -------------------------------------------------------------------------------- /python/retail-pricing/examples/lifecycle_example4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/examples/lifecycle_example4.py -------------------------------------------------------------------------------- /python/retail-pricing/pricing_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/pricing_optimization.py -------------------------------------------------------------------------------- /python/retail-pricing/schema_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/retail-pricing/schema_collection.py -------------------------------------------------------------------------------- /python/text-analytics-scoring/concepts-categories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/concepts-categories/README.md -------------------------------------------------------------------------------- /python/text-analytics-scoring/concepts-categories/text-analytics-concepts-categories.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/concepts-categories/text-analytics-concepts-categories.ipynb -------------------------------------------------------------------------------- /python/text-analytics-scoring/concepts-categories/text-analytics-concepts-categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/concepts-categories/text-analytics-concepts-categories.py -------------------------------------------------------------------------------- /python/text-analytics-scoring/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/readme.MD -------------------------------------------------------------------------------- /python/text-analytics-scoring/sentiment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/sentiment/README.md -------------------------------------------------------------------------------- /python/text-analytics-scoring/sentiment/text-analytics-sentiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/sentiment/text-analytics-sentiment.ipynb -------------------------------------------------------------------------------- /python/text-analytics-scoring/sentiment/text-analytics-sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/python/text-analytics-scoring/sentiment/text-analytics-sentiment.py -------------------------------------------------------------------------------- /r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/README.md -------------------------------------------------------------------------------- /r/authentication/authentication-r.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/authentication/authentication-r.ipynb -------------------------------------------------------------------------------- /r/authentication/authentication-r.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/authentication/authentication-r.r -------------------------------------------------------------------------------- /r/authentication/get-access-token-r.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/authentication/get-access-token-r.ipynb -------------------------------------------------------------------------------- /r/authentication/get-access-token-r.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/authentication/get-access-token-r.r -------------------------------------------------------------------------------- /r/authentication/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/authentication/readme.md -------------------------------------------------------------------------------- /r/job-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/job-execution/README.md -------------------------------------------------------------------------------- /r/job-execution/job-definition-crud-r.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/job-execution/job-definition-crud-r.ipynb -------------------------------------------------------------------------------- /r/job-execution/job-execution-r.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/job-execution/job-execution-r.ipynb -------------------------------------------------------------------------------- /r/job-execution/job_definition-crud-r.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/job-execution/job_definition-crud-r.r -------------------------------------------------------------------------------- /r/job-execution/job_execution-r.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/job-execution/job_execution-r.r -------------------------------------------------------------------------------- /r/r-template-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/rest-api-use-cases/HEAD/r/r-template-README.md --------------------------------------------------------------------------------