All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.security.keyvault.certificates.implementation.models.BackupCertificateResult Maven / Gradle / Ivy

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.security.keyvault.certificates.implementation.models;

import com.azure.core.annotation.Immutable;
import com.azure.core.util.Base64Url;
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 backup certificate result, containing the backup blob. */
@Immutable
public final class BackupCertificateResult implements JsonSerializable {
    /*
     * The backup blob containing the backed up certificate.
     */
    private Base64Url value;

    /** Creates an instance of BackupCertificateResult class. */
    public BackupCertificateResult() {}

    /**
     * Get the value property: The backup blob containing the backed up certificate.
     *
     * @return the value value.
     */
    public byte[] getValue() {
        if (this.value == null) {
            return null;
        }
        return this.value.decodedBytes();
    }

    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of BackupCertificateResult from the JsonReader.
     *
     * @param jsonReader The JsonReader being read.
     * @return An instance of BackupCertificateResult 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 BackupCertificateResult.
     */
    public static BackupCertificateResult fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(
                reader -> {
                    BackupCertificateResult deserializedBackupCertificateResult = new BackupCertificateResult();
                    while (reader.nextToken() != JsonToken.END_OBJECT) {
                        String fieldName = reader.getFieldName();
                        reader.nextToken();

                        if ("value".equals(fieldName)) {
                            deserializedBackupCertificateResult.value =
                                    reader.getNullable(nonNullReader -> new Base64Url(nonNullReader.getString()));
                        } else {
                            reader.skipChildren();
                        }
                    }

                    return deserializedBackupCertificateResult;
                });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy