com.azure.resourcemanager.cosmos.fluent.models.RestorableTableResourcesGetResultInner 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.fasterxml.jackson.annotation.JsonProperty;
/**
* Specific Databases to restore.
*/
@Immutable
public final class RestorableTableResourcesGetResultInner {
/*
* The unique resource identifier of the ARM resource.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/*
* The name of the Table.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/*
* The type of Azure resource.
*/
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY)
private String type;
/**
* Creates an instance of RestorableTableResourcesGetResultInner class.
*/
public RestorableTableResourcesGetResultInner() {
}
/**
* Get the id property: The unique resource identifier of the ARM resource.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Get the name property: The name of the Table.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the type property: The type of Azure resource.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy