mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-13 19:09:16 +00:00
fix(api): correct http methods for provider templates endpoints (#5228)
fix(api): correct http methods for provider templates endpoints
This commit is contained in:
@@ -614,7 +614,7 @@ Change an existing ldap identity provider on the instance
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
POST: /idps/ldap/{id}
|
PUT: /idps/ldap/{id}
|
||||||
|
|
||||||
|
|
||||||
### DeleteProvider
|
### DeleteProvider
|
||||||
@@ -627,7 +627,7 @@ Will remove all linked providers of this configuration on the users
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
POST: /idps/templates/{id}
|
DELETE: /idps/templates/{id}
|
||||||
|
|
||||||
|
|
||||||
### GetOrgIAMPolicy
|
### GetOrgIAMPolicy
|
||||||
|
@@ -3071,7 +3071,7 @@ Change an existing ldap identity provider in the organisation
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
POST: /idps/ldap/{id}
|
PUT: /idps/ldap/{id}
|
||||||
|
|
||||||
|
|
||||||
### DeleteProvider
|
### DeleteProvider
|
||||||
@@ -3084,7 +3084,7 @@ Will remove all linked providers of this configuration on the users
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
POST: /idps/templates/{id}
|
DELETE: /idps/templates/{id}
|
||||||
|
|
||||||
|
|
||||||
### ListActions
|
### ListActions
|
||||||
|
@@ -1048,7 +1048,7 @@ service AdminService {
|
|||||||
// Change an existing ldap identity provider on the instance
|
// Change an existing ldap identity provider on the instance
|
||||||
rpc UpdateLDAPProvider(UpdateLDAPProviderRequest) returns (UpdateLDAPProviderResponse) {
|
rpc UpdateLDAPProvider(UpdateLDAPProviderRequest) returns (UpdateLDAPProviderResponse) {
|
||||||
option (google.api.http) = {
|
option (google.api.http) = {
|
||||||
post: "/idps/ldap/{id}"
|
put: "/idps/ldap/{id}"
|
||||||
body: "*"
|
body: "*"
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1061,8 +1061,7 @@ service AdminService {
|
|||||||
// Will remove all linked providers of this configuration on the users
|
// Will remove all linked providers of this configuration on the users
|
||||||
rpc DeleteProvider(DeleteProviderRequest) returns (DeleteProviderResponse) {
|
rpc DeleteProvider(DeleteProviderRequest) returns (DeleteProviderResponse) {
|
||||||
option (google.api.http) = {
|
option (google.api.http) = {
|
||||||
post: "/idps/templates/{id}"
|
delete: "/idps/templates/{id}"
|
||||||
body: "*"
|
|
||||||
};
|
};
|
||||||
|
|
||||||
option (zitadel.v1.auth_option) = {
|
option (zitadel.v1.auth_option) = {
|
||||||
|
@@ -3046,7 +3046,7 @@ service ManagementService {
|
|||||||
// Change an existing ldap identity provider in the organisation
|
// Change an existing ldap identity provider in the organisation
|
||||||
rpc UpdateLDAPProvider(UpdateLDAPProviderRequest) returns (UpdateLDAPProviderResponse) {
|
rpc UpdateLDAPProvider(UpdateLDAPProviderRequest) returns (UpdateLDAPProviderResponse) {
|
||||||
option (google.api.http) = {
|
option (google.api.http) = {
|
||||||
post: "/idps/ldap/{id}"
|
put: "/idps/ldap/{id}"
|
||||||
body: "*"
|
body: "*"
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -3059,8 +3059,7 @@ service ManagementService {
|
|||||||
// Will remove all linked providers of this configuration on the users
|
// Will remove all linked providers of this configuration on the users
|
||||||
rpc DeleteProvider(DeleteProviderRequest) returns (DeleteProviderResponse) {
|
rpc DeleteProvider(DeleteProviderRequest) returns (DeleteProviderResponse) {
|
||||||
option (google.api.http) = {
|
option (google.api.http) = {
|
||||||
post: "/idps/templates/{id}"
|
delete: "/idps/templates/{id}"
|
||||||
body: "*"
|
|
||||||
};
|
};
|
||||||
|
|
||||||
option (zitadel.v1.auth_option) = {
|
option (zitadel.v1.auth_option) = {
|
||||||
|
Reference in New Issue
Block a user