Show / Hide Table of Contents

Class Destination

Specification of traffic destination attributes.

Inheritance
object
Destination
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.NetworkSecurity.v1.Data
Assembly: Google.Apis.NetworkSecurity.v1.dll
Syntax
public class Destination : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Hosts

Required. List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".

Declaration
[JsonProperty("hosts")]
public virtual IList<string> Hosts { get; set; }
Property Value
Type Description
IList<string>

HttpHeaderMatch

Optional. Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy.

Declaration
[JsonProperty("httpHeaderMatch")]
public virtual HttpHeaderMatch HttpHeaderMatch { get; set; }
Property Value
Type Description
HttpHeaderMatch

Methods

Optional. A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.

Declaration
[JsonProperty("methods")]
public virtual IList<string> Methods { get; set; }
Property Value
Type Description
IList<string>

Ports

Required. List of destination ports to match. At least one port should match.

Declaration
[JsonProperty("ports")]
public virtual IList<long?> Ports { get; set; }
Property Value
Type Description
IList<long?>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX