Class: Google::Apis::ComputeV1::LicenseResourceRequirements
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::LicenseResourceRequirements
 
 
- Defined in:
 - generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #min_guest_cpu_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Minimum number of guest cpus required to use the Instance.
 - 
  
    
      #min_memory_mb  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Minimum memory required to use the Instance.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LicenseResourceRequirements 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of LicenseResourceRequirements.
 - 
  
    
      #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) ⇒ LicenseResourceRequirements
Returns a new instance of LicenseResourceRequirements
      10663 10664 10665  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 10663 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#min_guest_cpu_count ⇒ Fixnum
Minimum number of guest cpus required to use the Instance. Enforced at
Instance creation and Instance start.
Corresponds to the JSON property minGuestCpuCount
      10655 10656 10657  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 10655 def min_guest_cpu_count @min_guest_cpu_count end  | 
  
#min_memory_mb ⇒ Fixnum
Minimum memory required to use the Instance. Enforced at Instance creation and
Instance start.
Corresponds to the JSON property minMemoryMb
      10661 10662 10663  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 10661 def min_memory_mb @min_memory_mb end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      10668 10669 10670 10671  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 10668 def update!(**args) @min_guest_cpu_count = args[:min_guest_cpu_count] if args.key?(:min_guest_cpu_count) @min_memory_mb = args[:min_memory_mb] if args.key?(:min_memory_mb) end  |