Skip to content

Commit

Permalink
3.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed May 31, 2023
1 parent c32c9e4 commit 0d87a1c
Show file tree
Hide file tree
Showing 8 changed files with 15,440 additions and 5,980 deletions.
8 changes: 3 additions & 5 deletions com/strongdm/api/ActivityVerb.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ public final class ActivityVerb {
"access request to resource timed out";
public static final String ACCESS_REQUEST_TO_RESOURCE_GRANTED =
"access request to resource granted";
public static final String ACCESS_REQUEST_TO_RESOURCE_GRANTED_AUTOMATICALLY =
"access request to resource granted automatically";
public static final String WORKFLOW_ADDED = "access workflow added";
public static final String WORKFLOW_DELETED = "access workflow deleted";
public static final String WORKFLOW_RESOURCE_ASSIGNED = "resource assigned to workflow";
Expand All @@ -179,11 +181,7 @@ public final class ActivityVerb {
public static final String WORKFLOW_RESOURCE_MULTIPLE_UNASSIGNED =
"multiple resources unassigned from workflow";
public static final String WORKFLOW_ROLES_UPDATED = "workflow roles updated";
public static final String WORKFLOW_NOTIFICATION_OPTION_ADDED =
"workflow notification type added";
public static final String WORKFLOW_NOTIFICATION_OPTION_REMOVED =
"workflow notification type removed";
public static final String WORKFLOW_NOTIFICATION_OPTIONS_UPDATED = "workflow approvers updated";
public static final String WORKFLOW_APPROVERS_UPDATED = "workflow approvers updated";
public static final String WORKFLOW_NAME_UPDATED = "workflow name updated";
public static final String WORKFLOW_DESCRIPTION_UPDATED = "workflow description updated";
public static final String WORKFLOW_AUTO_GRANT_UPDATED = "workflow auto grant updated";
Expand Down
1 change: 1 addition & 0 deletions com/strongdm/api/Permission.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,5 @@ public final class Permission {
public static final String GRANT_READ = "grant:read";
public static final String GRANT_WRITE = "grant:write";
public static final String REPORT_READ = "report:read";
public static final String BILLING_READ = "billing:read";
}
205 changes: 205 additions & 0 deletions com/strongdm/api/SQLServerAzureAD.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
// 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.
//

// Code generated by protogen. DO NOT EDIT.

package com.strongdm.api;

public class SQLServerAzureAD implements Resource {
private String bindInterface;
/** Bind interface */
public String getBindInterface() {
return this.bindInterface;
}
/** Bind interface */
public void setBindInterface(String in) {
this.bindInterface = in;
}

private String clientId;
/** */
public String getClientId() {
return this.clientId;
}
/** */
public void setClientId(String in) {
this.clientId = in;
}

private String database;
/** */
public String getDatabase() {
return this.database;
}
/** */
public void setDatabase(String in) {
this.database = in;
}

private String egressFilter;
/** A filter applied to the routing logic to pin datasource to nodes. */
public String getEgressFilter() {
return this.egressFilter;
}
/** A filter applied to the routing logic to pin datasource to nodes. */
public void setEgressFilter(String in) {
this.egressFilter = in;
}

private boolean healthy;
/** True if the datasource is reachable and the credentials are valid. */
public boolean getHealthy() {
return this.healthy;
}
/** True if the datasource is reachable and the credentials are valid. */
public void setHealthy(boolean in) {
this.healthy = in;
}

private String hostname;
/** */
public String getHostname() {
return this.hostname;
}
/** */
public void setHostname(String in) {
this.hostname = in;
}

private String id;
/** Unique identifier of the Resource. */
public String getId() {
return this.id;
}
/** Unique identifier of the Resource. */
public void setId(String in) {
this.id = in;
}

private String name;
/** Unique human-readable name of the Resource. */
public String getName() {
return this.name;
}
/** Unique human-readable name of the Resource. */
public void setName(String in) {
this.name = in;
}

private boolean overrideDatabase;
/** */
public boolean getOverrideDatabase() {
return this.overrideDatabase;
}
/** */
public void setOverrideDatabase(boolean in) {
this.overrideDatabase = in;
}

private int port;
/** */
public int getPort() {
return this.port;
}
/** */
public void setPort(int in) {
this.port = in;
}

private int portOverride;
/** */
public int getPortOverride() {
return this.portOverride;
}
/** */
public void setPortOverride(int in) {
this.portOverride = in;
}

private String schema;
/** */
public String getSchema() {
return this.schema;
}
/** */
public void setSchema(String in) {
this.schema = in;
}

private String secret;
/** */
public String getSecret() {
return this.secret;
}
/** */
public void setSecret(String in) {
this.secret = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
return this.secretStoreId;
}
/** ID of the secret store containing credentials for this resource, if any. */
public void setSecretStoreId(String in) {
this.secretStoreId = in;
}

private String subdomain;
/**
* Subdomain is the local DNS address. (e.g. app-prod1 turns into
* app-prod1.your-org-name.sdm.network)
*/
public String getSubdomain() {
return this.subdomain;
}
/**
* Subdomain is the local DNS address. (e.g. app-prod1 turns into
* app-prod1.your-org-name.sdm.network)
*/
public void setSubdomain(String in) {
this.subdomain = in;
}

private java.util.Map<String, String> tags;
/** Tags is a map of key, value pairs. */
public java.util.Map<String, String> getTags() {
java.util.Map<String, String> m = new java.util.HashMap<String, String>();
if (this.tags != null) {
m.putAll(this.tags);
}
return m;
}
/** Tags is a map of key, value pairs. */
public void setTags(java.util.Map<String, String> in) {
if (in == null) {
this.tags = null;
return;
}
this.tags = new java.util.HashMap<String, String>();
this.tags.putAll(in);
}

private String tenantId;
/** */
public String getTenantId() {
return this.tenantId;
}
/** */
public void setTenantId(String in) {
this.tenantId = in;
}
}
Loading

0 comments on commit 0d87a1c

Please sign in to comment.