blob: 1903f3057e8753e770f05a656a600e47111e1b94 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package com.epam.dlab.dto.aws;
import com.epam.dlab.dto.base.CloudSettings;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
@Data
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class AwsCloudSettings extends CloudSettings {
@JsonProperty("aws_iam_user")
private String awsIamUser;
@JsonProperty("aws_region")
private String awsRegion;
@JsonProperty("aws_subnet_id")
private String awsSubnetId;
@JsonProperty("aws_security_groups_ids")
private String awsSecurityGroupIds;
@JsonProperty("aws_vpc_id")
private String awsVpcId;
@JsonProperty("conf_tag_resource_id")
private String confTagResourceId;
@JsonProperty("aws_notebook_subnet_id")
private String awsNotebookSubnetId;
@JsonProperty("aws_notebook_vpc_id")
private String awsNotebookVpcId;
@JsonProperty("aws_zone")
private String zone;
@JsonProperty("ldap_hostname")
protected String ldapHost;
@JsonProperty("ldap_dn")
protected String ldapDn;
@JsonProperty("ldap_ou")
protected String ldapOu;
@JsonProperty("ldap_service_username")
protected String ldapUser;
@JsonProperty("ldap_service_password")
protected String ldapPassword;
@JsonProperty("conf_os_family")
protected String os;
@JsonProperty("conf_cloud_provider")
protected String cloud;
@JsonProperty("conf_service_base_name")
protected String sbn;
@JsonProperty("conf_key_dir")
protected String confKeyDir;
@JsonProperty("conf_image_enabled")
private String imageEnabled;
@JsonProperty("conf_stepcerts_enabled")
private String stepCertsEnabled;
@JsonProperty("conf_stepcerts_root_ca")
private String stepCertsRootCA;
@JsonProperty("conf_stepcerts_kid")
private String stepCertsKid;
@JsonProperty("conf_stepcerts_kid_password")
private String stepCertsKidPassword;
@JsonProperty("conf_stepcerts_ca_url")
private String stepCertsCAURL;
@JsonProperty("keycloak_auth_server_url")
private String keycloakAuthServerUrl;
@JsonProperty("keycloak_realm_name")
private String keycloakRealmName;
@JsonProperty("keycloak_user")
private String keycloakUser;
@JsonProperty("keycloak_user_password")
private String keycloakUserPassword;
@Override
@JsonIgnore
public String getIamUser() {
return awsIamUser;
}
}