Class: Google::Apis::NetworkmanagementV1::InstanceInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb

Overview

For display only. Metadata associated with a Compute Engine instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceInfo

Returns a new instance of InstanceInfo.



1229
1230
1231
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1229

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

Instance Attribute Details

#display_nameString

Name of a Compute Engine instance. Corresponds to the JSON property displayName

Returns:

  • (String)


1187
1188
1189
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1187

def display_name
  @display_name
end

#external_ipString

External IP address of the network interface. Corresponds to the JSON property externalIp

Returns:

  • (String)


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

def external_ip
  @external_ip
end

#interfaceString

Name of the network interface of a Compute Engine instance. Corresponds to the JSON property interface

Returns:

  • (String)


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

def interface
  @interface
end

#internal_ipString

Internal IP address of the network interface. Corresponds to the JSON property internalIp

Returns:

  • (String)


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

def internal_ip
  @internal_ip
end

#network_tagsArray<String>

Network tags configured on the instance. Corresponds to the JSON property networkTags

Returns:

  • (Array<String>)


1207
1208
1209
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1207

def network_tags
  @network_tags
end

#network_uriString

URI of a Compute Engine network. Corresponds to the JSON property networkUri

Returns:

  • (String)


1212
1213
1214
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1212

def network_uri
  @network_uri
end

#psc_network_attachment_uriString

URI of the PSC network attachment the NIC is attached to (if relevant). Corresponds to the JSON property pscNetworkAttachmentUri

Returns:

  • (String)


1217
1218
1219
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1217

def psc_network_attachment_uri
  @psc_network_attachment_uri
end

#service_accountString

Service account authorized for the instance. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


1222
1223
1224
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1222

def 
  @service_account
end

#uriString

URI of a Compute Engine instance. Corresponds to the JSON property uri

Returns:

  • (String)


1227
1228
1229
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1227

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1234

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @external_ip = args[:external_ip] if args.key?(:external_ip)
  @interface = args[:interface] if args.key?(:interface)
  @internal_ip = args[:internal_ip] if args.key?(:internal_ip)
  @network_tags = args[:network_tags] if args.key?(:network_tags)
  @network_uri = args[:network_uri] if args.key?(:network_uri)
  @psc_network_attachment_uri = args[:psc_network_attachment_uri] if args.key?(:psc_network_attachment_uri)
  @service_account = args[:service_account] if args.key?(:service_account)
  @uri = args[:uri] if args.key?(:uri)
end