Skip to content

Commit

Permalink
Merge commit
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 238ab520c8dff3278b4400c63068abb5c4b5252a
  • Loading branch information
philhassey authored and SupportSDM committed Dec 15, 2022
1 parent 6973c6c commit 6409d9f
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 27 deletions.
31 changes: 23 additions & 8 deletions com/strongdm/api/NodeState.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
// Copyright 2020 StrongDM Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// 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.
// 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";
public static final String NEW = "new";
public static final String VERIFYING_RESTART = "verifying_restart";
public static final String AWAITING_RESTART = "awaiting_restart";
public static final String RESTARTING = "restarting";
public static final String STARTED = "started";
public static final String STOPPED = "stopped";
public static final String DEAD = "dead";
}
39 changes: 27 additions & 12 deletions com/strongdm/api/PermissionLevel.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,33 @@
// Copyright 2020 StrongDM Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// 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.
// 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 = "";
public static final String ROOT_ADMIN = "root-admin";
public static final String ADMIN = "admin";
public static final String DATABASE_ADMIN = "database-admin";
public static final String TEAM_LEADER = "multi-team-leader";
public static final String USER = "user";
public static final String RELAY = "relay";
public static final String ADMIN_TOKEN = "admin-token";
public static final String SCIM_TOKEN = "scim-token";
public static final String SERVICE = "service";
public static final String SUSPENDED = "suspended";
public static final String EMPTY = "";
}
28 changes: 21 additions & 7 deletions com/strongdm/api/Provider.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
// Copyright 2020 StrongDM Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// 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";
public static final String NONE = "";
public static final String OKTA = "okta";
public static final String SAIL_POINT = "sailpoint";
public static final String AZURE = "azure";
public static final String GENERIC = "generic";
public static final String ONE_LOGIN = "onelogin";
public static final String GOOGLE = "google";
}

0 comments on commit 6409d9f

Please sign in to comment.