com.azure.ai.metricsadvisor.implementation.models.MongoDBParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-ai-metricsadvisor Show documentation
Show all versions of azure-ai-metricsadvisor Show documentation
This package contains the Microsoft Azure Cognitive Services Metrics Advisor SDK.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.ai.metricsadvisor.implementation.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 java.io.IOException;
/**
* The MongoDBParameter model.
*/
@Fluent
public final class MongoDBParameter implements JsonSerializable {
/*
* The connection string of this MongoDB
*/
private String connectionString;
/*
* A database name in this MongoDB
*/
private String database;
/*
* The script to query this database
*/
private String command;
/**
* Creates an instance of MongoDBParameter class.
*/
public MongoDBParameter() {
}
/**
* Get the connectionString property: The connection string of this MongoDB.
*
* @return the connectionString value.
*/
public String getConnectionString() {
return this.connectionString;
}
/**
* Set the connectionString property: The connection string of this MongoDB.
*
* @param connectionString the connectionString value to set.
* @return the MongoDBParameter object itself.
*/
public MongoDBParameter setConnectionString(String connectionString) {
this.connectionString = connectionString;
return this;
}
/**
* Get the database property: A database name in this MongoDB.
*
* @return the database value.
*/
public String getDatabase() {
return this.database;
}
/**
* Set the database property: A database name in this MongoDB.
*
* @param database the database value to set.
* @return the MongoDBParameter object itself.
*/
public MongoDBParameter setDatabase(String database) {
this.database = database;
return this;
}
/**
* Get the command property: The script to query this database.
*
* @return the command value.
*/
public String getCommand() {
return this.command;
}
/**
* Set the command property: The script to query this database.
*
* @param command the command value to set.
* @return the MongoDBParameter object itself.
*/
public MongoDBParameter setCommand(String command) {
this.command = command;
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("command", this.command);
jsonWriter.writeStringField("connectionString", this.connectionString);
jsonWriter.writeStringField("database", this.database);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MongoDBParameter from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MongoDBParameter if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the MongoDBParameter.
*/
public static MongoDBParameter fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MongoDBParameter deserializedMongoDBParameter = new MongoDBParameter();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("command".equals(fieldName)) {
deserializedMongoDBParameter.command = reader.getString();
} else if ("connectionString".equals(fieldName)) {
deserializedMongoDBParameter.connectionString = reader.getString();
} else if ("database".equals(fieldName)) {
deserializedMongoDBParameter.database = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedMongoDBParameter;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy