This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplate_handler_service.proto
108 lines (70 loc) · 3.39 KB
/
template_handler_service.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// Copyright 2017 Istio Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// THIS FILE IS AUTOMATICALLY GENERATED BY MIXGEN.
syntax = "proto3";
package authzadaptor;
import "gogoproto/gogo.proto";
import "mixer/adapter/model/v1beta1/extensions.proto";
import "google/protobuf/any.proto";
import "mixer/adapter/model/v1beta1/check.proto";
option (istio.mixer.adapter.model.v1beta1.template_variety) = TEMPLATE_VARIETY_CHECK_WITH_OUTPUT;
option (istio.mixer.adapter.model.v1beta1.template_name) = "authzadaptor";
option (gogoproto.goproto_getters_all) = false;
option (gogoproto.equal_all) = false;
option (gogoproto.gostring_all) = false;
option (gogoproto.stable_marshaler_all) = true;
// HandleAuthzadaptorService is implemented by backends that wants to handle request-time 'authzadaptor' instances.
service HandleAuthzadaptorService {
// HandleAuthzadaptor is called by Mixer at request-time to deliver 'authzadaptor' instances to the backend.
rpc HandleAuthzadaptor(HandleAuthzadaptorRequest) returns (HandleAuthzadaptorResponse);
}
// Request message for HandleAuthzadaptor method.
message HandleAuthzadaptorRequest {
// 'authzadaptor' instance.
InstanceMsg instance = 1;
// Adapter specific handler configuration.
//
// Note: Backends can also implement [InfrastructureBackend][https://istio.io/docs/reference/config/mixer/istio.mixer.adapter.model.v1beta1.html#InfrastructureBackend]
// service and therefore opt to receive handler configuration during session creation through [InfrastructureBackend.CreateSession][TODO: Link to this fragment]
// call. In that case, adapter_config will have type_url as 'google.protobuf.Any.type_url' and would contain string
// value of session_id (returned from InfrastructureBackend.CreateSession).
google.protobuf.Any adapter_config = 2;
// Id to dedupe identical requests from Mixer.
string dedup_id = 3;
}
message HandleAuthzadaptorResponse {
istio.mixer.adapter.model.v1beta1.CheckResult result = 1;
OutputMsg output = 2;
}
// Contains output payload for 'authzadaptor' template.
message OutputMsg {
string email = 1;
}
// Contains instance payload for 'authzadaptor' template. This is passed to infrastructure backends during request-time
// through HandleAuthzadaptorService.HandleAuthzadaptor.
message InstanceMsg {
// Name of the instance as specified in configuration.
string name = 72295727;
string key = 1;
string path = 2;
}
// Contains inferred type information about specific instance of 'authzadaptor' template. This is passed to
// infrastructure backends during configuration-time through [InfrastructureBackend.CreateSession][TODO: Link to this fragment].
message Type {
}
// Represents instance configuration schema for 'authzadaptor' template.
message InstanceParam {
string key = 1;
string path = 2;
}