Skip to content

Commit

Permalink
Merge commit
Browse files Browse the repository at this point in the history
GitOrigin-RevId: caf74dc82b6325209e7ea349403f3f9d70fb89d5
  • Loading branch information
200sc authored and SupportSDM committed Sep 13, 2022
1 parent 89cab53 commit eb9a6af
Show file tree
Hide file tree
Showing 10 changed files with 2,272 additions and 1,705 deletions.
10 changes: 10 additions & 0 deletions com/strongdm/api/HTTPAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@ public void setHealthy(boolean in) {
this.healthy = in;
}

private String hostOverride;
/** */
public String getHostOverride() {
return this.hostOverride;
}
/** */
public void setHostOverride(String in) {
this.hostOverride = in;
}

private String id;
/** Unique identifier of the Resource. */
public String getId() {
Expand Down
10 changes: 10 additions & 0 deletions com/strongdm/api/HTTPBasicAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@ public void setHealthy(boolean in) {
this.healthy = in;
}

private String hostOverride;
/** */
public String getHostOverride() {
return this.hostOverride;
}
/** */
public void setHostOverride(String in) {
this.hostOverride = in;
}

private String id;
/** Unique identifier of the Resource. */
public String getId() {
Expand Down
10 changes: 10 additions & 0 deletions com/strongdm/api/HTTPNoAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@ public void setHealthy(boolean in) {
this.healthy = in;
}

private String hostOverride;
/** */
public String getHostOverride() {
return this.hostOverride;
}
/** */
public void setHostOverride(String in) {
this.hostOverride = in;
}

private String id;
/** Unique identifier of the Resource. */
public String getId() {
Expand Down
Loading

0 comments on commit eb9a6af

Please sign in to comment.