docs-v2/.gitignore

17 lines
207 B
Plaintext
Raw Normal View History

2018-12-13 18:48:25 +00:00
.DS_Store
*~
public
.*.swp
node_modules
.config*
**/.env*
2018-12-13 18:48:25 +00:00
*.log
2018-12-19 21:36:12 +00:00
/resources
.hugo_build.lock
feat(v3): Restructure API docs for v3 (#5408) * v3 management API Fixes #5397 - Adds an API reference doc for the HTTP management API openapi spec (https://github.com/influxdata/granite/blob/main/openapi.yaml) (Cloud Dedicated only) - Doesn't fetch changes for any specs except for the Management spec. - Adds summaries and fixes descriptions in spec overrides. - Removes versions in spec overrides. - Adds configuration for generating API reference docs, Hugo frontmatter, setting the default API (for the [product]/api/ URL) - Restructures `/api-docs` to better allow for multiple APIs (and customizations) per product - Adds `[product]/api/v2/` docs URL for cloud products (currently set as the "default" API, `[product]/api`) - Refactors `generate-api-docs` to remove specific conditions and use the new directory structure. - Redocly update fixes some theme formatting issues - Tested the following URLs: - http://localhost:1313/influxdb/v2/api/ - http://localhost:1313/influxdb/v2/api/v1-compatibility/ - http://localhost:1313/influxdb/cloud/api/ - http://localhost:1313/influxdb/cloud/api/v2/ - http://localhost:1313/influxdb/cloud-dedicated/api/ - http://localhost:1313/influxdb/cloud-dedicated/api/v2/ - http://localhost:1313/influxdb/cloud/api/v1-compatibility/ - http://localhost:1313/influxdb/cloud-dedicated/api/v1-compatibility/ - http://localhost:1313/influxdb/cloud-serverless/ - http://localhost:1313/influxdb/cloud-serverless/api/v2/ - http://localhost:1313/influxdb/cloud-serverless/api/v1-compatibility/ - http://localhost:1313/influxdb/clustered/api/ - http://localhost:1313/influxdb/clustered/api/v2/ - http://localhost:1313/influxdb/clustered/api/v1-compatibility/ * fix(v3): Remove Management API from menu * Update api-docs/cloud-dedicated/v2/content/info.yml * show management api in nav, update nav names --------- Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> Co-authored-by: Scott Anderson <scott@influxdata.com>
2024-04-09 23:02:12 +00:00
/content/influxdb/*/api/**/*.html
Document new API Invocable Scripts feature (was named-functions) (#3282) * feat: add api-guides/guides and guides/api-invocable-scripts for the API-invocable scripts (managed functions) feature (##2547, #2233). * feat: document API-invocable scripts. Add example for creating and invoking a script with POST. Unable to make GET work with query parameters. * feat: moved API-invocable scripts under api-guide. Remove guides directory. Add docs for list and find. Add example for list. Add shortcuts and glossary links. Verified with team-compute that GET /invoke and python are not supported yet. * feat: rename example function for simplicity since there's no GET for now. * feat: add find_and_update example (#2547). * feat: add update example. Clarify, expand invoke example. Add links. (#2547) * Update content/influxdb/cloud/api-guide/api-invocable-scripts/_index.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * fix: remove accidental commit of generated redoc-static.html * feat: manual update to cloud swagger. Merges meta, auth, tags, and x-tagGroups from src/cloud.yml to aggregate contracts/ref/cloud.yml. * fix: replace /functions with /scripts * feat: get swaggers from contracts/ref. Still requires copy-paste of info, tags, and auth from contracts/cloud.yml and contracts/oss.yml * feat: invocable scripts (#2547) * Update content/influxdb/cloud/api-guide/api-invocable-scripts/_index.md Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com> * feat: new section for params (#2547). * fix: swagger server url (#2547) * Update content/influxdb/cloud/api-guide/api-invocable-scripts/_index.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * feat: remove jq and function where there's no clear need. Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com>
2021-10-25 13:30:31 +00:00
/api-docs/redoc-static.html*
.vscode/*
Jts/api guides (#3862) * - Add tutorial that guides a developer through building a simplified IoT center app with client libraries. - device registration and authorization. - write and query--explain batch writes with the JS client library. * - feat: queries and visualizations with Giraffe library. queryToTable, Giraffe table. * feat(api-guide): revise intro, auth, example headings. * feat(api-guide): describe resources. describe auth and API tokens. - API basics * fix: influxdb and iot center setup * fix: update registration steps to include the new INFLUX_BUCKET_AUTH flow. * feat(api-guides): Add client library example to fetch routes. - install, links. - replace use of getIoTAuthorizations with query from getDevices. - breakdown create device API requests. - initial commit of API guide using Next.js with Influx client libraries. Project source at https://github.com/jstirnaman/nextjs-iot-starter. - explain the flow to register a device. Remove unused example code. TODO: document the setup and UI. - Add UI code samples. Revise headings. Explain API purpose. - UI component fixes and refactor. Input field takes a device ID, queries, and re-renders the list with results. Registration button submits device ID for a new authorization. * feat(api-guide): add iot-starter guide index page, fix errors - add the iot-starter directory and index page - fix tag errors and links. * feat: IoT starter navigation. * feat(api-guide): nav and intros. * wip: rearrange, move full examples to top of section and link to explainers. * chore: Shared intro shortcode for iot-starter tutorials. * fix: intros, navigation, and config instruction - Add intro shortcode for tutorials to share. - Organize navigation for language-specific tutorials (would prefer to unify as much as possible). - Update environment variable config instruction. * Feature/api guide python client (#4023) * adding placeholders into code * create_device not tested yet * everything working except flux query and filter query * fix: replace download button with spec link. (#4013) - Closes #3810 - Remove download button and add a link to the spec source in Github. * Enterprise 1.9.7 release notes (#4007) * added not under flux updates * updates based on feedback * changed release notes date * added requested update * added detail about script builder (#3995) * added detail about script builder * Update content/chronograf/v1.9/guides/querying-data.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * fix: async writes and deletes (#4015) - Correct handling of writes and deletes in cloud vs. oss (async vs. sync). - Cleanup redundancy in Troubleshooting. - Closes https://github.com/influxdata/DAR/issues/291 Co-authored-by: lwandzura <51929958+lwandzura@users.noreply.github.com> * Collect user feedback per page and restructure modals (#4014) * WIP feedback forms * WIP complete feedback lifecycles * finalize page feedback interactions Co-authored-by: kelseiv <47797004+kelseiv@users.noreply.github.com> * Revert "Enterprise 1.9.7 release notes (#4007)" (#4017) This reverts commit c6f4a99d7221f2bdd1e7d0cd0620b0763a7ea987. * hotfix: fix cli homebrew package name, closes #4022 * docs: add python iot guide * fix: remove .idea files * fix: remove .idea files and package-lock * fix: initial batch of fixes * fix: finished PR changes * Update content/influxdb/v2.2/api-guide/iot-starter/python.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md * Update content/influxdb/v2.2/api-guide/iot-starter/_index.md * Update content/influxdb/v2.2/api-guide/iot-starter/python.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.2/api-guide/iot-starter/python.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.2/api-guide/iot-starter/_index.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.2/api-guide/iot-starter/_index.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.2/api-guide/iot-starter/_index.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Delete _index.md Co-authored-by: Sunbrye Ly <sunbryely@Sunbryes-MacBook-Pro.local> Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com> Co-authored-by: lwandzura <51929958+lwandzura@users.noreply.github.com> Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> Co-authored-by: kelseiv <47797004+kelseiv@users.noreply.github.com> Co-authored-by: Scott Anderson <scott@influxdata.com> Co-authored-by: Sunbrye Ly <sunbryely@Sunbryes-MBP.lan> * chore: replace UI code with GH links, fix navigation. * feat: API client library tutorials - Cleanup py and js tutorials. - JS is still WIP. - Fix nav. * fix: Revise Node.js tutorial. * fix: Revise Python tutorial. * fix: Remove last bullet since Node.js tutorial isn't that far yet. * Update content/influxdb/v2.2/api-guide/tutorials/client-library-starter/_index.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.2/api-guide/tutorials/client-library-starter/nodejs.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * wip: Install and run the UI. * docs: fix instructions and move UI docs to iot-api-ui README. * fix: Update JS and Py tutorials with common UI. * fix: Update code samples in nodejs and python IoT starter tutorials. * fix: fixup. * fix: Cleanup code tabs. * fix: update toc * fix: iot-starter Fix examples. Cleanup. * fix: python restart * fix: Cleanup. * chore: add repo links * Add cloud, fix frontmatter. * fix: Remove links to sections. Co-authored-by: sunbryely-influxdata <101659702+sunbryely-influxdata@users.noreply.github.com> Co-authored-by: Sunbrye Ly <sunbryely@Sunbryes-MacBook-Pro.local> Co-authored-by: lwandzura <51929958+lwandzura@users.noreply.github.com> Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> Co-authored-by: kelseiv <47797004+kelseiv@users.noreply.github.com> Co-authored-by: Scott Anderson <scott@influxdata.com> Co-authored-by: Sunbrye Ly <sunbryely@Sunbryes-MBP.lan>
2022-06-16 00:15:46 +00:00
.idea
**/config.toml
package-lock.json
tmp