com.azure.resourcemanager.network.models.AzureFirewallApplicationRuleCollection 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.SubResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.network.fluent.models.AzureFirewallApplicationRuleCollectionPropertiesFormat;
import java.io.IOException;
import java.util.List;
/**
* Application rule collection resource.
*/
@Fluent
public final class AzureFirewallApplicationRuleCollection extends SubResource {
/*
* Properties of the azure firewall application rule collection.
*/
private AzureFirewallApplicationRuleCollectionPropertiesFormat innerProperties;
/*
* The name of the resource that is unique within the Azure firewall. This name can be used to access the resource.
*/
private String name;
/*
* A unique read-only string that changes whenever the resource is updated.
*/
private String etag;
/**
* Creates an instance of AzureFirewallApplicationRuleCollection class.
*/
public AzureFirewallApplicationRuleCollection() {
}
/**
* Get the innerProperties property: Properties of the azure firewall application rule collection.
*
* @return the innerProperties value.
*/
private AzureFirewallApplicationRuleCollectionPropertiesFormat innerProperties() {
return this.innerProperties;
}
/**
* Get the name property: The name of the resource that is unique within the Azure firewall. This name can be used
* to access the resource.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the resource that is unique within the Azure firewall. This name can be used
* to access the resource.
*
* @param name the name value to set.
* @return the AzureFirewallApplicationRuleCollection object itself.
*/
public AzureFirewallApplicationRuleCollection withName(String name) {
this.name = name;
return this;
}
/**
* Get the etag property: A unique read-only string that changes whenever the resource is updated.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* {@inheritDoc}
*/
@Override
public AzureFirewallApplicationRuleCollection withId(String id) {
super.withId(id);
return this;
}
/**
* Get the priority property: Priority of the application rule collection resource.
*
* @return the priority value.
*/
public Integer priority() {
return this.innerProperties() == null ? null : this.innerProperties().priority();
}
/**
* Set the priority property: Priority of the application rule collection resource.
*
* @param priority the priority value to set.
* @return the AzureFirewallApplicationRuleCollection object itself.
*/
public AzureFirewallApplicationRuleCollection withPriority(Integer priority) {
if (this.innerProperties() == null) {
this.innerProperties = new AzureFirewallApplicationRuleCollectionPropertiesFormat();
}
this.innerProperties().withPriority(priority);
return this;
}
/**
* Get the action property: The action type of a rule collection.
*
* @return the action value.
*/
public AzureFirewallRCAction action() {
return this.innerProperties() == null ? null : this.innerProperties().action();
}
/**
* Set the action property: The action type of a rule collection.
*
* @param action the action value to set.
* @return the AzureFirewallApplicationRuleCollection object itself.
*/
public AzureFirewallApplicationRuleCollection withAction(AzureFirewallRCAction action) {
if (this.innerProperties() == null) {
this.innerProperties = new AzureFirewallApplicationRuleCollectionPropertiesFormat();
}
this.innerProperties().withAction(action);
return this;
}
/**
* Get the rules property: Collection of rules used by a application rule collection.
*
* @return the rules value.
*/
public List rules() {
return this.innerProperties() == null ? null : this.innerProperties().rules();
}
/**
* Set the rules property: Collection of rules used by a application rule collection.
*
* @param rules the rules value to set.
* @return the AzureFirewallApplicationRuleCollection object itself.
*/
public AzureFirewallApplicationRuleCollection withRules(List rules) {
if (this.innerProperties() == null) {
this.innerProperties = new AzureFirewallApplicationRuleCollectionPropertiesFormat();
}
this.innerProperties().withRules(rules);
return this;
}
/**
* Get the provisioningState property: The provisioning state of the application rule collection resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("id", id());
jsonWriter.writeJsonField("properties", this.innerProperties);
jsonWriter.writeStringField("name", this.name);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of AzureFirewallApplicationRuleCollection from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AzureFirewallApplicationRuleCollection 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 AzureFirewallApplicationRuleCollection.
*/
public static AzureFirewallApplicationRuleCollection fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AzureFirewallApplicationRuleCollection deserializedAzureFirewallApplicationRuleCollection
= new AzureFirewallApplicationRuleCollection();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedAzureFirewallApplicationRuleCollection.withId(reader.getString());
} else if ("properties".equals(fieldName)) {
deserializedAzureFirewallApplicationRuleCollection.innerProperties
= AzureFirewallApplicationRuleCollectionPropertiesFormat.fromJson(reader);
} else if ("name".equals(fieldName)) {
deserializedAzureFirewallApplicationRuleCollection.name = reader.getString();
} else if ("etag".equals(fieldName)) {
deserializedAzureFirewallApplicationRuleCollection.etag = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedAzureFirewallApplicationRuleCollection;
});
}
}