Skip to content

Commit

Permalink
regenerate Go, Python, Ruby, Java, and Terraform provider
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 8fd6d916dfe44333aa8c0a1224c3f365636c9b2c
  • Loading branch information
etodd authored and SupportSDM committed Feb 1, 2023
1 parent 070a4de commit 876c675
Show file tree
Hide file tree
Showing 13 changed files with 26,019 additions and 21,614 deletions.
189 changes: 189 additions & 0 deletions com/strongdm/api/AmazonEKSInstanceProfile.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
// 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 protogen. DO NOT EDIT.

package com.strongdm.api;

public class AmazonEKSInstanceProfile 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 certificateAuthority;
/** */
public String getCertificateAuthority() {
return this.certificateAuthority;
}
/** */
public void setCertificateAuthority(String in) {
this.certificateAuthority = in;
}

private String clusterName;
/** */
public String getClusterName() {
return this.clusterName;
}
/** */
public void setClusterName(String in) {
this.clusterName = 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 String endpoint;
/** */
public String getEndpoint() {
return this.endpoint;
}
/** */
public void setEndpoint(String in) {
this.endpoint = in;
}

private String healthcheckNamespace;
/** The path used to check the health of your connection. Defaults to `default`. */
public String getHealthcheckNamespace() {
return this.healthcheckNamespace;
}
/** The path used to check the health of your connection. Defaults to `default`. */
public void setHealthcheckNamespace(String in) {
this.healthcheckNamespace = 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 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 String region;
/** */
public String getRegion() {
return this.region;
}
/** */
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() {
return this.roleArn;
}
/** */
public void setRoleArn(String in) {
this.roleArn = in;
}

private String roleExternalId;
/** */
public String getRoleExternalId() {
return this.roleExternalId;
}
/** */
public void setRoleExternalId(String in) {
this.roleExternalId = 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 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);
}
}
Loading

0 comments on commit 876c675

Please sign in to comment.