All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.maven.springcloud.config.AppDeploymentRawConfig Maven / Gradle / Ivy

There is a newer version: 1.11.0
Show newest version
/*
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 */

package com.microsoft.azure.maven.springcloud.config;

import lombok.Data;

/**
 * The string version of Deployment which is used in `config` goal due to the reason that users may use
 * an expression(string) to represent a cpu(integer).
 */
@Data
public class AppDeploymentRawConfig {
    private String cpu;
    private String memoryInGB;
    private String instanceCount;
    private String deploymentName;
    private String jvmOptions;
    private String runtimeVersion;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy