-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathvalidations_pb2.pyi
More file actions
125 lines (111 loc) · 4.58 KB
/
validations_pb2.pyi
File metadata and controls
125 lines (111 loc) · 4.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Copyright 2023-2025 Buf Technologies, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from buf.validate import validate_pb2 as _validate_pb2
from google.protobuf import timestamp_pb2 as _timestamp_pb2
from google.protobuf.internal import containers as _containers
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
DESCRIPTOR: _descriptor.FileDescriptor
class DoubleFinite(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: float
def __init__(self, val: _Optional[float] = ...) -> None: ...
class SFixed64ExLTGT(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: int
def __init__(self, val: _Optional[int] = ...) -> None: ...
class TestOneofMsg(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: bool
def __init__(self, val: bool = ...) -> None: ...
class Oneof(_message.Message):
__slots__ = ("x", "y", "z")
X_FIELD_NUMBER: _ClassVar[int]
Y_FIELD_NUMBER: _ClassVar[int]
Z_FIELD_NUMBER: _ClassVar[int]
x: str
y: int
z: TestOneofMsg
def __init__(self, x: _Optional[str] = ..., y: _Optional[int] = ..., z: _Optional[_Union[TestOneofMsg, _Mapping]] = ...) -> None: ...
class ProtovalidateOneof(_message.Message):
__slots__ = ("a", "b", "unrelated")
A_FIELD_NUMBER: _ClassVar[int]
B_FIELD_NUMBER: _ClassVar[int]
UNRELATED_FIELD_NUMBER: _ClassVar[int]
a: str
b: str
unrelated: bool
def __init__(self, a: _Optional[str] = ..., b: _Optional[str] = ..., unrelated: bool = ...) -> None: ...
class ProtovalidateOneofRequired(_message.Message):
__slots__ = ("a", "b", "unrelated")
A_FIELD_NUMBER: _ClassVar[int]
B_FIELD_NUMBER: _ClassVar[int]
UNRELATED_FIELD_NUMBER: _ClassVar[int]
a: str
b: str
unrelated: bool
def __init__(self, a: _Optional[str] = ..., b: _Optional[str] = ..., unrelated: bool = ...) -> None: ...
class ProtovalidateOneofUnknownFieldName(_message.Message):
__slots__ = ("a", "b", "unrelated")
A_FIELD_NUMBER: _ClassVar[int]
B_FIELD_NUMBER: _ClassVar[int]
UNRELATED_FIELD_NUMBER: _ClassVar[int]
a: str
b: str
unrelated: bool
def __init__(self, a: _Optional[str] = ..., b: _Optional[str] = ..., unrelated: bool = ...) -> None: ...
class TimestampGTNow(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: _timestamp_pb2.Timestamp
def __init__(self, val: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
class MapMinMax(_message.Message):
__slots__ = ("val",)
class ValEntry(_message.Message):
__slots__ = ("key", "value")
KEY_FIELD_NUMBER: _ClassVar[int]
VALUE_FIELD_NUMBER: _ClassVar[int]
key: str
value: bool
def __init__(self, key: _Optional[str] = ..., value: bool = ...) -> None: ...
VAL_FIELD_NUMBER: _ClassVar[int]
val: _containers.ScalarMap[str, bool]
def __init__(self, val: _Optional[_Mapping[str, bool]] = ...) -> None: ...
class MapKeys(_message.Message):
__slots__ = ("val",)
class ValEntry(_message.Message):
__slots__ = ("key", "value")
KEY_FIELD_NUMBER: _ClassVar[int]
VALUE_FIELD_NUMBER: _ClassVar[int]
key: int
value: str
def __init__(self, key: _Optional[int] = ..., value: _Optional[str] = ...) -> None: ...
VAL_FIELD_NUMBER: _ClassVar[int]
val: _containers.ScalarMap[int, str]
def __init__(self, val: _Optional[_Mapping[int, str]] = ...) -> None: ...
class Embed(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: int
def __init__(self, val: _Optional[int] = ...) -> None: ...
class RepeatedEmbedSkip(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: _containers.RepeatedCompositeFieldContainer[Embed]
def __init__(self, val: _Optional[_Iterable[_Union[Embed, _Mapping]]] = ...) -> None: ...