Class: Google::Apis::ComputeV1::PacketMirroringMirroredResourceInfo
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::PacketMirroringMirroredResourceInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#instances ⇒ Array<Google::Apis::ComputeV1::PacketMirroringMirroredResourceInfoInstanceInfo>
A set of virtual machine instances that are being mirrored.
-
#subnetworks ⇒ Array<Google::Apis::ComputeV1::PacketMirroringMirroredResourceInfoSubnetInfo>
A set of subnetworks for which traffic from/to all VM instances will be mirrored.
-
#tags ⇒ Array<String>
A set of mirrored tags.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PacketMirroringMirroredResourceInfo
constructor
A new instance of PacketMirroringMirroredResourceInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PacketMirroringMirroredResourceInfo
Returns a new instance of PacketMirroringMirroredResourceInfo.
29030 29031 29032 |
# File 'lib/google/apis/compute_v1/classes.rb', line 29030 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instances ⇒ Array<Google::Apis::ComputeV1::PacketMirroringMirroredResourceInfoInstanceInfo>
A set of virtual machine instances that are being mirrored. They must live in
zones contained in the same region as this packetMirroring. Note that this
config will apply only to those network interfaces of the Instances that
belong to the network specified in this packetMirroring. You may specify a
maximum of 50 Instances.
Corresponds to the JSON property instances
29015 29016 29017 |
# File 'lib/google/apis/compute_v1/classes.rb', line 29015 def instances @instances end |
#subnetworks ⇒ Array<Google::Apis::ComputeV1::PacketMirroringMirroredResourceInfoSubnetInfo>
A set of subnetworks for which traffic from/to all VM instances will be
mirrored. They must live in the same region as this packetMirroring. You may
specify a maximum of 5 subnetworks.
Corresponds to the JSON property subnetworks
29022 29023 29024 |
# File 'lib/google/apis/compute_v1/classes.rb', line 29022 def subnetworks @subnetworks end |
#tags ⇒ Array<String>
A set of mirrored tags. Traffic from/to all VM instances that have one or more
of these tags will be mirrored.
Corresponds to the JSON property tags
29028 29029 29030 |
# File 'lib/google/apis/compute_v1/classes.rb', line 29028 def @tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29035 29036 29037 29038 29039 |
# File 'lib/google/apis/compute_v1/classes.rb', line 29035 def update!(**args) @instances = args[:instances] if args.key?(:instances) @subnetworks = args[:subnetworks] if args.key?(:subnetworks) @tags = args[:tags] if args.key?(:tags) end |