Class NetworksAddPeeringRequest
Implements
Inherited Members
Namespace: Google.Apis.Compute.beta.Data
Assembly: Google.Apis.Compute.beta.dll
Syntax
public class NetworksAddPeeringRequest : IDirectResponseSchema
Properties
AutoCreateRoutes
This field will be deprecated soon. Use exchange_subnet_routes in network_peering instead. Indicates whether full mesh connectivity is created and managed automatically between peered networks. Currently this field should always be true since Google Compute Engine will automatically create and manage subnetwork routes between two networks when peering state is ACTIVE.
Declaration
[JsonProperty("autoCreateRoutes")]
public virtual bool? AutoCreateRoutes { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Name of the peering, which should conform to RFC1035.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
NetworkPeering
Network peering parameters. In order to specify route policies for peering using import and export custom routes, you must specify all peering related parameters (name, peer network, exchange_subnet_routes) in the network_peering field. The corresponding fields in NetworksAddPeeringRequest will be deprecated soon.
Declaration
[JsonProperty("networkPeering")]
public virtual NetworkPeering NetworkPeering { get; set; }
Property Value
Type | Description |
---|---|
NetworkPeering |
PeerNetwork
URL of the peer network. It can be either full URL or partial URL. The peer network may belong to a different project. If the partial URL does not contain project, it is assumed that the peer network is in the same project as the current network.
Declaration
[JsonProperty("peerNetwork")]
public virtual string PeerNetwork { get; set; }
Property Value
Type | Description |
---|---|
string |