Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions packages/csharp/graphschema/PropertyNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ public static class PropertyNames {
public static readonly string MSA = "msa";
public static readonly string DoesAnyAceGrantOwnerRights = "doesanyacegrantownerrights";
public static readonly string DoesAnyInheritedAceGrantOwnerRights = "doesanyinheritedacegrantownerrights";
public static readonly string CustomExplicitDenyAcesCount = "customexplicitdenyacescount";
public static readonly string CustomInheritedDenyAcesCount = "custominheriteddenyacescount";
public static readonly string ADCSWebEnrollmentHTTP = "adcswebenrollmenthttp";
public static readonly string ADCSWebEnrollmentHTTPS = "adcswebenrollmenthttps";
public static readonly string ADCSWebEnrollmentHTTPSEPA = "adcswebenrollmenthttpsepa";
Expand Down
16 changes: 16 additions & 0 deletions packages/cue/bh/ad/ad.cue
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,20 @@ DoesAnyInheritedAceGrantOwnerRights: types.#StringEnum & {
representation: "doesanyinheritedacegrantownerrights"
}

CustomExplicitDenyAcesCount: types.#StringEnum & {
symbol: "CustomExplicitDenyAcesCount"
schema: "ad"
name: "Custom Explicit Deny ACEs Count"
representation: "customexplicitdenyacescount"
}

CustomInheritedDenyAcesCount: types.#StringEnum & {
symbol: "CustomInheritedDenyAcesCount"
schema: "ad"
name: "Custom Inherited Deny ACEs Count"
representation: "custominheriteddenyacescount"
}

OwnerSid: types.#StringEnum & {
symbol: "OwnerSid"
schema: "ad"
Expand Down Expand Up @@ -1151,6 +1165,8 @@ Properties: [
MSA,
DoesAnyAceGrantOwnerRights,
DoesAnyInheritedAceGrantOwnerRights,
CustomExplicitDenyAcesCount,
CustomInheritedDenyAcesCount,
ADCSWebEnrollmentHTTP,
ADCSWebEnrollmentHTTPS,
ADCSWebEnrollmentHTTPSEPA,
Expand Down
16 changes: 15 additions & 1 deletion packages/go/graphschema/ad/ad.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/javascript/bh-shared-ui/src/graphSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,8 @@ export enum ActiveDirectoryKindProperties {
MSA = 'msa',
DoesAnyAceGrantOwnerRights = 'doesanyacegrantownerrights',
DoesAnyInheritedAceGrantOwnerRights = 'doesanyinheritedacegrantownerrights',
CustomExplicitDenyAcesCount = 'customexplicitdenyacescount',
CustomInheritedDenyAcesCount = 'custominheriteddenyacescount',
ADCSWebEnrollmentHTTP = 'adcswebenrollmenthttp',
ADCSWebEnrollmentHTTPS = 'adcswebenrollmenthttps',
ADCSWebEnrollmentHTTPSEPA = 'adcswebenrollmenthttpsepa',
Expand Down Expand Up @@ -725,6 +727,10 @@ export function ActiveDirectoryKindPropertiesToDisplay(value: ActiveDirectoryKin
return 'Does Any ACE Grant Owner Rights';
case ActiveDirectoryKindProperties.DoesAnyInheritedAceGrantOwnerRights:
return 'Does Any Inherited ACE Grant Owner Rights';
case ActiveDirectoryKindProperties.CustomExplicitDenyAcesCount:
return 'Custom Explicit Deny ACEs Count';
case ActiveDirectoryKindProperties.CustomInheritedDenyAcesCount:
return 'Custom Inherited Deny ACEs Count';
case ActiveDirectoryKindProperties.ADCSWebEnrollmentHTTP:
return 'ADCS Web Enrollment HTTP';
case ActiveDirectoryKindProperties.ADCSWebEnrollmentHTTPS:
Expand Down
Loading