perxis.organizations.organizations_pb2_grpc

Client and server classes corresponding to protobuf-defined services.

  1# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
  2"""Client and server classes corresponding to protobuf-defined services."""
  3import grpc
  4import warnings
  5
  6from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
  7from perxis.organizations import organizations_pb2 as organizations_dot_organizations__pb2
  8
  9GRPC_GENERATED_VERSION = '1.67.1'
 10GRPC_VERSION = grpc.__version__
 11_version_not_supported = False
 12
 13try:
 14    from grpc._utilities import first_version_is_lower
 15    _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
 16except ImportError:
 17    _version_not_supported = True
 18
 19if _version_not_supported:
 20    raise RuntimeError(
 21        f'The grpc package installed is at version {GRPC_VERSION},'
 22        + f' but the generated code in organizations/organizations_pb2_grpc.py depends on'
 23        + f' grpcio>={GRPC_GENERATED_VERSION}.'
 24        + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
 25        + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
 26    )
 27
 28
 29class OrganizationsStub(object):
 30    """Missing associated documentation comment in .proto file."""
 31
 32    def __init__(self, channel):
 33        """Constructor.
 34
 35        Args:
 36            channel: A grpc.Channel.
 37        """
 38        self.Create = channel.unary_unary(
 39                '/account.organizations.Organizations/Create',
 40                request_serializer=organizations_dot_organizations__pb2.CreateRequest.SerializeToString,
 41                response_deserializer=organizations_dot_organizations__pb2.CreateResponse.FromString,
 42                _registered_method=True)
 43        self.Get = channel.unary_unary(
 44                '/account.organizations.Organizations/Get',
 45                request_serializer=organizations_dot_organizations__pb2.GetRequest.SerializeToString,
 46                response_deserializer=organizations_dot_organizations__pb2.GetResponse.FromString,
 47                _registered_method=True)
 48        self.Delete = channel.unary_unary(
 49                '/account.organizations.Organizations/Delete',
 50                request_serializer=organizations_dot_organizations__pb2.DeleteRequest.SerializeToString,
 51                response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
 52                _registered_method=True)
 53        self.Find = channel.unary_unary(
 54                '/account.organizations.Organizations/Find',
 55                request_serializer=organizations_dot_organizations__pb2.FindRequest.SerializeToString,
 56                response_deserializer=organizations_dot_organizations__pb2.FindResponse.FromString,
 57                _registered_method=True)
 58        self.Update = channel.unary_unary(
 59                '/account.organizations.Organizations/Update',
 60                request_serializer=organizations_dot_organizations__pb2.UpdateRequest.SerializeToString,
 61                response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
 62                _registered_method=True)
 63
 64
 65class OrganizationsServicer(object):
 66    """Missing associated documentation comment in .proto file."""
 67
 68    def Create(self, request, context):
 69        """Missing associated documentation comment in .proto file."""
 70        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
 71        context.set_details('Method not implemented!')
 72        raise NotImplementedError('Method not implemented!')
 73
 74    def Get(self, request, context):
 75        """Missing associated documentation comment in .proto file."""
 76        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
 77        context.set_details('Method not implemented!')
 78        raise NotImplementedError('Method not implemented!')
 79
 80    def Delete(self, request, context):
 81        """Missing associated documentation comment in .proto file."""
 82        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
 83        context.set_details('Method not implemented!')
 84        raise NotImplementedError('Method not implemented!')
 85
 86    def Find(self, request, context):
 87        """Missing associated documentation comment in .proto file."""
 88        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
 89        context.set_details('Method not implemented!')
 90        raise NotImplementedError('Method not implemented!')
 91
 92    def Update(self, request, context):
 93        """Missing associated documentation comment in .proto file."""
 94        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
 95        context.set_details('Method not implemented!')
 96        raise NotImplementedError('Method not implemented!')
 97
 98
 99def add_OrganizationsServicer_to_server(servicer, server):
100    rpc_method_handlers = {
101            'Create': grpc.unary_unary_rpc_method_handler(
102                    servicer.Create,
103                    request_deserializer=organizations_dot_organizations__pb2.CreateRequest.FromString,
104                    response_serializer=organizations_dot_organizations__pb2.CreateResponse.SerializeToString,
105            ),
106            'Get': grpc.unary_unary_rpc_method_handler(
107                    servicer.Get,
108                    request_deserializer=organizations_dot_organizations__pb2.GetRequest.FromString,
109                    response_serializer=organizations_dot_organizations__pb2.GetResponse.SerializeToString,
110            ),
111            'Delete': grpc.unary_unary_rpc_method_handler(
112                    servicer.Delete,
113                    request_deserializer=organizations_dot_organizations__pb2.DeleteRequest.FromString,
114                    response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
115            ),
116            'Find': grpc.unary_unary_rpc_method_handler(
117                    servicer.Find,
118                    request_deserializer=organizations_dot_organizations__pb2.FindRequest.FromString,
119                    response_serializer=organizations_dot_organizations__pb2.FindResponse.SerializeToString,
120            ),
121            'Update': grpc.unary_unary_rpc_method_handler(
122                    servicer.Update,
123                    request_deserializer=organizations_dot_organizations__pb2.UpdateRequest.FromString,
124                    response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
125            ),
126    }
127    generic_handler = grpc.method_handlers_generic_handler(
128            'account.organizations.Organizations', rpc_method_handlers)
129    server.add_generic_rpc_handlers((generic_handler,))
130    server.add_registered_method_handlers('account.organizations.Organizations', rpc_method_handlers)
131
132
133 # This class is part of an EXPERIMENTAL API.
134class Organizations(object):
135    """Missing associated documentation comment in .proto file."""
136
137    @staticmethod
138    def Create(request,
139            target,
140            options=(),
141            channel_credentials=None,
142            call_credentials=None,
143            insecure=False,
144            compression=None,
145            wait_for_ready=None,
146            timeout=None,
147            metadata=None):
148        return grpc.experimental.unary_unary(
149            request,
150            target,
151            '/account.organizations.Organizations/Create',
152            organizations_dot_organizations__pb2.CreateRequest.SerializeToString,
153            organizations_dot_organizations__pb2.CreateResponse.FromString,
154            options,
155            channel_credentials,
156            insecure,
157            call_credentials,
158            compression,
159            wait_for_ready,
160            timeout,
161            metadata,
162            _registered_method=True)
163
164    @staticmethod
165    def Get(request,
166            target,
167            options=(),
168            channel_credentials=None,
169            call_credentials=None,
170            insecure=False,
171            compression=None,
172            wait_for_ready=None,
173            timeout=None,
174            metadata=None):
175        return grpc.experimental.unary_unary(
176            request,
177            target,
178            '/account.organizations.Organizations/Get',
179            organizations_dot_organizations__pb2.GetRequest.SerializeToString,
180            organizations_dot_organizations__pb2.GetResponse.FromString,
181            options,
182            channel_credentials,
183            insecure,
184            call_credentials,
185            compression,
186            wait_for_ready,
187            timeout,
188            metadata,
189            _registered_method=True)
190
191    @staticmethod
192    def Delete(request,
193            target,
194            options=(),
195            channel_credentials=None,
196            call_credentials=None,
197            insecure=False,
198            compression=None,
199            wait_for_ready=None,
200            timeout=None,
201            metadata=None):
202        return grpc.experimental.unary_unary(
203            request,
204            target,
205            '/account.organizations.Organizations/Delete',
206            organizations_dot_organizations__pb2.DeleteRequest.SerializeToString,
207            google_dot_protobuf_dot_empty__pb2.Empty.FromString,
208            options,
209            channel_credentials,
210            insecure,
211            call_credentials,
212            compression,
213            wait_for_ready,
214            timeout,
215            metadata,
216            _registered_method=True)
217
218    @staticmethod
219    def Find(request,
220            target,
221            options=(),
222            channel_credentials=None,
223            call_credentials=None,
224            insecure=False,
225            compression=None,
226            wait_for_ready=None,
227            timeout=None,
228            metadata=None):
229        return grpc.experimental.unary_unary(
230            request,
231            target,
232            '/account.organizations.Organizations/Find',
233            organizations_dot_organizations__pb2.FindRequest.SerializeToString,
234            organizations_dot_organizations__pb2.FindResponse.FromString,
235            options,
236            channel_credentials,
237            insecure,
238            call_credentials,
239            compression,
240            wait_for_ready,
241            timeout,
242            metadata,
243            _registered_method=True)
244
245    @staticmethod
246    def Update(request,
247            target,
248            options=(),
249            channel_credentials=None,
250            call_credentials=None,
251            insecure=False,
252            compression=None,
253            wait_for_ready=None,
254            timeout=None,
255            metadata=None):
256        return grpc.experimental.unary_unary(
257            request,
258            target,
259            '/account.organizations.Organizations/Update',
260            organizations_dot_organizations__pb2.UpdateRequest.SerializeToString,
261            google_dot_protobuf_dot_empty__pb2.Empty.FromString,
262            options,
263            channel_credentials,
264            insecure,
265            call_credentials,
266            compression,
267            wait_for_ready,
268            timeout,
269            metadata,
270            _registered_method=True)
GRPC_GENERATED_VERSION = '1.67.1'
GRPC_VERSION = '1.67.1'
class OrganizationsStub:
30class OrganizationsStub(object):
31    """Missing associated documentation comment in .proto file."""
32
33    def __init__(self, channel):
34        """Constructor.
35
36        Args:
37            channel: A grpc.Channel.
38        """
39        self.Create = channel.unary_unary(
40                '/account.organizations.Organizations/Create',
41                request_serializer=organizations_dot_organizations__pb2.CreateRequest.SerializeToString,
42                response_deserializer=organizations_dot_organizations__pb2.CreateResponse.FromString,
43                _registered_method=True)
44        self.Get = channel.unary_unary(
45                '/account.organizations.Organizations/Get',
46                request_serializer=organizations_dot_organizations__pb2.GetRequest.SerializeToString,
47                response_deserializer=organizations_dot_organizations__pb2.GetResponse.FromString,
48                _registered_method=True)
49        self.Delete = channel.unary_unary(
50                '/account.organizations.Organizations/Delete',
51                request_serializer=organizations_dot_organizations__pb2.DeleteRequest.SerializeToString,
52                response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
53                _registered_method=True)
54        self.Find = channel.unary_unary(
55                '/account.organizations.Organizations/Find',
56                request_serializer=organizations_dot_organizations__pb2.FindRequest.SerializeToString,
57                response_deserializer=organizations_dot_organizations__pb2.FindResponse.FromString,
58                _registered_method=True)
59        self.Update = channel.unary_unary(
60                '/account.organizations.Organizations/Update',
61                request_serializer=organizations_dot_organizations__pb2.UpdateRequest.SerializeToString,
62                response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
63                _registered_method=True)

Missing associated documentation comment in .proto file.

OrganizationsStub(channel)
33    def __init__(self, channel):
34        """Constructor.
35
36        Args:
37            channel: A grpc.Channel.
38        """
39        self.Create = channel.unary_unary(
40                '/account.organizations.Organizations/Create',
41                request_serializer=organizations_dot_organizations__pb2.CreateRequest.SerializeToString,
42                response_deserializer=organizations_dot_organizations__pb2.CreateResponse.FromString,
43                _registered_method=True)
44        self.Get = channel.unary_unary(
45                '/account.organizations.Organizations/Get',
46                request_serializer=organizations_dot_organizations__pb2.GetRequest.SerializeToString,
47                response_deserializer=organizations_dot_organizations__pb2.GetResponse.FromString,
48                _registered_method=True)
49        self.Delete = channel.unary_unary(
50                '/account.organizations.Organizations/Delete',
51                request_serializer=organizations_dot_organizations__pb2.DeleteRequest.SerializeToString,
52                response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
53                _registered_method=True)
54        self.Find = channel.unary_unary(
55                '/account.organizations.Organizations/Find',
56                request_serializer=organizations_dot_organizations__pb2.FindRequest.SerializeToString,
57                response_deserializer=organizations_dot_organizations__pb2.FindResponse.FromString,
58                _registered_method=True)
59        self.Update = channel.unary_unary(
60                '/account.organizations.Organizations/Update',
61                request_serializer=organizations_dot_organizations__pb2.UpdateRequest.SerializeToString,
62                response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
63                _registered_method=True)

Constructor.

Arguments:
  • channel: A grpc.Channel.
Create
Get
Delete
Find
Update
class OrganizationsServicer:
66class OrganizationsServicer(object):
67    """Missing associated documentation comment in .proto file."""
68
69    def Create(self, request, context):
70        """Missing associated documentation comment in .proto file."""
71        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
72        context.set_details('Method not implemented!')
73        raise NotImplementedError('Method not implemented!')
74
75    def Get(self, request, context):
76        """Missing associated documentation comment in .proto file."""
77        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
78        context.set_details('Method not implemented!')
79        raise NotImplementedError('Method not implemented!')
80
81    def Delete(self, request, context):
82        """Missing associated documentation comment in .proto file."""
83        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
84        context.set_details('Method not implemented!')
85        raise NotImplementedError('Method not implemented!')
86
87    def Find(self, request, context):
88        """Missing associated documentation comment in .proto file."""
89        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
90        context.set_details('Method not implemented!')
91        raise NotImplementedError('Method not implemented!')
92
93    def Update(self, request, context):
94        """Missing associated documentation comment in .proto file."""
95        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
96        context.set_details('Method not implemented!')
97        raise NotImplementedError('Method not implemented!')

Missing associated documentation comment in .proto file.

def Create(self, request, context):
69    def Create(self, request, context):
70        """Missing associated documentation comment in .proto file."""
71        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
72        context.set_details('Method not implemented!')
73        raise NotImplementedError('Method not implemented!')

Missing associated documentation comment in .proto file.

def Get(self, request, context):
75    def Get(self, request, context):
76        """Missing associated documentation comment in .proto file."""
77        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
78        context.set_details('Method not implemented!')
79        raise NotImplementedError('Method not implemented!')

Missing associated documentation comment in .proto file.

def Delete(self, request, context):
81    def Delete(self, request, context):
82        """Missing associated documentation comment in .proto file."""
83        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
84        context.set_details('Method not implemented!')
85        raise NotImplementedError('Method not implemented!')

Missing associated documentation comment in .proto file.

def Find(self, request, context):
87    def Find(self, request, context):
88        """Missing associated documentation comment in .proto file."""
89        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
90        context.set_details('Method not implemented!')
91        raise NotImplementedError('Method not implemented!')

Missing associated documentation comment in .proto file.

def Update(self, request, context):
93    def Update(self, request, context):
94        """Missing associated documentation comment in .proto file."""
95        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
96        context.set_details('Method not implemented!')
97        raise NotImplementedError('Method not implemented!')

Missing associated documentation comment in .proto file.

