Class: Google::Apis::ContainerV1::HttpCacheControlResponseHeader
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContainerV1::HttpCacheControlResponseHeader
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb 
Overview
RFC-2616: cache control support
Instance Attribute Summary collapse
- 
  
    
      #age  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
14.6 response cache age, in seconds since the response is generated Corresponds to the JSON property
age. - 
  
    
      #directive  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
14.9 request and response directives Corresponds to the JSON property
directive. - 
  
    
      #expires  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
14.21 response cache expires, in RFC 1123 date format Corresponds to the JSON property
expires. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HttpCacheControlResponseHeader 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of HttpCacheControlResponseHeader.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ HttpCacheControlResponseHeader
Returns a new instance of HttpCacheControlResponseHeader.
      2878 2879 2880  | 
    
      # File 'lib/google/apis/container_v1/classes.rb', line 2878 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#age ⇒ Fixnum
14.6 response cache age, in seconds since the response is generated
Corresponds to the JSON property age
      2866 2867 2868  | 
    
      # File 'lib/google/apis/container_v1/classes.rb', line 2866 def age @age end  | 
  
#directive ⇒ String
14.9 request and response directives
Corresponds to the JSON property directive
      2871 2872 2873  | 
    
      # File 'lib/google/apis/container_v1/classes.rb', line 2871 def directive @directive end  | 
  
#expires ⇒ String
14.21 response cache expires, in RFC 1123 date format
Corresponds to the JSON property expires
      2876 2877 2878  | 
    
      # File 'lib/google/apis/container_v1/classes.rb', line 2876 def expires @expires end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2883 2884 2885 2886 2887  | 
    
      # File 'lib/google/apis/container_v1/classes.rb', line 2883 def update!(**args) @age = args[:age] if args.key?(:age) @directive = args[:directive] if args.key?(:directive) @expires = args[:expires] if args.key?(:expires) end  |