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

com.azure.resourcemanager.storage.fluent.models.ObjectReplicationPolicyProperties Maven / Gradle / Ivy

There is a newer version: 2.44.0
Show 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.storage.fluent.models;

import com.azure.core.annotation.Fluent;
import com.azure.core.util.CoreUtils;
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 com.azure.resourcemanager.storage.models.ObjectReplicationPolicyRule;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.List;

/**
 * The Storage Account ObjectReplicationPolicy properties.
 */
@Fluent
public final class ObjectReplicationPolicyProperties implements JsonSerializable {
    /*
     * A unique id for object replication policy.
     */
    private String policyId;

    /*
     * Indicates when the policy is enabled on the source account.
     */
    private OffsetDateTime enabledTime;

    /*
     * Required. Source account name. It should be full resource id if allowCrossTenantReplication set to false.
     */
    private String sourceAccount;

    /*
     * Required. Destination account name. It should be full resource id if allowCrossTenantReplication set to false.
     */
    private String destinationAccount;

    /*
     * The storage account object replication rules.
     */
    private List rules;

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

    /**
     * Get the policyId property: A unique id for object replication policy.
     * 
     * @return the policyId value.
     */
    public String policyId() {
        return this.policyId;
    }

    /**
     * Get the enabledTime property: Indicates when the policy is enabled on the source account.
     * 
     * @return the enabledTime value.
     */
    public OffsetDateTime enabledTime() {
        return this.enabledTime;
    }

    /**
     * Get the sourceAccount property: Required. Source account name. It should be full resource id if
     * allowCrossTenantReplication set to false.
     * 
     * @return the sourceAccount value.
     */
    public String sourceAccount() {
        return this.sourceAccount;
    }

    /**
     * Set the sourceAccount property: Required. Source account name. It should be full resource id if
     * allowCrossTenantReplication set to false.
     * 
     * @param sourceAccount the sourceAccount value to set.
     * @return the ObjectReplicationPolicyProperties object itself.
     */
    public ObjectReplicationPolicyProperties withSourceAccount(String sourceAccount) {
        this.sourceAccount = sourceAccount;
        return this;
    }

    /**
     * Get the destinationAccount property: Required. Destination account name. It should be full resource id if
     * allowCrossTenantReplication set to false.
     * 
     * @return the destinationAccount value.
     */
    public String destinationAccount() {
        return this.destinationAccount;
    }

    /**
     * Set the destinationAccount property: Required. Destination account name. It should be full resource id if
     * allowCrossTenantReplication set to false.
     * 
     * @param destinationAccount the destinationAccount value to set.
     * @return the ObjectReplicationPolicyProperties object itself.
     */
    public ObjectReplicationPolicyProperties withDestinationAccount(String destinationAccount) {
        this.destinationAccount = destinationAccount;
        return this;
    }

    /**
     * Get the rules property: The storage account object replication rules.
     * 
     * @return the rules value.
     */
    public List rules() {
        return this.rules;
    }

    /**
     * Set the rules property: The storage account object replication rules.
     * 
     * @param rules the rules value to set.
     * @return the ObjectReplicationPolicyProperties object itself.
     */
    public ObjectReplicationPolicyProperties withRules(List rules) {
        this.rules = rules;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (sourceAccount() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property sourceAccount in model ObjectReplicationPolicyProperties"));
        }
        if (destinationAccount() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property destinationAccount in model ObjectReplicationPolicyProperties"));
        }
        if (rules() != null) {
            rules().forEach(e -> e.validate());
        }
    }

    private static final ClientLogger LOGGER = new ClientLogger(ObjectReplicationPolicyProperties.class);

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeStringField("sourceAccount", this.sourceAccount);
        jsonWriter.writeStringField("destinationAccount", this.destinationAccount);
        jsonWriter.writeArrayField("rules", this.rules, (writer, element) -> writer.writeJson(element));
        return jsonWriter.writeEndObject();
    }

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

                if ("sourceAccount".equals(fieldName)) {
                    deserializedObjectReplicationPolicyProperties.sourceAccount = reader.getString();
                } else if ("destinationAccount".equals(fieldName)) {
                    deserializedObjectReplicationPolicyProperties.destinationAccount = reader.getString();
                } else if ("policyId".equals(fieldName)) {
                    deserializedObjectReplicationPolicyProperties.policyId = reader.getString();
                } else if ("enabledTime".equals(fieldName)) {
                    deserializedObjectReplicationPolicyProperties.enabledTime = reader
                        .getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
                } else if ("rules".equals(fieldName)) {
                    List rules
                        = reader.readArray(reader1 -> ObjectReplicationPolicyRule.fromJson(reader1));
                    deserializedObjectReplicationPolicyProperties.rules = rules;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedObjectReplicationPolicyProperties;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy