com.azure.resourcemanager.costmanagement.fluent.models.OperationStatusInner 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.resourcemanager.costmanagement.models.OperationStatusType;
import com.azure.resourcemanager.costmanagement.models.ReservationReportSchema;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
/** The status of the long running operation. */
@Fluent
public final class OperationStatusInner {
/*
* The status of the long running operation.
*/
@JsonProperty(value = "status")
private OperationStatusType status;
/*
* The properties of the resource generated.
*/
@JsonProperty(value = "properties")
private ReportUrl innerProperties;
/** Creates an instance of OperationStatusInner class. */
public OperationStatusInner() {
}
/**
* Get the status property: The status of the long running operation.
*
* @return the status value.
*/
public OperationStatusType status() {
return this.status;
}
/**
* Set the status property: The status of the long running operation.
*
* @param status the status value to set.
* @return the OperationStatusInner object itself.
*/
public OperationStatusInner withStatus(OperationStatusType status) {
this.status = status;
return this;
}
/**
* Get the innerProperties property: The properties of the resource generated.
*
* @return the innerProperties value.
*/
private ReportUrl innerProperties() {
return this.innerProperties;
}
/**
* Get the reportUrl property: The CSV file from the reportUrl blob link consists of reservation usage data with the
* following schema at daily granularity.
*
* @return the reportUrl value.
*/
public ReservationReportSchema reportUrl() {
return this.innerProperties() == null ? null : this.innerProperties().reportUrl();
}
/**
* Set the reportUrl property: The CSV file from the reportUrl blob link consists of reservation usage data with the
* following schema at daily granularity.
*
* @param reportUrl the reportUrl value to set.
* @return the OperationStatusInner object itself.
*/
public OperationStatusInner withReportUrl(ReservationReportSchema reportUrl) {
if (this.innerProperties() == null) {
this.innerProperties = new ReportUrl();
}
this.innerProperties().withReportUrl(reportUrl);
return this;
}
/**
* Get the validUntil property: The time at which report URL becomes invalid.
*
* @return the validUntil value.
*/
public OffsetDateTime validUntil() {
return this.innerProperties() == null ? null : this.innerProperties().validUntil();
}
/**
* Set the validUntil property: The time at which report URL becomes invalid.
*
* @param validUntil the validUntil value to set.
* @return the OperationStatusInner object itself.
*/
public OperationStatusInner withValidUntil(OffsetDateTime validUntil) {
if (this.innerProperties() == null) {
this.innerProperties = new ReportUrl();
}
this.innerProperties().withValidUntil(validUntil);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
}