yandexcloud 0.314.0__py3-none-any.whl → 0.316.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of yandexcloud might be problematic. Click here for more details.
- yandex/cloud/access/access_pb2.pyi +7 -2
- yandex/cloud/airflow/__init__.py +0 -0
- yandex/cloud/airflow/v1/__init__.py +0 -0
- yandex/cloud/airflow/v1/cluster_pb2.py +90 -0
- yandex/cloud/airflow/v1/cluster_pb2.pyi +525 -0
- yandex/cloud/airflow/v1/cluster_pb2_grpc.py +4 -0
- yandex/cloud/airflow/v1/cluster_pb2_grpc.pyi +17 -0
- yandex/cloud/airflow/v1/cluster_service_pb2.py +136 -0
- yandex/cloud/airflow/v1/cluster_service_pb2.pyi +528 -0
- yandex/cloud/airflow/v1/cluster_service_pb2_grpc.py +310 -0
- yandex/cloud/airflow/v1/cluster_service_pb2_grpc.pyi +192 -0
- yandex/cloud/airflow/v1/common_pb2.py +28 -0
- yandex/cloud/airflow/v1/common_pb2.pyi +61 -0
- yandex/cloud/airflow/v1/common_pb2_grpc.py +4 -0
- yandex/cloud/airflow/v1/common_pb2_grpc.pyi +17 -0
- yandex/cloud/audittrails/v1/trail_pb2.py +2 -2
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.py +127 -127
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.py +4 -4
- yandex/cloud/mdb/mysql/v1/cluster_service_pb2.py +86 -86
- yandex/cloud/mdb/postgresql/v1/cluster_service_pb2.py +88 -88
- yandex/cloud/serverless/containers/v1/container_pb2.py +4 -4
- yandex/cloud/serverless/functions/v1/function_pb2.py +11 -11
- yandex/cloud/vpc/v1/privatelink/__init__.py +0 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2.py +39 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2.pyi +188 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2_grpc.py +4 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2_grpc.pyi +17 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2.py +120 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2.pyi +449 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2_grpc.py +245 -0
- yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2_grpc.pyi +164 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.316.0.dist-info}/METADATA +1 -1
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.316.0.dist-info}/RECORD +37 -14
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.316.0.dist-info}/AUTHORS +0 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.316.0.dist-info}/LICENSE +0 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.316.0.dist-info}/WHEEL +0 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.316.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from yandex.cloud.operation import operation_pb2 as yandex_dot_cloud_dot_operation_dot_operation__pb2
|
|
6
|
+
from yandex.cloud.vpc.v1.privatelink import private_endpoint_pb2 as yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__pb2
|
|
7
|
+
from yandex.cloud.vpc.v1.privatelink import private_endpoint_service_pb2 as yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class PrivateEndpointServiceStub(object):
|
|
11
|
+
"""A set of methods for managing PrivateEndpoint resources.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def __init__(self, channel):
|
|
15
|
+
"""Constructor.
|
|
16
|
+
|
|
17
|
+
Args:
|
|
18
|
+
channel: A grpc.Channel.
|
|
19
|
+
"""
|
|
20
|
+
self.Get = channel.unary_unary(
|
|
21
|
+
'/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Get',
|
|
22
|
+
request_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.GetPrivateEndpointRequest.SerializeToString,
|
|
23
|
+
response_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__pb2.PrivateEndpoint.FromString,
|
|
24
|
+
)
|
|
25
|
+
self.List = channel.unary_unary(
|
|
26
|
+
'/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/List',
|
|
27
|
+
request_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointsRequest.SerializeToString,
|
|
28
|
+
response_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointsResponse.FromString,
|
|
29
|
+
)
|
|
30
|
+
self.Create = channel.unary_unary(
|
|
31
|
+
'/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Create',
|
|
32
|
+
request_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.CreatePrivateEndpointRequest.SerializeToString,
|
|
33
|
+
response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
|
|
34
|
+
)
|
|
35
|
+
self.Update = channel.unary_unary(
|
|
36
|
+
'/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Update',
|
|
37
|
+
request_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.UpdatePrivateEndpointRequest.SerializeToString,
|
|
38
|
+
response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
|
|
39
|
+
)
|
|
40
|
+
self.Delete = channel.unary_unary(
|
|
41
|
+
'/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Delete',
|
|
42
|
+
request_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.DeletePrivateEndpointRequest.SerializeToString,
|
|
43
|
+
response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
|
|
44
|
+
)
|
|
45
|
+
self.ListOperations = channel.unary_unary(
|
|
46
|
+
'/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/ListOperations',
|
|
47
|
+
request_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointOperationsRequest.SerializeToString,
|
|
48
|
+
response_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointOperationsResponse.FromString,
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class PrivateEndpointServiceServicer(object):
|
|
53
|
+
"""A set of methods for managing PrivateEndpoint resources.
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
def Get(self, request, context):
|
|
57
|
+
"""Returns the specified Private Endpoint resource.
|
|
58
|
+
|
|
59
|
+
To get the list of all available PrivateEndpoint resources, make a [List]
|
|
60
|
+
request.
|
|
61
|
+
"""
|
|
62
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
63
|
+
context.set_details('Method not implemented!')
|
|
64
|
+
raise NotImplementedError('Method not implemented!')
|
|
65
|
+
|
|
66
|
+
def List(self, request, context):
|
|
67
|
+
"""Retrieves the list of PrivateEndpoint resources in the specified folder.
|
|
68
|
+
"""
|
|
69
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
70
|
+
context.set_details('Method not implemented!')
|
|
71
|
+
raise NotImplementedError('Method not implemented!')
|
|
72
|
+
|
|
73
|
+
def Create(self, request, context):
|
|
74
|
+
"""Creates an private endpoint in the specified folder and network.
|
|
75
|
+
"""
|
|
76
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
77
|
+
context.set_details('Method not implemented!')
|
|
78
|
+
raise NotImplementedError('Method not implemented!')
|
|
79
|
+
|
|
80
|
+
def Update(self, request, context):
|
|
81
|
+
"""Updates the specified private endpoint.
|
|
82
|
+
"""
|
|
83
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
84
|
+
context.set_details('Method not implemented!')
|
|
85
|
+
raise NotImplementedError('Method not implemented!')
|
|
86
|
+
|
|
87
|
+
def Delete(self, request, context):
|
|
88
|
+
"""Deletes the specified private endpoint.
|
|
89
|
+
"""
|
|
90
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
91
|
+
context.set_details('Method not implemented!')
|
|
92
|
+
raise NotImplementedError('Method not implemented!')
|
|
93
|
+
|
|
94
|
+
def ListOperations(self, request, context):
|
|
95
|
+
"""List operations for the specified private endpoint.
|
|
96
|
+
"""
|
|
97
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
98
|
+
context.set_details('Method not implemented!')
|
|
99
|
+
raise NotImplementedError('Method not implemented!')
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
def add_PrivateEndpointServiceServicer_to_server(servicer, server):
|
|
103
|
+
rpc_method_handlers = {
|
|
104
|
+
'Get': grpc.unary_unary_rpc_method_handler(
|
|
105
|
+
servicer.Get,
|
|
106
|
+
request_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.GetPrivateEndpointRequest.FromString,
|
|
107
|
+
response_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__pb2.PrivateEndpoint.SerializeToString,
|
|
108
|
+
),
|
|
109
|
+
'List': grpc.unary_unary_rpc_method_handler(
|
|
110
|
+
servicer.List,
|
|
111
|
+
request_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointsRequest.FromString,
|
|
112
|
+
response_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointsResponse.SerializeToString,
|
|
113
|
+
),
|
|
114
|
+
'Create': grpc.unary_unary_rpc_method_handler(
|
|
115
|
+
servicer.Create,
|
|
116
|
+
request_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.CreatePrivateEndpointRequest.FromString,
|
|
117
|
+
response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
|
|
118
|
+
),
|
|
119
|
+
'Update': grpc.unary_unary_rpc_method_handler(
|
|
120
|
+
servicer.Update,
|
|
121
|
+
request_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.UpdatePrivateEndpointRequest.FromString,
|
|
122
|
+
response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
|
|
123
|
+
),
|
|
124
|
+
'Delete': grpc.unary_unary_rpc_method_handler(
|
|
125
|
+
servicer.Delete,
|
|
126
|
+
request_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.DeletePrivateEndpointRequest.FromString,
|
|
127
|
+
response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
|
|
128
|
+
),
|
|
129
|
+
'ListOperations': grpc.unary_unary_rpc_method_handler(
|
|
130
|
+
servicer.ListOperations,
|
|
131
|
+
request_deserializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointOperationsRequest.FromString,
|
|
132
|
+
response_serializer=yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointOperationsResponse.SerializeToString,
|
|
133
|
+
),
|
|
134
|
+
}
|
|
135
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
136
|
+
'yandex.cloud.vpc.v1.privatelink.PrivateEndpointService', rpc_method_handlers)
|
|
137
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
# This class is part of an EXPERIMENTAL API.
|
|
141
|
+
class PrivateEndpointService(object):
|
|
142
|
+
"""A set of methods for managing PrivateEndpoint resources.
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
@staticmethod
|
|
146
|
+
def Get(request,
|
|
147
|
+
target,
|
|
148
|
+
options=(),
|
|
149
|
+
channel_credentials=None,
|
|
150
|
+
call_credentials=None,
|
|
151
|
+
insecure=False,
|
|
152
|
+
compression=None,
|
|
153
|
+
wait_for_ready=None,
|
|
154
|
+
timeout=None,
|
|
155
|
+
metadata=None):
|
|
156
|
+
return grpc.experimental.unary_unary(request, target, '/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Get',
|
|
157
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.GetPrivateEndpointRequest.SerializeToString,
|
|
158
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__pb2.PrivateEndpoint.FromString,
|
|
159
|
+
options, channel_credentials,
|
|
160
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
161
|
+
|
|
162
|
+
@staticmethod
|
|
163
|
+
def List(request,
|
|
164
|
+
target,
|
|
165
|
+
options=(),
|
|
166
|
+
channel_credentials=None,
|
|
167
|
+
call_credentials=None,
|
|
168
|
+
insecure=False,
|
|
169
|
+
compression=None,
|
|
170
|
+
wait_for_ready=None,
|
|
171
|
+
timeout=None,
|
|
172
|
+
metadata=None):
|
|
173
|
+
return grpc.experimental.unary_unary(request, target, '/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/List',
|
|
174
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointsRequest.SerializeToString,
|
|
175
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointsResponse.FromString,
|
|
176
|
+
options, channel_credentials,
|
|
177
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
178
|
+
|
|
179
|
+
@staticmethod
|
|
180
|
+
def Create(request,
|
|
181
|
+
target,
|
|
182
|
+
options=(),
|
|
183
|
+
channel_credentials=None,
|
|
184
|
+
call_credentials=None,
|
|
185
|
+
insecure=False,
|
|
186
|
+
compression=None,
|
|
187
|
+
wait_for_ready=None,
|
|
188
|
+
timeout=None,
|
|
189
|
+
metadata=None):
|
|
190
|
+
return grpc.experimental.unary_unary(request, target, '/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Create',
|
|
191
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.CreatePrivateEndpointRequest.SerializeToString,
|
|
192
|
+
yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
|
|
193
|
+
options, channel_credentials,
|
|
194
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
195
|
+
|
|
196
|
+
@staticmethod
|
|
197
|
+
def Update(request,
|
|
198
|
+
target,
|
|
199
|
+
options=(),
|
|
200
|
+
channel_credentials=None,
|
|
201
|
+
call_credentials=None,
|
|
202
|
+
insecure=False,
|
|
203
|
+
compression=None,
|
|
204
|
+
wait_for_ready=None,
|
|
205
|
+
timeout=None,
|
|
206
|
+
metadata=None):
|
|
207
|
+
return grpc.experimental.unary_unary(request, target, '/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Update',
|
|
208
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.UpdatePrivateEndpointRequest.SerializeToString,
|
|
209
|
+
yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
|
|
210
|
+
options, channel_credentials,
|
|
211
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
212
|
+
|
|
213
|
+
@staticmethod
|
|
214
|
+
def Delete(request,
|
|
215
|
+
target,
|
|
216
|
+
options=(),
|
|
217
|
+
channel_credentials=None,
|
|
218
|
+
call_credentials=None,
|
|
219
|
+
insecure=False,
|
|
220
|
+
compression=None,
|
|
221
|
+
wait_for_ready=None,
|
|
222
|
+
timeout=None,
|
|
223
|
+
metadata=None):
|
|
224
|
+
return grpc.experimental.unary_unary(request, target, '/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/Delete',
|
|
225
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.DeletePrivateEndpointRequest.SerializeToString,
|
|
226
|
+
yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
|
|
227
|
+
options, channel_credentials,
|
|
228
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
229
|
+
|
|
230
|
+
@staticmethod
|
|
231
|
+
def ListOperations(request,
|
|
232
|
+
target,
|
|
233
|
+
options=(),
|
|
234
|
+
channel_credentials=None,
|
|
235
|
+
call_credentials=None,
|
|
236
|
+
insecure=False,
|
|
237
|
+
compression=None,
|
|
238
|
+
wait_for_ready=None,
|
|
239
|
+
timeout=None,
|
|
240
|
+
metadata=None):
|
|
241
|
+
return grpc.experimental.unary_unary(request, target, '/yandex.cloud.vpc.v1.privatelink.PrivateEndpointService/ListOperations',
|
|
242
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointOperationsRequest.SerializeToString,
|
|
243
|
+
yandex_dot_cloud_dot_vpc_dot_v1_dot_privatelink_dot_private__endpoint__service__pb2.ListPrivateEndpointOperationsResponse.FromString,
|
|
244
|
+
options, channel_credentials,
|
|
245
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import abc
|
|
7
|
+
import collections.abc
|
|
8
|
+
import grpc
|
|
9
|
+
import grpc.aio
|
|
10
|
+
import typing
|
|
11
|
+
import yandex.cloud.operation.operation_pb2
|
|
12
|
+
import yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2
|
|
13
|
+
import yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2
|
|
14
|
+
|
|
15
|
+
_T = typing.TypeVar("_T")
|
|
16
|
+
|
|
17
|
+
class _MaybeAsyncIterator(collections.abc.AsyncIterator[_T], collections.abc.Iterator[_T], metaclass=abc.ABCMeta): ...
|
|
18
|
+
|
|
19
|
+
class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type: ignore[misc, type-arg]
|
|
20
|
+
...
|
|
21
|
+
|
|
22
|
+
class PrivateEndpointServiceStub:
|
|
23
|
+
"""A set of methods for managing PrivateEndpoint resources."""
|
|
24
|
+
|
|
25
|
+
def __init__(self, channel: typing.Union[grpc.Channel, grpc.aio.Channel]) -> None: ...
|
|
26
|
+
Get: grpc.UnaryUnaryMultiCallable[
|
|
27
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.GetPrivateEndpointRequest,
|
|
28
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint,
|
|
29
|
+
]
|
|
30
|
+
"""Returns the specified Private Endpoint resource.
|
|
31
|
+
|
|
32
|
+
To get the list of all available PrivateEndpoint resources, make a [List]
|
|
33
|
+
request.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
List: grpc.UnaryUnaryMultiCallable[
|
|
37
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsRequest,
|
|
38
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsResponse,
|
|
39
|
+
]
|
|
40
|
+
"""Retrieves the list of PrivateEndpoint resources in the specified folder."""
|
|
41
|
+
|
|
42
|
+
Create: grpc.UnaryUnaryMultiCallable[
|
|
43
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.CreatePrivateEndpointRequest,
|
|
44
|
+
yandex.cloud.operation.operation_pb2.Operation,
|
|
45
|
+
]
|
|
46
|
+
"""Creates an private endpoint in the specified folder and network."""
|
|
47
|
+
|
|
48
|
+
Update: grpc.UnaryUnaryMultiCallable[
|
|
49
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.UpdatePrivateEndpointRequest,
|
|
50
|
+
yandex.cloud.operation.operation_pb2.Operation,
|
|
51
|
+
]
|
|
52
|
+
"""Updates the specified private endpoint."""
|
|
53
|
+
|
|
54
|
+
Delete: grpc.UnaryUnaryMultiCallable[
|
|
55
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.DeletePrivateEndpointRequest,
|
|
56
|
+
yandex.cloud.operation.operation_pb2.Operation,
|
|
57
|
+
]
|
|
58
|
+
"""Deletes the specified private endpoint."""
|
|
59
|
+
|
|
60
|
+
ListOperations: grpc.UnaryUnaryMultiCallable[
|
|
61
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsRequest,
|
|
62
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsResponse,
|
|
63
|
+
]
|
|
64
|
+
"""List operations for the specified private endpoint."""
|
|
65
|
+
|
|
66
|
+
class PrivateEndpointServiceAsyncStub:
|
|
67
|
+
"""A set of methods for managing PrivateEndpoint resources."""
|
|
68
|
+
|
|
69
|
+
Get: grpc.aio.UnaryUnaryMultiCallable[
|
|
70
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.GetPrivateEndpointRequest,
|
|
71
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint,
|
|
72
|
+
]
|
|
73
|
+
"""Returns the specified Private Endpoint resource.
|
|
74
|
+
|
|
75
|
+
To get the list of all available PrivateEndpoint resources, make a [List]
|
|
76
|
+
request.
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
List: grpc.aio.UnaryUnaryMultiCallable[
|
|
80
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsRequest,
|
|
81
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsResponse,
|
|
82
|
+
]
|
|
83
|
+
"""Retrieves the list of PrivateEndpoint resources in the specified folder."""
|
|
84
|
+
|
|
85
|
+
Create: grpc.aio.UnaryUnaryMultiCallable[
|
|
86
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.CreatePrivateEndpointRequest,
|
|
87
|
+
yandex.cloud.operation.operation_pb2.Operation,
|
|
88
|
+
]
|
|
89
|
+
"""Creates an private endpoint in the specified folder and network."""
|
|
90
|
+
|
|
91
|
+
Update: grpc.aio.UnaryUnaryMultiCallable[
|
|
92
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.UpdatePrivateEndpointRequest,
|
|
93
|
+
yandex.cloud.operation.operation_pb2.Operation,
|
|
94
|
+
]
|
|
95
|
+
"""Updates the specified private endpoint."""
|
|
96
|
+
|
|
97
|
+
Delete: grpc.aio.UnaryUnaryMultiCallable[
|
|
98
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.DeletePrivateEndpointRequest,
|
|
99
|
+
yandex.cloud.operation.operation_pb2.Operation,
|
|
100
|
+
]
|
|
101
|
+
"""Deletes the specified private endpoint."""
|
|
102
|
+
|
|
103
|
+
ListOperations: grpc.aio.UnaryUnaryMultiCallable[
|
|
104
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsRequest,
|
|
105
|
+
yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsResponse,
|
|
106
|
+
]
|
|
107
|
+
"""List operations for the specified private endpoint."""
|
|
108
|
+
|
|
109
|
+
class PrivateEndpointServiceServicer(metaclass=abc.ABCMeta):
|
|
110
|
+
"""A set of methods for managing PrivateEndpoint resources."""
|
|
111
|
+
|
|
112
|
+
@abc.abstractmethod
|
|
113
|
+
def Get(
|
|
114
|
+
self,
|
|
115
|
+
request: yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.GetPrivateEndpointRequest,
|
|
116
|
+
context: _ServicerContext,
|
|
117
|
+
) -> typing.Union[yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint, collections.abc.Awaitable[yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint]]:
|
|
118
|
+
"""Returns the specified Private Endpoint resource.
|
|
119
|
+
|
|
120
|
+
To get the list of all available PrivateEndpoint resources, make a [List]
|
|
121
|
+
request.
|
|
122
|
+
"""
|
|
123
|
+
|
|
124
|
+
@abc.abstractmethod
|
|
125
|
+
def List(
|
|
126
|
+
self,
|
|
127
|
+
request: yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsRequest,
|
|
128
|
+
context: _ServicerContext,
|
|
129
|
+
) -> typing.Union[yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsResponse, collections.abc.Awaitable[yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointsResponse]]:
|
|
130
|
+
"""Retrieves the list of PrivateEndpoint resources in the specified folder."""
|
|
131
|
+
|
|
132
|
+
@abc.abstractmethod
|
|
133
|
+
def Create(
|
|
134
|
+
self,
|
|
135
|
+
request: yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.CreatePrivateEndpointRequest,
|
|
136
|
+
context: _ServicerContext,
|
|
137
|
+
) -> typing.Union[yandex.cloud.operation.operation_pb2.Operation, collections.abc.Awaitable[yandex.cloud.operation.operation_pb2.Operation]]:
|
|
138
|
+
"""Creates an private endpoint in the specified folder and network."""
|
|
139
|
+
|
|
140
|
+
@abc.abstractmethod
|
|
141
|
+
def Update(
|
|
142
|
+
self,
|
|
143
|
+
request: yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.UpdatePrivateEndpointRequest,
|
|
144
|
+
context: _ServicerContext,
|
|
145
|
+
) -> typing.Union[yandex.cloud.operation.operation_pb2.Operation, collections.abc.Awaitable[yandex.cloud.operation.operation_pb2.Operation]]:
|
|
146
|
+
"""Updates the specified private endpoint."""
|
|
147
|
+
|
|
148
|
+
@abc.abstractmethod
|
|
149
|
+
def Delete(
|
|
150
|
+
self,
|
|
151
|
+
request: yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.DeletePrivateEndpointRequest,
|
|
152
|
+
context: _ServicerContext,
|
|
153
|
+
) -> typing.Union[yandex.cloud.operation.operation_pb2.Operation, collections.abc.Awaitable[yandex.cloud.operation.operation_pb2.Operation]]:
|
|
154
|
+
"""Deletes the specified private endpoint."""
|
|
155
|
+
|
|
156
|
+
@abc.abstractmethod
|
|
157
|
+
def ListOperations(
|
|
158
|
+
self,
|
|
159
|
+
request: yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsRequest,
|
|
160
|
+
context: _ServicerContext,
|
|
161
|
+
) -> typing.Union[yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsResponse, collections.abc.Awaitable[yandex.cloud.vpc.v1.privatelink.private_endpoint_service_pb2.ListPrivateEndpointOperationsResponse]]:
|
|
162
|
+
"""List operations for the specified private endpoint."""
|
|
163
|
+
|
|
164
|
+
def add_PrivateEndpointServiceServicer_to_server(servicer: PrivateEndpointServiceServicer, server: typing.Union[grpc.Server, grpc.aio.Server]) -> None: ...
|
|
@@ -7,7 +7,7 @@ yandex/cloud/validation_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqoc
|
|
|
7
7
|
yandex/cloud/validation_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
8
8
|
yandex/cloud/access/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
yandex/cloud/access/access_pb2.py,sha256=xD1PFgd_IC-NykzSj0vXPo8yEN7cN4Q_Y_WwlyBXR5M,6759
|
|
10
|
-
yandex/cloud/access/access_pb2.pyi,sha256=
|
|
10
|
+
yandex/cloud/access/access_pb2.pyi,sha256=yHz0W4TJnc0xdAqQyLQsyAae7HRGLAt1JLNaMslD7uA,12066
|
|
11
11
|
yandex/cloud/access/access_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
12
12
|
yandex/cloud/access/access_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
13
13
|
yandex/cloud/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -139,6 +139,20 @@ yandex/cloud/ai/vision/v2/image_pb2.py,sha256=SCAL8Ma9yF1aXmsfczwa3eOQGnTo8lKls0
|
|
|
139
139
|
yandex/cloud/ai/vision/v2/image_pb2.pyi,sha256=SVgR4XgXJvinMgwRYsjEBppvdiiNnWeHyCKyLRtrFhE,2057
|
|
140
140
|
yandex/cloud/ai/vision/v2/image_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
141
141
|
yandex/cloud/ai/vision/v2/image_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
142
|
+
yandex/cloud/airflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
+
yandex/cloud/airflow/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
yandex/cloud/airflow/v1/cluster_pb2.py,sha256=YNVgMtOvUWJBVSiQesO06LevUjf6-PWb79uzpDszIgw,9609
|
|
145
|
+
yandex/cloud/airflow/v1/cluster_pb2.pyi,sha256=QxPFnKzpeGIxLK984yTeK0BzEHL0w-P08qCABmTkIXU,20719
|
|
146
|
+
yandex/cloud/airflow/v1/cluster_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
147
|
+
yandex/cloud/airflow/v1/cluster_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
148
|
+
yandex/cloud/airflow/v1/cluster_service_pb2.py,sha256=6-Haf6-kxHEsQfxkVB45NzqK1i0VLtMp9aAgrP2dDuE,17177
|
|
149
|
+
yandex/cloud/airflow/v1/cluster_service_pb2.pyi,sha256=1Wv3tSrNKrzdvr4GFVTtStvzeSZ7Lj8Z7pW95hEKFMI,22248
|
|
150
|
+
yandex/cloud/airflow/v1/cluster_service_pb2_grpc.py,sha256=QvvbF2hXCOT5KvXMGfWKS6l2kMZS6bOJ20ge505QL1o,15619
|
|
151
|
+
yandex/cloud/airflow/v1/cluster_service_pb2_grpc.pyi,sha256=9x2Yfmz9VutG7kqpaSZsLMB8KREktbhNGwK2MkgzFX4,8191
|
|
152
|
+
yandex/cloud/airflow/v1/common_pb2.py,sha256=_h_g878GZ4qlLejrfkH7ABoGM26pncysDufjGTpOgiY,1592
|
|
153
|
+
yandex/cloud/airflow/v1/common_pb2.pyi,sha256=5EbjdtYVCfjC-UYPmkv_a6cEF_DplIK15Gm-5JlgBNY,2136
|
|
154
|
+
yandex/cloud/airflow/v1/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
155
|
+
yandex/cloud/airflow/v1/common_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
142
156
|
yandex/cloud/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
157
|
yandex/cloud/api/operation_pb2.py,sha256=lf_Ga2czWu19PpcCHZ-IpI66zSktSeZuXgjVgGrN0LA,1485
|
|
144
158
|
yandex/cloud/api/operation_pb2.pyi,sha256=9SJ2ke51kGoOnACpolEpz6R4_uQdWaj0q5Mi__R_O44,1547
|
|
@@ -200,7 +214,7 @@ yandex/cloud/apploadbalancer/v1/virtual_host_service_pb2_grpc.py,sha256=B0OspSUb
|
|
|
200
214
|
yandex/cloud/apploadbalancer/v1/virtual_host_service_pb2_grpc.pyi,sha256=LhG8FBpxV_KMAJcMpEZS9lcYlioiYrl1zbaud9OmE3o,8035
|
|
201
215
|
yandex/cloud/audittrails/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
216
|
yandex/cloud/audittrails/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
-
yandex/cloud/audittrails/v1/trail_pb2.py,sha256=
|
|
217
|
+
yandex/cloud/audittrails/v1/trail_pb2.py,sha256=zS6ZKoZXiK2adAleuvDAnkWqr5vUto773CpsAB9DtjQ,15216
|
|
204
218
|
yandex/cloud/audittrails/v1/trail_pb2.pyi,sha256=OYQzQyFmIUhSI0HBDVlCAEOfjEpZq5JVTaitdwbfHKE,25605
|
|
205
219
|
yandex/cloud/audittrails/v1/trail_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
206
220
|
yandex/cloud/audittrails/v1/trail_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
@@ -1481,11 +1495,11 @@ yandex/cloud/mdb/mongodb/v1/backup_service_pb2.py,sha256=jknIhcoJ3n-gwHIghwQpNLq
|
|
|
1481
1495
|
yandex/cloud/mdb/mongodb/v1/backup_service_pb2.pyi,sha256=Umibhtz2boj73U73myDcYGmVM1V9G59CtYH-ZXiKSEs,4433
|
|
1482
1496
|
yandex/cloud/mdb/mongodb/v1/backup_service_pb2_grpc.py,sha256=CQfmJ9FAi6HthaAY2rg57lDJQQPDiUB2thE7Td8oYQ4,6832
|
|
1483
1497
|
yandex/cloud/mdb/mongodb/v1/backup_service_pb2_grpc.pyi,sha256=t-AYFA_sjdFNvzRuMC9u1nXvtPk9KFTmDSpk-k8irBg,4083
|
|
1484
|
-
yandex/cloud/mdb/mongodb/v1/cluster_pb2.py,sha256=
|
|
1498
|
+
yandex/cloud/mdb/mongodb/v1/cluster_pb2.py,sha256=MQRq346WXsXhwE9xoiM_n2P7nEdoIfvIqyBsE3uip6o,36974
|
|
1485
1499
|
yandex/cloud/mdb/mongodb/v1/cluster_pb2.pyi,sha256=IryykOYt5lpJDkDsQq7e22qKuxYKJP4FwB0AtCbPl4g,111325
|
|
1486
1500
|
yandex/cloud/mdb/mongodb/v1/cluster_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
1487
1501
|
yandex/cloud/mdb/mongodb/v1/cluster_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
1488
|
-
yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.py,sha256=
|
|
1502
|
+
yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.py,sha256=DQrq2U_Y_BSRjrk1sap_CqkZKQaJkH2grU7U5NTrDPI,85150
|
|
1489
1503
|
yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.pyi,sha256=jXdFOnTHVq4PZh8VPRYZ-SibeUGPG5WdUcurj5h2v-Y,169568
|
|
1490
1504
|
yandex/cloud/mdb/mongodb/v1/cluster_service_pb2_grpc.py,sha256=sk76xbgVlr4IY4LFjhMkw8g8HYFnnpH-yb8dr_g2om4,51657
|
|
1491
1505
|
yandex/cloud/mdb/mongodb/v1/cluster_service_pb2_grpc.pyi,sha256=TzJ7nNleoeiDJR1r64mYHq_NwG8OvtoXjEz52h9CDVA,26543
|
|
@@ -1572,7 +1586,7 @@ yandex/cloud/mdb/mysql/v1/cluster_pb2.py,sha256=NsUnlf3GTRRkJIMLlFEeMtFRxY-SzJA8
|
|
|
1572
1586
|
yandex/cloud/mdb/mysql/v1/cluster_pb2.pyi,sha256=IWfW1WPDnkwssLSD9uxLk7F61o15i2WhaCS0tLK2EBg,27460
|
|
1573
1587
|
yandex/cloud/mdb/mysql/v1/cluster_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
1574
1588
|
yandex/cloud/mdb/mysql/v1/cluster_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
1575
|
-
yandex/cloud/mdb/mysql/v1/cluster_service_pb2.py,sha256=
|
|
1589
|
+
yandex/cloud/mdb/mysql/v1/cluster_service_pb2.py,sha256=oQiJ5qGzrXC4ZsiYBJldxo-RYoC_U1CwAbipODLXkPU,43009
|
|
1576
1590
|
yandex/cloud/mdb/mysql/v1/cluster_service_pb2.pyi,sha256=7Vl0XrHUaxQnNWELCJMepZGvo4iUagCrtMnD4UPI15c,66860
|
|
1577
1591
|
yandex/cloud/mdb/mysql/v1/cluster_service_pb2_grpc.py,sha256=G3hq0dWt5RZjdhsyiEu4jhWwTJlvRMmmz-Uc3qUkjcQ,38261
|
|
1578
1592
|
yandex/cloud/mdb/mysql/v1/cluster_service_pb2_grpc.pyi,sha256=r7PQEkJq4MMvOsHXiKc8G3abEhlz72dluy6Hit5ZHx8,19689
|
|
@@ -1712,7 +1726,7 @@ yandex/cloud/mdb/postgresql/v1/cluster_pb2.py,sha256=K9HATV_VpGLoaTjt_mnIQPzQeR0
|
|
|
1712
1726
|
yandex/cloud/mdb/postgresql/v1/cluster_pb2.pyi,sha256=5z0ag4zac574c1z8MxrWJnkyLV8OBOqqDLaYAFRPaW8,50787
|
|
1713
1727
|
yandex/cloud/mdb/postgresql/v1/cluster_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
1714
1728
|
yandex/cloud/mdb/postgresql/v1/cluster_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
1715
|
-
yandex/cloud/mdb/postgresql/v1/cluster_service_pb2.py,sha256=
|
|
1729
|
+
yandex/cloud/mdb/postgresql/v1/cluster_service_pb2.py,sha256=ecN1bB1BSqEMP8OM3Z5rTlB9Tf9xLGH3fY4uEaaCfQs,54957
|
|
1716
1730
|
yandex/cloud/mdb/postgresql/v1/cluster_service_pb2.pyi,sha256=DpDG_vSK1Z1k5CyThmFsGwlGEZOoWAXOifWv4z__vlE,83983
|
|
1717
1731
|
yandex/cloud/mdb/postgresql/v1/cluster_service_pb2_grpc.py,sha256=NvI7XXe4EUyg_b-3E4OBTiUnrH2WaHla0gYl0DOHqsg,39015
|
|
1718
1732
|
yandex/cloud/mdb/postgresql/v1/cluster_service_pb2_grpc.pyi,sha256=77Fv5hbb7-KxCV3Hs9njqX9Nq1ei5HMxnjz-wgYpD0k,20394
|
|
@@ -2149,7 +2163,7 @@ yandex/cloud/serverless/apigateway/websocket/v1/connection_service_pb2_grpc.py,s
|
|
|
2149
2163
|
yandex/cloud/serverless/apigateway/websocket/v1/connection_service_pb2_grpc.pyi,sha256=fPUTBEXv-rjIODeMrMnXSbow5Jc325IPkOMKupDwZVA,4358
|
|
2150
2164
|
yandex/cloud/serverless/containers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2151
2165
|
yandex/cloud/serverless/containers/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2152
|
-
yandex/cloud/serverless/containers/v1/container_pb2.py,sha256
|
|
2166
|
+
yandex/cloud/serverless/containers/v1/container_pb2.py,sha256=IZCpuC_yb73lD4lngoh6F8Oubat3drzqKHnXMzq1DeU,11684
|
|
2153
2167
|
yandex/cloud/serverless/containers/v1/container_pb2.pyi,sha256=KlxDkIimf_6Tauc0M_BWPTRLzbzaSN7RrYTxhLsdkt8,25718
|
|
2154
2168
|
yandex/cloud/serverless/containers/v1/container_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
2155
2169
|
yandex/cloud/serverless/containers/v1/container_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
@@ -2159,7 +2173,7 @@ yandex/cloud/serverless/containers/v1/container_service_pb2_grpc.py,sha256=R_Atm
|
|
|
2159
2173
|
yandex/cloud/serverless/containers/v1/container_service_pb2_grpc.pyi,sha256=olmfbnfSuByvF20WVDAi7YWMnEn92DN1pszOkAt-Qog,14385
|
|
2160
2174
|
yandex/cloud/serverless/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2161
2175
|
yandex/cloud/serverless/functions/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2162
|
-
yandex/cloud/serverless/functions/v1/function_pb2.py,sha256=
|
|
2176
|
+
yandex/cloud/serverless/functions/v1/function_pb2.py,sha256=pQUg3cxASH-FQ7ubQVdEB5GFK0DmOVkt8xW1uFimAEU,14671
|
|
2163
2177
|
yandex/cloud/serverless/functions/v1/function_pb2.pyi,sha256=ILb7ZZ6B6u36Fotm6eB4VHZvGmMLKQoYhA2gRHlXpvc,29430
|
|
2164
2178
|
yandex/cloud/serverless/functions/v1/function_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
2165
2179
|
yandex/cloud/serverless/functions/v1/function_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
@@ -2396,6 +2410,15 @@ yandex/cloud/vpc/v1/subnet_service_pb2.py,sha256=ocm18nIF5d5r3-V3707GdQ5WMsBLGeT
|
|
|
2396
2410
|
yandex/cloud/vpc/v1/subnet_service_pb2.pyi,sha256=KBDjfzK-TYOT4JNnjFe5lE8RJJLRyBdgmAmyCE9NYCM,23087
|
|
2397
2411
|
yandex/cloud/vpc/v1/subnet_service_pb2_grpc.py,sha256=nY7FOGxEWKmPdbNW9sJjKLsuL5sVcNNSJSRbW1gyMo0,21237
|
|
2398
2412
|
yandex/cloud/vpc/v1/subnet_service_pb2_grpc.pyi,sha256=BIz2tvQYSXtE2RGwZCPx_vkBKAjrmZMCxbheOdfN284,11723
|
|
2413
|
+
yandex/cloud/vpc/v1/privatelink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2414
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2.py,sha256=Gh37SqLu0dIxVHuQJwZK7oQhXm8eeXMy_0bjYrCSIzY,3582
|
|
2415
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2.pyi,sha256=H3QALJFsdAtxRV5pVXue4-FRNmPRyxY9kGHgRbl7nTk,7710
|
|
2416
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
2417
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
2418
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2.py,sha256=ge_lQdoBz2Gn0wo8MiuU-JpKg6fCitYau-AlDMV_39s,15638
|
|
2419
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2.pyi,sha256=AMwRvmbJdNZON9TdVWMtpbP1K3BoCR7wadENXha7HR8,18534
|
|
2420
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2_grpc.py,sha256=uPbVytDVPrJDiou1wp0kJFltl4Glec1i7OAF5knCbCI,13339
|
|
2421
|
+
yandex/cloud/vpc/v1/privatelink/private_endpoint_service_pb2_grpc.pyi,sha256=Z6Cp_28_ju3bXGta-iMJScyps7CSVeAOF2hMPzLybOc,7660
|
|
2399
2422
|
yandex/cloud/ydb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2400
2423
|
yandex/cloud/ydb/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2401
2424
|
yandex/cloud/ydb/v1/backup_pb2.py,sha256=o6m_e1uL2FWtERRKJ8hoMjbwv5-BVBq4wAO8H9rbiFA,8221
|
|
@@ -2452,9 +2475,9 @@ yandexcloud/operations.py,sha256=rOlhJT3Nx7u3hjRY4tnMc1_Z-yctcjcCkc_7GsDpSwY,111
|
|
|
2452
2475
|
yandexcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2453
2476
|
yandexcloud/_wrappers/__init__.py,sha256=z19vuf3vgVGWFc-0d1LFsyVXiM-SYlhvvWRQI8l1T_8,428
|
|
2454
2477
|
yandexcloud/_wrappers/dataproc/__init__.py,sha256=Me1PLj00sTWvynmCde0EbekdUaGdBG5BQe798RCi1l0,33131
|
|
2455
|
-
yandexcloud-0.
|
|
2456
|
-
yandexcloud-0.
|
|
2457
|
-
yandexcloud-0.
|
|
2458
|
-
yandexcloud-0.
|
|
2459
|
-
yandexcloud-0.
|
|
2460
|
-
yandexcloud-0.
|
|
2478
|
+
yandexcloud-0.316.0.dist-info/AUTHORS,sha256=0o7IPkgdTswBveGhbt_73xRPpCrfeEGoZE11AiLvYSQ,231
|
|
2479
|
+
yandexcloud-0.316.0.dist-info/LICENSE,sha256=AFcOYhNOyuBQP89lObqyipdScN2KUUS-OuWoUlVo6yE,1077
|
|
2480
|
+
yandexcloud-0.316.0.dist-info/METADATA,sha256=4hsoduybRsb2_zv1eDQ2lGPJxmGewzGg6WvKDc2lFUY,10616
|
|
2481
|
+
yandexcloud-0.316.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
2482
|
+
yandexcloud-0.316.0.dist-info/top_level.txt,sha256=p6aBMPGD526A1jM2WVnAneI2qO4kGDWeJi6uwYApDqg,19
|
|
2483
|
+
yandexcloud-0.316.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|