Skip to content

Commit 9d289da

Browse files
feat: regenerate proto
1 parent 333c489 commit 9d289da

File tree

64 files changed

+6730
-801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+6730
-801
lines changed

cloudapi

Submodule cloudapi updated 26 files

yandex/cloud/backup/v1/policy_pb2.py

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yandex/cloud/backup/v1/policy_pb2.pyi

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,21 @@ class PolicySettings(google.protobuf.message.Message):
197197
"""Launch command before backup execution"""
198198
POST_COMMAND: PolicySettings._CommandType.ValueType # 2
199199
"""Launch command after backup execution"""
200+
PRE_DATA_COMMAND: PolicySettings._CommandType.ValueType # 3
201+
"""Launch command before data capture (snapshot execution)"""
202+
POST_DATA_COMMAND: PolicySettings._CommandType.ValueType # 4
203+
"""Launch command after data capture (snapshot execution)"""
200204

201205
class CommandType(_CommandType, metaclass=_CommandTypeEnumTypeWrapper): ...
202206
COMMAND_TYPE_UNSPECIFIED: PolicySettings.CommandType.ValueType # 0
203207
PRE_COMMAND: PolicySettings.CommandType.ValueType # 1
204208
"""Launch command before backup execution"""
205209
POST_COMMAND: PolicySettings.CommandType.ValueType # 2
206210
"""Launch command after backup execution"""
211+
PRE_DATA_COMMAND: PolicySettings.CommandType.ValueType # 3
212+
"""Launch command before data capture (snapshot execution)"""
213+
POST_DATA_COMMAND: PolicySettings.CommandType.ValueType # 4
214+
"""Launch command after data capture (snapshot execution)"""
207215

208216
@typing.final
209217
class Interval(google.protobuf.message.Message):

yandex/cloud/compute/v1/instance_service_pb2.pyi

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,14 @@ class ListInstancesRequest(google.protobuf.message.Message):
9696
The expression consists of one or more conditions united by `AND` operator: `<condition1> [AND <condition2> [<...> AND <conditionN>]]`.
9797
9898
Each condition has the form `<field> <operator> <value>`, where:
99-
1. `<field>` is the field name. Currently you can use filtering only on the limited number of fields.
99+
1. `<field>` is the field name. Currently you can use filtering on these fields only:
100+
- `id`: ID of the instance.
101+
- `name`: name of the instance.
102+
- `created_at`: timestamp representing the moment in time the instance was created at.
103+
- `status`: [status](/docs/compute/concepts/vm-statuses) of the instance.
104+
- `zone_id`: ID of the [availability zone](/docs/overview/concepts/geo-scope) where the instance resides.
105+
- `platform_id`: ID of the hardware [platform configuration](/docs/compute/concepts/vm-platforms) the instance is created on.
106+
- `host_id`: ID of the [dedicated host](/docs/compute/concepts/dedicated-host) that the instance belongs to.
100107
2. `<operator>` is a logical operator, one of `=`, `!=`, `IN`, `NOT IN`.
101108
3. `<value>` represents a value.
102109
String values should be written in double (`"`) or single (`'`) quotes. C-style escape sequences are supported (`\\"` turns to `"`, `\\'` to `'`, `\\\\` to backslash).

yandex/cloud/connectionmanager/v1/connection_pb2.py

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yandex/cloud/connectionmanager/v1/connection_pb2.pyi

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import yandex.cloud.connectionmanager.v1.mysql_pb2
2121
import yandex.cloud.connectionmanager.v1.opensearch_pb2
2222
import yandex.cloud.connectionmanager.v1.postgresql_pb2
2323
import yandex.cloud.connectionmanager.v1.redis_pb2
24+
import yandex.cloud.connectionmanager.v1.storedoc_pb2
2425
import yandex.cloud.connectionmanager.v1.trino_pb2
2526
import yandex.cloud.connectionmanager.v1.valkey_pb2
2627

@@ -48,6 +49,7 @@ class _DBTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTyp
4849
TRINO: _DBType.ValueType # 8
4950
VALKEY: _DBType.ValueType # 9
5051
GREENPLUM: _DBType.ValueType # 10
52+
STOREDOC: _DBType.ValueType # 11
5153

5254
class DBType(_DBType, metaclass=_DBTypeEnumTypeWrapper): ...
5355

