com.azure.resourcemanager.costmanagement.fluent.models.CommonExportPropertiesInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-costmanagement Show documentation
Show all versions of azure-resourcemanager-costmanagement Show documentation
This package contains Microsoft Azure SDK for CostManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. CostManagement management client provides access to CostManagement resources for Azure Enterprise Subscriptions. Package tag package-2022-10.
The 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.costmanagement.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.costmanagement.models.ExportDefinition;
import com.azure.resourcemanager.costmanagement.models.ExportDeliveryInfo;
import com.azure.resourcemanager.costmanagement.models.FormatType;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
/** The common properties of the export. */
@Fluent
public class CommonExportPropertiesInner {
/*
* The format of the export being delivered. Currently only 'Csv' is supported.
*/
@JsonProperty(value = "format")
private FormatType format;
/*
* Has delivery information for the export.
*/
@JsonProperty(value = "deliveryInfo", required = true)
private ExportDeliveryInfo deliveryInfo;
/*
* Has the definition for the export.
*/
@JsonProperty(value = "definition", required = true)
private ExportDefinition definition;
/*
* If requested, has the most recent run history for the export.
*/
@JsonProperty(value = "runHistory")
private ExportExecutionListResultInner runHistory;
/*
* If set to true, exported data will be partitioned by size and placed in a blob directory together with a
* manifest file. Note: this option is currently available only for Microsoft Customer Agreement commerce scopes.
*/
@JsonProperty(value = "partitionData")
private Boolean partitionData;
/*
* If the export has an active schedule, provides an estimate of the next run time.
*/
@JsonProperty(value = "nextRunTimeEstimate", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime nextRunTimeEstimate;
/** Creates an instance of CommonExportPropertiesInner class. */
public CommonExportPropertiesInner() {
}
/**
* Get the format property: The format of the export being delivered. Currently only 'Csv' is supported.
*
* @return the format value.
*/
public FormatType format() {
return this.format;
}
/**
* Set the format property: The format of the export being delivered. Currently only 'Csv' is supported.
*
* @param format the format value to set.
* @return the CommonExportPropertiesInner object itself.
*/
public CommonExportPropertiesInner withFormat(FormatType format) {
this.format = format;
return this;
}
/**
* Get the deliveryInfo property: Has delivery information for the export.
*
* @return the deliveryInfo value.
*/
public ExportDeliveryInfo deliveryInfo() {
return this.deliveryInfo;
}
/**
* Set the deliveryInfo property: Has delivery information for the export.
*
* @param deliveryInfo the deliveryInfo value to set.
* @return the CommonExportPropertiesInner object itself.
*/
public CommonExportPropertiesInner withDeliveryInfo(ExportDeliveryInfo deliveryInfo) {
this.deliveryInfo = deliveryInfo;
return this;
}
/**
* Get the definition property: Has the definition for the export.
*
* @return the definition value.
*/
public ExportDefinition definition() {
return this.definition;
}
/**
* Set the definition property: Has the definition for the export.
*
* @param definition the definition value to set.
* @return the CommonExportPropertiesInner object itself.
*/
public CommonExportPropertiesInner withDefinition(ExportDefinition definition) {
this.definition = definition;
return this;
}
/**
* Get the runHistory property: If requested, has the most recent run history for the export.
*
* @return the runHistory value.
*/
public ExportExecutionListResultInner runHistory() {
return this.runHistory;
}
/**
* Set the runHistory property: If requested, has the most recent run history for the export.
*
* @param runHistory the runHistory value to set.
* @return the CommonExportPropertiesInner object itself.
*/
public CommonExportPropertiesInner withRunHistory(ExportExecutionListResultInner runHistory) {
this.runHistory = runHistory;
return this;
}
/**
* Get the partitionData property: If set to true, exported data will be partitioned by size and placed in a blob
* directory together with a manifest file. Note: this option is currently available only for Microsoft Customer
* Agreement commerce scopes.
*
* @return the partitionData value.
*/
public Boolean partitionData() {
return this.partitionData;
}
/**
* Set the partitionData property: If set to true, exported data will be partitioned by size and placed in a blob
* directory together with a manifest file. Note: this option is currently available only for Microsoft Customer
* Agreement commerce scopes.
*
* @param partitionData the partitionData value to set.
* @return the CommonExportPropertiesInner object itself.
*/
public CommonExportPropertiesInner withPartitionData(Boolean partitionData) {
this.partitionData = partitionData;
return this;
}
/**
* Get the nextRunTimeEstimate property: If the export has an active schedule, provides an estimate of the next run
* time.
*
* @return the nextRunTimeEstimate value.
*/
public OffsetDateTime nextRunTimeEstimate() {
return this.nextRunTimeEstimate;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (deliveryInfo() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
"Missing required property deliveryInfo in model CommonExportPropertiesInner"));
} else {
deliveryInfo().validate();
}
if (definition() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
"Missing required property definition in model CommonExportPropertiesInner"));
} else {
definition().validate();
}
if (runHistory() != null) {
runHistory().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(CommonExportPropertiesInner.class);
}