blob: 0a2882804e0e81fa7f35a1b0e6ad8c0ad68fda8c [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.billing.azure.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties("dlab")
@Data
public class BillingConfigurationAzure {
private String sbn;
private long initialDelay;
private long period;
private String clientId;
private String clientSecret;
private String tenantId;
private String subscriptionId;
private String authenticationFile;
private String offerNumber;
private String currency;
private String locale;
private String regionInfo;
private boolean billingEnabled;
private String ssnStorageAccountTagName;
private String sharedStorageAccountTagName;
private String datalakeTagName;
private AggregationOutputMongoDataSource aggregationOutputMongoDataSource;
}