@@ -62,6 +64,7 @@ OPENSEARCH: DBType.ValueType # 7
6264
TRINO: DBType.ValueType # 8
6365
VALKEY: DBType.ValueType # 9
6466
GREENPLUM: DBType.ValueType # 10
67+
STOREDOC: DBType.ValueType # 11
6568
global___DBType = DBType
6669

6770
@typing.final
@@ -78,6 +81,7 @@ class ConnectionParams(google.protobuf.message.Message):
7881
TRINO_FIELD_NUMBER: builtins.int
7982
VALKEY_FIELD_NUMBER: builtins.int
8083
GREENPLUM_FIELD_NUMBER: builtins.int
84+
STOREDOC_FIELD_NUMBER: builtins.int
8185
@property
8286
def postgresql(self) -> yandex.cloud.connectionmanager.v1.postgresql_pb2.PostgreSQLConnection: ...
8387
@property
@@ -98,6 +102,8 @@ class ConnectionParams(google.protobuf.message.Message):
98102
def valkey(self) -> yandex.cloud.connectionmanager.v1.valkey_pb2.ValkeyConnection: ...
99103
@property
100104
def greenplum(self) -> yandex.cloud.connectionmanager.v1.greenplum_pb2.GreenplumConnection: ...
105+
@property
106+
def storedoc(self) -> yandex.cloud.connectionmanager.v1.storedoc_pb2.StoreDocConnection: ...
101107
def __init__(
102108
self,
103109
*,
@@ -111,10 +117,11 @@ class ConnectionParams(google.protobuf.message.Message):
111117
trino: yandex.cloud.connectionmanager.v1.trino_pb2.TrinoConnection | None = ...,
112118
valkey: yandex.cloud.connectionmanager.v1.valkey_pb2.ValkeyConnection | None = ...,
113119
greenplum: yandex.cloud.connectionmanager.v1.greenplum_pb2.GreenplumConnection | None = ...,
120+
storedoc: yandex.cloud.connectionmanager.v1.storedoc_pb2.StoreDocConnection | None = ...,
114121
) -> None: ...
115-
def HasField(self, field_name: typing.Literal["clickhouse", b"clickhouse", "greenplum", b"greenplum", "kafka", b"kafka", "mongodb", b"mongodb", "mysql", b"mysql", "opensearch", b"opensearch", "postgresql", b"postgresql", "redis", b"redis", "trino", b"trino", "type", b"type", "valkey", b"valkey"]) -> builtins.bool: ...
116-
def ClearField(self, field_name: typing.Literal["clickhouse", b"clickhouse", "greenplum", b"greenplum", "kafka", b"kafka", "mongodb", b"mongodb", "mysql", b"mysql", "opensearch", b"opensearch", "postgresql", b"postgresql", "redis", b"redis", "trino", b"trino", "type", b"type", "valkey", b"valkey"]) -> None: ...
117-
def WhichOneof(self, oneof_group: typing.Literal["type", b"type"]) -> typing.Literal["postgresql", "mysql", "mongodb", "clickhouse", "kafka", "redis", "opensearch", "trino", "valkey", "greenplum"] | None: ...
122+
def HasField(self, field_name: typing.Literal["clickhouse", b"clickhouse", "greenplum", b"greenplum", "kafka", b"kafka", "mongodb", b"mongodb", "mysql", b"mysql", "opensearch", b"opensearch", "postgresql", b"postgresql", "redis", b"redis", "storedoc", b"storedoc", "trino", b"trino", "type", b"type", "valkey", b"valkey"]) -> builtins.bool: ...
123+
def ClearField(self, field_name: typing.Literal["clickhouse", b"clickhouse", "greenplum", b"greenplum", "kafka", b"kafka", "mongodb", b"mongodb", "mysql", b"mysql", "opensearch", b"opensearch", "postgresql", b"postgresql", "redis", b"redis", "storedoc", b"storedoc", "trino", b"trino", "type", b"type", "valkey", b"valkey"]) -> None: ...
124+
def WhichOneof(self, oneof_group: typing.Literal["type", b"type"]) -> typing.Literal["postgresql", "mysql", "mongodb", "clickhouse", "kafka", "redis", "opensearch", "trino", "valkey", "greenplum", "storedoc"] | None: ...
118125

119126
global___ConnectionParams = ConnectionParams
120127

0 commit comments

Comments
 (0)