Class: Google::Apis::ComputeV1::NetworkInterface
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::NetworkInterface
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Overview
A network interface resource attached to an instance.
Instance Attribute Summary collapse
- 
  
    
      #access_configs  ⇒ Array<Google::Apis::ComputeV1::AccessConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of configurations for this interface. 
- 
  
    
      #alias_ip_ranges  ⇒ Array<Google::Apis::ComputeV1::AliasIpRange> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of alias IP ranges for this network interface. 
- 
  
    
      #fingerprint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Fingerprint hash of contents stored in this network interface. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Type of the resource. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The name of the network interface, generated by the server. 
- 
  
    
      #network  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URL of the network resource for this instance. 
- 
  
    
      #network_ip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An IPv4 internal network address to assign to the instance for this network interface. 
- 
  
    
      #subnetwork  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the Subnetwork resource for this instance. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NetworkInterface 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NetworkInterface. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ NetworkInterface
Returns a new instance of NetworkInterface
| 11262 11263 11264 | # File 'generated/google/apis/compute_v1/classes.rb', line 11262 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#access_configs ⇒ Array<Google::Apis::ComputeV1::AccessConfig>
An array of configurations for this interface. Currently, only one access
config, ONE_TO_ONE_NAT, is supported. If there are no accessConfigs specified,
then this instance will have no external internet access.
Corresponds to the JSON property accessConfigs
| 11198 11199 11200 | # File 'generated/google/apis/compute_v1/classes.rb', line 11198 def access_configs @access_configs end | 
#alias_ip_ranges ⇒ Array<Google::Apis::ComputeV1::AliasIpRange>
An array of alias IP ranges for this network interface. Can only be specified
for network interfaces on subnet-mode networks.
Corresponds to the JSON property aliasIpRanges
| 11204 11205 11206 | # File 'generated/google/apis/compute_v1/classes.rb', line 11204 def alias_ip_ranges @alias_ip_ranges end | 
#fingerprint ⇒ String
Fingerprint hash of contents stored in this network interface. This field will
be ignored when inserting an Instance or adding a NetworkInterface. An up-to-
date fingerprint must be provided in order to update the NetworkInterface.
Corresponds to the JSON property fingerprint
NOTE: Values are automatically base64 encoded/decoded in the client library.
| 11212 11213 11214 | # File 'generated/google/apis/compute_v1/classes.rb', line 11212 def fingerprint @fingerprint end | 
#kind ⇒ String
[Output Only] Type of the resource. Always compute#networkInterface for
network interfaces.
Corresponds to the JSON property kind
| 11218 11219 11220 | # File 'generated/google/apis/compute_v1/classes.rb', line 11218 def kind @kind end | 
#name ⇒ String
[Output Only] The name of the network interface, generated by the server. For
network devices, these are eth0, eth1, etc.
Corresponds to the JSON property name
| 11224 11225 11226 | # File 'generated/google/apis/compute_v1/classes.rb', line 11224 def name @name end | 
#network ⇒ String
URL of the network resource for this instance. When creating an instance, if neither the network nor the subnetwork is specified, the default network global/networks/default is used; if the network is not specified but the subnetwork is specified, the network is inferred. This field is optional when creating a firewall rule. If not specified when creating a firewall rule, the default network global/networks/default is used. If you specify this property, you can specify the network as a full or partial URL. For example, the following are all valid URLs:
- https://www.googleapis.com/compute/v1/projects/project/global/networks/ network
- projects/project/global/networks/network
- global/networks/default
Corresponds to the JSON property network
| 11240 11241 11242 | # File 'generated/google/apis/compute_v1/classes.rb', line 11240 def network @network end | 
#network_ip ⇒ String
An IPv4 internal network address to assign to the instance for this network
interface. If not specified by the user, an unused internal IP is assigned by
the system.
Corresponds to the JSON property networkIP
| 11247 11248 11249 | # File 'generated/google/apis/compute_v1/classes.rb', line 11247 def network_ip @network_ip end | 
#subnetwork ⇒ String
The URL of the Subnetwork resource for this instance. If the network resource is in legacy mode, do not provide this property. If the network is in auto subnet mode, providing the subnetwork is optional. If the network is in custom subnet mode, then this field should be specified. If you specify this property, you can specify the subnetwork as a full or partial URL. For example, the following are all valid URLs:
- https://www.googleapis.com/compute/v1/projects/project/regions/region/ subnetworks/subnetwork
- regions/region/subnetworks/subnetwork
Corresponds to the JSON property subnetwork
| 11260 11261 11262 | # File 'generated/google/apis/compute_v1/classes.rb', line 11260 def subnetwork @subnetwork end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 | # File 'generated/google/apis/compute_v1/classes.rb', line 11267 def update!(**args) @access_configs = args[:access_configs] if args.key?(:access_configs) @alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges) @fingerprint = args[:fingerprint] if args.key?(:fingerprint) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @network_ip = args[:network_ip] if args.key?(:network_ip) @subnetwork = args[:subnetwork] if args.key?(:subnetwork) end |