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.



1059
1060
1061
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1059

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)


1022
1023
1024
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1022

def display_name
  @display_name
end

#external_ipString

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

Returns:

  • (String)


1027
1028
1029
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1027

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)


1032
1033
1034
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1032

def interface
  @interface
end

#internal_ipString

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

Returns:

  • (String)


1037
1038
1039
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1037

def internal_ip
  @internal_ip
end

#network_tagsArray<String>

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

Returns:

  • (Array<String>)


1042
1043
1044
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1042

def network_tags
  @network_tags
end

#network_uriString

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

Returns:

  • (String)


1047
1048
1049
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1047

def network_uri
  @network_uri
end

#service_accountString

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

Returns:

  • (String)


1052
1053
1054
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1052

def 
  @service_account
end

#uriString

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

Returns:

  • (String)


1057
1058
1059
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1057

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1064

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