com.azure.resourcemanager.storage.models.StorageAccountRegenerateKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
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 parameters used to regenerate the storage account key.
*/
@Fluent
public final class StorageAccountRegenerateKeyParameters
implements JsonSerializable {
/*
* The name of storage keys that want to be regenerated, possible values are key1, key2, kerb1, kerb2.
*/
private String keyName;
/**
* Creates an instance of StorageAccountRegenerateKeyParameters class.
*/
public StorageAccountRegenerateKeyParameters() {
}
/**
* Get the keyName property: The name of storage keys that want to be regenerated, possible values are key1, key2,
* kerb1, kerb2.
*
* @return the keyName value.
*/
public String keyName() {
return this.keyName;
}
/**
* Set the keyName property: The name of storage keys that want to be regenerated, possible values are key1, key2,
* kerb1, kerb2.
*
* @param keyName the keyName value to set.
* @return the StorageAccountRegenerateKeyParameters object itself.
*/
public StorageAccountRegenerateKeyParameters withKeyName(String keyName) {
this.keyName = keyName;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (keyName() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property keyName in model StorageAccountRegenerateKeyParameters"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(StorageAccountRegenerateKeyParameters.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("keyName", this.keyName);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of StorageAccountRegenerateKeyParameters from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of StorageAccountRegenerateKeyParameters 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 StorageAccountRegenerateKeyParameters.
*/
public static StorageAccountRegenerateKeyParameters fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
StorageAccountRegenerateKeyParameters deserializedStorageAccountRegenerateKeyParameters
= new StorageAccountRegenerateKeyParameters();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("keyName".equals(fieldName)) {
deserializedStorageAccountRegenerateKeyParameters.keyName = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedStorageAccountRegenerateKeyParameters;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy