Class: Google::Apis::ComputeBeta::NetworkAttachmentConnectedEndpoint
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NetworkAttachmentConnectedEndpoint
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
[Output Only] A connection connected to this network attachment.
Instance Attribute Summary collapse
-
#ip_address ⇒ String
The IPv4 address assigned to the producer instance network interface.
-
#ipv6_address ⇒ String
The IPv6 address assigned to the producer instance network interface.
-
#project_id_or_num ⇒ String
The project id or number of the interface to which the IP was assigned.
-
#secondary_ip_cidr_ranges ⇒ Array<String>
Alias IP ranges from the same subnetwork.
-
#status ⇒ String
The status of a connected endpoint to this network attachment.
-
#subnetwork ⇒ String
The subnetwork used to assign the IP to the producer instance network interface.
-
#subnetwork_cidr_range ⇒ String
[Output Only] The CIDR range of the subnet from which the IPv4 internal IP was allocated from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkAttachmentConnectedEndpoint
constructor
A new instance of NetworkAttachmentConnectedEndpoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkAttachmentConnectedEndpoint
Returns a new instance of NetworkAttachmentConnectedEndpoint.
26270 26271 26272 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26270 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_address ⇒ String
The IPv4 address assigned to the producer instance network interface. This
value will be a range in case of Serverless.
Corresponds to the JSON property ipAddress
26234 26235 26236 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26234 def ip_address @ip_address end |
#ipv6_address ⇒ String
The IPv6 address assigned to the producer instance network interface. This is
only assigned when the stack types of both the instance network interface and
the consumer subnet are IPv4_IPv6.
Corresponds to the JSON property ipv6Address
26241 26242 26243 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26241 def ipv6_address @ipv6_address end |
#project_id_or_num ⇒ String
The project id or number of the interface to which the IP was assigned.
Corresponds to the JSON property projectIdOrNum
26246 26247 26248 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26246 def project_id_or_num @project_id_or_num end |
#secondary_ip_cidr_ranges ⇒ Array<String>
Alias IP ranges from the same subnetwork.
Corresponds to the JSON property secondaryIpCidrRanges
26251 26252 26253 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26251 def secondary_ip_cidr_ranges @secondary_ip_cidr_ranges end |
#status ⇒ String
The status of a connected endpoint to this network attachment.
Corresponds to the JSON property status
26256 26257 26258 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26256 def status @status end |
#subnetwork ⇒ String
The subnetwork used to assign the IP to the producer instance network
interface.
Corresponds to the JSON property subnetwork
26262 26263 26264 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26262 def subnetwork @subnetwork end |
#subnetwork_cidr_range ⇒ String
[Output Only] The CIDR range of the subnet from which the IPv4 internal IP was
allocated from.
Corresponds to the JSON property subnetworkCidrRange
26268 26269 26270 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26268 def subnetwork_cidr_range @subnetwork_cidr_range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26275 26276 26277 26278 26279 26280 26281 26282 26283 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26275 def update!(**args) @ip_address = args[:ip_address] if args.key?(:ip_address) @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address) @project_id_or_num = args[:project_id_or_num] if args.key?(:project_id_or_num) @secondary_ip_cidr_ranges = args[:secondary_ip_cidr_ranges] if args.key?(:secondary_ip_cidr_ranges) @status = args[:status] if args.key?(:status) @subnetwork = args[:subnetwork] if args.key?(:subnetwork) @subnetwork_cidr_range = args[:subnetwork_cidr_range] if args.key?(:subnetwork_cidr_range) end |