Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f3346d9

Browse files
authoredNov 10, 2022
feat: add Explicit bucket schemas API (#528)
1 parent d515488 commit f3346d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1908
-133
lines changed
 

‎CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## 1.35.0 [unreleased]
22

3+
### Features
4+
1. [#528](https://github.com/influxdata/influxdb-client-python/pull/528): Add `BucketSchemasService` to manage explicit bucket schemas to enforce column names, tags, fields, and data types for your data
5+
36
### Bug Fixes
47
1. [#526](https://github.com/influxdata/influxdb-client-python/pull/526): Creating client instance from static configuration
58
1. [#531](https://github.com/influxdata/influxdb-client-python/pull/531): HTTP request return type for Management API [async/await]

‎examples/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,23 @@
2222
- [query_response_to_json.py](query_response_to_json.py) - How to serialize Query response to JSON
2323
- [query_with_profilers.py](query_with_profilers.py) - How to process profilers output by callback
2424

25-
2625
## Management API
2726
- [buckets_management.py](buckets_management.py) - How to create, list and delete Buckets
2827
- [monitoring_and_alerting.py](monitoring_and_alerting.py) - How to create the Check with Slack notification.
2928
- [task_example.py](task_example.py) - How to create a Task by API
3029
- [templates_management.py](templates_management.py) - How to use Templates and Stack API
3130

32-
## Others
31+
## InfluxDB Cloud
32+
33+
:warning: The following examples are related to [InfluxDB Cloud](https://docs.influxdata.com/influxdb/cloud/) and not available on a local InfluxDB OSS instance.
34+
3335
- [influx_cloud.py](influx_cloud.py) - How to connect to InfluxDB 2 Cloud
36+
- [invokable_scripts.py](invokable_scripts.py) - How to use Invokable scripts Cloud API to create custom endpoints that query data
37+
- [bucket_schemas.py](bucket_schemas.py) - How to manage explicit bucket schemas to enforce column names, tags, fields, and data types for your data
38+
39+
## Others
3440
- [influxdb_18_example.py](influxdb_18_example.py) - How to connect to InfluxDB 1.8
3541
- [nanosecond_precision.py](nanosecond_precision.py) - How to use nanoseconds precision
36-
- [invokable_scripts.py](invokable_scripts.py) - How to use Invokable scripts Cloud API to create custom endpoints that query data
3742
- [connection_check.py](connection_check.py) - How to check connection configuration
3843

3944
## Asynchronous

0 commit comments

Comments
 (0)
Please sign in to comment.