TdxCloudStorageItemPermissionScope Enum
Enumerates available access permission scopes.
#Declaration
TdxCloudStorageItemPermissionScope = (
Anonymous,
Organization
);
#Members
Name | Description |
---|---|
Anonymous
|
A cloud storage service allows anonymous access to an online resource. Anyone with a shared link can access the target file or folder on a cloud storage server. All cloud storage providers support this access permission scope. |
Organization
|
A cloud storage service forbids anonymous access to an online resource. Only those users that are signed into your organization (tenant) can follow a shared link to access the target resource on a cloud storage server. This functionality relies on Microsoft One |
#Remarks
Important
Only Microsoft One
The following public API members reference the TdxCloudStorageItemPermissionScope type:
A cloud storage item‘s Permissions.CreateSharedLink procedure accepts a TdxCloudStorageItemPermissionScope value as the AScope parameter.
The cloud storage component’s CreateSharedLink function accepts a TdxCloudStorageItemPermissionScope value as the AScope parameter.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Anonymous
value in code.