def add_OrganizationsServicer_to_server(servicer, server):
100def add_OrganizationsServicer_to_server(servicer, server):
101    rpc_method_handlers = {
102            'Create': grpc.unary_unary_rpc_method_handler(
103                    servicer.Create,
104                    request_deserializer=organizations_dot_organizations__pb2.CreateRequest.FromString,
105                    response_serializer=organizations_dot_organizations__pb2.CreateResponse.SerializeToString,
106            ),
107            'Get': grpc.unary_unary_rpc_method_handler(
108                    servicer.Get,
109                    request_deserializer=organizations_dot_organizations__pb2.GetRequest.FromString,
110                    response_serializer=organizations_dot_organizations__pb2.GetResponse.SerializeToString,
111            ),
112            'Delete': grpc.unary_unary_rpc_method_handler(
113                    servicer.Delete,
114                    request_deserializer=organizations_dot_organizations__pb2.DeleteRequest.FromString,
115                    response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
116            ),
117            'Find': grpc.unary_unary_rpc_method_handler(
118                    servicer.Find,
119                    request_deserializer=organizations_dot_organizations__pb2.FindRequest.FromString,
120                    response_serializer=organizations_dot_organizations__pb2.FindResponse.SerializeToString,
121            ),
122            'Update': grpc.unary_unary_rpc_method_handler(
123                    servicer.Update,
124                    request_deserializer=organizations_dot_organizations__pb2.UpdateRequest.FromString,
125                    response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
126            ),
127    }
128    generic_handler = grpc.method_handlers_generic_handler(
129            'account.organizations.Organizations', rpc_method_handlers)
130    server.add_generic_rpc_handlers((generic_handler,))
131    server.add_registered_method_handlers('account.organizations.Organizations', rpc_method_handlers)
class Organizations:
135class Organizations(object):
136    """Missing associated documentation comment in .proto file."""
137
138    @staticmethod
139    def Create(request,
140            target,
141            options=(),
142            channel_credentials=None,
143            call_credentials=None,
144            insecure=False,
145            compression=None,
146            wait_for_ready=None,
147            timeout=None,
148            metadata=None):
149        return grpc.experimental.unary_unary(
150            request,
151            target,
152            '/account.organizations.Organizations/Create',
153            organizations_dot_organizations__pb2.CreateRequest.SerializeToString,
154            organizations_dot_organizations__pb2.CreateResponse.FromString,
155            options,
156            channel_credentials,
157            insecure,
158            call_credentials,
159            compression,
160            wait_for_ready,
161            timeout,
162            metadata,
163            _registered_method=True)
164
165    @staticmethod
166    def Get(request,
167            target,
168            options=(),
169            channel_credentials=None,
170            call_credentials=None,
171            insecure=False,
172            compression=None,
173            wait_for_ready=None,
174            timeout=None,
175            metadata=None):
176        return grpc.experimental.unary_unary(
177            request,
178            target,
179            '/account.organizations.Organizations/Get',
180            organizations_dot_organizations__pb2.GetRequest.SerializeToString,
181            organizations_dot_organizations__pb2.GetResponse.FromString,
182            options,
183            channel_credentials,
184            insecure,
185            call_credentials,
186            compression,
187            wait_for_ready,
188            timeout,
189            metadata,
190            _registered_method=True)
191
192    @staticmethod
193    def Delete(request,
194            target,
195            options=(),
196            channel_credentials=None,
197            call_credentials=None,
198            insecure=False,
199            compression=None,
200            wait_for_ready=None,
201            timeout=None,
202            metadata=None):
203        return grpc.experimental.unary_unary(
204            request,
205            target,
206            '/account.organizations.Organizations/Delete',
207            organizations_dot_organizations__pb2.DeleteRequest.SerializeToString,
208            google_dot_protobuf_dot_empty__pb2.Empty.FromString,
209            options,
210            channel_credentials,
211            insecure,
212            call_credentials,
213            compression,
214            wait_for_ready,
215            timeout,
216            metadata,
217            _registered_method=True)
218
219    @staticmethod
220    def Find(request,
221            target,
222            options=(),
223            channel_credentials=None,
224            call_credentials=None,
225            insecure=False,
226            compression=None,
227            wait_for_ready=None,
228            timeout=None,
229            metadata=None):
230        return grpc.experimental.unary_unary(
231            request,
232            target,
233            '/account.organizations.Organizations/Find',
234            organizations_dot_organizations__pb2.FindRequest.SerializeToString,
235            organizations_dot_organizations__pb2.FindResponse.FromString,
236            options,
237            channel_credentials,
238            insecure,
239            call_credentials,
240            compression,
241            wait_for_ready,
242            timeout,
243            metadata,
244            _registered_method=True)
245
246    @staticmethod
247    def Update(request,
248            target,
249            options=(),
250            channel_credentials=None,
251            call_credentials=None,
252            insecure=False,
253            compression=None,
254            wait_for_ready=None,
255            timeout=None,
256            metadata=None):
257        return grpc.experimental.unary_unary(
258            request,
259            target,
260            '/account.organizations.Organizations/Update',
261            organizations_dot_organizations__pb2.UpdateRequest.SerializeToString,
262            google_dot_protobuf_dot_empty__pb2.Empty.FromString,
263            options,
264            channel_credentials,
265            insecure,
266            call_credentials,
267            compression,
268            wait_for_ready,
269            timeout,
270            metadata,
271            _registered_method=True)

