yandexcloud 0.314.0__py3-none-any.whl → 0.315.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/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.315.0.dist-info}/METADATA +1 -1
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.315.0.dist-info}/RECORD +22 -13
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.315.0.dist-info}/AUTHORS +0 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.315.0.dist-info}/LICENSE +0 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.315.0.dist-info}/WHEEL +0 -0
- {yandexcloud-0.314.0.dist-info → yandexcloud-0.315.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,449 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import builtins
|
|
7
|
+
import collections.abc
|
|
8
|
+
import google.protobuf.descriptor
|
|
9
|
+
import google.protobuf.field_mask_pb2
|
|
10
|
+
import google.protobuf.internal.containers
|
|
11
|
+
import google.protobuf.message
|
|
12
|
+
import typing
|
|
13
|
+
import yandex.cloud.operation.operation_pb2
|
|
14
|
+
import yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2
|
|
15
|
+
|
|
16
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
17
|
+
|
|
18
|
+
@typing.final
|
|
19
|
+
class GetPrivateEndpointRequest(google.protobuf.message.Message):
|
|
20
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
21
|
+
|
|
22
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
23
|
+
private_endpoint_id: builtins.str
|
|
24
|
+
"""ID of the PrivateEndpoint resource to return.
|
|
25
|
+
|
|
26
|
+
To get PrivateEndpoint resource ID make a [PrivateEndpointService.List]
|
|
27
|
+
request.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(
|
|
30
|
+
self,
|
|
31
|
+
*,
|
|
32
|
+
private_endpoint_id: builtins.str = ...,
|
|
33
|
+
) -> None: ...
|
|
34
|
+
def ClearField(self, field_name: typing.Literal["private_endpoint_id", b"private_endpoint_id"]) -> None: ...
|
|
35
|
+
|
|
36
|
+
global___GetPrivateEndpointRequest = GetPrivateEndpointRequest
|
|
37
|
+
|
|
38
|
+
@typing.final
|
|
39
|
+
class InternalIpv4AddressSpec(google.protobuf.message.Message):
|
|
40
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
41
|
+
|
|
42
|
+
SUBNET_ID_FIELD_NUMBER: builtins.int
|
|
43
|
+
ADDRESS_FIELD_NUMBER: builtins.int
|
|
44
|
+
subnet_id: builtins.str
|
|
45
|
+
"""ID of the subnet that address belongs to."""
|
|
46
|
+
address: builtins.str
|
|
47
|
+
"""Value of address."""
|
|
48
|
+
def __init__(
|
|
49
|
+
self,
|
|
50
|
+
*,
|
|
51
|
+
subnet_id: builtins.str = ...,
|
|
52
|
+
address: builtins.str = ...,
|
|
53
|
+
) -> None: ...
|
|
54
|
+
def ClearField(self, field_name: typing.Literal["address", b"address", "subnet_id", b"subnet_id"]) -> None: ...
|
|
55
|
+
|
|
56
|
+
global___InternalIpv4AddressSpec = InternalIpv4AddressSpec
|
|
57
|
+
|
|
58
|
+
@typing.final
|
|
59
|
+
class AddressSpec(google.protobuf.message.Message):
|
|
60
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
61
|
+
|
|
62
|
+
ADDRESS_ID_FIELD_NUMBER: builtins.int
|
|
63
|
+
INTERNAL_IPV4_ADDRESS_SPEC_FIELD_NUMBER: builtins.int
|
|
64
|
+
address_id: builtins.str
|
|
65
|
+
"""ID of IP address to associate with private endpoint."""
|
|
66
|
+
@property
|
|
67
|
+
def internal_ipv4_address_spec(self) -> global___InternalIpv4AddressSpec:
|
|
68
|
+
"""Internal ipv4 address specification."""
|
|
69
|
+
|
|
70
|
+
def __init__(
|
|
71
|
+
self,
|
|
72
|
+
*,
|
|
73
|
+
address_id: builtins.str = ...,
|
|
74
|
+
internal_ipv4_address_spec: global___InternalIpv4AddressSpec | None = ...,
|
|
75
|
+
) -> None: ...
|
|
76
|
+
def HasField(self, field_name: typing.Literal["address", b"address", "address_id", b"address_id", "internal_ipv4_address_spec", b"internal_ipv4_address_spec"]) -> builtins.bool: ...
|
|
77
|
+
def ClearField(self, field_name: typing.Literal["address", b"address", "address_id", b"address_id", "internal_ipv4_address_spec", b"internal_ipv4_address_spec"]) -> None: ...
|
|
78
|
+
def WhichOneof(self, oneof_group: typing.Literal["address", b"address"]) -> typing.Literal["address_id", "internal_ipv4_address_spec"] | None: ...
|
|
79
|
+
|
|
80
|
+
global___AddressSpec = AddressSpec
|
|
81
|
+
|
|
82
|
+
@typing.final
|
|
83
|
+
class CreatePrivateEndpointRequest(google.protobuf.message.Message):
|
|
84
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
85
|
+
|
|
86
|
+
@typing.final
|
|
87
|
+
class LabelsEntry(google.protobuf.message.Message):
|
|
88
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
89
|
+
|
|
90
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
91
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
92
|
+
key: builtins.str
|
|
93
|
+
value: builtins.str
|
|
94
|
+
def __init__(
|
|
95
|
+
self,
|
|
96
|
+
*,
|
|
97
|
+
key: builtins.str = ...,
|
|
98
|
+
value: builtins.str = ...,
|
|
99
|
+
) -> None: ...
|
|
100
|
+
def ClearField(self, field_name: typing.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
101
|
+
|
|
102
|
+
FOLDER_ID_FIELD_NUMBER: builtins.int
|
|
103
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
104
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
105
|
+
LABELS_FIELD_NUMBER: builtins.int
|
|
106
|
+
NETWORK_ID_FIELD_NUMBER: builtins.int
|
|
107
|
+
ADDRESS_SPEC_FIELD_NUMBER: builtins.int
|
|
108
|
+
DNS_OPTIONS_FIELD_NUMBER: builtins.int
|
|
109
|
+
OBJECT_STORAGE_FIELD_NUMBER: builtins.int
|
|
110
|
+
folder_id: builtins.str
|
|
111
|
+
"""ID of the folder to create a private endpoint in.
|
|
112
|
+
|
|
113
|
+
To get a folder ID make a
|
|
114
|
+
[yandex.cloud.resourcemanager.v1.FolderService.List] request.
|
|
115
|
+
"""
|
|
116
|
+
name: builtins.str
|
|
117
|
+
"""Name of the private endpoint.
|
|
118
|
+
The name must be unique within the folder.
|
|
119
|
+
"""
|
|
120
|
+
description: builtins.str
|
|
121
|
+
"""Description of the private endpoint."""
|
|
122
|
+
network_id: builtins.str
|
|
123
|
+
"""ID of the network to create a private endpoint in."""
|
|
124
|
+
@property
|
|
125
|
+
def labels(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
126
|
+
"""Private endpoint labels as `key:value` pairs."""
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
def address_spec(self) -> global___AddressSpec:
|
|
130
|
+
"""Private endpoint address specification."""
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
def dns_options(self) -> yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint.DnsOptions:
|
|
134
|
+
"""Private endpoint dns options."""
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
def object_storage(self) -> yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint.ObjectStorage:
|
|
138
|
+
"""Yandex Cloud Object Storage."""
|
|
139
|
+
|
|
140
|
+
def __init__(
|
|
141
|
+
self,
|
|
142
|
+
*,
|
|
143
|
+
folder_id: builtins.str = ...,
|
|
144
|
+
name: builtins.str = ...,
|
|
145
|
+
description: builtins.str = ...,
|
|
146
|
+
labels: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
147
|
+
network_id: builtins.str = ...,
|
|
148
|
+
address_spec: global___AddressSpec | None = ...,
|
|
149
|
+
dns_options: yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint.DnsOptions | None = ...,
|
|
150
|
+
object_storage: yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint.ObjectStorage | None = ...,
|
|
151
|
+
) -> None: ...
|
|
152
|
+
def HasField(self, field_name: typing.Literal["address_spec", b"address_spec", "dns_options", b"dns_options", "object_storage", b"object_storage", "service", b"service"]) -> builtins.bool: ...
|
|
153
|
+
def ClearField(self, field_name: typing.Literal["address_spec", b"address_spec", "description", b"description", "dns_options", b"dns_options", "folder_id", b"folder_id", "labels", b"labels", "name", b"name", "network_id", b"network_id", "object_storage", b"object_storage", "service", b"service"]) -> None: ...
|
|
154
|
+
def WhichOneof(self, oneof_group: typing.Literal["service", b"service"]) -> typing.Literal["object_storage"] | None: ...
|
|
155
|
+
|
|
156
|
+
global___CreatePrivateEndpointRequest = CreatePrivateEndpointRequest
|
|
157
|
+
|
|
158
|
+
@typing.final
|
|
159
|
+
class CreatePrivateEndpointMetadata(google.protobuf.message.Message):
|
|
160
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
161
|
+
|
|
162
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
163
|
+
private_endpoint_id: builtins.str
|
|
164
|
+
"""ID of the private endpoint that is being created."""
|
|
165
|
+
def __init__(
|
|
166
|
+
self,
|
|
167
|
+
*,
|
|
168
|
+
private_endpoint_id: builtins.str = ...,
|
|
169
|
+
) -> None: ...
|
|
170
|
+
def ClearField(self, field_name: typing.Literal["private_endpoint_id", b"private_endpoint_id"]) -> None: ...
|
|
171
|
+
|
|
172
|
+
global___CreatePrivateEndpointMetadata = CreatePrivateEndpointMetadata
|
|
173
|
+
|
|
174
|
+
@typing.final
|
|
175
|
+
class UpdatePrivateEndpointRequest(google.protobuf.message.Message):
|
|
176
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
177
|
+
|
|
178
|
+
@typing.final
|
|
179
|
+
class LabelsEntry(google.protobuf.message.Message):
|
|
180
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
181
|
+
|
|
182
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
183
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
184
|
+
key: builtins.str
|
|
185
|
+
value: builtins.str
|
|
186
|
+
def __init__(
|
|
187
|
+
self,
|
|
188
|
+
*,
|
|
189
|
+
key: builtins.str = ...,
|
|
190
|
+
value: builtins.str = ...,
|
|
191
|
+
) -> None: ...
|
|
192
|
+
def ClearField(self, field_name: typing.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
193
|
+
|
|
194
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
195
|
+
UPDATE_MASK_FIELD_NUMBER: builtins.int
|
|
196
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
197
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
198
|
+
LABELS_FIELD_NUMBER: builtins.int
|
|
199
|
+
ADDRESS_SPEC_FIELD_NUMBER: builtins.int
|
|
200
|
+
DNS_OPTIONS_FIELD_NUMBER: builtins.int
|
|
201
|
+
private_endpoint_id: builtins.str
|
|
202
|
+
"""ID of the private endpoint to update.
|
|
203
|
+
|
|
204
|
+
To get the private endpoint ID make a [PrivateEndpointService.List]
|
|
205
|
+
request.
|
|
206
|
+
"""
|
|
207
|
+
name: builtins.str
|
|
208
|
+
"""New name for the private endpoint.
|
|
209
|
+
The name must be unique within the folder.
|
|
210
|
+
"""
|
|
211
|
+
description: builtins.str
|
|
212
|
+
"""New description of the private endpoint."""
|
|
213
|
+
@property
|
|
214
|
+
def update_mask(self) -> google.protobuf.field_mask_pb2.FieldMask:
|
|
215
|
+
"""Field mask that specifies which attributes of the PrivateEndpoint should be
|
|
216
|
+
updated.
|
|
217
|
+
"""
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
def labels(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
221
|
+
"""Private endpoint labels as `key:value` pairs.
|
|
222
|
+
|
|
223
|
+
Existing set of labels is completely replaced by the provided set, so if
|
|
224
|
+
you just want to add or remove a label:
|
|
225
|
+
1. Get the current set of labels with a [PrivateEndpointService.Get]
|
|
226
|
+
request.
|
|
227
|
+
2. Add or remove a label in this set.
|
|
228
|
+
3. Send the new set in this field.
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
def address_spec(self) -> global___AddressSpec:
|
|
233
|
+
"""Private endpoint address specification."""
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
def dns_options(self) -> yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint.DnsOptions:
|
|
237
|
+
"""Private endpoint dns options."""
|
|
238
|
+
|
|
239
|
+
def __init__(
|
|
240
|
+
self,
|
|
241
|
+
*,
|
|
242
|
+
private_endpoint_id: builtins.str = ...,
|
|
243
|
+
update_mask: google.protobuf.field_mask_pb2.FieldMask | None = ...,
|
|
244
|
+
name: builtins.str = ...,
|
|
245
|
+
description: builtins.str = ...,
|
|
246
|
+
labels: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
247
|
+
address_spec: global___AddressSpec | None = ...,
|
|
248
|
+
dns_options: yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint.DnsOptions | None = ...,
|
|
249
|
+
) -> None: ...
|
|
250
|
+
def HasField(self, field_name: typing.Literal["address_spec", b"address_spec", "dns_options", b"dns_options", "update_mask", b"update_mask"]) -> builtins.bool: ...
|
|
251
|
+
def ClearField(self, field_name: typing.Literal["address_spec", b"address_spec", "description", b"description", "dns_options", b"dns_options", "labels", b"labels", "name", b"name", "private_endpoint_id", b"private_endpoint_id", "update_mask", b"update_mask"]) -> None: ...
|
|
252
|
+
|
|
253
|
+
global___UpdatePrivateEndpointRequest = UpdatePrivateEndpointRequest
|
|
254
|
+
|
|
255
|
+
@typing.final
|
|
256
|
+
class UpdatePrivateEndpointMetadata(google.protobuf.message.Message):
|
|
257
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
258
|
+
|
|
259
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
260
|
+
private_endpoint_id: builtins.str
|
|
261
|
+
"""ID of the private endpoint that is being updated."""
|
|
262
|
+
def __init__(
|
|
263
|
+
self,
|
|
264
|
+
*,
|
|
265
|
+
private_endpoint_id: builtins.str = ...,
|
|
266
|
+
) -> None: ...
|
|
267
|
+
def ClearField(self, field_name: typing.Literal["private_endpoint_id", b"private_endpoint_id"]) -> None: ...
|
|
268
|
+
|
|
269
|
+
global___UpdatePrivateEndpointMetadata = UpdatePrivateEndpointMetadata
|
|
270
|
+
|
|
271
|
+
@typing.final
|
|
272
|
+
class DeletePrivateEndpointRequest(google.protobuf.message.Message):
|
|
273
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
274
|
+
|
|
275
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
276
|
+
private_endpoint_id: builtins.str
|
|
277
|
+
"""ID of the private endpoint to delete.
|
|
278
|
+
|
|
279
|
+
To get a private endpoint ID make a [PrivateEndpointService.List] request.
|
|
280
|
+
"""
|
|
281
|
+
def __init__(
|
|
282
|
+
self,
|
|
283
|
+
*,
|
|
284
|
+
private_endpoint_id: builtins.str = ...,
|
|
285
|
+
) -> None: ...
|
|
286
|
+
def ClearField(self, field_name: typing.Literal["private_endpoint_id", b"private_endpoint_id"]) -> None: ...
|
|
287
|
+
|
|
288
|
+
global___DeletePrivateEndpointRequest = DeletePrivateEndpointRequest
|
|
289
|
+
|
|
290
|
+
@typing.final
|
|
291
|
+
class DeletePrivateEndpointMetadata(google.protobuf.message.Message):
|
|
292
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
293
|
+
|
|
294
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
295
|
+
private_endpoint_id: builtins.str
|
|
296
|
+
"""ID of the private endpoint that is being deleted."""
|
|
297
|
+
def __init__(
|
|
298
|
+
self,
|
|
299
|
+
*,
|
|
300
|
+
private_endpoint_id: builtins.str = ...,
|
|
301
|
+
) -> None: ...
|
|
302
|
+
def ClearField(self, field_name: typing.Literal["private_endpoint_id", b"private_endpoint_id"]) -> None: ...
|
|
303
|
+
|
|
304
|
+
global___DeletePrivateEndpointMetadata = DeletePrivateEndpointMetadata
|
|
305
|
+
|
|
306
|
+
@typing.final
|
|
307
|
+
class ListPrivateEndpointsRequest(google.protobuf.message.Message):
|
|
308
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
309
|
+
|
|
310
|
+
FOLDER_ID_FIELD_NUMBER: builtins.int
|
|
311
|
+
PAGE_SIZE_FIELD_NUMBER: builtins.int
|
|
312
|
+
PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
313
|
+
FILTER_FIELD_NUMBER: builtins.int
|
|
314
|
+
folder_id: builtins.str
|
|
315
|
+
"""ID of the folder to list private endpoints in.
|
|
316
|
+
|
|
317
|
+
To get the folder ID use a
|
|
318
|
+
[yandex.cloud.resourcemanager.v1.FolderService.List] request.
|
|
319
|
+
"""
|
|
320
|
+
page_size: builtins.int
|
|
321
|
+
"""The maximum number of results per page to return. If the number of
|
|
322
|
+
available results is larger than `page_size`, the service returns a
|
|
323
|
+
[ListPrivateEndpointsResponse.next_page_token] that can be used to get the
|
|
324
|
+
next page of results in subsequent list requests. Default value: 100.
|
|
325
|
+
"""
|
|
326
|
+
page_token: builtins.str
|
|
327
|
+
"""Page token. To get the next page of results, set `page_token` to the
|
|
328
|
+
[ListPrivateEndpointsResponse.next_page_token] returned by a previous list
|
|
329
|
+
request.
|
|
330
|
+
"""
|
|
331
|
+
filter: builtins.str
|
|
332
|
+
"""A filter expression that filters PrivateEndpoint listed in the response.
|
|
333
|
+
|
|
334
|
+
The expression must specify:
|
|
335
|
+
1. The field name. Currently you can use filtering only on
|
|
336
|
+
[PrivateEndpoint.name] field.
|
|
337
|
+
2. An `=` operator.
|
|
338
|
+
3. The value in double quotes (`"`). Must be 3-63 characters long and match
|
|
339
|
+
the regular expression `[a-z][-a-z0-9]{1,61}[a-z0-9]`. Example of a filter:
|
|
340
|
+
`name=my-private-endpoint`.
|
|
341
|
+
"""
|
|
342
|
+
def __init__(
|
|
343
|
+
self,
|
|
344
|
+
*,
|
|
345
|
+
folder_id: builtins.str = ...,
|
|
346
|
+
page_size: builtins.int = ...,
|
|
347
|
+
page_token: builtins.str = ...,
|
|
348
|
+
filter: builtins.str = ...,
|
|
349
|
+
) -> None: ...
|
|
350
|
+
def HasField(self, field_name: typing.Literal["container", b"container", "folder_id", b"folder_id"]) -> builtins.bool: ...
|
|
351
|
+
def ClearField(self, field_name: typing.Literal["container", b"container", "filter", b"filter", "folder_id", b"folder_id", "page_size", b"page_size", "page_token", b"page_token"]) -> None: ...
|
|
352
|
+
def WhichOneof(self, oneof_group: typing.Literal["container", b"container"]) -> typing.Literal["folder_id"] | None: ...
|
|
353
|
+
|
|
354
|
+
global___ListPrivateEndpointsRequest = ListPrivateEndpointsRequest
|
|
355
|
+
|
|
356
|
+
@typing.final
|
|
357
|
+
class ListPrivateEndpointsResponse(google.protobuf.message.Message):
|
|
358
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
359
|
+
|
|
360
|
+
PRIVATE_ENDPOINTS_FIELD_NUMBER: builtins.int
|
|
361
|
+
NEXT_PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
362
|
+
next_page_token: builtins.str
|
|
363
|
+
"""Token for getting the next page of the list. If the number of results is
|
|
364
|
+
greater than the specified [ListPrivateEndpointsRequest.page_size], use
|
|
365
|
+
`next_page_token` as the value for the
|
|
366
|
+
[ListPrivateEndpointsRequest.page_token] parameter in the next list
|
|
367
|
+
request.
|
|
368
|
+
|
|
369
|
+
Each subsequent page will have its own `next_page_token` to continue paging
|
|
370
|
+
through the results.
|
|
371
|
+
"""
|
|
372
|
+
@property
|
|
373
|
+
def private_endpoints(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint]:
|
|
374
|
+
"""List of private endpoints."""
|
|
375
|
+
|
|
376
|
+
def __init__(
|
|
377
|
+
self,
|
|
378
|
+
*,
|
|
379
|
+
private_endpoints: collections.abc.Iterable[yandex.cloud.vpc.v1.privatelink.private_endpoint_pb2.PrivateEndpoint] | None = ...,
|
|
380
|
+
next_page_token: builtins.str = ...,
|
|
381
|
+
) -> None: ...
|
|
382
|
+
def ClearField(self, field_name: typing.Literal["next_page_token", b"next_page_token", "private_endpoints", b"private_endpoints"]) -> None: ...
|
|
383
|
+
|
|
384
|
+
global___ListPrivateEndpointsResponse = ListPrivateEndpointsResponse
|
|
385
|
+
|
|
386
|
+
@typing.final
|
|
387
|
+
class ListPrivateEndpointOperationsRequest(google.protobuf.message.Message):
|
|
388
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
389
|
+
|
|
390
|
+
PRIVATE_ENDPOINT_ID_FIELD_NUMBER: builtins.int
|
|
391
|
+
PAGE_SIZE_FIELD_NUMBER: builtins.int
|
|
392
|
+
PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
393
|
+
private_endpoint_id: builtins.str
|
|
394
|
+
"""ID of the private endpoint to list operations for.
|
|
395
|
+
|
|
396
|
+
To get a private endpoint ID make a [PrivateEndpointService.List] request.
|
|
397
|
+
"""
|
|
398
|
+
page_size: builtins.int
|
|
399
|
+
"""The maximum number of results per page to return. If the number of
|
|
400
|
+
available results is larger than [page_size], the service returns a
|
|
401
|
+
[ListPrivateEndpointOperationsResponse.next_page_token] that can be used to
|
|
402
|
+
get the next page of results in subsequent list requests. Default value:
|
|
403
|
+
100.
|
|
404
|
+
"""
|
|
405
|
+
page_token: builtins.str
|
|
406
|
+
"""Page token. To get the next page of results, set [page_token] to the
|
|
407
|
+
[ListPrivateEndpointOperationsResponse.next_page_token] returned by a
|
|
408
|
+
previous list request.
|
|
409
|
+
"""
|
|
410
|
+
def __init__(
|
|
411
|
+
self,
|
|
412
|
+
*,
|
|
413
|
+
private_endpoint_id: builtins.str = ...,
|
|
414
|
+
page_size: builtins.int = ...,
|
|
415
|
+
page_token: builtins.str = ...,
|
|
416
|
+
) -> None: ...
|
|
417
|
+
def ClearField(self, field_name: typing.Literal["page_size", b"page_size", "page_token", b"page_token", "private_endpoint_id", b"private_endpoint_id"]) -> None: ...
|
|
418
|
+
|
|
419
|
+
global___ListPrivateEndpointOperationsRequest = ListPrivateEndpointOperationsRequest
|
|
420
|
+
|
|
421
|
+
@typing.final
|
|
422
|
+
class ListPrivateEndpointOperationsResponse(google.protobuf.message.Message):
|
|
423
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
424
|
+
|
|
425
|
+
OPERATIONS_FIELD_NUMBER: builtins.int
|
|
426
|
+
NEXT_PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
427
|
+
next_page_token: builtins.str
|
|
428
|
+
"""Token for getting the next page of the list. If the number of results is
|
|
429
|
+
greater than the specified
|
|
430
|
+
[ListPrivateEndpointOperationsRequest.page_size], use `next_page_token` as
|
|
431
|
+
the value for the [ListPrivateEndpointOperationsRequest.page_token]
|
|
432
|
+
parameter in the next list request.
|
|
433
|
+
|
|
434
|
+
Each subsequent page will have its own `next_page_token` to continue paging
|
|
435
|
+
through the results.
|
|
436
|
+
"""
|
|
437
|
+
@property
|
|
438
|
+
def operations(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[yandex.cloud.operation.operation_pb2.Operation]:
|
|
439
|
+
"""List of operations for the specified private endpoint."""
|
|
440
|
+
|
|
441
|
+
def __init__(
|
|
442
|
+
self,
|
|
443
|
+
*,
|
|
444
|
+
operations: collections.abc.Iterable[yandex.cloud.operation.operation_pb2.Operation] | None = ...,
|
|
445
|
+
next_page_token: builtins.str = ...,
|
|
446
|
+
) -> None: ...
|
|
447
|
+
def ClearField(self, field_name: typing.Literal["next_page_token", b"next_page_token", "operations", b"operations"]) -> None: ...
|
|
448
|
+
|
|
449
|
+
global___ListPrivateEndpointOperationsResponse = ListPrivateEndpointOperationsResponse
|