strongdm 8.4.0 → 9.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,46 @@
1
+ # Copyright 2020 StrongDM Inc
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
15
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
16
+ # Source: identity_sets.proto for package 'v1'
17
+
18
+ require "grpc"
19
+ require "identity_sets_pb"
20
+
21
+ module V1
22
+ module IdentitySets
23
+ # A IdentitySet is a named grouping of Identity Aliases for Accounts.
24
+ # An Account's relationship to a IdentitySet is defined via IdentityAlias objects.
25
+ class Service
26
+ include ::GRPC::GenericService
27
+
28
+ self.marshal_class_method = :encode
29
+ self.unmarshal_class_method = :decode
30
+ self.service_name = "v1.IdentitySets"
31
+
32
+ # Create registers a new IdentitySet.
33
+ rpc :Create, ::V1::IdentitySetCreateRequest, ::V1::IdentitySetCreateResponse
34
+ # Get reads one IdentitySet by ID.
35
+ rpc :Get, ::V1::IdentitySetGetRequest, ::V1::IdentitySetGetResponse
36
+ # Update replaces all the fields of a IdentitySet by ID.
37
+ rpc :Update, ::V1::IdentitySetUpdateRequest, ::V1::IdentitySetUpdateResponse
38
+ # Delete removes a IdentitySet by ID.
39
+ rpc :Delete, ::V1::IdentitySetDeleteRequest, ::V1::IdentitySetDeleteResponse
40
+ # List gets a list of IdentitySets matching a given set of criteria.
41
+ rpc :List, ::V1::IdentitySetListRequest, ::V1::IdentitySetListResponse
42
+ end
43
+
44
+ Stub = Service.rpc_stub_class
45
+ end
46
+ end