1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- syntax = "proto3";
- package google.cloud.policytroubleshooter.v1;
- import public "google/cloud/policytroubleshooter/v1/explanations.proto";
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.PolicyTroubleshooter.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/policytroubleshooter/v1;policytroubleshooter";
- option java_multiple_files = true;
- option java_outer_classname = "IAMCheckerProto";
- option java_package = "com.google.cloud.policytroubleshooter.v1";
- option php_namespace = "Google\\Cloud\\PolicyTroubleshooter\\V1";
- option ruby_package = "Google::Cloud::PolicyTroubleshooter::V1";
- service IamChecker {
- option (google.api.default_host) = "policytroubleshooter.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
-
-
- rpc TroubleshootIamPolicy(TroubleshootIamPolicyRequest) returns (TroubleshootIamPolicyResponse) {
- option (google.api.http) = {
- post: "/v1/iam:troubleshoot"
- body: "*"
- };
- }
- }
- message TroubleshootIamPolicyRequest {
-
-
- AccessTuple access_tuple = 1;
- }
- message TroubleshootIamPolicyResponse {
-
-
- AccessState access = 1;
-
-
-
-
-
-
-
-
-
-
- repeated ExplainedPolicy explained_policies = 2;
- }
|