com.azure.resourcemanager.sql.fluent.models.FirewallRuleInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
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.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.sql.models.ProxyResourceWithWritableName;
import java.io.IOException;
/**
* A server firewall rule.
*/
@Fluent
public final class FirewallRuleInner extends ProxyResourceWithWritableName {
/*
* Resource properties.
*/
private ServerFirewallRuleProperties innerProperties;
/*
* The type of the resource.
*/
private String type;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/**
* Creates an instance of FirewallRuleInner class.
*/
public FirewallRuleInner() {
}
/**
* Get the innerProperties property: Resource properties.
*
* @return the innerProperties value.
*/
private ServerFirewallRuleProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* {@inheritDoc}
*/
@Override
public FirewallRuleInner withName(String name) {
super.withName(name);
return this;
}
/**
* Get the startIpAddress property: The start IP address of the firewall rule. Must be IPv4 format. Use value
* '0.0.0.0' for all Azure-internal IP addresses.
*
* @return the startIpAddress value.
*/
public String startIpAddress() {
return this.innerProperties() == null ? null : this.innerProperties().startIpAddress();
}
/**
* Set the startIpAddress property: The start IP address of the firewall rule. Must be IPv4 format. Use value
* '0.0.0.0' for all Azure-internal IP addresses.
*
* @param startIpAddress the startIpAddress value to set.
* @return the FirewallRuleInner object itself.
*/
public FirewallRuleInner withStartIpAddress(String startIpAddress) {
if (this.innerProperties() == null) {
this.innerProperties = new ServerFirewallRuleProperties();
}
this.innerProperties().withStartIpAddress(startIpAddress);
return this;
}
/**
* Get the endIpAddress property: The end IP address of the firewall rule. Must be IPv4 format. Must be greater than
* or equal to startIpAddress. Use value '0.0.0.0' for all Azure-internal IP addresses.
*
* @return the endIpAddress value.
*/
public String endIpAddress() {
return this.innerProperties() == null ? null : this.innerProperties().endIpAddress();
}
/**
* Set the endIpAddress property: The end IP address of the firewall rule. Must be IPv4 format. Must be greater than
* or equal to startIpAddress. Use value '0.0.0.0' for all Azure-internal IP addresses.
*
* @param endIpAddress the endIpAddress value to set.
* @return the FirewallRuleInner object itself.
*/
public FirewallRuleInner withEndIpAddress(String endIpAddress) {
if (this.innerProperties() == null) {
this.innerProperties = new ServerFirewallRuleProperties();
}
this.innerProperties().withEndIpAddress(endIpAddress);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("name", name());
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of FirewallRuleInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of FirewallRuleInner 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 FirewallRuleInner.
*/
public static FirewallRuleInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
FirewallRuleInner deserializedFirewallRuleInner = new FirewallRuleInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedFirewallRuleInner.id = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedFirewallRuleInner.type = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedFirewallRuleInner.withName(reader.getString());
} else if ("properties".equals(fieldName)) {
deserializedFirewallRuleInner.innerProperties = ServerFirewallRuleProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedFirewallRuleInner;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy