com.azure.resourcemanager.recoveryservicesbackup.models.BackupResourceConfigResource Maven / Gradle / Ivy
// 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.resourcemanager.recoveryservicesbackup.fluent.models.BackupResourceConfigResourceInner;
import java.util.Map;
/**
* An immutable client-side representation of BackupResourceConfigResource.
*/
public interface BackupResourceConfigResource {
/**
* 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: BackupResourceConfigResource properties.
*
* @return the properties value.
*/
BackupResourceConfig properties();
/**
* Gets the etag property: Optional ETag.
*
* @return the etag value.
*/
String etag();
/**
* Gets the inner com.azure.resourcemanager.recoveryservicesbackup.fluent.models.BackupResourceConfigResourceInner
* object.
*
* @return the inner object.
*/
BackupResourceConfigResourceInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy