com.azure.resourcemanager.recoveryservicesbackup.models.ProtectedItemResource 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.management.Region;
import com.azure.core.util.Context;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.models.ProtectedItemResourceInner;
import java.util.Map;
/**
* An immutable client-side representation of ProtectedItemResource.
*/
public interface ProtectedItemResource {
/**
* Gets the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the location property: The geo-location where the resource lives.
*
* @return the location value.
*/
String location();
/**
* Gets the tags property: Resource tags.
*
* @return the tags value.
*/
Map tags();
/**
* Gets the properties property: ProtectedItemResource properties.
*
* @return the properties value.
*/
ProtectedItem properties();
/**
* Gets the etag property: Optional ETag.
*
* @return the etag value.
*/
String etag();
/**
* Gets the region of the resource.
*
* @return the region of the resource.
*/
Region region();
/**
* Gets the name of the resource region.
*
* @return the name of the resource region.
*/
String regionName();
/**
* Gets the name of the resource group.
*
* @return the name of the resource group.
*/
String resourceGroupName();
/**
* Gets the inner com.azure.resourcemanager.recoveryservicesbackup.fluent.models.ProtectedItemResourceInner object.
*
* @return the inner object.
*/
ProtectedItemResourceInner innerModel();
/**
* The entirety of the ProtectedItemResource definition.
*/
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLocation,
DefinitionStages.WithParentResource, DefinitionStages.WithCreate {
}
/**
* The ProtectedItemResource definition stages.
*/
interface DefinitionStages {
/**
* The first stage of the ProtectedItemResource definition.
*/
interface Blank extends WithLocation {
}
/**
* The stage of the ProtectedItemResource definition allowing to specify location.
*/
interface WithLocation {
/**
* Specifies the region for the resource.
*
* @param location The geo-location where the resource lives.
* @return the next definition stage.
*/
WithParentResource withRegion(Region location);
/**
* Specifies the region for the resource.
*
* @param location The geo-location where the resource lives.
* @return the next definition stage.
*/
WithParentResource withRegion(String location);
}
/**
* The stage of the ProtectedItemResource definition allowing to specify parent resource.
*/
interface WithParentResource {
/**
* Specifies vaultName, resourceGroupName, fabricName, containerName.
*
* @param vaultName The name of the recovery services vault.
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
* @param fabricName Fabric name associated with the backup item.
* @param containerName Container name associated with the backup item.
* @return the next definition stage.
*/
WithCreate withExistingProtectionContainer(String vaultName, String resourceGroupName, String fabricName,
String containerName);
}
/**
* The stage of the ProtectedItemResource definition which contains all the minimum required properties for the
* resource to be created, but also allows for any other optional properties to be specified.
*/
interface WithCreate
extends DefinitionStages.WithTags, DefinitionStages.WithProperties, DefinitionStages.WithEtag {
/**
* Executes the create request.
*
* @return the created resource.
*/
ProtectedItemResource create();
/**
* Executes the create request.
*
* @param context The context to associate with this operation.
* @return the created resource.
*/
ProtectedItemResource create(Context context);
}
/**
* The stage of the ProtectedItemResource definition allowing to specify tags.
*/
interface WithTags {
/**
* Specifies the tags property: Resource tags..
*
* @param tags Resource tags.
* @return the next definition stage.
*/
WithCreate withTags(Map tags);
}
/**
* The stage of the ProtectedItemResource definition allowing to specify properties.
*/
interface WithProperties {
/**
* Specifies the properties property: ProtectedItemResource properties.
*
* @param properties ProtectedItemResource properties.
* @return the next definition stage.
*/
WithCreate withProperties(ProtectedItem properties);
}
/**
* The stage of the ProtectedItemResource definition allowing to specify etag.
*/
interface WithEtag {
/**
* Specifies the etag property: Optional ETag..
*
* @param etag Optional ETag.
* @return the next definition stage.
*/
WithCreate withEtag(String etag);
}
}
/**
* Begins update for the ProtectedItemResource resource.
*
* @return the stage of resource update.
*/
ProtectedItemResource.Update update();
/**
* The template for ProtectedItemResource update.
*/
interface Update extends UpdateStages.WithTags, UpdateStages.WithProperties, UpdateStages.WithEtag {
/**
* Executes the update request.
*
* @return the updated resource.
*/
ProtectedItemResource apply();
/**
* Executes the update request.
*
* @param context The context to associate with this operation.
* @return the updated resource.
*/
ProtectedItemResource apply(Context context);
}
/**
* The ProtectedItemResource update stages.
*/
interface UpdateStages {
/**
* The stage of the ProtectedItemResource update allowing to specify tags.
*/
interface WithTags {
/**
* Specifies the tags property: Resource tags..
*
* @param tags Resource tags.
* @return the next definition stage.
*/
Update withTags(Map tags);
}
/**
* The stage of the ProtectedItemResource update allowing to specify properties.
*/
interface WithProperties {
/**
* Specifies the properties property: ProtectedItemResource properties.
*
* @param properties ProtectedItemResource properties.
* @return the next definition stage.
*/
Update withProperties(ProtectedItem properties);
}
/**
* The stage of the ProtectedItemResource update allowing to specify etag.
*/
interface WithEtag {
/**
* Specifies the etag property: Optional ETag..
*
* @param etag Optional ETag.
* @return the next definition stage.
*/
Update withEtag(String etag);
}
}
/**
* Refreshes the resource to sync with Azure.
*
* @return the refreshed resource.
*/
ProtectedItemResource refresh();
/**
* Refreshes the resource to sync with Azure.
*
* @param context The context to associate with this operation.
* @return the refreshed resource.
*/
ProtectedItemResource refresh(Context context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy