Class: Google::Apis::ComputeAlpha::NetworkPeering
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::NetworkPeering
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Overview
A network peering attached to a network resource. The message includes the peering name, peer network, peering state, and a flag indicating whether Google Compute Engine should automatically create routes for the peering.
Instance Attribute Summary collapse
- 
  
    
      #auto_create_routes  ⇒ Boolean 
    
    
      (also: #auto_create_routes?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether full mesh connectivity is created and managed automatically. 
- 
  
    
      #export_custom_routes  ⇒ Boolean 
    
    
      (also: #export_custom_routes?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether to export the custom routes to peer network. 
- 
  
    
      #import_custom_routes  ⇒ Boolean 
    
    
      (also: #import_custom_routes?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether to import the custom routes from peer network. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of this peering. 
- 
  
    
      #network  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the peer network. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] State for the peering. 
- 
  
    
      #state_details  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Details about the current state of the peering. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NetworkPeering 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NetworkPeering. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ NetworkPeering
Returns a new instance of NetworkPeering
| 15768 15769 15770 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15768 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#auto_create_routes ⇒ Boolean Also known as: auto_create_routes?
Whether full mesh connectivity is created and managed automatically. When it
is set to true, Google Compute Engine will automatically create and manage the
routes between two networks when the state is ACTIVE. Otherwise, user needs to
create routes manually to route packets to peer network.
Corresponds to the JSON property autoCreateRoutes
| 15725 15726 15727 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15725 def auto_create_routes @auto_create_routes end | 
#export_custom_routes ⇒ Boolean Also known as: export_custom_routes?
Whether to export the custom routes to peer network.
Corresponds to the JSON property exportCustomRoutes
| 15731 15732 15733 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15731 def export_custom_routes @export_custom_routes end | 
#import_custom_routes ⇒ Boolean Also known as: import_custom_routes?
Whether to import the custom routes from peer network.
Corresponds to the JSON property importCustomRoutes
| 15737 15738 15739 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15737 def import_custom_routes @import_custom_routes end | 
#name ⇒ String
Name of this peering. Provided by the client when the peering is created. The
name must comply with RFC1035. Specifically, the name must be 1-63 characters
long and match regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the
first character must be a lowercase letter, and all the following characters
must be a dash, lowercase letter, or digit, except the last character, which
cannot be a dash.
Corresponds to the JSON property name
| 15748 15749 15750 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15748 def name @name end | 
#network ⇒ String
The 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.
Corresponds to the JSON property network
| 15756 15757 15758 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15756 def network @network end | 
#state ⇒ String
[Output Only] State for the peering.
Corresponds to the JSON property state
| 15761 15762 15763 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15761 def state @state end | 
#state_details ⇒ String
[Output Only] Details about the current state of the peering.
Corresponds to the JSON property stateDetails
| 15766 15767 15768 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15766 def state_details @state_details end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 15773 15774 15775 15776 15777 15778 15779 15780 15781 | # File 'generated/google/apis/compute_alpha/classes.rb', line 15773 def update!(**args) @auto_create_routes = args[:auto_create_routes] if args.key?(:auto_create_routes) @export_custom_routes = args[:export_custom_routes] if args.key?(:export_custom_routes) @import_custom_routes = args[:import_custom_routes] if args.key?(:import_custom_routes) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @state = args[:state] if args.key?(:state) @state_details = args[:state_details] if args.key?(:state_details) end |