-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitOrigin-RevId: 032fedb48f979e35f4f3d402932e31f16c6de9e0
- Loading branch information
1 parent
11a1cba
commit cab03e0
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// This file was generated by constgen. DO NOT EDIT. | ||
|
||
package com.strongdm.api; | ||
|
||
// Node Lifecycle States, defining whether a node was last reported online, offline, restarting, etc. | ||
public final class NodeState { | ||
public final static String NEW = "new"; | ||
public final static String VERIFYING_RESTART = "verifying_restart"; | ||
public final static String AWAITING_RESTART = "awaiting_restart"; | ||
public final static String RESTARTING = "restarting"; | ||
public final static String STARTED = "started"; | ||
public final static String STOPPED = "stopped"; | ||
public final static String DEAD = "dead"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// This file was generated by constgen. DO NOT EDIT. | ||
|
||
package com.strongdm.api; | ||
|
||
// Permission Levels, shared by all entities capable of making authenticated requests against StrongDM. | ||
public final class PermissionLevel { | ||
public final static String ROOT_ADMIN = "root-admin"; | ||
public final static String ADMIN = "admin"; | ||
public final static String DATABASE_ADMIN = "database-admin"; | ||
public final static String TEAM_LEADER = "multi-team-leader"; | ||
public final static String USER = "user"; | ||
public final static String RELAY = "relay"; | ||
public final static String ADMIN_TOKEN = "admin-token"; | ||
public final static String SCIM_TOKEN = "scim-token"; | ||
public final static String SERVICE = "service"; | ||
public final static String SUSPENDED = "suspended"; | ||
public final static String EMPTY = ""; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// This file was generated by constgen. DO NOT EDIT. | ||
|
||
package com.strongdm.api; | ||
|
||
// Providers responsible for managing roles and users. | ||
// None, or an empty string, implies the user is managed by strongDM. | ||
public final class Provider { | ||
public final static String NONE = ""; | ||
public final static String OKTA = "okta"; | ||
public final static String SAIL_POINT = "sailpoint"; | ||
public final static String AZURE = "azure"; | ||
public final static String GENERIC = "generic"; | ||
public final static String ONE_LOGIN = "onelogin"; | ||
public final static String GOOGLE = "google"; | ||
} |