diff --git a/stubs/influxdb-client/METADATA.toml b/stubs/influxdb-client/METADATA.toml index 6bc16f3e5..3357b027b 100644 --- a/stubs/influxdb-client/METADATA.toml +++ b/stubs/influxdb-client/METADATA.toml @@ -1,4 +1,4 @@ -version = "1.36.*" +version = "1.37.*" upstream_repository = "https://github.com/influxdata/influxdb-client-python" requires = ["types-urllib3"] diff --git a/stubs/influxdb-client/influxdb_client/domain/band_view_properties.pyi b/stubs/influxdb-client/influxdb_client/domain/band_view_properties.pyi index bec457b43..b55127a7f 100644 --- a/stubs/influxdb-client/influxdb_client/domain/band_view_properties.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/band_view_properties.pyi @@ -8,6 +8,7 @@ class BandViewProperties(ViewProperties): discriminator: Incomplete def __init__( self, + adaptive_zoom_hide: bool | None = None, time_format: Incomplete | None = None, type: Incomplete | None = None, queries: Incomplete | None = None, @@ -37,6 +38,7 @@ class BandViewProperties(ViewProperties): legend_opacity: Incomplete | None = None, legend_orientation_threshold: Incomplete | None = None, ) -> None: ... + adaptive_zoom_hide: bool | None @property def time_format(self): ... @time_format.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/bucket_retention_rules.pyi b/stubs/influxdb-client/influxdb_client/domain/bucket_retention_rules.pyi index 48fc25543..d858aaf36 100644 --- a/stubs/influxdb-client/influxdb_client/domain/bucket_retention_rules.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/bucket_retention_rules.pyi @@ -5,19 +5,13 @@ class BucketRetentionRules: attribute_map: Incomplete discriminator: Incomplete def __init__( - self, - type: str = "expire", - every_seconds: Incomplete | None = None, - shard_group_duration_seconds: Incomplete | None = None, + self, type: str = "expire", every_seconds: int = 2592000, shard_group_duration_seconds: int | None = None ) -> None: ... @property def type(self): ... @type.setter def type(self, type) -> None: ... - @property - def every_seconds(self): ... - @every_seconds.setter - def every_seconds(self, every_seconds) -> None: ... + every_seconds: int @property def shard_group_duration_seconds(self): ... @shard_group_duration_seconds.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/check_view_properties.pyi b/stubs/influxdb-client/influxdb_client/domain/check_view_properties.pyi index ce42cd3eb..ddf7c7d5c 100644 --- a/stubs/influxdb-client/influxdb_client/domain/check_view_properties.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/check_view_properties.pyi @@ -8,6 +8,7 @@ class CheckViewProperties(ViewProperties): discriminator: Incomplete def __init__( self, + adaptive_zoom_hide: bool | None = None, type: Incomplete | None = None, shape: Incomplete | None = None, check_id: Incomplete | None = None, @@ -19,6 +20,7 @@ class CheckViewProperties(ViewProperties): legend_opacity: Incomplete | None = None, legend_orientation_threshold: Incomplete | None = None, ) -> None: ... + adaptive_zoom_hide: bool | None @property def type(self): ... @type.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/dbrp.pyi b/stubs/influxdb-client/influxdb_client/domain/dbrp.pyi index 2b6510fd1..2272a3cf1 100644 --- a/stubs/influxdb-client/influxdb_client/domain/dbrp.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/dbrp.pyi @@ -12,6 +12,7 @@ class DBRP: database: Incomplete | None = None, retention_policy: Incomplete | None = None, default: Incomplete | None = None, + virtual: bool | None = None, links: Incomplete | None = None, ) -> None: ... @property @@ -38,6 +39,7 @@ class DBRP: def default(self): ... @default.setter def default(self, default) -> None: ... + virtual: bool | None @property def links(self): ... @links.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/dbrp_create.pyi b/stubs/influxdb-client/influxdb_client/domain/dbrp_create.pyi index d4d10b092..890659261 100644 --- a/stubs/influxdb-client/influxdb_client/domain/dbrp_create.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/dbrp_create.pyi @@ -6,21 +6,15 @@ class DBRPCreate: discriminator: Incomplete def __init__( self, - org_id: Incomplete | None = None, - org: Incomplete | None = None, + org: str | None = None, + org_id: str | None = None, bucket_id: Incomplete | None = None, database: Incomplete | None = None, retention_policy: Incomplete | None = None, default: Incomplete | None = None, ) -> None: ... - @property - def org_id(self): ... - @org_id.setter - def org_id(self, org_id) -> None: ... - @property - def org(self): ... - @org.setter - def org(self, org) -> None: ... + org: str | None + org_id: str | None @property def bucket_id(self): ... @bucket_id.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/heatmap_view_properties.pyi b/stubs/influxdb-client/influxdb_client/domain/heatmap_view_properties.pyi index a8b719b91..3a2a4315d 100644 --- a/stubs/influxdb-client/influxdb_client/domain/heatmap_view_properties.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/heatmap_view_properties.pyi @@ -8,6 +8,7 @@ class HeatmapViewProperties(ViewProperties): discriminator: Incomplete def __init__( self, + adaptive_zoom_hide: bool | None = None, time_format: Incomplete | None = None, type: Incomplete | None = None, queries: Incomplete | None = None, @@ -39,6 +40,7 @@ class HeatmapViewProperties(ViewProperties): legend_opacity: Incomplete | None = None, legend_orientation_threshold: Incomplete | None = None, ) -> None: ... + adaptive_zoom_hide: bool | None @property def time_format(self): ... @time_format.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/line_plus_single_stat_properties.pyi b/stubs/influxdb-client/influxdb_client/domain/line_plus_single_stat_properties.pyi index 4196ee7c5..2a0f47f70 100644 --- a/stubs/influxdb-client/influxdb_client/domain/line_plus_single_stat_properties.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/line_plus_single_stat_properties.pyi @@ -8,6 +8,7 @@ class LinePlusSingleStatProperties(ViewProperties): discriminator: Incomplete def __init__( self, + adaptive_zoom_hide: bool | None = None, time_format: Incomplete | None = None, type: Incomplete | None = None, queries: Incomplete | None = None, @@ -38,6 +39,7 @@ class LinePlusSingleStatProperties(ViewProperties): legend_opacity: Incomplete | None = None, legend_orientation_threshold: Incomplete | None = None, ) -> None: ... + adaptive_zoom_hide: bool | None @property def time_format(self): ... @time_format.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/organization.pyi b/stubs/influxdb-client/influxdb_client/domain/organization.pyi index c7e9f3145..4988fa6c2 100644 --- a/stubs/influxdb-client/influxdb_client/domain/organization.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/organization.pyi @@ -9,6 +9,7 @@ class Organization: links: Incomplete | None = None, id: Incomplete | None = None, name: Incomplete | None = None, + default_storage_type: str | None = None, description: Incomplete | None = None, created_at: Incomplete | None = None, updated_at: Incomplete | None = None, @@ -26,6 +27,7 @@ class Organization: def name(self): ... @name.setter def name(self, name) -> None: ... + default_storage_type: str | None @property def description(self): ... @description.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/patch_retention_rule.pyi b/stubs/influxdb-client/influxdb_client/domain/patch_retention_rule.pyi index 1bb5f51b7..876202eb4 100644 --- a/stubs/influxdb-client/influxdb_client/domain/patch_retention_rule.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/patch_retention_rule.pyi @@ -5,19 +5,13 @@ class PatchRetentionRule: attribute_map: Incomplete discriminator: Incomplete def __init__( - self, - type: str = "expire", - every_seconds: Incomplete | None = None, - shard_group_duration_seconds: Incomplete | None = None, + self, type: str = "expire", every_seconds: int = 2592000, shard_group_duration_seconds: int | None = None ) -> None: ... @property def type(self): ... @type.setter def type(self, type) -> None: ... - @property - def every_seconds(self): ... - @every_seconds.setter - def every_seconds(self, every_seconds) -> None: ... + every_seconds: int @property def shard_group_duration_seconds(self): ... @shard_group_duration_seconds.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/post_bucket_request.pyi b/stubs/influxdb-client/influxdb_client/domain/post_bucket_request.pyi index 6024849e6..da5f69cac 100644 --- a/stubs/influxdb-client/influxdb_client/domain/post_bucket_request.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/post_bucket_request.pyi @@ -9,7 +9,7 @@ class PostBucketRequest: org_id: Incomplete | None = None, name: Incomplete | None = None, description: Incomplete | None = None, - rp: Incomplete | None = None, + rp: str = "0", retention_rules: Incomplete | None = None, schema_type: Incomplete | None = None, ) -> None: ... @@ -25,10 +25,7 @@ class PostBucketRequest: def description(self): ... @description.setter def description(self, description) -> None: ... - @property - def rp(self): ... - @rp.setter - def rp(self, rp) -> None: ... + rp: str @property def retention_rules(self): ... @retention_rules.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/replication.pyi b/stubs/influxdb-client/influxdb_client/domain/replication.pyi index 465a23943..b095e5385 100644 --- a/stubs/influxdb-client/influxdb_client/domain/replication.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/replication.pyi @@ -13,8 +13,10 @@ class Replication: remote_id: Incomplete | None = None, local_bucket_id: Incomplete | None = None, remote_bucket_id: Incomplete | None = None, + remote_bucket_name: str | None = None, max_queue_size_bytes: Incomplete | None = None, current_queue_size_bytes: Incomplete | None = None, + remaining_bytes_to_be_synced: int | None = None, latest_response_code: Incomplete | None = None, latest_error_message: Incomplete | None = None, drop_non_retryable_data: Incomplete | None = None, @@ -47,6 +49,7 @@ class Replication: def remote_bucket_id(self): ... @remote_bucket_id.setter def remote_bucket_id(self, remote_bucket_id) -> None: ... + remote_bucket_name: str | None @property def max_queue_size_bytes(self): ... @max_queue_size_bytes.setter @@ -55,6 +58,7 @@ class Replication: def current_queue_size_bytes(self): ... @current_queue_size_bytes.setter def current_queue_size_bytes(self, current_queue_size_bytes) -> None: ... + remaining_bytes_to_be_synced: int | None @property def latest_response_code(self): ... @latest_response_code.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/replication_creation_request.pyi b/stubs/influxdb-client/influxdb_client/domain/replication_creation_request.pyi index b1b34a2cb..8807bf320 100644 --- a/stubs/influxdb-client/influxdb_client/domain/replication_creation_request.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/replication_creation_request.pyi @@ -12,8 +12,10 @@ class ReplicationCreationRequest: remote_id: Incomplete | None = None, local_bucket_id: Incomplete | None = None, remote_bucket_id: Incomplete | None = None, + remote_bucket_name: str | None = None, max_queue_size_bytes: int = 67108860, drop_non_retryable_data: bool = False, + max_age_seconds: int = 604800, ) -> None: ... @property def name(self): ... @@ -39,6 +41,7 @@ class ReplicationCreationRequest: def remote_bucket_id(self): ... @remote_bucket_id.setter def remote_bucket_id(self, remote_bucket_id) -> None: ... + remote_bucket_name: str | None @property def max_queue_size_bytes(self): ... @max_queue_size_bytes.setter @@ -47,6 +50,7 @@ class ReplicationCreationRequest: def drop_non_retryable_data(self): ... @drop_non_retryable_data.setter def drop_non_retryable_data(self, drop_non_retryable_data) -> None: ... + max_age_seconds: int def to_dict(self): ... def to_str(self): ... def __eq__(self, other): ... diff --git a/stubs/influxdb-client/influxdb_client/domain/replication_update_request.pyi b/stubs/influxdb-client/influxdb_client/domain/replication_update_request.pyi index 656f5d4a2..328f9a8ac 100644 --- a/stubs/influxdb-client/influxdb_client/domain/replication_update_request.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/replication_update_request.pyi @@ -10,8 +10,10 @@ class ReplicationUpdateRequest: description: Incomplete | None = None, remote_id: Incomplete | None = None, remote_bucket_id: Incomplete | None = None, + remote_bucket_name: str | None = None, max_queue_size_bytes: Incomplete | None = None, drop_non_retryable_data: Incomplete | None = None, + max_age_seconds: int | None = None, ) -> None: ... @property def name(self): ... @@ -29,6 +31,7 @@ class ReplicationUpdateRequest: def remote_bucket_id(self): ... @remote_bucket_id.setter def remote_bucket_id(self, remote_bucket_id) -> None: ... + remote_bucket_name: str | None @property def max_queue_size_bytes(self): ... @max_queue_size_bytes.setter @@ -37,6 +40,7 @@ class ReplicationUpdateRequest: def drop_non_retryable_data(self): ... @drop_non_retryable_data.setter def drop_non_retryable_data(self, drop_non_retryable_data) -> None: ... + max_age_seconds: int | None def to_dict(self): ... def to_str(self): ... def __eq__(self, other): ... diff --git a/stubs/influxdb-client/influxdb_client/domain/resource_member.pyi b/stubs/influxdb-client/influxdb_client/domain/resource_member.pyi index 41d4d7554..44799808d 100644 --- a/stubs/influxdb-client/influxdb_client/domain/resource_member.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/resource_member.pyi @@ -10,7 +10,6 @@ class ResourceMember(UserResponse): self, role: str = "member", id: Incomplete | None = None, - oauth_id: Incomplete | None = None, name: Incomplete | None = None, status: str = "active", links: Incomplete | None = None, diff --git a/stubs/influxdb-client/influxdb_client/domain/resource_owner.pyi b/stubs/influxdb-client/influxdb_client/domain/resource_owner.pyi index 5ea9bb5b0..7ff699bfb 100644 --- a/stubs/influxdb-client/influxdb_client/domain/resource_owner.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/resource_owner.pyi @@ -10,7 +10,6 @@ class ResourceOwner(UserResponse): self, role: str = "owner", id: Incomplete | None = None, - oauth_id: Incomplete | None = None, name: Incomplete | None = None, status: str = "active", links: Incomplete | None = None, diff --git a/stubs/influxdb-client/influxdb_client/domain/run.pyi b/stubs/influxdb-client/influxdb_client/domain/run.pyi index 936d75b38..cb0623fed 100644 --- a/stubs/influxdb-client/influxdb_client/domain/run.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/run.pyi @@ -11,6 +11,7 @@ class Run: status: Incomplete | None = None, scheduled_for: Incomplete | None = None, log: Incomplete | None = None, + flux: str | None = None, started_at: Incomplete | None = None, finished_at: Incomplete | None = None, requested_at: Incomplete | None = None, @@ -36,6 +37,7 @@ class Run: def log(self): ... @log.setter def log(self, log) -> None: ... + flux: str | None @property def started_at(self): ... @started_at.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/scatter_view_properties.pyi b/stubs/influxdb-client/influxdb_client/domain/scatter_view_properties.pyi index 872f2a194..8968aabff 100644 --- a/stubs/influxdb-client/influxdb_client/domain/scatter_view_properties.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/scatter_view_properties.pyi @@ -8,6 +8,7 @@ class ScatterViewProperties(ViewProperties): discriminator: Incomplete def __init__( self, + adaptive_zoom_hide: bool | None = None, time_format: Incomplete | None = None, type: Incomplete | None = None, queries: Incomplete | None = None, @@ -40,6 +41,7 @@ class ScatterViewProperties(ViewProperties): legend_opacity: Incomplete | None = None, legend_orientation_threshold: Incomplete | None = None, ) -> None: ... + adaptive_zoom_hide: bool | None @property def time_format(self): ... @time_format.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/script_language.pyi b/stubs/influxdb-client/influxdb_client/domain/script_language.pyi index 8b969d83a..bedb98e43 100644 --- a/stubs/influxdb-client/influxdb_client/domain/script_language.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/script_language.pyi @@ -1,11 +1,15 @@ from _typeshed import Incomplete +from typing import ClassVar +from typing_extensions import Final class ScriptLanguage: - FLUX: str - openapi_types: Incomplete - attribute_map: Incomplete - def __init__(self) -> None: ... - def to_dict(self): ... - def to_str(self): ... - def __eq__(self, other): ... - def __ne__(self, other): ... + FLUX: Final = "flux" + SQL: Final = "sql" + INFLUXQL: Final = "influxql" + + openapi_types: ClassVar[dict[Incomplete, Incomplete]] + attribute_map: ClassVar[dict[Incomplete, Incomplete]] + def to_dict(self) -> dict[Incomplete, Incomplete]: ... + def to_str(self) -> str: ... + def __eq__(self, other: object) -> bool: ... + def __ne__(self, other: object) -> bool: ... diff --git a/stubs/influxdb-client/influxdb_client/domain/script_update_request.pyi b/stubs/influxdb-client/influxdb_client/domain/script_update_request.pyi index 2fd5a755f..9c79ca906 100644 --- a/stubs/influxdb-client/influxdb_client/domain/script_update_request.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/script_update_request.pyi @@ -4,13 +4,7 @@ class ScriptUpdateRequest: openapi_types: Incomplete attribute_map: Incomplete discriminator: Incomplete - def __init__( - self, name: Incomplete | None = None, description: Incomplete | None = None, script: Incomplete | None = None - ) -> None: ... - @property - def name(self): ... - @name.setter - def name(self, name) -> None: ... + def __init__(self, description: Incomplete | None = None, script: Incomplete | None = None) -> None: ... @property def description(self): ... @description.setter diff --git a/stubs/influxdb-client/influxdb_client/domain/task.pyi b/stubs/influxdb-client/influxdb_client/domain/task.pyi index 7b4dcb9b3..84140e219 100644 --- a/stubs/influxdb-client/influxdb_client/domain/task.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/task.pyi @@ -7,7 +7,6 @@ class Task: def __init__( self, id: Incomplete | None = None, - type: Incomplete | None = None, org_id: Incomplete | None = None, org: Incomplete | None = None, name: Incomplete | None = None, @@ -32,10 +31,6 @@ class Task: @id.setter def id(self, id) -> None: ... @property - def type(self): ... - @type.setter - def type(self, type) -> None: ... - @property def org_id(self): ... @org_id.setter def org_id(self, org_id) -> None: ... diff --git a/stubs/influxdb-client/influxdb_client/domain/user.pyi b/stubs/influxdb-client/influxdb_client/domain/user.pyi index 52a123e4e..658a357df 100644 --- a/stubs/influxdb-client/influxdb_client/domain/user.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/user.pyi @@ -4,22 +4,12 @@ class User: openapi_types: Incomplete attribute_map: Incomplete discriminator: Incomplete - def __init__( - self, - id: Incomplete | None = None, - oauth_id: Incomplete | None = None, - name: Incomplete | None = None, - status: str = "active", - ) -> None: ... + def __init__(self, id: Incomplete | None = None, name: Incomplete | None = None, status: str = "active") -> None: ... @property def id(self): ... @id.setter def id(self, id) -> None: ... @property - def oauth_id(self): ... - @oauth_id.setter - def oauth_id(self, oauth_id) -> None: ... - @property def name(self): ... @name.setter def name(self, name) -> None: ... diff --git a/stubs/influxdb-client/influxdb_client/domain/user_response.pyi b/stubs/influxdb-client/influxdb_client/domain/user_response.pyi index d9fcbdfb0..15f510b39 100644 --- a/stubs/influxdb-client/influxdb_client/domain/user_response.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/user_response.pyi @@ -7,7 +7,6 @@ class UserResponse: def __init__( self, id: Incomplete | None = None, - oauth_id: Incomplete | None = None, name: Incomplete | None = None, status: str = "active", links: Incomplete | None = None, @@ -17,10 +16,6 @@ class UserResponse: @id.setter def id(self, id) -> None: ... @property - def oauth_id(self): ... - @oauth_id.setter - def oauth_id(self, oauth_id) -> None: ... - @property def name(self): ... @name.setter def name(self, name) -> None: ... diff --git a/stubs/influxdb-client/influxdb_client/domain/xy_view_properties.pyi b/stubs/influxdb-client/influxdb_client/domain/xy_view_properties.pyi index 0d773fbf0..391e630ba 100644 --- a/stubs/influxdb-client/influxdb_client/domain/xy_view_properties.pyi +++ b/stubs/influxdb-client/influxdb_client/domain/xy_view_properties.pyi @@ -8,6 +8,7 @@ class XYViewProperties(ViewProperties): discriminator: Incomplete def __init__( self, + adaptive_zoom_hide: bool | None = None, time_format: Incomplete | None = None, type: Incomplete | None = None, queries: Incomplete | None = None, @@ -37,6 +38,7 @@ class XYViewProperties(ViewProperties): legend_opacity: Incomplete | None = None, legend_orientation_threshold: Incomplete | None = None, ) -> None: ... + adaptive_zoom_hide: bool | None @property def time_format(self): ... @time_format.setter diff --git a/stubs/influxdb-client/influxdb_client/service/config_service.pyi b/stubs/influxdb-client/influxdb_client/service/config_service.pyi index 4e10e286a..775053854 100644 --- a/stubs/influxdb-client/influxdb_client/service/config_service.pyi +++ b/stubs/influxdb-client/influxdb_client/service/config_service.pyi @@ -7,3 +7,6 @@ class ConfigService(_BaseService): def get_config(self, **kwargs): ... def get_config_with_http_info(self, **kwargs): ... async def get_config_async(self, **kwargs): ... + def get_flags(self, **kwargs): ... + def get_flags_with_http_info(self, **kwargs): ... + async def get_flags_async(self, **kwargs): ... diff --git a/stubs/influxdb-client/influxdb_client/service/invokable_scripts_service.pyi b/stubs/influxdb-client/influxdb_client/service/invokable_scripts_service.pyi index 041288f5f..71eea2db1 100644 --- a/stubs/influxdb-client/influxdb_client/service/invokable_scripts_service.pyi +++ b/stubs/influxdb-client/influxdb_client/service/invokable_scripts_service.pyi @@ -13,6 +13,9 @@ class InvokableScriptsService(_BaseService): def get_scripts_id(self, script_id, **kwargs): ... def get_scripts_id_with_http_info(self, script_id, **kwargs): ... async def get_scripts_id_async(self, script_id, **kwargs): ... + def get_scripts_id_params(self, script_id, **kwargs): ... + def get_scripts_id_params_with_http_info(self, script_id, **kwargs): ... + async def get_scripts_id_params_async(self, script_id, **kwargs): ... def patch_scripts_id(self, script_id, script_update_request, **kwargs): ... def patch_scripts_id_with_http_info(self, script_id, script_update_request, **kwargs): ... async def patch_scripts_id_async(self, script_id, script_update_request, **kwargs): ... diff --git a/stubs/influxdb-client/influxdb_client/service/users_service.pyi b/stubs/influxdb-client/influxdb_client/service/users_service.pyi index 17ab6a5e6..c4f52aab7 100644 --- a/stubs/influxdb-client/influxdb_client/service/users_service.pyi +++ b/stubs/influxdb-client/influxdb_client/service/users_service.pyi @@ -7,9 +7,6 @@ class UsersService(_BaseService): def delete_users_id(self, user_id, **kwargs): ... def delete_users_id_with_http_info(self, user_id, **kwargs): ... async def delete_users_id_async(self, user_id, **kwargs): ... - def get_flags(self, **kwargs): ... - def get_flags_with_http_info(self, **kwargs): ... - async def get_flags_async(self, **kwargs): ... def get_me(self, **kwargs): ... def get_me_with_http_info(self, **kwargs): ... async def get_me_async(self, **kwargs): ...