Class: Google::Apis::RedisV1::UpgradeInstanceRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::RedisV1::UpgradeInstanceRequest
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb 
Overview
Request for UpgradeInstance.
Instance Attribute Summary collapse
- 
  
    
      #redis_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpgradeInstanceRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UpgradeInstanceRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ UpgradeInstanceRequest
Returns a new instance of UpgradeInstanceRequest.
      3228 3229 3230  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 3228 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#redis_version ⇒ String
Required. Specifies the target version of Redis software to upgrade to.
Corresponds to the JSON property redisVersion
      3226 3227 3228  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 3226 def redis_version @redis_version end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3233 3234 3235  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 3233 def update!(**args) @redis_version = args[:redis_version] if args.key?(:redis_version) end  |