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

com.azure.resourcemanager.sql.fluent.models.LongTermRetentionOperationResultProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

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.resourcemanager.sql.fluent.models;

import com.azure.core.annotation.Immutable;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.sql.models.BackupStorageRedundancy;
import java.io.IOException;
import java.util.UUID;

/**
 * Contains the operation result properties for long term retention backup operation.
 */
@Immutable
public final class LongTermRetentionOperationResultProperties
    implements JsonSerializable {
    /*
     * Request Id.
     */
    private UUID requestId;

    /*
     * Operation type.
     */
    private String operationType;

    /*
     * Source backup resource id
     */
    private String fromBackupResourceId;

    /*
     * Target backup resource id
     */
    private String toBackupResourceId;

    /*
     * The storage redundancy type of the copied backup
     */
    private BackupStorageRedundancy targetBackupStorageRedundancy;

    /*
     * Operation status
     */
    private String status;

    /*
     * Progress message
     */
    private String message;

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

    /**
     * Get the requestId property: Request Id.
     * 
     * @return the requestId value.
     */
    public UUID requestId() {
        return this.requestId;
    }

    /**
     * Get the operationType property: Operation type.
     * 
     * @return the operationType value.
     */
    public String operationType() {
        return this.operationType;
    }

    /**
     * Get the fromBackupResourceId property: Source backup resource id.
     * 
     * @return the fromBackupResourceId value.
     */
    public String fromBackupResourceId() {
        return this.fromBackupResourceId;
    }

    /**
     * Get the toBackupResourceId property: Target backup resource id.
     * 
     * @return the toBackupResourceId value.
     */
    public String toBackupResourceId() {
        return this.toBackupResourceId;
    }

    /**
     * Get the targetBackupStorageRedundancy property: The storage redundancy type of the copied backup.
     * 
     * @return the targetBackupStorageRedundancy value.
     */
    public BackupStorageRedundancy targetBackupStorageRedundancy() {
        return this.targetBackupStorageRedundancy;
    }

    /**
     * Get the status property: Operation status.
     * 
     * @return the status value.
     */
    public String status() {
        return this.status;
    }

    /**
     * Get the message property: Progress message.
     * 
     * @return the message value.
     */
    public String message() {
        return this.message;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }

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

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

                if ("requestId".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.requestId
                        = reader.getNullable(nonNullReader -> UUID.fromString(nonNullReader.getString()));
                } else if ("operationType".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.operationType = reader.getString();
                } else if ("fromBackupResourceId".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.fromBackupResourceId = reader.getString();
                } else if ("toBackupResourceId".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.toBackupResourceId = reader.getString();
                } else if ("targetBackupStorageRedundancy".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.targetBackupStorageRedundancy
                        = BackupStorageRedundancy.fromString(reader.getString());
                } else if ("status".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.status = reader.getString();
                } else if ("message".equals(fieldName)) {
                    deserializedLongTermRetentionOperationResultProperties.message = reader.getString();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedLongTermRetentionOperationResultProperties;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy