com.azure.resourcemanager.storage.models.IpRule 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;
/**
* IP rule with specific IP or IP range in CIDR format.
*/
@Fluent
public final class IpRule implements JsonSerializable {
/*
* Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
*/
private String ipAddressOrRange;
/*
* The action of IP ACL rule.
*/
private Action action;
/**
* Creates an instance of IpRule class.
*/
public IpRule() {
}
/**
* Get the ipAddressOrRange property: Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
*
* @return the ipAddressOrRange value.
*/
public String ipAddressOrRange() {
return this.ipAddressOrRange;
}
/**
* Set the ipAddressOrRange property: Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
*
* @param ipAddressOrRange the ipAddressOrRange value to set.
* @return the IpRule object itself.
*/
public IpRule withIpAddressOrRange(String ipAddressOrRange) {
this.ipAddressOrRange = ipAddressOrRange;
return this;
}
/**
* Get the action property: The action of IP ACL rule.
*
* @return the action value.
*/
public Action action() {
return this.action;
}
/**
* Set the action property: The action of IP ACL rule.
*
* @param action the action value to set.
* @return the IpRule object itself.
*/
public IpRule withAction(Action action) {
this.action = action;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (ipAddressOrRange() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property ipAddressOrRange in model IpRule"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(IpRule.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("value", this.ipAddressOrRange);
jsonWriter.writeStringField("action", this.action == null ? null : this.action.toString());
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of IpRule from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of IpRule 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 IpRule.
*/
public static IpRule fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
IpRule deserializedIpRule = new IpRule();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("value".equals(fieldName)) {
deserializedIpRule.ipAddressOrRange = reader.getString();
} else if ("action".equals(fieldName)) {
deserializedIpRule.action = Action.fromString(reader.getString());
} else {
reader.skipChildren();
}
}
return deserializedIpRule;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy