yandexcloud 0.296.0__py3-none-any.whl → 0.298.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/datasphere/v2/community_pb2.py +4 -4
- yandex/cloud/datasphere/v2/community_pb2.pyi +5 -1
- yandex/cloud/datasphere/v2/community_service_pb2.py +38 -36
- yandex/cloud/datasphere/v2/community_service_pb2.pyi +5 -1
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2.py +56 -56
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2.pyi +13 -1
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.py +138 -131
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.pyi +319 -72
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.py +93 -93
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.pyi +288 -72
- yandex/cloud/mdb/redis/v1/cluster_pb2.py +42 -35
- yandex/cloud/mdb/redis/v1/cluster_pb2.pyi +39 -2
- yandex/cloud/mdb/redis/v1/cluster_service_pb2.py +114 -114
- yandex/cloud/mdb/redis/v1/cluster_service_pb2.pyi +24 -6
- yandexcloud/_sdk.py +1 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/METADATA +1 -1
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/RECORD +21 -21
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/AUTHORS +0 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/LICENSE +0 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/WHEEL +0 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
|
14
14
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*yandex/cloud/datasphere/v2/community.proto\x12\x1ayandex.cloud.datasphere.v2\x1a\x1fgoogle/protobuf/timestamp.proto\"\
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*yandex/cloud/datasphere/v2/community.proto\x12\x1ayandex.cloud.datasphere.v2\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa3\x02\n\tCommunity\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12\x41\n\x06labels\x18\x05 \x03(\x0b\x32\x31.yandex.cloud.datasphere.v2.Community.LabelsEntry\x12\x15\n\rcreated_by_id\x18\x06 \x01(\t\x12\x17\n\x0forganization_id\x18\n \x01(\t\x12\x0f\n\x07zone_id\x18\x0b \x01(\t\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x07\x10\nBk\n\x1eyandex.cloud.api.datasphere.v2ZIgithub.com/yandex-cloud/go-genproto/yandex/cloud/datasphere/v2;datasphereb\x06proto3')
|
|
18
18
|
|
|
19
19
|
_globals = globals()
|
|
20
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -25,7 +25,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
25
25
|
_COMMUNITY_LABELSENTRY._options = None
|
|
26
26
|
_COMMUNITY_LABELSENTRY._serialized_options = b'8\001'
|
|
27
27
|
_globals['_COMMUNITY']._serialized_start=108
|
|
28
|
-
_globals['_COMMUNITY']._serialized_end=
|
|
29
|
-
_globals['_COMMUNITY_LABELSENTRY']._serialized_start=
|
|
30
|
-
_globals['_COMMUNITY_LABELSENTRY']._serialized_end=
|
|
28
|
+
_globals['_COMMUNITY']._serialized_end=399
|
|
29
|
+
_globals['_COMMUNITY_LABELSENTRY']._serialized_start=348
|
|
30
|
+
_globals['_COMMUNITY_LABELSENTRY']._serialized_end=393
|
|
31
31
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -40,6 +40,7 @@ class Community(google.protobuf.message.Message):
|
|
|
40
40
|
LABELS_FIELD_NUMBER: builtins.int
|
|
41
41
|
CREATED_BY_ID_FIELD_NUMBER: builtins.int
|
|
42
42
|
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
43
|
+
ZONE_ID_FIELD_NUMBER: builtins.int
|
|
43
44
|
id: builtins.str
|
|
44
45
|
"""ID of the community."""
|
|
45
46
|
name: builtins.str
|
|
@@ -50,6 +51,8 @@ class Community(google.protobuf.message.Message):
|
|
|
50
51
|
"""ID of the user who created the community."""
|
|
51
52
|
organization_id: builtins.str
|
|
52
53
|
"""ID of the organization to which community belongs."""
|
|
54
|
+
zone_id: builtins.str
|
|
55
|
+
"""ID of the zone where this community was created"""
|
|
53
56
|
@property
|
|
54
57
|
def created_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
55
58
|
"""Time when community was created."""
|
|
@@ -68,8 +71,9 @@ class Community(google.protobuf.message.Message):
|
|
|
68
71
|
labels: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
69
72
|
created_by_id: builtins.str = ...,
|
|
70
73
|
organization_id: builtins.str = ...,
|
|
74
|
+
zone_id: builtins.str = ...,
|
|
71
75
|
) -> None: ...
|
|
72
76
|
def HasField(self, field_name: typing.Literal["created_at", b"created_at"]) -> builtins.bool: ...
|
|
73
|
-
def ClearField(self, field_name: typing.Literal["created_at", b"created_at", "created_by_id", b"created_by_id", "description", b"description", "id", b"id", "labels", b"labels", "name", b"name", "organization_id", b"organization_id"]) -> None: ...
|
|
77
|
+
def ClearField(self, field_name: typing.Literal["created_at", b"created_at", "created_by_id", b"created_by_id", "description", b"description", "id", b"id", "labels", b"labels", "name", b"name", "organization_id", b"organization_id", "zone_id", b"zone_id"]) -> None: ...
|
|
74
78
|
|
|
75
79
|
global___Community = Community
|
|
@@ -23,7 +23,7 @@ from yandex.cloud.datasphere.v2 import resource_types_pb2 as yandex_dot_cloud_do
|
|
|
23
23
|
from yandex.cloud.datasphere.v2 import restrictions_pb2 as yandex_dot_cloud_dot_datasphere_dot_v2_dot_restrictions__pb2
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2yandex/cloud/datasphere/v2/community_service.proto\x12\x1ayandex.cloud.datasphere.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a yandex/cloud/access/access.proto\x1a yandex/cloud/api/operation.proto\x1a\x1dyandex/cloud/validation.proto\x1a&yandex/cloud/operation/operation.proto\x1a*yandex/cloud/datasphere/v2/community.proto\x1a/yandex/cloud/datasphere/v2/resource_types.proto\x1a-yandex/cloud/datasphere/v2/restrictions.proto\"\
|
|
26
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2yandex/cloud/datasphere/v2/community_service.proto\x12\x1ayandex.cloud.datasphere.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a yandex/cloud/access/access.proto\x1a yandex/cloud/api/operation.proto\x1a\x1dyandex/cloud/validation.proto\x1a&yandex/cloud/operation/operation.proto\x1a*yandex/cloud/datasphere/v2/community.proto\x1a/yandex/cloud/datasphere/v2/resource_types.proto\x1a-yandex/cloud/datasphere/v2/restrictions.proto\"\xca\x02\n\x16\x43reateCommunityRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xf2\xc7\x31\x30[a-zA-Z0-9\xd0\x81\xd1\x91\xd0\x90-\xd1\x8f]\\S{1,61}[a-zA-Z0-9\xd0\x81\xd1\x91\xd0\x90-\xd1\x8f]\x8a\xc8\x31\x04<=63\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x1d\n\x0forganization_id\x18\x03 \x01(\tB\x04\xe8\xc7\x31\x01\x12\x1a\n\x12\x62illing_account_id\x18\x04 \x01(\t\x12N\n\x06labels\x18\x05 \x03(\x0b\x32>.yandex.cloud.datasphere.v2.CreateCommunityRequest.LabelsEntry\x12\x15\n\x07zone_id\x18\x06 \x01(\tB\x04\xe8\xc7\x31\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"/\n\x17\x43reateCommunityMetadata\x12\x14\n\x0c\x63ommunity_id\x18\x01 \x01(\t\"1\n\x13GetCommunityRequest\x12\x1a\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\"\x87\x02\n\x16UpdateCommunityRequest\x12\x1a\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12N\n\x06labels\x18\x05 \x03(\x0b\x32>.yandex.cloud.datasphere.v2.UpdateCommunityRequest.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"/\n\x17UpdateCommunityMetadata\x12\x14\n\x0c\x63ommunity_id\x18\x01 \x01(\t\"4\n\x16\x44\x65leteCommunityRequest\x12\x1a\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\"/\n\x17\x44\x65leteCommunityMetadata\x12\x14\n\x0c\x63ommunity_id\x18\x01 \x01(\t\"\xb3\x01\n\x16ListCommunitiesRequest\x12\x11\n\tpage_size\x18\x01 \x01(\x03\x12\x12\n\npage_token\x18\x02 \x01(\t\x12#\n\x1bname_or_description_pattern\x18\x03 \x01(\t\x12\x13\n\x0bowned_by_id\x18\x05 \x01(\t\x12\x13\n\x0blist_public\x18\x06 \x01(\x08\x12\x1d\n\x0forganization_id\x18\x07 \x01(\tB\x04\xe8\xc7\x31\x01J\x04\x08\x04\x10\x05\"n\n\x17ListCommunitiesResponse\x12:\n\x0b\x63ommunities\x18\x01 \x03(\x0b\x32%.yandex.cloud.datasphere.v2.Community\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\":\n\"SetCommunityAccessBindingsMetadata\x12\x14\n\x0c\x63ommunity_id\x18\x01 \x01(\t\"=\n%UpdateCommunityAccessBindingsMetadata\x12\x14\n\x0c\x63ommunity_id\x18\x01 \x01(\t\"\xa3\x01\n\x1b\x41\x64\x64\x43ommunityResourceRequest\x12\"\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x45\n\rresource_type\x18\x02 \x01(\x0e\x32(.yandex.cloud.datasphere.v2.ResourceTypeB\x04\xe8\xc7\x31\x01\x12\x19\n\x0bresource_id\x18\x03 \x01(\tB\x04\xe8\xc7\x31\x01\"\xa6\x01\n\x1eRemoveCommunityResourceRequest\x12\"\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x45\n\rresource_type\x18\x02 \x01(\x0e\x32(.yandex.cloud.datasphere.v2.ResourceTypeB\x04\xe8\xc7\x31\x01\x12\x19\n\x0bresource_id\x18\x03 \x01(\tB\x04\xe8\xc7\x31\x01\"=\n\x1fGetCommunityRestrictionsRequest\x12\x1a\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\"|\n\x1fSetCommunityRestrictionsRequest\x12\x1a\n\x0c\x63ommunity_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\x12=\n\x0crestrictions\x18\x02 \x03(\x0b\x32\'.yandex.cloud.datasphere.v2.Restriction2\xe6\x13\n\x10\x43ommunityService\x12\xae\x01\n\x06\x43reate\x12\x32.yandex.cloud.datasphere.v2.CreateCommunityRequest\x1a!.yandex.cloud.operation.Operation\"M\xb2\xd2*$\n\x17\x43reateCommunityMetadata\x12\tCommunity\x82\xd3\xe4\x93\x02\x1f\"\x1a/datasphere/v2/communities:\x01*\x12\x90\x01\n\x03Get\x12/.yandex.cloud.datasphere.v2.GetCommunityRequest\x1a%.yandex.cloud.datasphere.v2.Community\"1\x82\xd3\xe4\x93\x02+\x12)/datasphere/v2/communities/{community_id}\x12\xbd\x01\n\x06Update\x12\x32.yandex.cloud.datasphere.v2.UpdateCommunityRequest\x1a!.yandex.cloud.operation.Operation\"\\\xb2\xd2*$\n\x17UpdateCommunityMetadata\x12\tCommunity\x82\xd3\xe4\x93\x02.2)/datasphere/v2/communities/{community_id}:\x01*\x12\xc6\x01\n\x06\x44\x65lete\x12\x32.yandex.cloud.datasphere.v2.DeleteCommunityRequest\x1a!.yandex.cloud.operation.Operation\"e\xb2\xd2*0\n\x17\x44\x65leteCommunityMetadata\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02+*)/datasphere/v2/communities/{community_id}\x12\x93\x01\n\x04List\x12\x32.yandex.cloud.datasphere.v2.ListCommunitiesRequest\x1a\x33.yandex.cloud.datasphere.v2.ListCommunitiesResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/datasphere/v2/communities\x12\xb6\x01\n\x12ListAccessBindings\x12..yandex.cloud.access.ListAccessBindingsRequest\x1a/.yandex.cloud.access.ListAccessBindingsResponse\"?\x82\xd3\xe4\x93\x02\x39\x12\x37/datasphere/v2/communities/{resource_id}:accessBindings\x12\xec\x01\n\x11SetAccessBindings\x12-.yandex.cloud.access.SetAccessBindingsRequest\x1a!.yandex.cloud.operation.Operation\"\x84\x01\xb2\xd2*;\n\"SetCommunityAccessBindingsMetadata\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02?\":/datasphere/v2/communities/{resource_id}:setAccessBindings:\x01*\x12\xf8\x01\n\x14UpdateAccessBindings\x12\x30.yandex.cloud.access.UpdateAccessBindingsRequest\x1a!.yandex.cloud.operation.Operation\"\x8a\x01\xb2\xd2*>\n%UpdateCommunityAccessBindingsMetadata\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02\x42\x32=/datasphere/v2/communities/{resource_id}:updateAccessBindings:\x01*\x12\xc5\x01\n\x0b\x41\x64\x64Resource\x12\x37.yandex.cloud.datasphere.v2.AddCommunityResourceRequest\x1a!.yandex.cloud.operation.Operation\"Z\xb2\xd2*\x17\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02\x39\"4/datasphere/v2/communities/{resource_id}:addResource:\x01*\x12\xce\x01\n\x0eRemoveResource\x12:.yandex.cloud.datasphere.v2.RemoveCommunityResourceRequest\x1a!.yandex.cloud.operation.Operation\"]\xb2\xd2*\x17\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02<\"7/datasphere/v2/communities/{resource_id}:removeResource:\x01*\x12\x9b\x01\n\x13GetRestrictionsMeta\x12\x16.google.protobuf.Empty\x1a\x37.yandex.cloud.datasphere.v2.GetRestrictionsMetaResponse\"3\x82\xd3\xe4\x93\x02-\x12+/datasphere/v2/communities/restrictionsMeta\x12\xc0\x01\n\x0fGetRestrictions\x12;.yandex.cloud.datasphere.v2.GetCommunityRestrictionsRequest\x1a\x30.yandex.cloud.datasphere.v2.RestrictionsResponse\">\x82\xd3\xe4\x93\x02\x38\x12\x36/datasphere/v2/communities/{community_id}:restrictions\x12\xd1\x01\n\x0fSetRestrictions\x12;.yandex.cloud.datasphere.v2.SetCommunityRestrictionsRequest\x1a!.yandex.cloud.operation.Operation\"^\xb2\xd2*\x16\x12\x14RestrictionsResponse\x82\xd3\xe4\x93\x02>\"9/datasphere/v2/communities/{community_id}:setRestrictions:\x01*Bk\n\x1eyandex.cloud.api.datasphere.v2ZIgithub.com/yandex-cloud/go-genproto/yandex/cloud/datasphere/v2;datasphereb\x06proto3')
|
|
27
27
|
|
|
28
28
|
_globals = globals()
|
|
29
29
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -37,6 +37,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
37
37
|
_CREATECOMMUNITYREQUEST.fields_by_name['name']._serialized_options = b'\362\30710[a-zA-Z0-9\320\201\321\221\320\220-\321\217]\\S{1,61}[a-zA-Z0-9\320\201\321\221\320\220-\321\217]\212\3101\004<=63'
|
|
38
38
|
_CREATECOMMUNITYREQUEST.fields_by_name['organization_id']._options = None
|
|
39
39
|
_CREATECOMMUNITYREQUEST.fields_by_name['organization_id']._serialized_options = b'\350\3071\001'
|
|
40
|
+
_CREATECOMMUNITYREQUEST.fields_by_name['zone_id']._options = None
|
|
41
|
+
_CREATECOMMUNITYREQUEST.fields_by_name['zone_id']._serialized_options = b'\350\3071\001'
|
|
40
42
|
_GETCOMMUNITYREQUEST.fields_by_name['community_id']._options = None
|
|
41
43
|
_GETCOMMUNITYREQUEST.fields_by_name['community_id']._serialized_options = b'\350\3071\001'
|
|
42
44
|
_UPDATECOMMUNITYREQUEST_LABELSENTRY._options = None
|
|
@@ -90,39 +92,39 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
90
92
|
_COMMUNITYSERVICE.methods_by_name['SetRestrictions']._options = None
|
|
91
93
|
_COMMUNITYSERVICE.methods_by_name['SetRestrictions']._serialized_options = b'\262\322*\026\022\024RestrictionsResponse\202\323\344\223\002>\"9/datasphere/v2/communities/{community_id}:setRestrictions:\001*'
|
|
92
94
|
_globals['_CREATECOMMUNITYREQUEST']._serialized_start=455
|
|
93
|
-
_globals['_CREATECOMMUNITYREQUEST']._serialized_end=
|
|
94
|
-
_globals['_CREATECOMMUNITYREQUEST_LABELSENTRY']._serialized_start=
|
|
95
|
-
_globals['_CREATECOMMUNITYREQUEST_LABELSENTRY']._serialized_end=
|
|
96
|
-
_globals['_CREATECOMMUNITYMETADATA']._serialized_start=
|
|
97
|
-
_globals['_CREATECOMMUNITYMETADATA']._serialized_end=
|
|
98
|
-
_globals['_GETCOMMUNITYREQUEST']._serialized_start=
|
|
99
|
-
_globals['_GETCOMMUNITYREQUEST']._serialized_end=
|
|
100
|
-
_globals['_UPDATECOMMUNITYREQUEST']._serialized_start=
|
|
101
|
-
_globals['_UPDATECOMMUNITYREQUEST']._serialized_end=
|
|
102
|
-
_globals['_UPDATECOMMUNITYREQUEST_LABELSENTRY']._serialized_start=
|
|
103
|
-
_globals['_UPDATECOMMUNITYREQUEST_LABELSENTRY']._serialized_end=
|
|
104
|
-
_globals['_UPDATECOMMUNITYMETADATA']._serialized_start=
|
|
105
|
-
_globals['_UPDATECOMMUNITYMETADATA']._serialized_end=
|
|
106
|
-
_globals['_DELETECOMMUNITYREQUEST']._serialized_start=
|
|
107
|
-
_globals['_DELETECOMMUNITYREQUEST']._serialized_end=
|
|
108
|
-
_globals['_DELETECOMMUNITYMETADATA']._serialized_start=
|
|
109
|
-
_globals['_DELETECOMMUNITYMETADATA']._serialized_end=
|
|
110
|
-
_globals['_LISTCOMMUNITIESREQUEST']._serialized_start=
|
|
111
|
-
_globals['_LISTCOMMUNITIESREQUEST']._serialized_end=
|
|
112
|
-
_globals['_LISTCOMMUNITIESRESPONSE']._serialized_start=
|
|
113
|
-
_globals['_LISTCOMMUNITIESRESPONSE']._serialized_end=
|
|
114
|
-
_globals['_SETCOMMUNITYACCESSBINDINGSMETADATA']._serialized_start=
|
|
115
|
-
_globals['_SETCOMMUNITYACCESSBINDINGSMETADATA']._serialized_end=
|
|
116
|
-
_globals['_UPDATECOMMUNITYACCESSBINDINGSMETADATA']._serialized_start=
|
|
117
|
-
_globals['_UPDATECOMMUNITYACCESSBINDINGSMETADATA']._serialized_end=
|
|
118
|
-
_globals['_ADDCOMMUNITYRESOURCEREQUEST']._serialized_start=
|
|
119
|
-
_globals['_ADDCOMMUNITYRESOURCEREQUEST']._serialized_end=
|
|
120
|
-
_globals['_REMOVECOMMUNITYRESOURCEREQUEST']._serialized_start=
|
|
121
|
-
_globals['_REMOVECOMMUNITYRESOURCEREQUEST']._serialized_end=
|
|
122
|
-
_globals['_GETCOMMUNITYRESTRICTIONSREQUEST']._serialized_start=
|
|
123
|
-
_globals['_GETCOMMUNITYRESTRICTIONSREQUEST']._serialized_end=
|
|
124
|
-
_globals['_SETCOMMUNITYRESTRICTIONSREQUEST']._serialized_start=
|
|
125
|
-
_globals['_SETCOMMUNITYRESTRICTIONSREQUEST']._serialized_end=
|
|
126
|
-
_globals['_COMMUNITYSERVICE']._serialized_start=
|
|
127
|
-
_globals['_COMMUNITYSERVICE']._serialized_end=
|
|
95
|
+
_globals['_CREATECOMMUNITYREQUEST']._serialized_end=785
|
|
96
|
+
_globals['_CREATECOMMUNITYREQUEST_LABELSENTRY']._serialized_start=740
|
|
97
|
+
_globals['_CREATECOMMUNITYREQUEST_LABELSENTRY']._serialized_end=785
|
|
98
|
+
_globals['_CREATECOMMUNITYMETADATA']._serialized_start=787
|
|
99
|
+
_globals['_CREATECOMMUNITYMETADATA']._serialized_end=834
|
|
100
|
+
_globals['_GETCOMMUNITYREQUEST']._serialized_start=836
|
|
101
|
+
_globals['_GETCOMMUNITYREQUEST']._serialized_end=885
|
|
102
|
+
_globals['_UPDATECOMMUNITYREQUEST']._serialized_start=888
|
|
103
|
+
_globals['_UPDATECOMMUNITYREQUEST']._serialized_end=1151
|
|
104
|
+
_globals['_UPDATECOMMUNITYREQUEST_LABELSENTRY']._serialized_start=740
|
|
105
|
+
_globals['_UPDATECOMMUNITYREQUEST_LABELSENTRY']._serialized_end=785
|
|
106
|
+
_globals['_UPDATECOMMUNITYMETADATA']._serialized_start=1153
|
|
107
|
+
_globals['_UPDATECOMMUNITYMETADATA']._serialized_end=1200
|
|
108
|
+
_globals['_DELETECOMMUNITYREQUEST']._serialized_start=1202
|
|
109
|
+
_globals['_DELETECOMMUNITYREQUEST']._serialized_end=1254
|
|
110
|
+
_globals['_DELETECOMMUNITYMETADATA']._serialized_start=1256
|
|
111
|
+
_globals['_DELETECOMMUNITYMETADATA']._serialized_end=1303
|
|
112
|
+
_globals['_LISTCOMMUNITIESREQUEST']._serialized_start=1306
|
|
113
|
+
_globals['_LISTCOMMUNITIESREQUEST']._serialized_end=1485
|
|
114
|
+
_globals['_LISTCOMMUNITIESRESPONSE']._serialized_start=1487
|
|
115
|
+
_globals['_LISTCOMMUNITIESRESPONSE']._serialized_end=1597
|
|
116
|
+
_globals['_SETCOMMUNITYACCESSBINDINGSMETADATA']._serialized_start=1599
|
|
117
|
+
_globals['_SETCOMMUNITYACCESSBINDINGSMETADATA']._serialized_end=1657
|
|
118
|
+
_globals['_UPDATECOMMUNITYACCESSBINDINGSMETADATA']._serialized_start=1659
|
|
119
|
+
_globals['_UPDATECOMMUNITYACCESSBINDINGSMETADATA']._serialized_end=1720
|
|
120
|
+
_globals['_ADDCOMMUNITYRESOURCEREQUEST']._serialized_start=1723
|
|
121
|
+
_globals['_ADDCOMMUNITYRESOURCEREQUEST']._serialized_end=1886
|
|
122
|
+
_globals['_REMOVECOMMUNITYRESOURCEREQUEST']._serialized_start=1889
|
|
123
|
+
_globals['_REMOVECOMMUNITYRESOURCEREQUEST']._serialized_end=2055
|
|
124
|
+
_globals['_GETCOMMUNITYRESTRICTIONSREQUEST']._serialized_start=2057
|
|
125
|
+
_globals['_GETCOMMUNITYRESTRICTIONSREQUEST']._serialized_end=2118
|
|
126
|
+
_globals['_SETCOMMUNITYRESTRICTIONSREQUEST']._serialized_start=2120
|
|
127
|
+
_globals['_SETCOMMUNITYRESTRICTIONSREQUEST']._serialized_end=2244
|
|
128
|
+
_globals['_COMMUNITYSERVICE']._serialized_start=2247
|
|
129
|
+
_globals['_COMMUNITYSERVICE']._serialized_end=4781
|
|
128
130
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -41,6 +41,7 @@ class CreateCommunityRequest(google.protobuf.message.Message):
|
|
|
41
41
|
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
42
42
|
BILLING_ACCOUNT_ID_FIELD_NUMBER: builtins.int
|
|
43
43
|
LABELS_FIELD_NUMBER: builtins.int
|
|
44
|
+
ZONE_ID_FIELD_NUMBER: builtins.int
|
|
44
45
|
name: builtins.str
|
|
45
46
|
"""Name of the community."""
|
|
46
47
|
description: builtins.str
|
|
@@ -49,6 +50,8 @@ class CreateCommunityRequest(google.protobuf.message.Message):
|
|
|
49
50
|
"""ID of the organization where community should be created."""
|
|
50
51
|
billing_account_id: builtins.str
|
|
51
52
|
"""ID of the billing account for the created community. Optional, billing account could be bound to community later."""
|
|
53
|
+
zone_id: builtins.str
|
|
54
|
+
"""ID of the zone where community will be created (all projects and other resources will be in this zone)"""
|
|
52
55
|
@property
|
|
53
56
|
def labels(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
54
57
|
"""Labels of the community."""
|
|
@@ -61,8 +64,9 @@ class CreateCommunityRequest(google.protobuf.message.Message):
|
|
|
61
64
|
organization_id: builtins.str = ...,
|
|
62
65
|
billing_account_id: builtins.str = ...,
|
|
63
66
|
labels: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
67
|
+
zone_id: builtins.str = ...,
|
|
64
68
|
) -> None: ...
|
|
65
|
-
def ClearField(self, field_name: typing.Literal["billing_account_id", b"billing_account_id", "description", b"description", "labels", b"labels", "name", b"name", "organization_id", b"organization_id"]) -> None: ...
|
|
69
|
+
def ClearField(self, field_name: typing.Literal["billing_account_id", b"billing_account_id", "description", b"description", "labels", b"labels", "name", b"name", "organization_id", b"organization_id", "zone_id", b"zone_id"]) -> None: ...
|
|
66
70
|
|
|
67
71
|
global___CreateCommunityRequest = CreateCommunityRequest
|
|
68
72
|
|
|
@@ -25,7 +25,7 @@ from yandex.cloud.operation import operation_pb2 as yandex_dot_cloud_dot_operati
|
|
|
25
25
|
from yandex.cloud import validation_pb2 as yandex_dot_cloud_dot_validation__pb2
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3yandex/cloud/mdb/greenplum/v1/cluster_service.proto\x12\x1dyandex.cloud.mdb.greenplum.v1\x1a\x1cgoogle/api/annotations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a yandex/cloud/api/operation.proto\x1a*yandex/cloud/mdb/greenplum/v1/backup.proto\x1a+yandex/cloud/mdb/greenplum/v1/cluster.proto\x1a*yandex/cloud/mdb/greenplum/v1/config.proto\x1a(yandex/cloud/mdb/greenplum/v1/host.proto\x1a/yandex/cloud/mdb/greenplum/v1/maintenance.proto\x1a\'yandex/cloud/mdb/greenplum/v1/pxf.proto\x1a&yandex/cloud/operation/operation.proto\x1a\x1dyandex/cloud/validation.proto\"5\n\x11GetClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\"\x90\x01\n\x13ListClustersRequest\x12\x1f\n\tfolder_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\x12\x1a\n\x06\x66ilter\x18\x04 \x01(\tB\n\x8a\xc8\x31\x06<=1000\"i\n\x14ListClustersResponse\x12\x38\n\x08\x63lusters\x18\x01 \x03(\x0b\x32&.yandex.cloud.mdb.greenplum.v1.Cluster\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xd2\x08\n\x14\x43reateClusterRequest\x12\x1f\n\tfolder_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12,\n\x04name\x18\x02 \x01(\tB\x1e\xe8\xc7\x31\x01\xf2\xc7\x31\x0e[a-zA-Z0-9_-]*\x8a\xc8\x31\x04<=63\x12\x1e\n\x0b\x64\x65scription\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=256\x12\x8c\x01\n\x06labels\x18\x04 \x03(\x0b\x32?.yandex.cloud.mdb.greenplum.v1.CreateClusterRequest.LabelsEntryB;\xf2\xc7\x31\x0b[-_0-9a-z]*\x82\xc8\x31\x04<=64\x8a\xc8\x31\x04<=63\xb2\xc8\x31\x18\x12\x10[a-z][-_0-9a-z]*\x1a\x04<=63\x12M\n\x0b\x65nvironment\x18\x05 \x01(\x0e\x32\x32.yandex.cloud.mdb.greenplum.v1.Cluster.EnvironmentB\x04\xe8\xc7\x31\x01\x12>\n\x06\x63onfig\x18\x06 \x01(\x0b\x32..yandex.cloud.mdb.greenplum.v1.GreenplumConfig\x12P\n\rmaster_config\x18\x07 \x01(\x0b\x32\x39.yandex.cloud.mdb.greenplum.v1.MasterSubclusterConfigSpec\x12R\n\x0esegment_config\x18\x08 \x01(\x0b\x32:.yandex.cloud.mdb.greenplum.v1.SegmentSubclusterConfigSpec\x12\x19\n\x11master_host_count\x18\t \x01(\x03\x12\x17\n\x0fsegment_in_host\x18\n \x01(\x03\x12\x1a\n\x12segment_host_count\x18\x0b \x01(\x03\x12\x17\n\tuser_name\x18\x0c \x01(\tB\x04\xe8\xc7\x31\x01\x12$\n\ruser_password\x18\r \x01(\tB\r\xe8\xc7\x31\x01\x8a\xc8\x31\x05\x38-128\x12 \n\nnetwork_id\x18\x0e \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1a\n\x12security_group_ids\x18\x0f \x03(\t\x12\x1b\n\x13\x64\x65letion_protection\x18\x10 \x01(\x08\x12\x16\n\x0ehost_group_ids\x18\x11 \x03(\t\x12L\n\x12maintenance_window\x18\x13 \x01(\x0b\x32\x30.yandex.cloud.mdb.greenplum.v1.MaintenanceWindow\x12>\n\x0b\x63onfig_spec\x18\x14 \x01(\x0b\x32).yandex.cloud.mdb.greenplum.v1.ConfigSpec\x12\x42\n\rcloud_storage\x18\x15 \x01(\x0b\x32+.yandex.cloud.mdb.greenplum.v1.CloudStorage\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x12\x10\x13\"\x91\x06\n\nConfigSpec\x12i\n\x15greenplum_config_6_17\x18\x01 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_17H\x00R\x14greenplumConfig_6_17\x12i\n\x15greenplum_config_6_19\x18\x02 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_19H\x00R\x14greenplumConfig_6_19\x12i\n\x15greenplum_config_6_21\x18\x04 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_21H\x00R\x14greenplumConfig_6_21\x12i\n\x15greenplum_config_6_22\x18\x05 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_22H\x00R\x14greenplumConfig_6_22\x12`\n\x12greenplum_config_6\x18\t \x01(\x0b\x32/.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6H\x00R\x11greenplumConfig_6\x12\x43\n\x04pool\x18\x03 \x01(\x0b\x32\x35.yandex.cloud.mdb.greenplum.v1.ConnectionPoolerConfig\x12X\n\x15\x62\x61\x63kground_activities\x18\x06 \x01(\x0b\x32\x39.yandex.cloud.mdb.greenplum.v1.BackgroundActivitiesConfig\x12<\n\npxf_config\x18\x08 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.PXFConfigB\x12\n\x10greenplum_configJ\x04\x08\x07\x10\x08\"+\n\x15\x43reateClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"\x9a\x07\n\x14UpdateClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x1e\n\x0b\x64\x65scription\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=256\x12\x8c\x01\n\x06labels\x18\x04 \x03(\x0b\x32?.yandex.cloud.mdb.greenplum.v1.UpdateClusterRequest.LabelsEntryB;\xf2\xc7\x31\x0b[-_0-9a-z]*\x82\xc8\x31\x04<=64\x8a\xc8\x31\x04<=63\xb2\xc8\x31\x18\x12\x10[a-z][-_0-9a-z]*\x1a\x04<=63\x12(\n\x04name\x18\x05 \x01(\tB\x1a\xf2\xc7\x31\x0e[a-zA-Z0-9_-]*\x8a\xc8\x31\x04<=63\x12>\n\x06\x63onfig\x18\x06 \x01(\x0b\x32..yandex.cloud.mdb.greenplum.v1.GreenplumConfig\x12P\n\rmaster_config\x18\x07 \x01(\x0b\x32\x39.yandex.cloud.mdb.greenplum.v1.MasterSubclusterConfigSpec\x12R\n\x0esegment_config\x18\x08 \x01(\x0b\x32:.yandex.cloud.mdb.greenplum.v1.SegmentSubclusterConfigSpec\x12$\n\ruser_password\x18\r \x01(\tB\r\xe8\xc7\x31\x01\x8a\xc8\x31\x05\x38-128\x12L\n\x12maintenance_window\x18\x0f \x01(\x0b\x32\x30.yandex.cloud.mdb.greenplum.v1.MaintenanceWindow\x12\x1a\n\x12security_group_ids\x18\x11 \x03(\t\x12\x1b\n\x13\x64\x65letion_protection\x18\x12 \x01(\x08\x12>\n\x0b\x63onfig_spec\x18\x13 \x01(\x0b\x32).yandex.cloud.mdb.greenplum.v1.ConfigSpec\x12\x42\n\rcloud_storage\x18\x14 \x01(\x0b\x32+.yandex.cloud.mdb.greenplum.v1.CloudStorage\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x0e\x10\x0fJ\x04\x08\x10\x10\x11J\x04\x08\t\x10\r\"+\n\x15UpdateClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"-\n\x17\x41\x64\x64\x43lusterHostsMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"\x84\x01\n\rExpandRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1a\n\x12segment_host_count\x18\x02 \x01(\x03\x12#\n\x1b\x61\x64\x64_segments_per_host_count\x18\x03 \x01(\x03\x12\x10\n\x08\x64uration\x18\x04 \x01(\x03\"8\n\x14\x44\x65leteClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\"+\n\x15\x44\x65leteClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"7\n\x13StartClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\"*\n\x14StartClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"6\n\x12StopClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\")\n\x13StopClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"~\n\x1cListClusterOperationsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\"o\n\x1dListClusterOperationsResponse\x12\x35\n\noperations\x18\x01 \x03(\x0b\x32!.yandex.cloud.operation.Operation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"y\n\x17ListClusterHostsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\"g\n\x18ListClusterHostsResponse\x12\x32\n\x05hosts\x18\x01 \x03(\x0b\x32#.yandex.cloud.mdb.greenplum.v1.Host\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"Y\n\x1aMasterSubclusterConfigSpec\x12;\n\tresources\x18\x01 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\"Z\n\x1bSegmentSubclusterConfigSpec\x12;\n\tresources\x18\x01 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\"j\n\x17ListClusterLogsResponse\x12\x36\n\x04logs\x18\x01 \x03(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.LogRecord\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb2\x01\n\tLogRecord\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x46\n\x07message\x18\x02 \x03(\x0b\x32\x35.yandex.cloud.mdb.greenplum.v1.LogRecord.MessageEntry\x1a.\n\x0cMessageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xe5\x03\n\x16ListClusterLogsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x15\n\rcolumn_filter\x18\x02 \x03(\t\x12W\n\x0cservice_type\x18\x03 \x01(\x0e\x32\x41.yandex.cloud.mdb.greenplum.v1.ListClusterLogsRequest.ServiceType\x12-\n\tfrom_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x07to_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1d\n\tpage_size\x18\x06 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x07 \x01(\tB\t\x8a\xc8\x31\x05<=100\x12\x1e\n\x16\x61lways_next_page_token\x18\x08 \x01(\x08\x12\x1a\n\x06\x66ilter\x18\t \x01(\tB\n\x8a\xc8\x31\x06<=1000\"c\n\x0bServiceType\x12\x1c\n\x18SERVICE_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tGREENPLUM\x10\x01\x12\x14\n\x10GREENPLUM_POOLER\x10\x02\x12\x11\n\rGREENPLUM_PXF\x10\x03\"{\n\x19ListClusterBackupsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\"f\n\x0fStreamLogRecord\x12\x38\n\x06record\x18\x01 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.LogRecord\x12\x19\n\x11next_record_token\x18\x02 \x01(\t\"\xac\x03\n\x18StreamClusterLogsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x15\n\rcolumn_filter\x18\x02 \x03(\t\x12Y\n\x0cservice_type\x18\x03 \x01(\x0e\x32\x43.yandex.cloud.mdb.greenplum.v1.StreamClusterLogsRequest.ServiceType\x12-\n\tfrom_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x07to_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1f\n\x0crecord_token\x18\x06 \x01(\tB\t\x8a\xc8\x31\x05<=100\x12\x1a\n\x06\x66ilter\x18\x07 \x01(\tB\n\x8a\xc8\x31\x06<=1000\"c\n\x0bServiceType\x12\x1c\n\x18SERVICE_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tGREENPLUM\x10\x01\x12\x14\n\x10GREENPLUM_POOLER\x10\x02\x12\x11\n\rGREENPLUM_PXF\x10\x03\"m\n\x1aListClusterBackupsResponse\x12\x36\n\x07\x62\x61\x63kups\x18\x01 \x03(\x0b\x32%.yandex.cloud.mdb.greenplum.v1.Backup\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"8\n\x14\x42\x61\x63kupClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\">\n\x15\x42\x61\x63kupClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\x12\x11\n\tbackup_id\x18\x02 \x01(\t\"\x8d\x08\n\x15RestoreClusterRequest\x12\x17\n\tbackup_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\x12(\n\x04time\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1f\n\tfolder_id\x18\x02 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12,\n\x04name\x18\x03 \x01(\tB\x1e\xe8\xc7\x31\x01\xf2\xc7\x31\x0e[a-zA-Z0-9_-]*\x8a\xc8\x31\x04<=63\x12\x1e\n\x0b\x64\x65scription\x18\x04 \x01(\tB\t\x8a\xc8\x31\x05<=256\x12\x8d\x01\n\x06labels\x18\x05 \x03(\x0b\x32@.yandex.cloud.mdb.greenplum.v1.RestoreClusterRequest.LabelsEntryB;\xf2\xc7\x31\x0b[-_0-9a-z]*\x82\xc8\x31\x04<=64\x8a\xc8\x31\x04<=63\xb2\xc8\x31\x18\x12\x10[a-z][-_0-9a-z]*\x1a\x04<=63\x12M\n\x0b\x65nvironment\x18\x06 \x01(\x0e\x32\x32.yandex.cloud.mdb.greenplum.v1.Cluster.EnvironmentB\x04\xe8\xc7\x31\x01\x12\x45\n\x06\x63onfig\x18\x07 \x01(\x0b\x32\x35.yandex.cloud.mdb.greenplum.v1.GreenplumRestoreConfig\x12\x42\n\x10master_resources\x18\x08 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\x12\x43\n\x11segment_resources\x18\t \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\x12 \n\nnetwork_id\x18\n \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1a\n\x12security_group_ids\x18\x0b \x03(\t\x12\x1b\n\x13\x64\x65letion_protection\x18\x0c \x01(\x08\x12\x16\n\x0ehost_group_ids\x18\r \x03(\t\x12\x1a\n\x12placement_group_id\x18\x0e \x01(\t\x12L\n\x12maintenance_window\x18\x0f \x01(\x0b\x32\x30.yandex.cloud.mdb.greenplum.v1.MaintenanceWindow\x12\x1a\n\x12segment_host_count\x18\x11 \x01(\x03\x12\x17\n\x0fsegment_in_host\x18\x12 \x01(\x03\x12R\n\x0crestore_only\x18\x13 \x03(\tB<\xf2\xc7\x31\'[a-zA-Z0-9\\*_]*(\\/[a-zA-Z0-9\\*_]*){0,2}\x82\xc8\x31\x04<=50\x8a\xc8\x31\x05<=256\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"?\n\x16RestoreClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\x12\x11\n\tbackup_id\x18\x02 \x01(\t2\xc8\x17\n\x0e\x43lusterService\x12\x94\x01\n\x03Get\x12\x30.yandex.cloud.mdb.greenplum.v1.GetClusterRequest\x1a&.yandex.cloud.mdb.greenplum.v1.Cluster\"3\x82\xd3\xe4\x93\x02-\x12+/managed-greenplum/v1/clusters/{cluster_id}\x12\x97\x01\n\x04List\x12\x32.yandex.cloud.mdb.greenplum.v1.ListClustersRequest\x1a\x33.yandex.cloud.mdb.greenplum.v1.ListClustersResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/managed-greenplum/v1/clusters\x12\xaf\x01\n\x06\x43reate\x12\x33.yandex.cloud.mdb.greenplum.v1.CreateClusterRequest\x1a!.yandex.cloud.operation.Operation\"M\xb2\xd2* \n\x15\x43reateClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02#\"\x1e/managed-greenplum/v1/clusters:\x01*\x12\xbc\x01\n\x06Update\x12\x33.yandex.cloud.mdb.greenplum.v1.UpdateClusterRequest\x1a!.yandex.cloud.operation.Operation\"Z\xb2\xd2* \n\x15UpdateClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x30\x32+/managed-greenplum/v1/clusters/{cluster_id}:\x01*\x12\xbe\x01\n\x06\x45xpand\x12,.yandex.cloud.mdb.greenplum.v1.ExpandRequest\x1a!.yandex.cloud.operation.Operation\"c\xb2\xd2*\"\n\x17\x41\x64\x64\x43lusterHostsMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x37\"2/managed-greenplum/v1/clusters/{cluster_id}/expand:\x01*\x12\xc7\x01\n\x06\x44\x65lete\x12\x33.yandex.cloud.mdb.greenplum.v1.DeleteClusterRequest\x1a!.yandex.cloud.operation.Operation\"e\xb2\xd2*.\n\x15\x44\x65leteClusterMetadata\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02-*+/managed-greenplum/v1/clusters/{cluster_id}\x12\xbc\x01\n\x05Start\x12\x32.yandex.cloud.mdb.greenplum.v1.StartClusterRequest\x1a!.yandex.cloud.operation.Operation\"\\\xb2\xd2*\x1f\n\x14StartClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x33\"1/managed-greenplum/v1/clusters/{cluster_id}:start\x12\xb8\x01\n\x04Stop\x12\x31.yandex.cloud.mdb.greenplum.v1.StopClusterRequest\x1a!.yandex.cloud.operation.Operation\"Z\xb2\xd2*\x1e\n\x13StopClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x32\"0/managed-greenplum/v1/clusters/{cluster_id}:stop\x12\xcb\x01\n\x0eListOperations\x12;.yandex.cloud.mdb.greenplum.v1.ListClusterOperationsRequest\x1a<.yandex.cloud.mdb.greenplum.v1.ListClusterOperationsResponse\">\x82\xd3\xe4\x93\x02\x38\x12\x36/managed-greenplum/v1/clusters/{cluster_id}/operations\x12\xc4\x01\n\x0fListMasterHosts\x12\x36.yandex.cloud.mdb.greenplum.v1.ListClusterHostsRequest\x1a\x37.yandex.cloud.mdb.greenplum.v1.ListClusterHostsResponse\"@\x82\xd3\xe4\x93\x02:\x12\x38/managed-greenplum/v1/clusters/{cluster_id}/master-hosts\x12\xc6\x01\n\x10ListSegmentHosts\x12\x36.yandex.cloud.mdb.greenplum.v1.ListClusterHostsRequest\x1a\x37.yandex.cloud.mdb.greenplum.v1.ListClusterHostsResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/managed-greenplum/v1/clusters/{cluster_id}/segment-hosts\x12\xb3\x01\n\x08ListLogs\x12\x35.yandex.cloud.mdb.greenplum.v1.ListClusterLogsRequest\x1a\x36.yandex.cloud.mdb.greenplum.v1.ListClusterLogsResponse\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/managed-greenplum/v1/clusters/{cluster_id}:logs\x12\xb8\x01\n\nStreamLogs\x12\x37.yandex.cloud.mdb.greenplum.v1.StreamClusterLogsRequest\x1a..yandex.cloud.mdb.greenplum.v1.StreamLogRecord\"?\x82\xd3\xe4\x93\x02\x39\x12\x37/managed-greenplum/v1/clusters/{cluster_id}:stream_logs0\x01\x12\xbf\x01\n\x0bListBackups\x12\x38.yandex.cloud.mdb.greenplum.v1.ListClusterBackupsRequest\x1a\x39.yandex.cloud.mdb.greenplum.v1.ListClusterBackupsResponse\";\x82\xd3\xe4\x93\x02\x35\x12\x33/managed-greenplum/v1/clusters/{cluster_id}/backups\x12\xc0\x01\n\x06\x42\x61\x63kup\x12\x33.yandex.cloud.mdb.greenplum.v1.BackupClusterRequest\x1a!.yandex.cloud.operation.Operation\"^\xb2\xd2* \n\x15\x42\x61\x63kupClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x34\"2/managed-greenplum/v1/clusters/{cluster_id}:backup\x12\xba\x01\n\x07Restore\x12\x34.yandex.cloud.mdb.greenplum.v1.RestoreClusterRequest\x1a!.yandex.cloud.operation.Operation\"V\xb2\xd2*!\n\x16RestoreClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02+\"&/managed-greenplum/v1/clusters:restore:\x01*Bp\n!yandex.cloud.api.mdb.greenplum.v1ZKgithub.com/yandex-cloud/go-genproto/yandex/cloud/mdb/greenplum/v1;greenplumb\x06proto3')
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3yandex/cloud/mdb/greenplum/v1/cluster_service.proto\x12\x1dyandex.cloud.mdb.greenplum.v1\x1a\x1cgoogle/api/annotations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a yandex/cloud/api/operation.proto\x1a*yandex/cloud/mdb/greenplum/v1/backup.proto\x1a+yandex/cloud/mdb/greenplum/v1/cluster.proto\x1a*yandex/cloud/mdb/greenplum/v1/config.proto\x1a(yandex/cloud/mdb/greenplum/v1/host.proto\x1a/yandex/cloud/mdb/greenplum/v1/maintenance.proto\x1a\'yandex/cloud/mdb/greenplum/v1/pxf.proto\x1a&yandex/cloud/operation/operation.proto\x1a\x1dyandex/cloud/validation.proto\"5\n\x11GetClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\"\x90\x01\n\x13ListClustersRequest\x12\x1f\n\tfolder_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\x12\x1a\n\x06\x66ilter\x18\x04 \x01(\tB\n\x8a\xc8\x31\x06<=1000\"i\n\x14ListClustersResponse\x12\x38\n\x08\x63lusters\x18\x01 \x03(\x0b\x32&.yandex.cloud.mdb.greenplum.v1.Cluster\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xd2\x08\n\x14\x43reateClusterRequest\x12\x1f\n\tfolder_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12,\n\x04name\x18\x02 \x01(\tB\x1e\xe8\xc7\x31\x01\xf2\xc7\x31\x0e[a-zA-Z0-9_-]*\x8a\xc8\x31\x04<=63\x12\x1e\n\x0b\x64\x65scription\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=256\x12\x8c\x01\n\x06labels\x18\x04 \x03(\x0b\x32?.yandex.cloud.mdb.greenplum.v1.CreateClusterRequest.LabelsEntryB;\xf2\xc7\x31\x0b[-_0-9a-z]*\x82\xc8\x31\x04<=64\x8a\xc8\x31\x04<=63\xb2\xc8\x31\x18\x12\x10[a-z][-_0-9a-z]*\x1a\x04<=63\x12M\n\x0b\x65nvironment\x18\x05 \x01(\x0e\x32\x32.yandex.cloud.mdb.greenplum.v1.Cluster.EnvironmentB\x04\xe8\xc7\x31\x01\x12>\n\x06\x63onfig\x18\x06 \x01(\x0b\x32..yandex.cloud.mdb.greenplum.v1.GreenplumConfig\x12P\n\rmaster_config\x18\x07 \x01(\x0b\x32\x39.yandex.cloud.mdb.greenplum.v1.MasterSubclusterConfigSpec\x12R\n\x0esegment_config\x18\x08 \x01(\x0b\x32:.yandex.cloud.mdb.greenplum.v1.SegmentSubclusterConfigSpec\x12\x19\n\x11master_host_count\x18\t \x01(\x03\x12\x17\n\x0fsegment_in_host\x18\n \x01(\x03\x12\x1a\n\x12segment_host_count\x18\x0b \x01(\x03\x12\x17\n\tuser_name\x18\x0c \x01(\tB\x04\xe8\xc7\x31\x01\x12$\n\ruser_password\x18\r \x01(\tB\r\xe8\xc7\x31\x01\x8a\xc8\x31\x05\x38-128\x12 \n\nnetwork_id\x18\x0e \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1a\n\x12security_group_ids\x18\x0f \x03(\t\x12\x1b\n\x13\x64\x65letion_protection\x18\x10 \x01(\x08\x12\x16\n\x0ehost_group_ids\x18\x11 \x03(\t\x12L\n\x12maintenance_window\x18\x13 \x01(\x0b\x32\x30.yandex.cloud.mdb.greenplum.v1.MaintenanceWindow\x12>\n\x0b\x63onfig_spec\x18\x14 \x01(\x0b\x32).yandex.cloud.mdb.greenplum.v1.ConfigSpec\x12\x42\n\rcloud_storage\x18\x15 \x01(\x0b\x32+.yandex.cloud.mdb.greenplum.v1.CloudStorage\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x12\x10\x13\"\x91\x06\n\nConfigSpec\x12i\n\x15greenplum_config_6_17\x18\x01 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_17H\x00R\x14greenplumConfig_6_17\x12i\n\x15greenplum_config_6_19\x18\x02 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_19H\x00R\x14greenplumConfig_6_19\x12i\n\x15greenplum_config_6_21\x18\x04 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_21H\x00R\x14greenplumConfig_6_21\x12i\n\x15greenplum_config_6_22\x18\x05 \x01(\x0b\x32\x32.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6_22H\x00R\x14greenplumConfig_6_22\x12`\n\x12greenplum_config_6\x18\t \x01(\x0b\x32/.yandex.cloud.mdb.greenplum.v1.GreenplumConfig6H\x00R\x11greenplumConfig_6\x12\x43\n\x04pool\x18\x03 \x01(\x0b\x32\x35.yandex.cloud.mdb.greenplum.v1.ConnectionPoolerConfig\x12X\n\x15\x62\x61\x63kground_activities\x18\x06 \x01(\x0b\x32\x39.yandex.cloud.mdb.greenplum.v1.BackgroundActivitiesConfig\x12<\n\npxf_config\x18\x08 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.PXFConfigB\x12\n\x10greenplum_configJ\x04\x08\x07\x10\x08\"+\n\x15\x43reateClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"\x9a\x07\n\x14UpdateClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x1e\n\x0b\x64\x65scription\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=256\x12\x8c\x01\n\x06labels\x18\x04 \x03(\x0b\x32?.yandex.cloud.mdb.greenplum.v1.UpdateClusterRequest.LabelsEntryB;\xf2\xc7\x31\x0b[-_0-9a-z]*\x82\xc8\x31\x04<=64\x8a\xc8\x31\x04<=63\xb2\xc8\x31\x18\x12\x10[a-z][-_0-9a-z]*\x1a\x04<=63\x12(\n\x04name\x18\x05 \x01(\tB\x1a\xf2\xc7\x31\x0e[a-zA-Z0-9_-]*\x8a\xc8\x31\x04<=63\x12>\n\x06\x63onfig\x18\x06 \x01(\x0b\x32..yandex.cloud.mdb.greenplum.v1.GreenplumConfig\x12P\n\rmaster_config\x18\x07 \x01(\x0b\x32\x39.yandex.cloud.mdb.greenplum.v1.MasterSubclusterConfigSpec\x12R\n\x0esegment_config\x18\x08 \x01(\x0b\x32:.yandex.cloud.mdb.greenplum.v1.SegmentSubclusterConfigSpec\x12$\n\ruser_password\x18\r \x01(\tB\r\xe8\xc7\x31\x01\x8a\xc8\x31\x05\x38-128\x12L\n\x12maintenance_window\x18\x0f \x01(\x0b\x32\x30.yandex.cloud.mdb.greenplum.v1.MaintenanceWindow\x12\x1a\n\x12security_group_ids\x18\x11 \x03(\t\x12\x1b\n\x13\x64\x65letion_protection\x18\x12 \x01(\x08\x12>\n\x0b\x63onfig_spec\x18\x13 \x01(\x0b\x32).yandex.cloud.mdb.greenplum.v1.ConfigSpec\x12\x42\n\rcloud_storage\x18\x14 \x01(\x0b\x32+.yandex.cloud.mdb.greenplum.v1.CloudStorage\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x0e\x10\x0fJ\x04\x08\x10\x10\x11J\x04\x08\t\x10\r\"+\n\x15UpdateClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"-\n\x17\x41\x64\x64\x43lusterHostsMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"\xcb\x01\n\rExpandRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1a\n\x12segment_host_count\x18\x02 \x01(\x03\x12#\n\x1b\x61\x64\x64_segments_per_host_count\x18\x03 \x01(\x03\x12\x10\n\x08\x64uration\x18\x04 \x01(\x03\x12\x10\n\x08parallel\x18\x05 \x01(\x03\x12\x15\n\rclose_cluster\x18\x06 \x01(\x08\x12\x1c\n\x14\x64\x65lay_redistribution\x18\x07 \x01(\x08\"8\n\x14\x44\x65leteClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\"+\n\x15\x44\x65leteClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"7\n\x13StartClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\"*\n\x14StartClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"6\n\x12StopClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\")\n\x13StopClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\"~\n\x1cListClusterOperationsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\"o\n\x1dListClusterOperationsResponse\x12\x35\n\noperations\x18\x01 \x03(\x0b\x32!.yandex.cloud.operation.Operation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"y\n\x17ListClusterHostsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\"g\n\x18ListClusterHostsResponse\x12\x32\n\x05hosts\x18\x01 \x03(\x0b\x32#.yandex.cloud.mdb.greenplum.v1.Host\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"Y\n\x1aMasterSubclusterConfigSpec\x12;\n\tresources\x18\x01 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\"Z\n\x1bSegmentSubclusterConfigSpec\x12;\n\tresources\x18\x01 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\"j\n\x17ListClusterLogsResponse\x12\x36\n\x04logs\x18\x01 \x03(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.LogRecord\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb2\x01\n\tLogRecord\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x46\n\x07message\x18\x02 \x03(\x0b\x32\x35.yandex.cloud.mdb.greenplum.v1.LogRecord.MessageEntry\x1a.\n\x0cMessageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xe5\x03\n\x16ListClusterLogsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x15\n\rcolumn_filter\x18\x02 \x03(\t\x12W\n\x0cservice_type\x18\x03 \x01(\x0e\x32\x41.yandex.cloud.mdb.greenplum.v1.ListClusterLogsRequest.ServiceType\x12-\n\tfrom_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x07to_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1d\n\tpage_size\x18\x06 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x07 \x01(\tB\t\x8a\xc8\x31\x05<=100\x12\x1e\n\x16\x61lways_next_page_token\x18\x08 \x01(\x08\x12\x1a\n\x06\x66ilter\x18\t \x01(\tB\n\x8a\xc8\x31\x06<=1000\"c\n\x0bServiceType\x12\x1c\n\x18SERVICE_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tGREENPLUM\x10\x01\x12\x14\n\x10GREENPLUM_POOLER\x10\x02\x12\x11\n\rGREENPLUM_PXF\x10\x03\"{\n\x19ListClusterBackupsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1d\n\tpage_size\x18\x02 \x01(\x03\x42\n\xfa\xc7\x31\x06<=1000\x12\x1d\n\npage_token\x18\x03 \x01(\tB\t\x8a\xc8\x31\x05<=100\"f\n\x0fStreamLogRecord\x12\x38\n\x06record\x18\x01 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.LogRecord\x12\x19\n\x11next_record_token\x18\x02 \x01(\t\"\xac\x03\n\x18StreamClusterLogsRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x15\n\rcolumn_filter\x18\x02 \x03(\t\x12Y\n\x0cservice_type\x18\x03 \x01(\x0e\x32\x43.yandex.cloud.mdb.greenplum.v1.StreamClusterLogsRequest.ServiceType\x12-\n\tfrom_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x07to_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1f\n\x0crecord_token\x18\x06 \x01(\tB\t\x8a\xc8\x31\x05<=100\x12\x1a\n\x06\x66ilter\x18\x07 \x01(\tB\n\x8a\xc8\x31\x06<=1000\"c\n\x0bServiceType\x12\x1c\n\x18SERVICE_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tGREENPLUM\x10\x01\x12\x14\n\x10GREENPLUM_POOLER\x10\x02\x12\x11\n\rGREENPLUM_PXF\x10\x03\"m\n\x1aListClusterBackupsResponse\x12\x36\n\x07\x62\x61\x63kups\x18\x01 \x03(\x0b\x32%.yandex.cloud.mdb.greenplum.v1.Backup\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"8\n\x14\x42\x61\x63kupClusterRequest\x12 \n\ncluster_id\x18\x01 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\">\n\x15\x42\x61\x63kupClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\x12\x11\n\tbackup_id\x18\x02 \x01(\t\"\x8d\x08\n\x15RestoreClusterRequest\x12\x17\n\tbackup_id\x18\x01 \x01(\tB\x04\xe8\xc7\x31\x01\x12(\n\x04time\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1f\n\tfolder_id\x18\x02 \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12,\n\x04name\x18\x03 \x01(\tB\x1e\xe8\xc7\x31\x01\xf2\xc7\x31\x0e[a-zA-Z0-9_-]*\x8a\xc8\x31\x04<=63\x12\x1e\n\x0b\x64\x65scription\x18\x04 \x01(\tB\t\x8a\xc8\x31\x05<=256\x12\x8d\x01\n\x06labels\x18\x05 \x03(\x0b\x32@.yandex.cloud.mdb.greenplum.v1.RestoreClusterRequest.LabelsEntryB;\xf2\xc7\x31\x0b[-_0-9a-z]*\x82\xc8\x31\x04<=64\x8a\xc8\x31\x04<=63\xb2\xc8\x31\x18\x12\x10[a-z][-_0-9a-z]*\x1a\x04<=63\x12M\n\x0b\x65nvironment\x18\x06 \x01(\x0e\x32\x32.yandex.cloud.mdb.greenplum.v1.Cluster.EnvironmentB\x04\xe8\xc7\x31\x01\x12\x45\n\x06\x63onfig\x18\x07 \x01(\x0b\x32\x35.yandex.cloud.mdb.greenplum.v1.GreenplumRestoreConfig\x12\x42\n\x10master_resources\x18\x08 \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\x12\x43\n\x11segment_resources\x18\t \x01(\x0b\x32(.yandex.cloud.mdb.greenplum.v1.Resources\x12 \n\nnetwork_id\x18\n \x01(\tB\x0c\xe8\xc7\x31\x01\x8a\xc8\x31\x04<=50\x12\x1a\n\x12security_group_ids\x18\x0b \x03(\t\x12\x1b\n\x13\x64\x65letion_protection\x18\x0c \x01(\x08\x12\x16\n\x0ehost_group_ids\x18\r \x03(\t\x12\x1a\n\x12placement_group_id\x18\x0e \x01(\t\x12L\n\x12maintenance_window\x18\x0f \x01(\x0b\x32\x30.yandex.cloud.mdb.greenplum.v1.MaintenanceWindow\x12\x1a\n\x12segment_host_count\x18\x11 \x01(\x03\x12\x17\n\x0fsegment_in_host\x18\x12 \x01(\x03\x12R\n\x0crestore_only\x18\x13 \x03(\tB<\xf2\xc7\x31\'[a-zA-Z0-9\\*_]*(\\/[a-zA-Z0-9\\*_]*){0,2}\x82\xc8\x31\x04<=50\x8a\xc8\x31\x05<=256\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"?\n\x16RestoreClusterMetadata\x12\x12\n\ncluster_id\x18\x01 \x01(\t\x12\x11\n\tbackup_id\x18\x02 \x01(\t2\xc8\x17\n\x0e\x43lusterService\x12\x94\x01\n\x03Get\x12\x30.yandex.cloud.mdb.greenplum.v1.GetClusterRequest\x1a&.yandex.cloud.mdb.greenplum.v1.Cluster\"3\x82\xd3\xe4\x93\x02-\x12+/managed-greenplum/v1/clusters/{cluster_id}\x12\x97\x01\n\x04List\x12\x32.yandex.cloud.mdb.greenplum.v1.ListClustersRequest\x1a\x33.yandex.cloud.mdb.greenplum.v1.ListClustersResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/managed-greenplum/v1/clusters\x12\xaf\x01\n\x06\x43reate\x12\x33.yandex.cloud.mdb.greenplum.v1.CreateClusterRequest\x1a!.yandex.cloud.operation.Operation\"M\xb2\xd2* \n\x15\x43reateClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02#\"\x1e/managed-greenplum/v1/clusters:\x01*\x12\xbc\x01\n\x06Update\x12\x33.yandex.cloud.mdb.greenplum.v1.UpdateClusterRequest\x1a!.yandex.cloud.operation.Operation\"Z\xb2\xd2* \n\x15UpdateClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x30\x32+/managed-greenplum/v1/clusters/{cluster_id}:\x01*\x12\xbe\x01\n\x06\x45xpand\x12,.yandex.cloud.mdb.greenplum.v1.ExpandRequest\x1a!.yandex.cloud.operation.Operation\"c\xb2\xd2*\"\n\x17\x41\x64\x64\x43lusterHostsMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x37\"2/managed-greenplum/v1/clusters/{cluster_id}/expand:\x01*\x12\xc7\x01\n\x06\x44\x65lete\x12\x33.yandex.cloud.mdb.greenplum.v1.DeleteClusterRequest\x1a!.yandex.cloud.operation.Operation\"e\xb2\xd2*.\n\x15\x44\x65leteClusterMetadata\x12\x15google.protobuf.Empty\x82\xd3\xe4\x93\x02-*+/managed-greenplum/v1/clusters/{cluster_id}\x12\xbc\x01\n\x05Start\x12\x32.yandex.cloud.mdb.greenplum.v1.StartClusterRequest\x1a!.yandex.cloud.operation.Operation\"\\\xb2\xd2*\x1f\n\x14StartClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x33\"1/managed-greenplum/v1/clusters/{cluster_id}:start\x12\xb8\x01\n\x04Stop\x12\x31.yandex.cloud.mdb.greenplum.v1.StopClusterRequest\x1a!.yandex.cloud.operation.Operation\"Z\xb2\xd2*\x1e\n\x13StopClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x32\"0/managed-greenplum/v1/clusters/{cluster_id}:stop\x12\xcb\x01\n\x0eListOperations\x12;.yandex.cloud.mdb.greenplum.v1.ListClusterOperationsRequest\x1a<.yandex.cloud.mdb.greenplum.v1.ListClusterOperationsResponse\">\x82\xd3\xe4\x93\x02\x38\x12\x36/managed-greenplum/v1/clusters/{cluster_id}/operations\x12\xc4\x01\n\x0fListMasterHosts\x12\x36.yandex.cloud.mdb.greenplum.v1.ListClusterHostsRequest\x1a\x37.yandex.cloud.mdb.greenplum.v1.ListClusterHostsResponse\"@\x82\xd3\xe4\x93\x02:\x12\x38/managed-greenplum/v1/clusters/{cluster_id}/master-hosts\x12\xc6\x01\n\x10ListSegmentHosts\x12\x36.yandex.cloud.mdb.greenplum.v1.ListClusterHostsRequest\x1a\x37.yandex.cloud.mdb.greenplum.v1.ListClusterHostsResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/managed-greenplum/v1/clusters/{cluster_id}/segment-hosts\x12\xb3\x01\n\x08ListLogs\x12\x35.yandex.cloud.mdb.greenplum.v1.ListClusterLogsRequest\x1a\x36.yandex.cloud.mdb.greenplum.v1.ListClusterLogsResponse\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/managed-greenplum/v1/clusters/{cluster_id}:logs\x12\xb8\x01\n\nStreamLogs\x12\x37.yandex.cloud.mdb.greenplum.v1.StreamClusterLogsRequest\x1a..yandex.cloud.mdb.greenplum.v1.StreamLogRecord\"?\x82\xd3\xe4\x93\x02\x39\x12\x37/managed-greenplum/v1/clusters/{cluster_id}:stream_logs0\x01\x12\xbf\x01\n\x0bListBackups\x12\x38.yandex.cloud.mdb.greenplum.v1.ListClusterBackupsRequest\x1a\x39.yandex.cloud.mdb.greenplum.v1.ListClusterBackupsResponse\";\x82\xd3\xe4\x93\x02\x35\x12\x33/managed-greenplum/v1/clusters/{cluster_id}/backups\x12\xc0\x01\n\x06\x42\x61\x63kup\x12\x33.yandex.cloud.mdb.greenplum.v1.BackupClusterRequest\x1a!.yandex.cloud.operation.Operation\"^\xb2\xd2* \n\x15\x42\x61\x63kupClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02\x34\"2/managed-greenplum/v1/clusters/{cluster_id}:backup\x12\xba\x01\n\x07Restore\x12\x34.yandex.cloud.mdb.greenplum.v1.RestoreClusterRequest\x1a!.yandex.cloud.operation.Operation\"V\xb2\xd2*!\n\x16RestoreClusterMetadata\x12\x07\x43luster\x82\xd3\xe4\x93\x02+\"&/managed-greenplum/v1/clusters:restore:\x01*Bp\n!yandex.cloud.api.mdb.greenplum.v1ZKgithub.com/yandex-cloud/go-genproto/yandex/cloud/mdb/greenplum/v1;greenplumb\x06proto3')
|
|
29
29
|
|
|
30
30
|
_globals = globals()
|
|
31
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -190,61 +190,61 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
190
190
|
_globals['_ADDCLUSTERHOSTSMETADATA']._serialized_start=3774
|
|
191
191
|
_globals['_ADDCLUSTERHOSTSMETADATA']._serialized_end=3819
|
|
192
192
|
_globals['_EXPANDREQUEST']._serialized_start=3822
|
|
193
|
-
_globals['_EXPANDREQUEST']._serialized_end=
|
|
194
|
-
_globals['_DELETECLUSTERREQUEST']._serialized_start=
|
|
195
|
-
_globals['_DELETECLUSTERREQUEST']._serialized_end=
|
|
196
|
-
_globals['_DELETECLUSTERMETADATA']._serialized_start=
|
|
197
|
-
_globals['_DELETECLUSTERMETADATA']._serialized_end=
|
|
198
|
-
_globals['_STARTCLUSTERREQUEST']._serialized_start=
|
|
199
|
-
_globals['_STARTCLUSTERREQUEST']._serialized_end=
|
|
200
|
-
_globals['_STARTCLUSTERMETADATA']._serialized_start=
|
|
201
|
-
_globals['_STARTCLUSTERMETADATA']._serialized_end=
|
|
202
|
-
_globals['_STOPCLUSTERREQUEST']._serialized_start=
|
|
203
|
-
_globals['_STOPCLUSTERREQUEST']._serialized_end=
|
|
204
|
-
_globals['_STOPCLUSTERMETADATA']._serialized_start=
|
|
205
|
-
_globals['_STOPCLUSTERMETADATA']._serialized_end=
|
|
206
|
-
_globals['_LISTCLUSTEROPERATIONSREQUEST']._serialized_start=
|
|
207
|
-
_globals['_LISTCLUSTEROPERATIONSREQUEST']._serialized_end=
|
|
208
|
-
_globals['_LISTCLUSTEROPERATIONSRESPONSE']._serialized_start=
|
|
209
|
-
_globals['_LISTCLUSTEROPERATIONSRESPONSE']._serialized_end=
|
|
210
|
-
_globals['_LISTCLUSTERHOSTSREQUEST']._serialized_start=
|
|
211
|
-
_globals['_LISTCLUSTERHOSTSREQUEST']._serialized_end=
|
|
212
|
-
_globals['_LISTCLUSTERHOSTSRESPONSE']._serialized_start=
|
|
213
|
-
_globals['_LISTCLUSTERHOSTSRESPONSE']._serialized_end=
|
|
214
|
-
_globals['_MASTERSUBCLUSTERCONFIGSPEC']._serialized_start=
|
|
215
|
-
_globals['_MASTERSUBCLUSTERCONFIGSPEC']._serialized_end=
|
|
216
|
-
_globals['_SEGMENTSUBCLUSTERCONFIGSPEC']._serialized_start=
|
|
217
|
-
_globals['_SEGMENTSUBCLUSTERCONFIGSPEC']._serialized_end=
|
|
218
|
-
_globals['_LISTCLUSTERLOGSRESPONSE']._serialized_start=
|
|
219
|
-
_globals['_LISTCLUSTERLOGSRESPONSE']._serialized_end=
|
|
220
|
-
_globals['_LOGRECORD']._serialized_start=
|
|
221
|
-
_globals['_LOGRECORD']._serialized_end=
|
|
222
|
-
_globals['_LOGRECORD_MESSAGEENTRY']._serialized_start=
|
|
223
|
-
_globals['_LOGRECORD_MESSAGEENTRY']._serialized_end=
|
|
224
|
-
_globals['_LISTCLUSTERLOGSREQUEST']._serialized_start=
|
|
225
|
-
_globals['_LISTCLUSTERLOGSREQUEST']._serialized_end=
|
|
226
|
-
_globals['_LISTCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_start=
|
|
227
|
-
_globals['_LISTCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_end=
|
|
228
|
-
_globals['_LISTCLUSTERBACKUPSREQUEST']._serialized_start=
|
|
229
|
-
_globals['_LISTCLUSTERBACKUPSREQUEST']._serialized_end=
|
|
230
|
-
_globals['_STREAMLOGRECORD']._serialized_start=
|
|
231
|
-
_globals['_STREAMLOGRECORD']._serialized_end=
|
|
232
|
-
_globals['_STREAMCLUSTERLOGSREQUEST']._serialized_start=
|
|
233
|
-
_globals['_STREAMCLUSTERLOGSREQUEST']._serialized_end=
|
|
234
|
-
_globals['_STREAMCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_start=
|
|
235
|
-
_globals['_STREAMCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_end=
|
|
236
|
-
_globals['_LISTCLUSTERBACKUPSRESPONSE']._serialized_start=
|
|
237
|
-
_globals['_LISTCLUSTERBACKUPSRESPONSE']._serialized_end=
|
|
238
|
-
_globals['_BACKUPCLUSTERREQUEST']._serialized_start=
|
|
239
|
-
_globals['_BACKUPCLUSTERREQUEST']._serialized_end=
|
|
240
|
-
_globals['_BACKUPCLUSTERMETADATA']._serialized_start=
|
|
241
|
-
_globals['_BACKUPCLUSTERMETADATA']._serialized_end=
|
|
242
|
-
_globals['_RESTORECLUSTERREQUEST']._serialized_start=
|
|
243
|
-
_globals['_RESTORECLUSTERREQUEST']._serialized_end=
|
|
193
|
+
_globals['_EXPANDREQUEST']._serialized_end=4025
|
|
194
|
+
_globals['_DELETECLUSTERREQUEST']._serialized_start=4027
|
|
195
|
+
_globals['_DELETECLUSTERREQUEST']._serialized_end=4083
|
|
196
|
+
_globals['_DELETECLUSTERMETADATA']._serialized_start=4085
|
|
197
|
+
_globals['_DELETECLUSTERMETADATA']._serialized_end=4128
|
|
198
|
+
_globals['_STARTCLUSTERREQUEST']._serialized_start=4130
|
|
199
|
+
_globals['_STARTCLUSTERREQUEST']._serialized_end=4185
|
|
200
|
+
_globals['_STARTCLUSTERMETADATA']._serialized_start=4187
|
|
201
|
+
_globals['_STARTCLUSTERMETADATA']._serialized_end=4229
|
|
202
|
+
_globals['_STOPCLUSTERREQUEST']._serialized_start=4231
|
|
203
|
+
_globals['_STOPCLUSTERREQUEST']._serialized_end=4285
|
|
204
|
+
_globals['_STOPCLUSTERMETADATA']._serialized_start=4287
|
|
205
|
+
_globals['_STOPCLUSTERMETADATA']._serialized_end=4328
|
|
206
|
+
_globals['_LISTCLUSTEROPERATIONSREQUEST']._serialized_start=4330
|
|
207
|
+
_globals['_LISTCLUSTEROPERATIONSREQUEST']._serialized_end=4456
|
|
208
|
+
_globals['_LISTCLUSTEROPERATIONSRESPONSE']._serialized_start=4458
|
|
209
|
+
_globals['_LISTCLUSTEROPERATIONSRESPONSE']._serialized_end=4569
|
|
210
|
+
_globals['_LISTCLUSTERHOSTSREQUEST']._serialized_start=4571
|
|
211
|
+
_globals['_LISTCLUSTERHOSTSREQUEST']._serialized_end=4692
|
|
212
|
+
_globals['_LISTCLUSTERHOSTSRESPONSE']._serialized_start=4694
|
|
213
|
+
_globals['_LISTCLUSTERHOSTSRESPONSE']._serialized_end=4797
|
|
214
|
+
_globals['_MASTERSUBCLUSTERCONFIGSPEC']._serialized_start=4799
|
|
215
|
+
_globals['_MASTERSUBCLUSTERCONFIGSPEC']._serialized_end=4888
|
|
216
|
+
_globals['_SEGMENTSUBCLUSTERCONFIGSPEC']._serialized_start=4890
|
|
217
|
+
_globals['_SEGMENTSUBCLUSTERCONFIGSPEC']._serialized_end=4980
|
|
218
|
+
_globals['_LISTCLUSTERLOGSRESPONSE']._serialized_start=4982
|
|
219
|
+
_globals['_LISTCLUSTERLOGSRESPONSE']._serialized_end=5088
|
|
220
|
+
_globals['_LOGRECORD']._serialized_start=5091
|
|
221
|
+
_globals['_LOGRECORD']._serialized_end=5269
|
|
222
|
+
_globals['_LOGRECORD_MESSAGEENTRY']._serialized_start=5223
|
|
223
|
+
_globals['_LOGRECORD_MESSAGEENTRY']._serialized_end=5269
|
|
224
|
+
_globals['_LISTCLUSTERLOGSREQUEST']._serialized_start=5272
|
|
225
|
+
_globals['_LISTCLUSTERLOGSREQUEST']._serialized_end=5757
|
|
226
|
+
_globals['_LISTCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_start=5658
|
|
227
|
+
_globals['_LISTCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_end=5757
|
|
228
|
+
_globals['_LISTCLUSTERBACKUPSREQUEST']._serialized_start=5759
|
|
229
|
+
_globals['_LISTCLUSTERBACKUPSREQUEST']._serialized_end=5882
|
|
230
|
+
_globals['_STREAMLOGRECORD']._serialized_start=5884
|
|
231
|
+
_globals['_STREAMLOGRECORD']._serialized_end=5986
|
|
232
|
+
_globals['_STREAMCLUSTERLOGSREQUEST']._serialized_start=5989
|
|
233
|
+
_globals['_STREAMCLUSTERLOGSREQUEST']._serialized_end=6417
|
|
234
|
+
_globals['_STREAMCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_start=5658
|
|
235
|
+
_globals['_STREAMCLUSTERLOGSREQUEST_SERVICETYPE']._serialized_end=5757
|
|
236
|
+
_globals['_LISTCLUSTERBACKUPSRESPONSE']._serialized_start=6419
|
|
237
|
+
_globals['_LISTCLUSTERBACKUPSRESPONSE']._serialized_end=6528
|
|
238
|
+
_globals['_BACKUPCLUSTERREQUEST']._serialized_start=6530
|
|
239
|
+
_globals['_BACKUPCLUSTERREQUEST']._serialized_end=6586
|
|
240
|
+
_globals['_BACKUPCLUSTERMETADATA']._serialized_start=6588
|
|
241
|
+
_globals['_BACKUPCLUSTERMETADATA']._serialized_end=6650
|
|
242
|
+
_globals['_RESTORECLUSTERREQUEST']._serialized_start=6653
|
|
243
|
+
_globals['_RESTORECLUSTERREQUEST']._serialized_end=7690
|
|
244
244
|
_globals['_RESTORECLUSTERREQUEST_LABELSENTRY']._serialized_start=1918
|
|
245
245
|
_globals['_RESTORECLUSTERREQUEST_LABELSENTRY']._serialized_end=1963
|
|
246
|
-
_globals['_RESTORECLUSTERMETADATA']._serialized_start=
|
|
247
|
-
_globals['_RESTORECLUSTERMETADATA']._serialized_end=
|
|
248
|
-
_globals['_CLUSTERSERVICE']._serialized_start=
|
|
249
|
-
_globals['_CLUSTERSERVICE']._serialized_end=
|
|
246
|
+
_globals['_RESTORECLUSTERMETADATA']._serialized_start=7692
|
|
247
|
+
_globals['_RESTORECLUSTERMETADATA']._serialized_end=7755
|
|
248
|
+
_globals['_CLUSTERSERVICE']._serialized_start=7758
|
|
249
|
+
_globals['_CLUSTERSERVICE']._serialized_end=10774
|
|
250
250
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -462,6 +462,9 @@ class ExpandRequest(google.protobuf.message.Message):
|
|
|
462
462
|
SEGMENT_HOST_COUNT_FIELD_NUMBER: builtins.int
|
|
463
463
|
ADD_SEGMENTS_PER_HOST_COUNT_FIELD_NUMBER: builtins.int
|
|
464
464
|
DURATION_FIELD_NUMBER: builtins.int
|
|
465
|
+
PARALLEL_FIELD_NUMBER: builtins.int
|
|
466
|
+
CLOSE_CLUSTER_FIELD_NUMBER: builtins.int
|
|
467
|
+
DELAY_REDISTRIBUTION_FIELD_NUMBER: builtins.int
|
|
465
468
|
cluster_id: builtins.str
|
|
466
469
|
"""ID of the Greenplum Cluster resource to update.
|
|
467
470
|
To get the Greenplum cluster ID, use a [ClusterService.List] request.
|
|
@@ -472,6 +475,12 @@ class ExpandRequest(google.protobuf.message.Message):
|
|
|
472
475
|
"""Number of segments per host to add"""
|
|
473
476
|
duration: builtins.int
|
|
474
477
|
"""Redistribute duration, in seconds"""
|
|
478
|
+
parallel: builtins.int
|
|
479
|
+
"""Redistribute process parallelilsm, 0 - for automatic detection"""
|
|
480
|
+
close_cluster: builtins.bool
|
|
481
|
+
"""Deny all client connections during the expand operation"""
|
|
482
|
+
delay_redistribution: builtins.bool
|
|
483
|
+
"""Perfrom redistribution process by small chunks as background activity"""
|
|
475
484
|
def __init__(
|
|
476
485
|
self,
|
|
477
486
|
*,
|
|
@@ -479,8 +488,11 @@ class ExpandRequest(google.protobuf.message.Message):
|
|
|
479
488
|
segment_host_count: builtins.int = ...,
|
|
480
489
|
add_segments_per_host_count: builtins.int = ...,
|
|
481
490
|
duration: builtins.int = ...,
|
|
491
|
+
parallel: builtins.int = ...,
|
|
492
|
+
close_cluster: builtins.bool = ...,
|
|
493
|
+
delay_redistribution: builtins.bool = ...,
|
|
482
494
|
) -> None: ...
|
|
483
|
-
def ClearField(self, field_name: typing.Literal["add_segments_per_host_count", b"add_segments_per_host_count", "cluster_id", b"cluster_id", "duration", b"duration", "segment_host_count", b"segment_host_count"]) -> None: ...
|
|
495
|
+
def ClearField(self, field_name: typing.Literal["add_segments_per_host_count", b"add_segments_per_host_count", "close_cluster", b"close_cluster", "cluster_id", b"cluster_id", "delay_redistribution", b"delay_redistribution", "duration", b"duration", "parallel", b"parallel", "segment_host_count", b"segment_host_count"]) -> None: ...
|
|
484
496
|
|
|
485
497
|
global___ExpandRequest = ExpandRequest
|
|
486
498
|
|