public sealed class Document.Types.AclInfo.Types.AccessRestriction : IMessage<Document.Types.AclInfo.Types.AccessRestriction>, IEquatable<Document.Types.AclInfo.Types.AccessRestriction>, IDeepCloneable<Document.Types.AclInfo.Types.AccessRestriction>, IBufferMessage, IMessage
Reference documentation and code samples for the Discovery Engine v1 API class Document.Types.AclInfo.Types.AccessRestriction.
AclRestriction to model complex inheritance restrictions.
Example: Modeling a "Both Permit" inheritance, where to access a child document, user needs to have access to parent document.
Document Hierarchy - Space_S --> Page_P.
Readers: Space_S: group_1, user_1 Page_P: group_2, group_3, user_2
Space_S ACL Restriction - { "acl_info": { "readers": [ { "principals": [ { "group_id": "group_1" }, { "user_id": "user_1" } ] } ] } }
Page_P ACL Restriction. { "acl_info": { "readers": [ { "principals": [ { "group_id": "group_2" }, { "group_id": "group_3" }, { "user_id": "user_2" } ], }, { "principals": [ { "group_id": "group_1" }, { "user_id": "user_1" } ], } ] } }
Implements
IMessageDocumentTypesAclInfoTypesAccessRestriction, IEquatableDocumentTypesAclInfoTypesAccessRestriction, IDeepCloneableDocumentTypesAclInfoTypesAccessRestriction, IBufferMessage, IMessageNamespace
Google.Cloud.DiscoveryEngine.V1Assembly
Google.Cloud.DiscoveryEngine.V1.dll
Constructors
AccessRestriction()
public AccessRestriction()
AccessRestriction(AccessRestriction)
public AccessRestriction(Document.Types.AclInfo.Types.AccessRestriction other)
Parameter | |
---|---|
Name | Description |
other |
DocumentTypesAclInfoTypesAccessRestriction |
Properties
IdpWide
public bool IdpWide { get; set; }
All users within the Identity Provider.
Property Value | |
---|---|
Type | Description |
bool |
Principals
public RepeatedField<Principal> Principals { get; }
List of principals.
Property Value | |
---|---|
Type | Description |
RepeatedFieldPrincipal |