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

com.azure.resourcemanager.migrationdiscoverysap.models.ExcelPerformanceData Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for MigrationDiscoverySap Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Migration Discovery SAP Client. Package tag package-preview-2023-10.

There is a newer version: 1.0.0-beta.2
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.migrationdiscoverysap.models;

import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;

/**
 * The SAP instance specific performance data for Excel import.
 */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "dataSource")
@JsonTypeName("Excel")
@Immutable
public final class ExcelPerformanceData extends PerformanceData {
    /*
     * Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
     */
    @JsonProperty(value = "maxCpuLoad", access = JsonProperty.Access.WRITE_ONLY)
    private Integer maxCpuLoad;

    /*
     * Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
     */
    @JsonProperty(value = "totalSourceDbSizeGB", access = JsonProperty.Access.WRITE_ONLY)
    private Integer totalSourceDbSizeGB;

    /**
     * Creates an instance of ExcelPerformanceData class.
     */
    public ExcelPerformanceData() {
    }

    /**
     * Get the maxCpuLoad property: Provide the max CPU percentage load on the server. Omit the percentage symbol while
     * filling this value.
     * 
     * @return the maxCpuLoad value.
     */
    public Integer maxCpuLoad() {
        return this.maxCpuLoad;
    }

    /**
     * Get the totalSourceDbSizeGB property: Provide the source Database size in GB. Applicable only if SAP instance
     * type for this server instance is 'DB'.
     * 
     * @return the totalSourceDbSizeGB value.
     */
    public Integer totalSourceDbSizeGB() {
        return this.totalSourceDbSizeGB;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
        super.validate();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy