Class: Google::Apis::ComputeBeta::MachineType

Inherits:
Object
  • Object
show all
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

Represents a Machine Type resource. You can use specific machine types for your VM instances based on performance and pricing requirements. For more information, read Machine Types.

Defined Under Namespace

Classes: Accelerator

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MachineType

Returns a new instance of MachineType.



19091
19092
19093
# File 'lib/google/apis/compute_beta/classes.rb', line 19091

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

Instance Attribute Details

#acceleratorsArray<Google::Apis::ComputeBeta::MachineType::Accelerator>

[Output Only] A list of accelerator configurations assigned to this machine type. Corresponds to the JSON property accelerators



19018
19019
19020
# File 'lib/google/apis/compute_beta/classes.rb', line 19018

def accelerators
  @accelerators
end

#creation_timestampString

[Output Only] Creation timestamp in RFC3339 text format. Corresponds to the JSON property creationTimestamp

Returns:

  • (String)


19023
19024
19025
# File 'lib/google/apis/compute_beta/classes.rb', line 19023

def creation_timestamp
  @creation_timestamp
end

#deprecatedGoogle::Apis::ComputeBeta::DeprecationStatus

Deprecation status for a public resource. Corresponds to the JSON property deprecated



19028
19029
19030
# File 'lib/google/apis/compute_beta/classes.rb', line 19028

def deprecated
  @deprecated
end

#descriptionString

[Output Only] An optional textual description of the resource. Corresponds to the JSON property description

Returns:

  • (String)


19033
19034
19035
# File 'lib/google/apis/compute_beta/classes.rb', line 19033

def description
  @description
end

#guest_cpusFixnum

[Output Only] The number of virtual CPUs that are available to the instance. Corresponds to the JSON property guestCpus

Returns:

  • (Fixnum)


19038
19039
19040
# File 'lib/google/apis/compute_beta/classes.rb', line 19038

def guest_cpus
  @guest_cpus
end

#idFixnum

[Output Only] The unique identifier for the resource. This identifier is defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


19044
19045
19046
# File 'lib/google/apis/compute_beta/classes.rb', line 19044

def id
  @id
end

#is_shared_cpuBoolean Also known as: is_shared_cpu?

[Output Only] Whether this machine type has a shared CPU. See Shared-core machine types for more information. Corresponds to the JSON property isSharedCpu

Returns:

  • (Boolean)


19050
19051
19052
# File 'lib/google/apis/compute_beta/classes.rb', line 19050

def is_shared_cpu
  @is_shared_cpu
end

#kindString

[Output Only] The type of the resource. Always compute#machineType for machine types. Corresponds to the JSON property kind

Returns:

  • (String)


19057
19058
19059
# File 'lib/google/apis/compute_beta/classes.rb', line 19057

def kind
  @kind
end

#maximum_persistent_disksFixnum

[Output Only] Maximum persistent disks allowed. Corresponds to the JSON property maximumPersistentDisks

Returns:

  • (Fixnum)


19062
19063
19064
# File 'lib/google/apis/compute_beta/classes.rb', line 19062

def maximum_persistent_disks
  @maximum_persistent_disks
end

#maximum_persistent_disks_size_gbFixnum

[Output Only] Maximum total persistent disks size (GB) allowed. Corresponds to the JSON property maximumPersistentDisksSizeGb

Returns:

  • (Fixnum)


19067
19068
19069
# File 'lib/google/apis/compute_beta/classes.rb', line 19067

def maximum_persistent_disks_size_gb
  @maximum_persistent_disks_size_gb
end

#memory_mbFixnum

[Output Only] The amount of physical memory available to the instance, defined in MB. Corresponds to the JSON property memoryMb

Returns:

  • (Fixnum)


19073
19074
19075
# File 'lib/google/apis/compute_beta/classes.rb', line 19073

def memory_mb
  @memory_mb
end

#nameString

[Output Only] Name of the resource. Corresponds to the JSON property name

Returns:

  • (String)


19078
19079
19080
# File 'lib/google/apis/compute_beta/classes.rb', line 19078

def name
  @name
end

[Output Only] Server-defined URL for the resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


19083
19084
19085
# File 'lib/google/apis/compute_beta/classes.rb', line 19083

def self_link
  @self_link
end

#zoneString

[Output Only] The name of the zone where the machine type resides, such as us- central1-a. Corresponds to the JSON property zone

Returns:

  • (String)


19089
19090
19091
# File 'lib/google/apis/compute_beta/classes.rb', line 19089

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



19096
19097
19098
19099
19100
19101
19102
19103
19104
19105
19106
19107
19108
19109
19110
19111
# File 'lib/google/apis/compute_beta/classes.rb', line 19096

def update!(**args)
  @accelerators = args[:accelerators] if args.key?(:accelerators)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @deprecated = args[:deprecated] if args.key?(:deprecated)
  @description = args[:description] if args.key?(:description)
  @guest_cpus = args[:guest_cpus] if args.key?(:guest_cpus)
  @id = args[:id] if args.key?(:id)
  @is_shared_cpu = args[:is_shared_cpu] if args.key?(:is_shared_cpu)
  @kind = args[:kind] if args.key?(:kind)
  @maximum_persistent_disks = args[:maximum_persistent_disks] if args.key?(:maximum_persistent_disks)
  @maximum_persistent_disks_size_gb = args[:maximum_persistent_disks_size_gb] if args.key?(:maximum_persistent_disks_size_gb)
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
  @zone = args[:zone] if args.key?(:zone)
end