Skip to content

Commit

Permalink
Add java sdk fields / tests for remote identity
Browse files Browse the repository at this point in the history
GitOrigin-RevId: f4feec93ead0ffb5ec530cfcfce434d8e1432ff9
  • Loading branch information
JP Fielding authored and SupportSDM committed Jun 14, 2022
1 parent 6285bee commit f606448
Show file tree
Hide file tree
Showing 19 changed files with 4,691 additions and 2,023 deletions.
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/AKS.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,26 @@ public void setPort(int in) {
this.port = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
Expand Down
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/AKSServiceAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,26 @@ public void setPort(int in) {
this.port = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
Expand Down
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/AmazonEKS.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,26 @@ public void setRegion(String in) {
this.region = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String roleArn;
/** */
public String getRoleArn() {
Expand Down
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/GoogleGKE.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,26 @@ public void setName(String in) {
this.name = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
Expand Down
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/Kubernetes.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,26 @@ public void setPort(int in) {
this.port = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
Expand Down
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/KubernetesServiceAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,26 @@ public void setPort(int in) {
this.port = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
Expand Down
20 changes: 20 additions & 0 deletions com/strongdm/api/v1/SSHCert.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,26 @@ public void setPortOverride(int in) {
this.portOverride = in;
}

private String remoteIdentityGroupId;
/** */
public String getRemoteIdentityGroupId() {
return this.remoteIdentityGroupId;
}
/** */
public void setRemoteIdentityGroupId(String in) {
this.remoteIdentityGroupId = in;
}

private String remoteIdentityHealthcheckUsername;
/** */
public String getRemoteIdentityHealthcheckUsername() {
return this.remoteIdentityHealthcheckUsername;
}
/** */
public void setRemoteIdentityHealthcheckUsername(String in) {
this.remoteIdentityHealthcheckUsername = in;
}

private String secretStoreId;
/** ID of the secret store containing credentials for this resource, if any. */
public String getSecretStoreId() {
Expand Down
Loading

0 comments on commit f606448

Please sign in to comment.