Class SimpleUrlPattern
Pattern describing an http/https URL or set thereof
as a concatenation of optional host component and optional path component.
*.example.com
will match http://example.com/ and https://foo.example.com/foo?bar.
www.example.com/foo*
will match https://www.example.com/foo and http://www.exampe.com/foobar and https://www.example.com/foo/bar?baz, but not
http://sub.www.example.com/foo or https://www.example.com/FOO.
*.example.com/foo*
will match http://example.com/foo and https://sub2.sub.example.com/foo/bar?baz, but not http://example.com/FOO.
Inherited Members
Namespace: Oci.NetworkfirewallService.Models
Assembly: OCI.DotNetSDK.Networkfirewall.dll
Syntax
public class SimpleUrlPattern : UrlPattern
Properties
Pattern
Declaration
[Required(ErrorMessage = "Pattern is required.")]
[JsonProperty(PropertyName = "pattern")]
public string Pattern { get; set; }
Property Value
Type | Description |
---|---|
string | A string consisting of a concatenation of optional host component and optional path component.
The host component may start with |
Remarks
Required