Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ Class SMS_BoundaryGroup : SMS_BaseClass
String CreatedBy;
DateTime CreatedOn;
String DefaultSiteCode;
String Description;
String Description;
UInt64 Flags;
UInt32 GroupID;
UInt32 MemberCount;
String ModifiedBy;
Expand Down Expand Up @@ -85,6 +86,26 @@ Class SMS_BoundaryGroup : SMS_BaseClass

Description for the boundary group.

`Flags`
Data type: `UInt64`

Access type: Read/Write

Qualifiers: none

Boundary group property flags.

|Value|Execution context|
|-|-|
|0|Allow peer downloads in this boundary group|
|1|Allow peer downloads in this boundary group **is not enabled**|
|2|During peer downloads, only use peers within the same subnet|
|4|Prefer distribution points over peers within the same subnet|
|8|Prefer cloud based sources over on-premises sources|

> [!NOTE]
> These are binary flags. So multiple can be set at once. E.g. if a value of 6 is shown, then the first 3 are enabled.

`GroupID`
Data type: `UInt32`

Expand Down