mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:37:32 +00:00
fix: rename iam to instance (#3345)
* fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename orgiampolicy to domain policy * fix: merge conflicts * fix: protos * fix: md files * implement deprecated org iam policy again Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
@@ -291,7 +291,7 @@ and adds the user to the orgs members as ORG_OWNER
|
||||
> **rpc** GetIDPByID([GetIDPByIDRequest](#getidpbyidrequest))
|
||||
[GetIDPByIDResponse](#getidpbyidresponse)
|
||||
|
||||
Returns a identity provider configuration of the IAM
|
||||
Returns a identity provider configuration of the IAM instance
|
||||
|
||||
|
||||
|
||||
@@ -303,7 +303,7 @@ Returns a identity provider configuration of the IAM
|
||||
> **rpc** ListIDPs([ListIDPsRequest](#listidpsrequest))
|
||||
[ListIDPsResponse](#listidpsresponse)
|
||||
|
||||
Returns all identity provider configurations of the IAM
|
||||
Returns all identity provider configurations of the IAM instance
|
||||
|
||||
|
||||
|
||||
@@ -315,7 +315,7 @@ Returns all identity provider configurations of the IAM
|
||||
> **rpc** AddOIDCIDP([AddOIDCIDPRequest](#addoidcidprequest))
|
||||
[AddOIDCIDPResponse](#addoidcidpresponse)
|
||||
|
||||
Adds a new oidc identity provider configuration the IAM
|
||||
Adds a new oidc identity provider configuration the IAM instance
|
||||
|
||||
|
||||
|
||||
@@ -327,7 +327,7 @@ Adds a new oidc identity provider configuration the IAM
|
||||
> **rpc** AddJWTIDP([AddJWTIDPRequest](#addjwtidprequest))
|
||||
[AddJWTIDPResponse](#addjwtidpresponse)
|
||||
|
||||
Adds a new jwt identity provider configuration the IAM
|
||||
Adds a new jwt identity provider configuration the IAM instance
|
||||
|
||||
|
||||
|
||||
@@ -476,7 +476,8 @@ all fields are updated. If no value is provided the field will be empty afterwar
|
||||
> **rpc** GetOrgIAMPolicy([GetOrgIAMPolicyRequest](#getorgiampolicyrequest))
|
||||
[GetOrgIAMPolicyResponse](#getorgiampolicyresponse)
|
||||
|
||||
Returns the IAM policy defined by the administrators of ZITADEL
|
||||
deprecated: please use DomainPolicy instead
|
||||
Returns the Org IAM policy defined by the administrators of ZITADEL
|
||||
|
||||
|
||||
|
||||
@@ -488,7 +489,8 @@ Returns the IAM policy defined by the administrators of ZITADEL
|
||||
> **rpc** UpdateOrgIAMPolicy([UpdateOrgIAMPolicyRequest](#updateorgiampolicyrequest))
|
||||
[UpdateOrgIAMPolicyResponse](#updateorgiampolicyresponse)
|
||||
|
||||
Updates the default IAM policy.
|
||||
deprecated: please use DomainPolicy instead
|
||||
Updates the default OrgIAM policy.
|
||||
it impacts all organisations without a customised policy
|
||||
|
||||
|
||||
@@ -501,6 +503,7 @@ it impacts all organisations without a customised policy
|
||||
> **rpc** GetCustomOrgIAMPolicy([GetCustomOrgIAMPolicyRequest](#getcustomorgiampolicyrequest))
|
||||
[GetCustomOrgIAMPolicyResponse](#getcustomorgiampolicyresponse)
|
||||
|
||||
deprecated: please use DomainPolicy instead
|
||||
Returns the customised policy or the default if not customised
|
||||
|
||||
|
||||
@@ -513,7 +516,8 @@ Returns the customised policy or the default if not customised
|
||||
> **rpc** AddCustomOrgIAMPolicy([AddCustomOrgIAMPolicyRequest](#addcustomorgiampolicyrequest))
|
||||
[AddCustomOrgIAMPolicyResponse](#addcustomorgiampolicyresponse)
|
||||
|
||||
Defines a custom ORGIAM policy as specified
|
||||
deprecated: please use DomainPolicy instead
|
||||
Defines a custom OrgIAM policy as specified
|
||||
|
||||
|
||||
|
||||
@@ -525,7 +529,8 @@ Defines a custom ORGIAM policy as specified
|
||||
> **rpc** UpdateCustomOrgIAMPolicy([UpdateCustomOrgIAMPolicyRequest](#updatecustomorgiampolicyrequest))
|
||||
[UpdateCustomOrgIAMPolicyResponse](#updatecustomorgiampolicyresponse)
|
||||
|
||||
Updates a custom ORGIAM policy as specified
|
||||
deprecated: please use DomainPolicy instead
|
||||
Updates a custom OrgIAM policy as specified
|
||||
|
||||
|
||||
|
||||
@@ -537,6 +542,7 @@ Updates a custom ORGIAM policy as specified
|
||||
> **rpc** ResetCustomOrgIAMPolicyToDefault([ResetCustomOrgIAMPolicyToDefaultRequest](#resetcustomorgiampolicytodefaultrequest))
|
||||
[ResetCustomOrgIAMPolicyToDefaultResponse](#resetcustomorgiampolicytodefaultresponse)
|
||||
|
||||
deprecated: please use DomainPolicy instead
|
||||
Resets the org iam policy of the organisation to default
|
||||
ZITADEL will fallback to the default policy defined by the ZITADEL administrators
|
||||
|
||||
@@ -545,6 +551,80 @@ ZITADEL will fallback to the default policy defined by the ZITADEL administrator
|
||||
DELETE: /orgs/{org_id}/policies/orgiam
|
||||
|
||||
|
||||
### GetDomainPolicy
|
||||
|
||||
> **rpc** GetDomainPolicy([GetDomainPolicyRequest](#getdomainpolicyrequest))
|
||||
[GetDomainPolicyResponse](#getdomainpolicyresponse)
|
||||
|
||||
Returns the Domain policy defined by the administrators of ZITADEL
|
||||
|
||||
|
||||
|
||||
GET: /policies/domain
|
||||
|
||||
|
||||
### UpdateDomainPolicy
|
||||
|
||||
> **rpc** UpdateDomainPolicy([UpdateDomainPolicyRequest](#updatedomainpolicyrequest))
|
||||
[UpdateDomainPolicyResponse](#updatedomainpolicyresponse)
|
||||
|
||||
Updates the default Domain policy.
|
||||
it impacts all organisations without a customised policy
|
||||
|
||||
|
||||
|
||||
PUT: /policies/domain
|
||||
|
||||
|
||||
### GetCustomDomainPolicy
|
||||
|
||||
> **rpc** GetCustomDomainPolicy([GetCustomDomainPolicyRequest](#getcustomdomainpolicyrequest))
|
||||
[GetCustomDomainPolicyResponse](#getcustomdomainpolicyresponse)
|
||||
|
||||
Returns the customised policy or the default if not customised
|
||||
|
||||
|
||||
|
||||
GET: /orgs/{org_id}/policies/domain
|
||||
|
||||
|
||||
### AddCustomDomainPolicy
|
||||
|
||||
> **rpc** AddCustomDomainPolicy([AddCustomDomainPolicyRequest](#addcustomdomainpolicyrequest))
|
||||
[AddCustomDomainPolicyResponse](#addcustomdomainpolicyresponse)
|
||||
|
||||
Defines a custom Domain policy as specified
|
||||
|
||||
|
||||
|
||||
POST: /orgs/{org_id}/policies/domain
|
||||
|
||||
|
||||
### UpdateCustomDomainPolicy
|
||||
|
||||
> **rpc** UpdateCustomDomainPolicy([UpdateCustomDomainPolicyRequest](#updatecustomdomainpolicyrequest))
|
||||
[UpdateCustomDomainPolicyResponse](#updatecustomdomainpolicyresponse)
|
||||
|
||||
Updates a custom Domain policy as specified
|
||||
|
||||
|
||||
|
||||
PUT: /orgs/{org_id}/policies/domain
|
||||
|
||||
|
||||
### ResetCustomDomainPolicyToDefault
|
||||
|
||||
> **rpc** ResetCustomDomainPolicyToDefault([ResetCustomDomainPolicyToDefaultRequest](#resetcustomdomainpolicytodefaultrequest))
|
||||
[ResetCustomDomainPolicyToDefaultResponse](#resetcustomdomainpolicytodefaultresponse)
|
||||
|
||||
Resets the org iam policy of the organisation to default
|
||||
ZITADEL will fallback to the default policy defined by the ZITADEL administrators
|
||||
|
||||
|
||||
|
||||
DELETE: /orgs/{org_id}/policies/domain
|
||||
|
||||
|
||||
### GetLabelPolicy
|
||||
|
||||
> **rpc** GetLabelPolicy([GetLabelPolicyRequest](#getlabelpolicyrequest))
|
||||
@@ -1405,6 +1485,29 @@ This is an empty request
|
||||
|
||||
|
||||
|
||||
### AddCustomDomainPolicyRequest
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| org_id | string | - | string.min_len: 1<br /> string.max_len: 200<br /> |
|
||||
| user_login_must_be_domain | bool | the username has to end with the domain of it's organisation (uniqueness is organisation based) | |
|
||||
|
||||
|
||||
|
||||
|
||||
### AddCustomDomainPolicyResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| details | zitadel.v1.ObjectDetails | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### AddCustomOrgIAMPolicyRequest
|
||||
|
||||
|
||||
@@ -1679,6 +1782,29 @@ This is an empty response
|
||||
|
||||
|
||||
|
||||
### GetCustomDomainPolicyRequest
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| org_id | string | - | string.min_len: 1<br /> string.max_len: 200<br /> |
|
||||
|
||||
|
||||
|
||||
|
||||
### GetCustomDomainPolicyResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| policy | zitadel.policy.v1.DomainPolicy | - | |
|
||||
| is_default | bool | deprecated: is_default is also defined in zitadel.policy.v1.DomainPolicy | |
|
||||
|
||||
|
||||
|
||||
|
||||
### GetCustomInitMessageTextRequest
|
||||
|
||||
|
||||
@@ -2022,6 +2148,23 @@ This is an empty request
|
||||
|
||||
|
||||
|
||||
### GetDomainPolicyRequest
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### GetDomainPolicyResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| policy | zitadel.policy.v1.DomainPolicy | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### GetFileSystemNotificationProviderRequest
|
||||
This is an empty request
|
||||
|
||||
@@ -2892,6 +3035,28 @@ This is an empty request
|
||||
|
||||
|
||||
|
||||
### ResetCustomDomainPolicyToDefaultRequest
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| org_id | string | - | string.min_len: 1<br /> string.max_len: 200<br /> |
|
||||
|
||||
|
||||
|
||||
|
||||
### ResetCustomDomainPolicyToDefaultResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| details | zitadel.v1.ObjectDetails | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### ResetCustomInitMessageTextToDefaultRequest
|
||||
|
||||
|
||||
@@ -3503,6 +3668,29 @@ This is an empty request
|
||||
|
||||
|
||||
|
||||
### UpdateCustomDomainPolicyRequest
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| org_id | string | - | string.min_len: 1<br /> string.max_len: 200<br /> |
|
||||
| user_login_must_be_domain | bool | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### UpdateCustomDomainPolicyResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| details | zitadel.v1.ObjectDetails | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### UpdateCustomOrgIAMPolicyRequest
|
||||
|
||||
|
||||
@@ -3526,6 +3714,28 @@ This is an empty request
|
||||
|
||||
|
||||
|
||||
### UpdateDomainPolicyRequest
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| user_login_must_be_domain | bool | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### UpdateDomainPolicyResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| details | zitadel.v1.ObjectDetails | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### UpdateIAMMemberRequest
|
||||
|
||||
|
||||
|
@@ -1697,13 +1697,26 @@ remove a list of user grants in one request
|
||||
> **rpc** GetOrgIAMPolicy([GetOrgIAMPolicyRequest](#getorgiampolicyrequest))
|
||||
[GetOrgIAMPolicyResponse](#getorgiampolicyresponse)
|
||||
|
||||
Returns the org iam policy (this policy is managed by the iam administrator)
|
||||
deprecated: please use DomainPolicy instead
|
||||
Returns the domain policy (this policy is managed by the iam administrator)
|
||||
|
||||
|
||||
|
||||
GET: /policies/orgiam
|
||||
|
||||
|
||||
### GetDomainPolicy
|
||||
|
||||
> **rpc** GetDomainPolicy([GetDomainPolicyRequest](#getdomainpolicyrequest))
|
||||
[GetDomainPolicyResponse](#getdomainpolicyresponse)
|
||||
|
||||
Returns the domain policy (this policy is managed by the iam administrator)
|
||||
|
||||
|
||||
|
||||
GET: /policies/domain
|
||||
|
||||
|
||||
### GetLoginPolicy
|
||||
|
||||
> **rpc** GetLoginPolicy([GetLoginPolicyRequest](#getloginpolicyrequest))
|
||||
@@ -4540,6 +4553,23 @@ This is an empty request
|
||||
|
||||
|
||||
|
||||
### GetDomainPolicyRequest
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### GetDomainPolicyResponse
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| policy | zitadel.policy.v1.DomainPolicy | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### GetFeaturesRequest
|
||||
|
||||
|
||||
@@ -4835,7 +4865,7 @@ This is an empty request
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| policy | zitadel.policy.v1.OrgIAMPolicy | - | |
|
||||
| policy | zitadel.policy.v1.DomainPolicy | - | |
|
||||
|
||||
|
||||
|
||||
|
@@ -9,6 +9,19 @@ title: zitadel/policy.proto
|
||||
## Messages
|
||||
|
||||
|
||||
### DomainPolicy
|
||||
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
| ----- | ---- | ----------- | ----------- |
|
||||
| details | zitadel.v1.ObjectDetails | - | |
|
||||
| user_login_must_be_domain | bool | - | |
|
||||
| is_default | bool | - | |
|
||||
|
||||
|
||||
|
||||
|
||||
### LabelPolicy
|
||||
|
||||
|
||||
@@ -73,7 +86,7 @@ title: zitadel/policy.proto
|
||||
|
||||
|
||||
### OrgIAMPolicy
|
||||
|
||||
deprecated: please use DomainPolicy instead
|
||||
|
||||
|
||||
| Field | Type | Description | Validation |
|
||||
|
Reference in New Issue
Block a user