yandexcloud 0.353.0__py3-none-any.whl → 0.354.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.

@@ -40,6 +40,29 @@ class GetGroupRequest(google.protobuf.message.Message):
40
40
 
41
41
  global___GetGroupRequest = GetGroupRequest
42
42
 
43
+ @typing.final
44
+ class ResolveExternalGroupRequest(google.protobuf.message.Message):
45
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
46
+
47
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
48
+ EXTERNAL_ID_FIELD_NUMBER: builtins.int
49
+ subject_container_id: builtins.str
50
+ """Id of the subject container that external group belongs to
51
+ To get subject container, use a [yandex.cloud.organizationmanager.v1.saml.FederationService.List] request
52
+ or [yandex.cloud.organizationmanager.v1.idp.UserpoolService.List] request.
53
+ """
54
+ external_id: builtins.str
55
+ """Id of the group from external system"""
56
+ def __init__(
57
+ self,
58
+ *,
59
+ subject_container_id: builtins.str = ...,
60
+ external_id: builtins.str = ...,
61
+ ) -> None: ...
62
+ def ClearField(self, field_name: typing.Literal["external_id", b"external_id", "subject_container_id", b"subject_container_id"]) -> None: ...
63
+
64
+ global___ResolveExternalGroupRequest = ResolveExternalGroupRequest
65
+
43
66
  @typing.final
44
67
  class ListGroupsRequest(google.protobuf.message.Message):
45
68
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
@@ -111,6 +134,78 @@ class ListGroupsResponse(google.protobuf.message.Message):
111
134
 
112
135
  global___ListGroupsResponse = ListGroupsResponse
113
136
 
137
+ @typing.final
138
+ class ListExternalGroupsRequest(google.protobuf.message.Message):
139
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
140
+
141
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
142
+ PAGE_SIZE_FIELD_NUMBER: builtins.int
143
+ PAGE_TOKEN_FIELD_NUMBER: builtins.int
144
+ FILTER_FIELD_NUMBER: builtins.int
145
+ subject_container_id: builtins.str
146
+ """Id of the subject container that external group belongs to.
147
+ To get subject container, use a [yandex.cloud.organizationmanager.v1.saml.FederationService.List] request
148
+ or [yandex.cloud.organizationmanager.v1.idp.UserpoolService.List] request.
149
+ """
150
+ page_size: builtins.int
151
+ """The maximum number of results per page to return. If the number of available
152
+ results is larger than [page_size],
153
+ the service returns a [ListExternalGroupsResponse.next_page_token]
154
+ that can be used to get the next page of results in subsequent list requests.
155
+ Default value: 100.
156
+ """
157
+ page_token: builtins.str
158
+ """Page token. Set [page_token]
159
+ to the [ListExternalGroupsResponse.next_page_token]
160
+ returned by a previous list external request to get the next page of results.
161
+ """
162
+ filter: builtins.str
163
+ """A filter expression that filters resources listed in the response.
164
+ The expression must specify:
165
+ 1. The fields name or id. Currently you can use filtering only on the [Group.name] or [Group.id] fields.
166
+ 2. An `=` operator.
167
+ 3. The value in double quotes (`"`). Must be 3-63 characters long and match the regular expression `[a-z][-a-z0-9]{1,61}[a-z0-9]`.
168
+ """
169
+ def __init__(
170
+ self,
171
+ *,
172
+ subject_container_id: builtins.str = ...,
173
+ page_size: builtins.int = ...,
174
+ page_token: builtins.str = ...,
175
+ filter: builtins.str = ...,
176
+ ) -> None: ...
177
+ def ClearField(self, field_name: typing.Literal["filter", b"filter", "page_size", b"page_size", "page_token", b"page_token", "subject_container_id", b"subject_container_id"]) -> None: ...
178
+
179
+ global___ListExternalGroupsRequest = ListExternalGroupsRequest
180
+
181
+ @typing.final
182
+ class ListExternalGroupsResponse(google.protobuf.message.Message):
183
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
184
+
185
+ GROUPS_FIELD_NUMBER: builtins.int
186
+ NEXT_PAGE_TOKEN_FIELD_NUMBER: builtins.int
187
+ next_page_token: builtins.str
188
+ """This token allows you to get the next page of results for list requests. If the number of results
189
+ is larger than [ListExternalGroupsRequest.page_size], use
190
+ the [next_page_token] as the value
191
+ for the [ListExternalGroupsRequest.page_token] query parameter
192
+ in the next list request. Each subsequent list request will have its own
193
+ [next_page_token] to continue paging through the results.
194
+ """
195
+ @property
196
+ def groups(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[yandex.cloud.organizationmanager.v1.group_pb2.Group]:
197
+ """List of External group resources."""
198
+
199
+ def __init__(
200
+ self,
201
+ *,
202
+ groups: collections.abc.Iterable[yandex.cloud.organizationmanager.v1.group_pb2.Group] | None = ...,
203
+ next_page_token: builtins.str = ...,
204
+ ) -> None: ...
205
+ def ClearField(self, field_name: typing.Literal["groups", b"groups", "next_page_token", b"next_page_token"]) -> None: ...
206
+
207
+ global___ListExternalGroupsResponse = ListExternalGroupsResponse
208
+
114
209
  @typing.final
115
210
  class CreateGroupRequest(google.protobuf.message.Message):
116
211
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
@@ -155,6 +250,88 @@ class CreateGroupMetadata(google.protobuf.message.Message):
155
250
 
156
251
  global___CreateGroupMetadata = CreateGroupMetadata
157
252
 
253
+ @typing.final
254
+ class CreateExternalGroupRequest(google.protobuf.message.Message):
255
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
256
+
257
+ ORGANIZATION_ID_FIELD_NUMBER: builtins.int
258
+ NAME_FIELD_NUMBER: builtins.int
259
+ DESCRIPTION_FIELD_NUMBER: builtins.int
260
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
261
+ EXTERNAL_ID_FIELD_NUMBER: builtins.int
262
+ MAKE_EDITOR_FIELD_NUMBER: builtins.int
263
+ organization_id: builtins.str
264
+ """ID of the organization to create a group in.
265
+ To get the organization ID, use a [yandex.cloud.organizationmanager.v1.OrganizationService.List] request.
266
+ """
267
+ name: builtins.str
268
+ """Name of the group.
269
+ The name must be unique within the organization.
270
+ """
271
+ description: builtins.str
272
+ """Description of the group."""
273
+ subject_container_id: builtins.str
274
+ """Id of the subject container that external group belongs to.
275
+ Combination of subject_container_id and external_id must be unique.
276
+ To get subject container, use a [yandex.cloud.organizationmanager.v1.saml.FederationService.List] request
277
+ or [yandex.cloud.organizationmanager.v1.idp.UserpoolService.List] request.
278
+ """
279
+ external_id: builtins.str
280
+ """Id of the group from external system.
281
+ Combination of subject_container_id and external_id must be unique
282
+ """
283
+ make_editor: builtins.bool
284
+ """If true, then creator of group will be assigned to role that allows modification of group as external group."""
285
+ def __init__(
286
+ self,
287
+ *,
288
+ organization_id: builtins.str = ...,
289
+ name: builtins.str = ...,
290
+ description: builtins.str = ...,
291
+ subject_container_id: builtins.str = ...,
292
+ external_id: builtins.str = ...,
293
+ make_editor: builtins.bool = ...,
294
+ ) -> None: ...
295
+ def ClearField(self, field_name: typing.Literal["description", b"description", "external_id", b"external_id", "make_editor", b"make_editor", "name", b"name", "organization_id", b"organization_id", "subject_container_id", b"subject_container_id"]) -> None: ...
296
+
297
+ global___CreateExternalGroupRequest = CreateExternalGroupRequest
298
+
299
+ @typing.final
300
+ class CreateExternalGroupMetadata(google.protobuf.message.Message):
301
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
302
+
303
+ GROUP_ID_FIELD_NUMBER: builtins.int
304
+ ORGANIZATION_ID_FIELD_NUMBER: builtins.int
305
+ GROUP_NAME_FIELD_NUMBER: builtins.int
306
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
307
+ EXTERNAL_ID_FIELD_NUMBER: builtins.int
308
+ MAKE_EDITOR_FIELD_NUMBER: builtins.int
309
+ group_id: builtins.str
310
+ """ID of the group that is being created."""
311
+ organization_id: builtins.str
312
+ """ID of the organization that the group belongs to."""
313
+ group_name: builtins.str
314
+ """Name of the group."""
315
+ subject_container_id: builtins.str
316
+ """Id of the subject container that created external group belongs to."""
317
+ external_id: builtins.str
318
+ """Id of the created group from external system."""
319
+ make_editor: builtins.bool
320
+ """If true, then creator of group was assigned to role that allows modification of group as external group."""
321
+ def __init__(
322
+ self,
323
+ *,
324
+ group_id: builtins.str = ...,
325
+ organization_id: builtins.str = ...,
326
+ group_name: builtins.str = ...,
327
+ subject_container_id: builtins.str = ...,
328
+ external_id: builtins.str = ...,
329
+ make_editor: builtins.bool = ...,
330
+ ) -> None: ...
331
+ def ClearField(self, field_name: typing.Literal["external_id", b"external_id", "group_id", b"group_id", "group_name", b"group_name", "make_editor", b"make_editor", "organization_id", b"organization_id", "subject_container_id", b"subject_container_id"]) -> None: ...
332
+
333
+ global___CreateExternalGroupMetadata = CreateExternalGroupMetadata
334
+
158
335
  @typing.final
159
336
  class UpdateGroupRequest(google.protobuf.message.Message):
160
337
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
@@ -206,6 +383,105 @@ class UpdateGroupMetadata(google.protobuf.message.Message):
206
383
 
207
384
  global___UpdateGroupMetadata = UpdateGroupMetadata
208
385
 
386
+ @typing.final
387
+ class ConvertToExternalGroupRequest(google.protobuf.message.Message):
388
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
389
+
390
+ GROUP_ID_FIELD_NUMBER: builtins.int
391
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
392
+ EXTERNAL_ID_FIELD_NUMBER: builtins.int
393
+ MAKE_EDITOR_FIELD_NUMBER: builtins.int
394
+ group_id: builtins.str
395
+ """ID of the Group resource to convert to external.
396
+ To get the group ID, use a [GroupService.List] request.
397
+ """
398
+ subject_container_id: builtins.str
399
+ """Id of the subject container that external group belongs to.
400
+ Combination of subject_container_id and external_id must be unique.
401
+ To get subject container, use a [yandex.cloud.organizationmanager.v1.saml.FederationService.List] request
402
+ or [yandex.cloud.organizationmanager.v1.idp.UserpoolService.List] request.
403
+ """
404
+ external_id: builtins.str
405
+ """Id of the group from external system.
406
+ Combination of subject_container_id and external_id must be unique
407
+ """
408
+ make_editor: builtins.bool
409
+ """If true, then subject that performs conversion of group will be assigned to role that allows modification of group as external group."""
410
+ def __init__(
411
+ self,
412
+ *,
413
+ group_id: builtins.str = ...,
414
+ subject_container_id: builtins.str = ...,
415
+ external_id: builtins.str = ...,
416
+ make_editor: builtins.bool = ...,
417
+ ) -> None: ...
418
+ def ClearField(self, field_name: typing.Literal["external_id", b"external_id", "group_id", b"group_id", "make_editor", b"make_editor", "subject_container_id", b"subject_container_id"]) -> None: ...
419
+
420
+ global___ConvertToExternalGroupRequest = ConvertToExternalGroupRequest
421
+
422
+ @typing.final
423
+ class ConvertToExternalGroupMetadata(google.protobuf.message.Message):
424
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
425
+
426
+ GROUP_ID_FIELD_NUMBER: builtins.int
427
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
428
+ EXTERNAL_ID_FIELD_NUMBER: builtins.int
429
+ MAKE_EDITOR_FIELD_NUMBER: builtins.int
430
+ group_id: builtins.str
431
+ """ID of the Group resource that is being converted to external."""
432
+ subject_container_id: builtins.str
433
+ """Id of the subject container that created external group belongs to."""
434
+ external_id: builtins.str
435
+ """Id of the created group from external system."""
436
+ make_editor: builtins.bool
437
+ """If true, then subject that performed conversion of group was assigned to role that allows modification of group as external group."""
438
+ def __init__(
439
+ self,
440
+ *,
441
+ group_id: builtins.str = ...,
442
+ subject_container_id: builtins.str = ...,
443
+ external_id: builtins.str = ...,
444
+ make_editor: builtins.bool = ...,
445
+ ) -> None: ...
446
+ def ClearField(self, field_name: typing.Literal["external_id", b"external_id", "group_id", b"group_id", "make_editor", b"make_editor", "subject_container_id", b"subject_container_id"]) -> None: ...
447
+
448
+ global___ConvertToExternalGroupMetadata = ConvertToExternalGroupMetadata
449
+
450
+ @typing.final
451
+ class ConvertAllToBasicGroupsRequest(google.protobuf.message.Message):
452
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
453
+
454
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
455
+ subject_container_id: builtins.str
456
+ """Id of the subject container for which all external groups will be converted to basic (not external) groups.
457
+ To get subject container, use a [yandex.cloud.organizationmanager.v1.saml.FederationService.List] request
458
+ or [yandex.cloud.organizationmanager.v1.idp.UserpoolService.List] request.
459
+ """
460
+ def __init__(
461
+ self,
462
+ *,
463
+ subject_container_id: builtins.str = ...,
464
+ ) -> None: ...
465
+ def ClearField(self, field_name: typing.Literal["subject_container_id", b"subject_container_id"]) -> None: ...
466
+
467
+ global___ConvertAllToBasicGroupsRequest = ConvertAllToBasicGroupsRequest
468
+
469
+ @typing.final
470
+ class ConvertAllToBasicGroupsMetadata(google.protobuf.message.Message):
471
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
472
+
473
+ SUBJECT_CONTAINER_ID_FIELD_NUMBER: builtins.int
474
+ subject_container_id: builtins.str
475
+ """Id of the subject container for which all external groups were converted to basic (not external) groups"""
476
+ def __init__(
477
+ self,
478
+ *,
479
+ subject_container_id: builtins.str = ...,
480
+ ) -> None: ...
481
+ def ClearField(self, field_name: typing.Literal["subject_container_id", b"subject_container_id"]) -> None: ...
482
+
483
+ global___ConvertAllToBasicGroupsMetadata = ConvertAllToBasicGroupsMetadata
484
+
209
485
  @typing.final
210
486
  class DeleteGroupRequest(google.protobuf.message.Message):
211
487
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
@@ -43,21 +43,46 @@ class GroupServiceStub(object):
43
43
  request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.GetGroupRequest.SerializeToString,
44
44
  response_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__pb2.Group.FromString,
45
45
  _registered_method=True)
46
+ self.ResolveExternal = channel.unary_unary(
47
+ '/yandex.cloud.organizationmanager.v1.GroupService/ResolveExternal',
48
+ request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ResolveExternalGroupRequest.SerializeToString,
49
+ response_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__pb2.Group.FromString,
50
+ _registered_method=True)
46
51
  self.List = channel.unary_unary(
47
52
  '/yandex.cloud.organizationmanager.v1.GroupService/List',
48
53
  request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListGroupsRequest.SerializeToString,
49
54
  response_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListGroupsResponse.FromString,
50
55
  _registered_method=True)
56
+ self.ListExternal = channel.unary_unary(
57
+ '/yandex.cloud.organizationmanager.v1.GroupService/ListExternal',
58
+ request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListExternalGroupsRequest.SerializeToString,
59
+ response_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListExternalGroupsResponse.FromString,
60
+ _registered_method=True)
51
61
  self.Create = channel.unary_unary(
52
62
  '/yandex.cloud.organizationmanager.v1.GroupService/Create',
53
63
  request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.CreateGroupRequest.SerializeToString,
54
64
  response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
55
65
  _registered_method=True)
66
+ self.CreateExternal = channel.unary_unary(
67
+ '/yandex.cloud.organizationmanager.v1.GroupService/CreateExternal',
68
+ request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.CreateExternalGroupRequest.SerializeToString,
69
+ response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
70
+ _registered_method=True)
56
71
  self.Update = channel.unary_unary(
57
72
  '/yandex.cloud.organizationmanager.v1.GroupService/Update',
58
73
  request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.UpdateGroupRequest.SerializeToString,
59
74
  response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
60
75
  _registered_method=True)
76
+ self.ConvertToExternal = channel.unary_unary(
77
+ '/yandex.cloud.organizationmanager.v1.GroupService/ConvertToExternal',
78
+ request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ConvertToExternalGroupRequest.SerializeToString,
79
+ response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
80
+ _registered_method=True)
81
+ self.ConvertAllToBasic = channel.unary_unary(
82
+ '/yandex.cloud.organizationmanager.v1.GroupService/ConvertAllToBasic',
83
+ request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ConvertAllToBasicGroupsRequest.SerializeToString,
84
+ response_deserializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
85
+ _registered_method=True)
61
86
  self.Delete = channel.unary_unary(
62
87
  '/yandex.cloud.organizationmanager.v1.GroupService/Delete',
63
88
  request_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.DeleteGroupRequest.SerializeToString,
@@ -108,6 +133,13 @@ class GroupServiceServicer(object):
108
133
  context.set_details('Method not implemented!')
109
134
  raise NotImplementedError('Method not implemented!')
110
135
 
136
+ def ResolveExternal(self, request, context):
137
+ """Returns external group by subject container and external id
138
+ """
139
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
140
+ context.set_details('Method not implemented!')
141
+ raise NotImplementedError('Method not implemented!')
142
+
111
143
  def List(self, request, context):
112
144
  """Retrieves the list of group resources.
113
145
  """
@@ -115,6 +147,13 @@ class GroupServiceServicer(object):
115
147
  context.set_details('Method not implemented!')
116
148
  raise NotImplementedError('Method not implemented!')
117
149
 
150
+ def ListExternal(self, request, context):
151
+ """Retrieves the list of external group linked subject container
152
+ """
153
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
154
+ context.set_details('Method not implemented!')
155
+ raise NotImplementedError('Method not implemented!')
156
+
118
157
  def Create(self, request, context):
119
158
  """Creates a group in the specified organization.
120
159
  """
@@ -122,6 +161,13 @@ class GroupServiceServicer(object):
122
161
  context.set_details('Method not implemented!')
123
162
  raise NotImplementedError('Method not implemented!')
124
163
 
164
+ def CreateExternal(self, request, context):
165
+ """Creates an external group.
166
+ """
167
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
168
+ context.set_details('Method not implemented!')
169
+ raise NotImplementedError('Method not implemented!')
170
+
125
171
  def Update(self, request, context):
126
172
  """Updates the specified group.
127
173
  """
@@ -129,6 +175,20 @@ class GroupServiceServicer(object):
129
175
  context.set_details('Method not implemented!')
130
176
  raise NotImplementedError('Method not implemented!')
131
177
 
178
+ def ConvertToExternal(self, request, context):
179
+ """Converts single basic (not external) group to external. Precondition: group must be basic.
180
+ """
181
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
182
+ context.set_details('Method not implemented!')
183
+ raise NotImplementedError('Method not implemented!')
184
+
185
+ def ConvertAllToBasic(self, request, context):
186
+ """Converts all groups that belongs to subject container from external to basic (not external).
187
+ """
188
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
189
+ context.set_details('Method not implemented!')
190
+ raise NotImplementedError('Method not implemented!')
191
+
132
192
  def Delete(self, request, context):
133
193
  """Deletes the specified group.
134
194
  """
@@ -190,21 +250,46 @@ def add_GroupServiceServicer_to_server(servicer, server):
190
250
  request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.GetGroupRequest.FromString,
191
251
  response_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__pb2.Group.SerializeToString,
192
252
  ),
253
+ 'ResolveExternal': grpc.unary_unary_rpc_method_handler(
254
+ servicer.ResolveExternal,
255
+ request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ResolveExternalGroupRequest.FromString,
256
+ response_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__pb2.Group.SerializeToString,
257
+ ),
193
258
  'List': grpc.unary_unary_rpc_method_handler(
194
259
  servicer.List,
195
260
  request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListGroupsRequest.FromString,
196
261
  response_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListGroupsResponse.SerializeToString,
197
262
  ),
263
+ 'ListExternal': grpc.unary_unary_rpc_method_handler(
264
+ servicer.ListExternal,
265
+ request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListExternalGroupsRequest.FromString,
266
+ response_serializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListExternalGroupsResponse.SerializeToString,
267
+ ),
198
268
  'Create': grpc.unary_unary_rpc_method_handler(
199
269
  servicer.Create,
200
270
  request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.CreateGroupRequest.FromString,
201
271
  response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
202
272
  ),
273
+ 'CreateExternal': grpc.unary_unary_rpc_method_handler(
274
+ servicer.CreateExternal,
275
+ request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.CreateExternalGroupRequest.FromString,
276
+ response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
277
+ ),
203
278
  'Update': grpc.unary_unary_rpc_method_handler(
204
279
  servicer.Update,
205
280
  request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.UpdateGroupRequest.FromString,
206
281
  response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
207
282
  ),
283
+ 'ConvertToExternal': grpc.unary_unary_rpc_method_handler(
284
+ servicer.ConvertToExternal,
285
+ request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ConvertToExternalGroupRequest.FromString,
286
+ response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
287
+ ),
288
+ 'ConvertAllToBasic': grpc.unary_unary_rpc_method_handler(
289
+ servicer.ConvertAllToBasic,
290
+ request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ConvertAllToBasicGroupsRequest.FromString,
291
+ response_serializer=yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.SerializeToString,
292
+ ),
208
293
  'Delete': grpc.unary_unary_rpc_method_handler(
209
294
  servicer.Delete,
210
295
  request_deserializer=yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.DeleteGroupRequest.FromString,
@@ -279,6 +364,33 @@ class GroupService(object):
279
364
  metadata,
280
365
  _registered_method=True)
281
366
 
367
+ @staticmethod
368
+ def ResolveExternal(request,
369
+ target,
370
+ options=(),
371
+ channel_credentials=None,
372
+ call_credentials=None,
373
+ insecure=False,
374
+ compression=None,
375
+ wait_for_ready=None,
376
+ timeout=None,
377
+ metadata=None):
378
+ return grpc.experimental.unary_unary(
379
+ request,
380
+ target,
381
+ '/yandex.cloud.organizationmanager.v1.GroupService/ResolveExternal',
382
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ResolveExternalGroupRequest.SerializeToString,
383
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__pb2.Group.FromString,
384
+ options,
385
+ channel_credentials,
386
+ insecure,
387
+ call_credentials,
388
+ compression,
389
+ wait_for_ready,
390
+ timeout,
391
+ metadata,
392
+ _registered_method=True)
393
+
282
394
  @staticmethod
283
395
  def List(request,
284
396
  target,
@@ -306,6 +418,33 @@ class GroupService(object):
306
418
  metadata,
307
419
  _registered_method=True)
308
420
 
421
+ @staticmethod
422
+ def ListExternal(request,
423
+ target,
424
+ options=(),
425
+ channel_credentials=None,
426
+ call_credentials=None,
427
+ insecure=False,
428
+ compression=None,
429
+ wait_for_ready=None,
430
+ timeout=None,
431
+ metadata=None):
432
+ return grpc.experimental.unary_unary(
433
+ request,
434
+ target,
435
+ '/yandex.cloud.organizationmanager.v1.GroupService/ListExternal',
436
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListExternalGroupsRequest.SerializeToString,
437
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ListExternalGroupsResponse.FromString,
438
+ options,
439
+ channel_credentials,
440
+ insecure,
441
+ call_credentials,
442
+ compression,
443
+ wait_for_ready,
444
+ timeout,
445
+ metadata,
446
+ _registered_method=True)
447
+
309
448
  @staticmethod
310
449
  def Create(request,
311
450
  target,
@@ -333,6 +472,33 @@ class GroupService(object):
333
472
  metadata,
334
473
  _registered_method=True)
335
474
 
475
+ @staticmethod
476
+ def CreateExternal(request,
477
+ target,
478
+ options=(),
479
+ channel_credentials=None,
480
+ call_credentials=None,
481
+ insecure=False,
482
+ compression=None,
483
+ wait_for_ready=None,
484
+ timeout=None,
485
+ metadata=None):
486
+ return grpc.experimental.unary_unary(
487
+ request,
488
+ target,
489
+ '/yandex.cloud.organizationmanager.v1.GroupService/CreateExternal',
490
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.CreateExternalGroupRequest.SerializeToString,
491
+ yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
492
+ options,
493
+ channel_credentials,
494
+ insecure,
495
+ call_credentials,
496
+ compression,
497
+ wait_for_ready,
498
+ timeout,
499
+ metadata,
500
+ _registered_method=True)
501
+
336
502
  @staticmethod
337
503
  def Update(request,
338
504
  target,
@@ -360,6 +526,60 @@ class GroupService(object):
360
526
  metadata,
361
527
  _registered_method=True)
362
528
 
529
+ @staticmethod
530
+ def ConvertToExternal(request,
531
+ target,
532
+ options=(),
533
+ channel_credentials=None,
534
+ call_credentials=None,
535
+ insecure=False,
536
+ compression=None,
537
+ wait_for_ready=None,
538
+ timeout=None,
539
+ metadata=None):
540
+ return grpc.experimental.unary_unary(
541
+ request,
542
+ target,
543
+ '/yandex.cloud.organizationmanager.v1.GroupService/ConvertToExternal',
544
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ConvertToExternalGroupRequest.SerializeToString,
545
+ yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
546
+ options,
547
+ channel_credentials,
548
+ insecure,
549
+ call_credentials,
550
+ compression,
551
+ wait_for_ready,
552
+ timeout,
553
+ metadata,
554
+ _registered_method=True)
555
+
556
+ @staticmethod
557
+ def ConvertAllToBasic(request,
558
+ target,
559
+ options=(),
560
+ channel_credentials=None,
561
+ call_credentials=None,
562
+ insecure=False,
563
+ compression=None,
564
+ wait_for_ready=None,
565
+ timeout=None,
566
+ metadata=None):
567
+ return grpc.experimental.unary_unary(
568
+ request,
569
+ target,
570
+ '/yandex.cloud.organizationmanager.v1.GroupService/ConvertAllToBasic',
571
+ yandex_dot_cloud_dot_organizationmanager_dot_v1_dot_group__service__pb2.ConvertAllToBasicGroupsRequest.SerializeToString,
572
+ yandex_dot_cloud_dot_operation_dot_operation__pb2.Operation.FromString,
573
+ options,
574
+ channel_credentials,
575
+ insecure,
576
+ call_credentials,
577
+ compression,
578
+ wait_for_ready,
579
+ timeout,
580
+ metadata,
581
+ _registered_method=True)
582
+
363
583
  @staticmethod
364
584
  def Delete(request,
365
585
  target,