Class: Google::Apis::NetworkconnectivityV1::LinkedVpcNetwork
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::NetworkconnectivityV1::LinkedVpcNetwork
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/networkconnectivity_v1/classes.rb,
lib/google/apis/networkconnectivity_v1/representations.rb,
lib/google/apis/networkconnectivity_v1/representations.rb 
Overview
An existing VPC network.
Instance Attribute Summary collapse
- 
  
    
      #exclude_export_ranges  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #include_export_ranges  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #producer_vpc_spokes  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LinkedVpcNetwork 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of LinkedVpcNetwork.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ LinkedVpcNetwork
Returns a new instance of LinkedVpcNetwork.
      1282 1283 1284  | 
    
      # File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1282 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#exclude_export_ranges ⇒ Array<String>
Optional. IP ranges encompassing the subnets to be excluded from peering.
Corresponds to the JSON property excludeExportRanges
      1263 1264 1265  | 
    
      # File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1263 def exclude_export_ranges @exclude_export_ranges end  | 
  
#include_export_ranges ⇒ Array<String>
Optional. IP ranges allowed to be included from peering.
Corresponds to the JSON property includeExportRanges
      1268 1269 1270  | 
    
      # File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1268 def include_export_ranges @include_export_ranges end  | 
  
#producer_vpc_spokes ⇒ Array<String>
Output only. The list of Producer VPC spokes that this VPC spoke is a service
consumer VPC spoke for. These producer VPCs are connected through VPC peering
to this spoke's backing VPC network.
Corresponds to the JSON property producerVpcSpokes
      1275 1276 1277  | 
    
      # File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1275 def producer_vpc_spokes @producer_vpc_spokes end  | 
  
#uri ⇒ String
Required. The URI of the VPC network resource.
Corresponds to the JSON property uri
      1280 1281 1282  | 
    
      # File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1280 def uri @uri end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1287 1288 1289 1290 1291 1292  | 
    
      # File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1287 def update!(**args) @exclude_export_ranges = args[:exclude_export_ranges] if args.key?(:exclude_export_ranges) @include_export_ranges = args[:include_export_ranges] if args.key?(:include_export_ranges) @producer_vpc_spokes = args[:producer_vpc_spokes] if args.key?(:producer_vpc_spokes) @uri = args[:uri] if args.key?(:uri) end  |