com.azure.ai.metricsadvisor.implementation.models.AzureSQLConnectionStringCredentialPatch 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.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* The AzureSQLConnectionStringCredentialPatch model.
*/
@Fluent
public final class AzureSQLConnectionStringCredentialPatch extends DataSourceCredentialPatch {
/*
* The parameters property.
*/
private AzureSQLConnectionStringParamPatch parameters;
/**
* Creates an instance of AzureSQLConnectionStringCredentialPatch class.
*/
public AzureSQLConnectionStringCredentialPatch() {
}
/**
* Get the parameters property: The parameters property.
*
* @return the parameters value.
*/
public AzureSQLConnectionStringParamPatch getParameters() {
return this.parameters;
}
/**
* Set the parameters property: The parameters property.
*
* @param parameters the parameters value to set.
* @return the AzureSQLConnectionStringCredentialPatch object itself.
*/
public AzureSQLConnectionStringCredentialPatch setParameters(AzureSQLConnectionStringParamPatch parameters) {
this.parameters = parameters;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureSQLConnectionStringCredentialPatch setDataSourceCredentialName(String dataSourceCredentialName) {
super.setDataSourceCredentialName(dataSourceCredentialName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureSQLConnectionStringCredentialPatch
setDataSourceCredentialDescription(String dataSourceCredentialDescription) {
super.setDataSourceCredentialDescription(dataSourceCredentialDescription);
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("dataSourceCredentialType",
DataSourceCredentialType.AZURE_SQLCONNECTION_STRING == null
? null
: DataSourceCredentialType.AZURE_SQLCONNECTION_STRING.toString());
jsonWriter.writeStringField("dataSourceCredentialName", getDataSourceCredentialName());
jsonWriter.writeStringField("dataSourceCredentialDescription", getDataSourceCredentialDescription());
jsonWriter.writeJsonField("parameters", this.parameters);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of AzureSQLConnectionStringCredentialPatch from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AzureSQLConnectionStringCredentialPatch 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 the polymorphic discriminator.
* @throws IOException If an error occurs while reading the AzureSQLConnectionStringCredentialPatch.
*/
public static AzureSQLConnectionStringCredentialPatch fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AzureSQLConnectionStringCredentialPatch deserializedAzureSQLConnectionStringCredentialPatch
= new AzureSQLConnectionStringCredentialPatch();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("dataSourceCredentialType".equals(fieldName)) {
String dataSourceCredentialType = reader.getString();
if (!"AzureSQLConnectionString".equals(dataSourceCredentialType)) {
throw new IllegalStateException(
"'dataSourceCredentialType' was expected to be non-null and equal to 'AzureSQLConnectionString'. The found 'dataSourceCredentialType' was '"
+ dataSourceCredentialType + "'.");
}
} else if ("dataSourceCredentialName".equals(fieldName)) {
deserializedAzureSQLConnectionStringCredentialPatch.setDataSourceCredentialName(reader.getString());
} else if ("dataSourceCredentialDescription".equals(fieldName)) {
deserializedAzureSQLConnectionStringCredentialPatch
.setDataSourceCredentialDescription(reader.getString());
} else if ("parameters".equals(fieldName)) {
deserializedAzureSQLConnectionStringCredentialPatch.parameters
= AzureSQLConnectionStringParamPatch.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedAzureSQLConnectionStringCredentialPatch;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy