@@ -35,14 +35,14 @@ service AuthProviderService {
35
35
36
36
message CreateAuthProviderRequest {
37
37
oneof owner {
38
- string owner_id = 2 ;
39
- string organization_id = 3 ;
38
+ string owner_id = 1 ;
39
+ string organization_id = 2 ;
40
40
}
41
41
42
- AuthProviderType type = 4 ;
43
- string host = 5 ;
42
+ AuthProviderType type = 3 ;
43
+ string host = 4 ;
44
44
45
- OAuth2Config oauth2_config = 12 ;
45
+ OAuth2Config oauth2_config = 5 ;
46
46
}
47
47
48
48
message CreateAuthProviderResponse { AuthProvider auth_provider = 1 ; }
@@ -60,7 +60,7 @@ message ListAuthProvidersRequest {
60
60
}
61
61
62
62
message ListAuthProvidersResponse {
63
- repeated AuthProvider list = 1 ;
63
+ repeated AuthProvider auth_providers = 1 ;
64
64
PaginationResponse pagination = 2 ;
65
65
}
66
66
@@ -73,14 +73,14 @@ message ListAuthProviderDescriptionsRequest {
73
73
}
74
74
75
75
message ListAuthProviderDescriptionsResponse {
76
- repeated AuthProviderDescription list = 1 ;
76
+ repeated AuthProviderDescription descriptions = 1 ;
77
77
PaginationResponse pagination = 2 ;
78
78
}
79
79
80
80
message UpdateAuthProviderRequest {
81
81
string auth_provider_id = 1 ;
82
82
83
- OAuth2Config oauth2_config = 12 ;
83
+ OAuth2Config oauth2_config = 2 ;
84
84
}
85
85
86
86
message UpdateAuthProviderResponse {}
0 commit comments