com.azure.resourcemanager.network.models.AdminRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network 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.network.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.SystemData;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.network.fluent.models.AdminPropertiesFormat;
import com.azure.resourcemanager.network.fluent.models.BaseAdminRuleInner;
import java.io.IOException;
import java.util.List;
/**
* Network admin rule.
*/
@Fluent
public final class AdminRule extends BaseAdminRuleInner {
/*
* Whether the rule is custom or default.
*/
private AdminRuleKind kind = AdminRuleKind.CUSTOM;
/*
* Indicates the properties of the security admin rule
*/
private AdminPropertiesFormat innerProperties;
/*
* The system metadata related to this resource.
*/
private SystemData systemData;
/*
* A unique read-only string that changes whenever the resource is updated.
*/
private String etag;
/*
* The type of the resource.
*/
private String type;
/*
* The name of the resource.
*/
private String name;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/**
* Creates an instance of AdminRule class.
*/
public AdminRule() {
}
/**
* Get the kind property: Whether the rule is custom or default.
*
* @return the kind value.
*/
@Override
public AdminRuleKind kind() {
return this.kind;
}
/**
* Get the innerProperties property: Indicates the properties of the security admin rule.
*
* @return the innerProperties value.
*/
private AdminPropertiesFormat innerProperties() {
return this.innerProperties;
}
/**
* Get the systemData property: The system metadata related to this resource.
*
* @return the systemData value.
*/
@Override
public SystemData systemData() {
return this.systemData;
}
/**
* Get the etag property: A unique read-only string that changes whenever the resource is updated.
*
* @return the etag value.
*/
@Override
public String etag() {
return this.etag;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the description property: A description for this rule. Restricted to 140 chars.
*
* @return the description value.
*/
public String description() {
return this.innerProperties() == null ? null : this.innerProperties().description();
}
/**
* Set the description property: A description for this rule. Restricted to 140 chars.
*
* @param description the description value to set.
* @return the AdminRule object itself.
*/
public AdminRule withDescription(String description) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withDescription(description);
return this;
}
/**
* Get the protocol property: Network protocol this rule applies to.
*
* @return the protocol value.
*/
public SecurityConfigurationRuleProtocol protocol() {
return this.innerProperties() == null ? null : this.innerProperties().protocol();
}
/**
* Set the protocol property: Network protocol this rule applies to.
*
* @param protocol the protocol value to set.
* @return the AdminRule object itself.
*/
public AdminRule withProtocol(SecurityConfigurationRuleProtocol protocol) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withProtocol(protocol);
return this;
}
/**
* Get the sources property: The CIDR or source IP ranges.
*
* @return the sources value.
*/
public List sources() {
return this.innerProperties() == null ? null : this.innerProperties().sources();
}
/**
* Set the sources property: The CIDR or source IP ranges.
*
* @param sources the sources value to set.
* @return the AdminRule object itself.
*/
public AdminRule withSources(List sources) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withSources(sources);
return this;
}
/**
* Get the destinations property: The destination address prefixes. CIDR or destination IP ranges.
*
* @return the destinations value.
*/
public List destinations() {
return this.innerProperties() == null ? null : this.innerProperties().destinations();
}
/**
* Set the destinations property: The destination address prefixes. CIDR or destination IP ranges.
*
* @param destinations the destinations value to set.
* @return the AdminRule object itself.
*/
public AdminRule withDestinations(List destinations) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withDestinations(destinations);
return this;
}
/**
* Get the sourcePortRanges property: The source port ranges.
*
* @return the sourcePortRanges value.
*/
public List sourcePortRanges() {
return this.innerProperties() == null ? null : this.innerProperties().sourcePortRanges();
}
/**
* Set the sourcePortRanges property: The source port ranges.
*
* @param sourcePortRanges the sourcePortRanges value to set.
* @return the AdminRule object itself.
*/
public AdminRule withSourcePortRanges(List sourcePortRanges) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withSourcePortRanges(sourcePortRanges);
return this;
}
/**
* Get the destinationPortRanges property: The destination port ranges.
*
* @return the destinationPortRanges value.
*/
public List destinationPortRanges() {
return this.innerProperties() == null ? null : this.innerProperties().destinationPortRanges();
}
/**
* Set the destinationPortRanges property: The destination port ranges.
*
* @param destinationPortRanges the destinationPortRanges value to set.
* @return the AdminRule object itself.
*/
public AdminRule withDestinationPortRanges(List destinationPortRanges) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withDestinationPortRanges(destinationPortRanges);
return this;
}
/**
* Get the access property: Indicates the access allowed for this particular rule.
*
* @return the access value.
*/
public SecurityConfigurationRuleAccess access() {
return this.innerProperties() == null ? null : this.innerProperties().access();
}
/**
* Set the access property: Indicates the access allowed for this particular rule.
*
* @param access the access value to set.
* @return the AdminRule object itself.
*/
public AdminRule withAccess(SecurityConfigurationRuleAccess access) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withAccess(access);
return this;
}
/**
* Get the priority property: The priority of the rule. The value can be between 1 and 4096. The priority number
* must be unique for each rule in the collection. The lower the priority number, the higher the priority of the
* rule.
*
* @return the priority value.
*/
public Integer priority() {
return this.innerProperties() == null ? null : this.innerProperties().priority();
}
/**
* Set the priority property: The priority of the rule. The value can be between 1 and 4096. The priority number
* must be unique for each rule in the collection. The lower the priority number, the higher the priority of the
* rule.
*
* @param priority the priority value to set.
* @return the AdminRule object itself.
*/
public AdminRule withPriority(Integer priority) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withPriority(priority);
return this;
}
/**
* Get the direction property: Indicates if the traffic matched against the rule in inbound or outbound.
*
* @return the direction value.
*/
public SecurityConfigurationRuleDirection direction() {
return this.innerProperties() == null ? null : this.innerProperties().direction();
}
/**
* Set the direction property: Indicates if the traffic matched against the rule in inbound or outbound.
*
* @param direction the direction value to set.
* @return the AdminRule object itself.
*/
public AdminRule withDirection(SecurityConfigurationRuleDirection direction) {
if (this.innerProperties() == null) {
this.innerProperties = new AdminPropertiesFormat();
}
this.innerProperties().withDirection(direction);
return this;
}
/**
* Get the provisioningState property: The provisioning state of the resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Get the resourceGuid property: Unique identifier for this resource.
*
* @return the resourceGuid value.
*/
public String resourceGuid() {
return this.innerProperties() == null ? null : this.innerProperties().resourceGuid();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("kind", this.kind == null ? null : this.kind.toString());
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of AdminRule from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AdminRule 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 AdminRule.
*/
public static AdminRule fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AdminRule deserializedAdminRule = new AdminRule();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedAdminRule.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedAdminRule.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedAdminRule.type = reader.getString();
} else if ("etag".equals(fieldName)) {
deserializedAdminRule.etag = reader.getString();
} else if ("systemData".equals(fieldName)) {
deserializedAdminRule.systemData = SystemData.fromJson(reader);
} else if ("kind".equals(fieldName)) {
deserializedAdminRule.kind = AdminRuleKind.fromString(reader.getString());
} else if ("properties".equals(fieldName)) {
deserializedAdminRule.innerProperties = AdminPropertiesFormat.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedAdminRule;
});
}
}