com.azure.resourcemanager.cosmos.models.VirtualNetworkRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB 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.cosmos.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Virtual Network ACL Rule object.
*/
@Fluent
public final class VirtualNetworkRule {
/*
* Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}.
*/
@JsonProperty(value = "id")
private String id;
/*
* Create firewall rule before the virtual network has vnet service endpoint enabled.
*/
@JsonProperty(value = "ignoreMissingVNetServiceEndpoint")
private Boolean ignoreMissingVNetServiceEndpoint;
/**
* Creates an instance of VirtualNetworkRule class.
*/
public VirtualNetworkRule() {
}
/**
* Get the id property: Resource ID of a subnet, for example:
* /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Set the id property: Resource ID of a subnet, for example:
* /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}.
*
* @param id the id value to set.
* @return the VirtualNetworkRule object itself.
*/
public VirtualNetworkRule withId(String id) {
this.id = id;
return this;
}
/**
* Get the ignoreMissingVNetServiceEndpoint property: Create firewall rule before the virtual network has vnet
* service endpoint enabled.
*
* @return the ignoreMissingVNetServiceEndpoint value.
*/
public Boolean ignoreMissingVNetServiceEndpoint() {
return this.ignoreMissingVNetServiceEndpoint;
}
/**
* Set the ignoreMissingVNetServiceEndpoint property: Create firewall rule before the virtual network has vnet
* service endpoint enabled.
*
* @param ignoreMissingVNetServiceEndpoint the ignoreMissingVNetServiceEndpoint value to set.
* @return the VirtualNetworkRule object itself.
*/
public VirtualNetworkRule withIgnoreMissingVNetServiceEndpoint(Boolean ignoreMissingVNetServiceEndpoint) {
this.ignoreMissingVNetServiceEndpoint = ignoreMissingVNetServiceEndpoint;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy