massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / boto / boto / s3 / tagging.pyi
1 from typing import Any, List
2
3 class Tag:
4     key: Any
5     value: Any
6     def __init__(self, key: Any | None = ..., value: Any | None = ...) -> None: ...
7     def startElement(self, name, attrs, connection): ...
8     def endElement(self, name, value, connection): ...
9     def to_xml(self): ...
10     def __eq__(self, other): ...
11
12 class TagSet(List[Tag]):
13     def startElement(self, name, attrs, connection): ...
14     def endElement(self, name, value, connection): ...
15     def add_tag(self, key, value): ...
16     def to_xml(self): ...
17
18 class Tags(List[TagSet]):
19     def startElement(self, name, attrs, connection): ...
20     def endElement(self, name, value, connection): ...
21     def to_xml(self): ...
22     def add_tag_set(self, tag_set): ...