com.azure.resourcemanager.cosmos.fluent.models.RestorableSqlDatabaseGetResultInner 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.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.cosmos.models.RestorableSqlDatabasePropertiesResource;
import java.io.IOException;
/**
* An Azure Cosmos DB SQL database event.
*/
@Fluent
public final class RestorableSqlDatabaseGetResultInner
implements JsonSerializable {
/*
* The properties of a SQL database event.
*/
private RestorableSqlDatabaseProperties innerProperties;
/*
* The unique resource Identifier of the ARM resource.
*/
private String id;
/*
* The name of the ARM resource.
*/
private String name;
/*
* The type of Azure resource.
*/
private String type;
/**
* Creates an instance of RestorableSqlDatabaseGetResultInner class.
*/
public RestorableSqlDatabaseGetResultInner() {
}
/**
* Get the innerProperties property: The properties of a SQL database event.
*
* @return the innerProperties value.
*/
private RestorableSqlDatabaseProperties innerProperties() {
return this.innerProperties;
}
/**
* 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 ARM resource.
*
* @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;
}
/**
* Get the resource property: The resource of an Azure Cosmos DB SQL database event.
*
* @return the resource value.
*/
public RestorableSqlDatabasePropertiesResource resource() {
return this.innerProperties() == null ? null : this.innerProperties().resource();
}
/**
* Set the resource property: The resource of an Azure Cosmos DB SQL database event.
*
* @param resource the resource value to set.
* @return the RestorableSqlDatabaseGetResultInner object itself.
*/
public RestorableSqlDatabaseGetResultInner withResource(RestorableSqlDatabasePropertiesResource resource) {
if (this.innerProperties() == null) {
this.innerProperties = new RestorableSqlDatabaseProperties();
}
this.innerProperties().withResource(resource);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of RestorableSqlDatabaseGetResultInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of RestorableSqlDatabaseGetResultInner if the JsonReader was pointing to an instance of it,
* or null if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the RestorableSqlDatabaseGetResultInner.
*/
public static RestorableSqlDatabaseGetResultInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
RestorableSqlDatabaseGetResultInner deserializedRestorableSqlDatabaseGetResultInner
= new RestorableSqlDatabaseGetResultInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("properties".equals(fieldName)) {
deserializedRestorableSqlDatabaseGetResultInner.innerProperties
= RestorableSqlDatabaseProperties.fromJson(reader);
} else if ("id".equals(fieldName)) {
deserializedRestorableSqlDatabaseGetResultInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedRestorableSqlDatabaseGetResultInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedRestorableSqlDatabaseGetResultInner.type = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedRestorableSqlDatabaseGetResultInner;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy