Class: Google::Apis::NetworkconnectivityV1::LinkedVpcNetwork

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LinkedVpcNetwork

Returns a new instance of LinkedVpcNetwork.



1204
1205
1206
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1204

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#exclude_export_rangesArray<String>

Optional. IP ranges encompassing the subnets to be excluded from peering. Corresponds to the JSON property excludeExportRanges

Returns:

  • (Array<String>)


1192
1193
1194
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1192

def exclude_export_ranges
  @exclude_export_ranges
end

#include_export_rangesArray<String>

Optional. IP ranges allowed to be included from peering. Corresponds to the JSON property includeExportRanges

Returns:

  • (Array<String>)


1197
1198
1199
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1197

def include_export_ranges
  @include_export_ranges
end

#uriString

Required. The URI of the VPC network resource. Corresponds to the JSON property uri

Returns:

  • (String)


1202
1203
1204
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1202

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1209
1210
1211
1212
1213
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1209

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)
  @uri = args[:uri] if args.key?(:uri)
end