public sealed class AllowedIpRange : IMessage<WebServerNetworkAccessControl.Types.AllowedIpRange>, IEquatable<WebServerNetworkAccessControl.Types.AllowedIpRange>, IDeepCloneable<WebServerNetworkAccessControl.Types.AllowedIpRange>, IBufferMessage, IMessage
IP address or range, defined using CIDR notation, of requests that this
rule applies to.
Examples: 192.168.1.1 or 192.168.0.0/16 or 2001:db8::/32
or 2001:0db8:0000:0042:0000:8a2e:0370:7334.
IP range prefixes should be properly truncated. For example,
1.2.3.4/24 should be truncated to 1.2.3.0/24. Similarly, for IPv6,
2001:db8::1/32 should be truncated to 2001:db8::/32.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This document outlines the `AllowedIpRange` class, which is part of the `Google.Cloud.Orchestration.Airflow.Service.V1` namespace within the Google Cloud .NET library, with version 2.9.0 being the latest."],["The `AllowedIpRange` class is used to define allowed IP ranges for web server network access control, allowing the user to include a description alongside the IP range."],["The class inherits from `Object` and implements `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage` interfaces, all in the context of the Google Protocol Buffers library."],["It allows for the creation of an Allowed IP Range via a public constructor, either using no parameters, or from a pre existing `WebServerNetworkAccessControl.Types.AllowedIpRange` instance."],["This class has two properties, `Description` and `Value`, which can be set and retrieved, where `Description` is the optional user-provided description for the given allowed IP range, and `Value` stores the actual IP range in CIDR notation."]]],[]]