Missing associated documentation comment in .proto file.

@staticmethod
def Create( request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None):
138    @staticmethod
139    def Create(request,
140            target,
141            options=(),
142            channel_credentials=None,
143            call_credentials=None,
144            insecure=False,
145            compression=None,
146            wait_for_ready=None,
147            timeout=None,
148            metadata=None):
149        return grpc.experimental.unary_unary(
150            request,
151            target,
152            '/account.organizations.Organizations/Create',
153            organizations_dot_organizations__pb2.CreateRequest.SerializeToString,
154            organizations_dot_organizations__pb2.CreateResponse.FromString,
155            options,
156            channel_credentials,
157            insecure,
158            call_credentials,
159            compression,
160            wait_for_ready,
161            timeout,
162            metadata,
163            _registered_method=True)
@staticmethod
def Get( request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None):
165    @staticmethod
166    def Get(request,
167            target,
168            options=(),
169            channel_credentials=None,
170            call_credentials=None,
171            insecure=False,
172            compression=None,
173            wait_for_ready=None,
174            timeout=None,
175            metadata=None):
176        return grpc.experimental.unary_unary(
177            request,
178            target,
179            '/account.organizations.Organizations/Get',
180            organizations_dot_organizations__pb2.GetRequest.SerializeToString,
181            organizations_dot_organizations__pb2.GetResponse.FromString,
182            options,
183            channel_credentials,
184            insecure,
185            call_credentials,
186            compression,
187            wait_for_ready,
188            timeout,
189            metadata,
190            _registered_method=True)
@staticmethod
def Delete( request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None):
192    @staticmethod
193    def Delete(request,
194            target,
195            options=(),
196            channel_credentials=None,
197            call_credentials=None,
198            insecure=False,
199            compression=None,
200            wait_for_ready=None,
201            timeout=None,
202            metadata=None):
203        return grpc.experimental.unary_unary(
204            request,
205            target,
206            '/account.organizations.Organizations/Delete',
207            organizations_dot_organizations__pb2.DeleteRequest.SerializeToString,
208            google_dot_protobuf_dot_empty__pb2.Empty.FromString,
209            options,
210            channel_credentials,
211            insecure,
212            call_credentials,
213            compression,
214            wait_for_ready,
215            timeout,
216            metadata,
217            _registered_method=True)
@staticmethod
def Find( request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None):
219    @staticmethod
220    def Find(request,
221            target,
222            options=(),
223            channel_credentials=None,
224            call_credentials=None,
225            insecure=False,
226            compression=None,
227            wait_for_ready=None,
228            timeout=None,
229            metadata=None):
230        return grpc.experimental.unary_unary(
231            request,
232            target,
233            '/account.organizations.Organizations/Find',
234            organizations_dot_organizations__pb2.FindRequest.SerializeToString,
235            organizations_dot_organizations__pb2.FindResponse.FromString,
236            options,
237            channel_credentials,
238            insecure,
239            call_credentials,
240            compression,
241            wait_for_ready,
242            timeout,
243            metadata,
244            _registered_method=True)
@staticmethod
def Update( request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None):
246    @staticmethod
247    def Update(request,
248            target,
249            options=(),
250            channel_credentials=None,
251            call_credentials=None,
252            insecure=False,
253            compression=None,
254            wait_for_ready=None,
255            timeout=None,
256            metadata=None):
257        return grpc.experimental.unary_unary(
258            request,
259            target,
260            '/account.organizations.Organizations/Update',
261            organizations_dot_organizations__pb2.UpdateRequest.SerializeToString,
262            google_dot_protobuf_dot_empty__pb2.Empty.FromString,
263            options,
264            channel_credentials,
265            insecure,
266            call_credentials,
267            compression,
268            wait_for_ready,
269            timeout,
270            metadata,
271            _registered_method=True)