com.azure.resourcemanager.cosmos.fluent.models.BackupInformationInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.fluent.models;
import com.azure.core.annotation.Immutable;
import com.azure.resourcemanager.cosmos.models.ContinuousBackupInformation;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Backup information of a resource.
*/
@Immutable
public final class BackupInformationInner {
/*
* Information about the status of continuous backups.
*/
@JsonProperty(value = "continuousBackupInformation", access = JsonProperty.Access.WRITE_ONLY)
private ContinuousBackupInformation continuousBackupInformation;
/**
* Creates an instance of BackupInformationInner class.
*/
public BackupInformationInner() {
}
/**
* Get the continuousBackupInformation property: Information about the status of continuous backups.
*
* @return the continuousBackupInformation value.
*/
public ContinuousBackupInformation continuousBackupInformation() {
return this.continuousBackupInformation;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (continuousBackupInformation() != null) {
continuousBackupInformation().validate();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy