Class: Google::Apis::ContainerV1::HttpCacheControlResponseHeader

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ HttpCacheControlResponseHeader

Returns a new instance of HttpCacheControlResponseHeader.



2181
2182
2183
# File 'lib/google/apis/container_v1/classes.rb', line 2181

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

Instance Attribute Details

#ageFixnum

14.6 response cache age, in seconds since the response is generated Corresponds to the JSON property age

Returns:

  • (Fixnum)


2169
2170
2171
# File 'lib/google/apis/container_v1/classes.rb', line 2169

def age
  @age
end

#directiveString

14.9 request and response directives Corresponds to the JSON property directive

Returns:

  • (String)


2174
2175
2176
# File 'lib/google/apis/container_v1/classes.rb', line 2174

def directive
  @directive
end

#expiresString

14.21 response cache expires, in RFC 1123 date format Corresponds to the JSON property expires

Returns:

  • (String)


2179
2180
2181
# File 'lib/google/apis/container_v1/classes.rb', line 2179

def expires
  @expires
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2186
2187
2188
2189
2190
# File 'lib/google/apis/container_v1/classes.rb', line 2186

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