strongdm 2.6.4 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.git/ORIG_HEAD +1 -1
- data/.git/index +0 -0
- data/.git/logs/HEAD +3 -3
- data/.git/logs/refs/heads/master +2 -2
- data/.git/logs/refs/remotes/origin/HEAD +1 -1
- data/.git/objects/pack/{pack-9605cb63890b5fed001c49e509929945ac427bf0.idx → pack-cff8d23303f23ddc9aaecebd2f8583a0433ef442.idx} +0 -0
- data/.git/objects/pack/{pack-9605cb63890b5fed001c49e509929945ac427bf0.pack → pack-cff8d23303f23ddc9aaecebd2f8583a0433ef442.pack} +0 -0
- data/.git/packed-refs +5 -2
- data/.git/refs/heads/master +1 -1
- data/.yardopts +1 -0
- data/README.md +13 -10
- data/lib/grpc/drivers_pb.rb +41 -0
- data/lib/grpc/options_pb.rb +1 -0
- data/lib/grpc/plumbing.rb +283 -305
- data/lib/grpc/roles_pb.rb +0 -1
- data/lib/grpc/secret_store_types_pb.rb +25 -0
- data/lib/models/porcelain.rb +272 -245
- data/lib/strongdm.rb +5 -21
- data/lib/svc.rb +5 -330
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +4 -8
- data/lib/grpc/role_attachments_pb.rb +0 -77
- data/lib/grpc/role_attachments_services_pb.rb +0 -56
- data/lib/grpc/role_grants_pb.rb +0 -77
- data/lib/grpc/role_grants_services_pb.rb +0 -56
@@ -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
|