strongdm 2.6.4 → 3.2.1

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.
@@ -1,56 +0,0 @@
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: role_grants.proto for package 'v1'
17
-
18
- require "grpc"
19
- require "role_grants_pb"
20
-
21
- module V1
22
- module RoleGrants
23
- # RoleGrants represent relationships between composite roles and the roles
24
- # that make up those composite roles. When a composite role is attached to another
25
- # role, the permissions granted to members of the composite role are augmented to
26
- # include the permissions granted to members of the attached role.
27
- #
28
- # Deprecated: use Role access rules instead.
29
- class Service
30
- include GRPC::GenericService
31
-
32
- self.marshal_class_method = :encode
33
- self.unmarshal_class_method = :decode
34
- self.service_name = "v1.RoleGrants"
35
-
36
- # Create registers a new RoleGrant.
37
- #
38
- # Deprecated: use Role access rules instead.
39
- rpc :Create, V1::RoleGrantCreateRequest, V1::RoleGrantCreateResponse
40
- # Get reads one RoleGrant by ID.
41
- #
42
- # Deprecated: use Role access rules instead.
43
- rpc :Get, V1::RoleGrantGetRequest, V1::RoleGrantGetResponse
44
- # Delete removes a RoleGrant by ID.
45
- #
46
- # Deprecated: use Role access rules instead.
47
- rpc :Delete, V1::RoleGrantDeleteRequest, V1::RoleGrantDeleteResponse
48
- # List gets a list of RoleGrants matching a given set of criteria.
49
- #
50
- # Deprecated: use Role access rules instead.
51
- rpc :List, V1::RoleGrantListRequest, V1::RoleGrantListResponse
52
- end
53
-
54
- Stub = Service.rpc_stub_class
55
- end
56
- end