com.azure.resourcemanager.recoveryservicesbackup.models.AzureStorageContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* Azure Storage Account workload-specific container.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "containerType")
@JsonTypeName("StorageContainer")
@Fluent
public final class AzureStorageContainer extends ProtectionContainer {
/*
* Fully qualified ARM url.
*/
@JsonProperty(value = "sourceResourceId")
private String sourceResourceId;
/*
* Storage account version.
*/
@JsonProperty(value = "storageAccountVersion")
private String storageAccountVersion;
/*
* Resource group name of Recovery Services Vault.
*/
@JsonProperty(value = "resourceGroup")
private String resourceGroup;
/*
* Number of items backed up in this container.
*/
@JsonProperty(value = "protectedItemCount")
private Long protectedItemCount;
/*
* Whether storage account lock is to be acquired for this container or not.
*/
@JsonProperty(value = "acquireStorageAccountLock")
private AcquireStorageAccountLock acquireStorageAccountLock;
/**
* Creates an instance of AzureStorageContainer class.
*/
public AzureStorageContainer() {
}
/**
* Get the sourceResourceId property: Fully qualified ARM url.
*
* @return the sourceResourceId value.
*/
public String sourceResourceId() {
return this.sourceResourceId;
}
/**
* Set the sourceResourceId property: Fully qualified ARM url.
*
* @param sourceResourceId the sourceResourceId value to set.
* @return the AzureStorageContainer object itself.
*/
public AzureStorageContainer withSourceResourceId(String sourceResourceId) {
this.sourceResourceId = sourceResourceId;
return this;
}
/**
* Get the storageAccountVersion property: Storage account version.
*
* @return the storageAccountVersion value.
*/
public String storageAccountVersion() {
return this.storageAccountVersion;
}
/**
* Set the storageAccountVersion property: Storage account version.
*
* @param storageAccountVersion the storageAccountVersion value to set.
* @return the AzureStorageContainer object itself.
*/
public AzureStorageContainer withStorageAccountVersion(String storageAccountVersion) {
this.storageAccountVersion = storageAccountVersion;
return this;
}
/**
* Get the resourceGroup property: Resource group name of Recovery Services Vault.
*
* @return the resourceGroup value.
*/
public String resourceGroup() {
return this.resourceGroup;
}
/**
* Set the resourceGroup property: Resource group name of Recovery Services Vault.
*
* @param resourceGroup the resourceGroup value to set.
* @return the AzureStorageContainer object itself.
*/
public AzureStorageContainer withResourceGroup(String resourceGroup) {
this.resourceGroup = resourceGroup;
return this;
}
/**
* Get the protectedItemCount property: Number of items backed up in this container.
*
* @return the protectedItemCount value.
*/
public Long protectedItemCount() {
return this.protectedItemCount;
}
/**
* Set the protectedItemCount property: Number of items backed up in this container.
*
* @param protectedItemCount the protectedItemCount value to set.
* @return the AzureStorageContainer object itself.
*/
public AzureStorageContainer withProtectedItemCount(Long protectedItemCount) {
this.protectedItemCount = protectedItemCount;
return this;
}
/**
* Get the acquireStorageAccountLock property: Whether storage account lock is to be acquired for this container or
* not.
*
* @return the acquireStorageAccountLock value.
*/
public AcquireStorageAccountLock acquireStorageAccountLock() {
return this.acquireStorageAccountLock;
}
/**
* Set the acquireStorageAccountLock property: Whether storage account lock is to be acquired for this container or
* not.
*
* @param acquireStorageAccountLock the acquireStorageAccountLock value to set.
* @return the AzureStorageContainer object itself.
*/
public AzureStorageContainer withAcquireStorageAccountLock(AcquireStorageAccountLock acquireStorageAccountLock) {
this.acquireStorageAccountLock = acquireStorageAccountLock;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureStorageContainer withFriendlyName(String friendlyName) {
super.withFriendlyName(friendlyName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureStorageContainer withBackupManagementType(BackupManagementType backupManagementType) {
super.withBackupManagementType(backupManagementType);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureStorageContainer withRegistrationStatus(String registrationStatus) {
super.withRegistrationStatus(registrationStatus);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureStorageContainer withHealthStatus(String healthStatus) {
super.withHealthStatus(healthStatus);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureStorageContainer withProtectableObjectType(String protectableObjectType) {
super.withProtectableObjectType(protectableObjectType);
return this;
}
/**
* 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