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.
-
#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.
1019 1020 1021 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1019 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
1012 1013 1014 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1012 def exclude_export_ranges @exclude_export_ranges end |
#uri ⇒ String
Required. The URI of the VPC network resource.
Corresponds to the JSON property uri
1017 1018 1019 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1017 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1024 1025 1026 1027 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1024 def update!(**args) @exclude_export_ranges = args[:exclude_export_ranges] if args.key?(:exclude_export_ranges) @uri = args[:uri] if args.key?(:uri) end |