Class: Google::Apis::ComputeBeta::InstanceProperties
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceProperties
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#can_ip_forward ⇒ Boolean
(also: #can_ip_forward?)
Enables instances created based on this template to send packets with source IP addresses other than their own and receive packets with destination IP addresses other than their own.
-
#description ⇒ String
An optional text description for the instances that are created from this instance template.
-
#disks ⇒ Array<Google::Apis::ComputeBeta::AttachedDisk>
An array of disks that are associated with the instances that are created from this template.
-
#labels ⇒ Hash<String,String>
Labels to apply to instances that are created from this template.
-
#machine_type ⇒ String
The machine type to use for instances that are created from this template.
-
#metadata ⇒ Google::Apis::ComputeBeta::Metadata
A metadata key/value entry.
-
#network_interfaces ⇒ Array<Google::Apis::ComputeBeta::NetworkInterface>
An array of network access configurations for this interface.
-
#scheduling ⇒ Google::Apis::ComputeBeta::Scheduling
Sets the scheduling options for an Instance.
-
#service_accounts ⇒ Array<Google::Apis::ComputeBeta::ServiceAccount>
A list of service accounts with specified scopes.
-
#tags ⇒ Google::Apis::ComputeBeta::Tags
A set of instance tags.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceProperties
constructor
A new instance of InstanceProperties.
-
#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) ⇒ InstanceProperties
Returns a new instance of InstanceProperties.
5333 5334 5335 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5333 def initialize(**args) update!(**args) end |
Instance Attribute Details
#can_ip_forward ⇒ Boolean Also known as: can_ip_forward?
Enables instances created based on this template to send packets with source
IP addresses other than their own and receive packets with destination IP
addresses other than their own. If these instances will be used as an IP
gateway or it will be set as the next-hop in a Route resource, specify true.
If unsure, leave this set to false. See the Enable IP forwarding for instances
documentation for more information.
Corresponds to the JSON property canIpForward
5280 5281 5282 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5280 def can_ip_forward @can_ip_forward end |
#description ⇒ String
An optional text description for the instances that are created from this
instance template.
Corresponds to the JSON property description
5287 5288 5289 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5287 def description @description end |
#disks ⇒ Array<Google::Apis::ComputeBeta::AttachedDisk>
An array of disks that are associated with the instances that are created from
this template.
Corresponds to the JSON property disks
5293 5294 5295 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5293 def disks @disks end |
#labels ⇒ Hash<String,String>
Labels to apply to instances that are created from this template. Each label
key/value pair must comply with RFC1035. Label values may be empty.
Corresponds to the JSON property labels
5299 5300 5301 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5299 def labels @labels end |
#machine_type ⇒ String
The machine type to use for instances that are created from this template.
Corresponds to the JSON property machineType
5304 5305 5306 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5304 def machine_type @machine_type end |
#metadata ⇒ Google::Apis::ComputeBeta::Metadata
A metadata key/value entry.
Corresponds to the JSON property metadata
5309 5310 5311 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5309 def @metadata end |
#network_interfaces ⇒ Array<Google::Apis::ComputeBeta::NetworkInterface>
An array of network access configurations for this interface.
Corresponds to the JSON property networkInterfaces
5314 5315 5316 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5314 def network_interfaces @network_interfaces end |
#scheduling ⇒ Google::Apis::ComputeBeta::Scheduling
Sets the scheduling options for an Instance.
Corresponds to the JSON property scheduling
5319 5320 5321 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5319 def scheduling @scheduling end |
#service_accounts ⇒ Array<Google::Apis::ComputeBeta::ServiceAccount>
A list of service accounts with specified scopes. Access tokens for these
service accounts are available to the instances that are created from this
template. Use metadata queries to obtain the access tokens for these instances.
Corresponds to the JSON property serviceAccounts
5326 5327 5328 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5326 def service_accounts @service_accounts end |
#tags ⇒ Google::Apis::ComputeBeta::Tags
A set of instance tags.
Corresponds to the JSON property tags
5331 5332 5333 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5331 def @tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 |
# File 'generated/google/apis/compute_beta/classes.rb', line 5338 def update!(**args) @can_ip_forward = args[:can_ip_forward] if args.key?(:can_ip_forward) @description = args[:description] if args.key?(:description) @disks = args[:disks] if args.key?(:disks) @labels = args[:labels] if args.key?(:labels) @machine_type = args[:machine_type] if args.key?(:machine_type) @metadata = args[:metadata] if args.key?(:metadata) @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces) @scheduling = args[:scheduling] if args.key?(:scheduling) @service_accounts = args[:service_accounts] if args.key?(:service_accounts) @tags = args[:tags] if args.key?(:tags) end |