com.azure.resourcemanager.network.models.PrepareNetworkPoliciesRequest 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
// 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.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Details of PrepareNetworkPolicies for Subnet.
*/
@Fluent
public final class PrepareNetworkPoliciesRequest {
/*
* The name of the service for which subnet is being prepared for.
*/
@JsonProperty(value = "serviceName")
private String serviceName;
/*
* A list of NetworkIntentPolicyConfiguration.
*/
@JsonProperty(value = "networkIntentPolicyConfigurations")
private List networkIntentPolicyConfigurations;
/**
* Creates an instance of PrepareNetworkPoliciesRequest class.
*/
public PrepareNetworkPoliciesRequest() {
}
/**
* Get the serviceName property: The name of the service for which subnet is being prepared for.
*
* @return the serviceName value.
*/
public String serviceName() {
return this.serviceName;
}
/**
* Set the serviceName property: The name of the service for which subnet is being prepared for.
*
* @param serviceName the serviceName value to set.
* @return the PrepareNetworkPoliciesRequest object itself.
*/
public PrepareNetworkPoliciesRequest withServiceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* Get the networkIntentPolicyConfigurations property: A list of NetworkIntentPolicyConfiguration.
*
* @return the networkIntentPolicyConfigurations value.
*/
public List networkIntentPolicyConfigurations() {
return this.networkIntentPolicyConfigurations;
}
/**
* Set the networkIntentPolicyConfigurations property: A list of NetworkIntentPolicyConfiguration.
*
* @param networkIntentPolicyConfigurations the networkIntentPolicyConfigurations value to set.
* @return the PrepareNetworkPoliciesRequest object itself.
*/
public PrepareNetworkPoliciesRequest withNetworkIntentPolicyConfigurations(
List networkIntentPolicyConfigurations) {
this.networkIntentPolicyConfigurations = networkIntentPolicyConfigurations;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (networkIntentPolicyConfigurations() != null) {
networkIntentPolicyConfigurations().forEach(e -> e.validate());
}
}
}