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

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

RFC-2616: cache control support

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ HttpCacheControlResponseHeader

Returns a new instance of HttpCacheControlResponseHeader.



1341
1342
1343
# File 'generated/google/apis/container_v1/classes.rb', line 1341

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)


1329
1330
1331
# File 'generated/google/apis/container_v1/classes.rb', line 1329

def age
  @age
end

#directiveString

14.9 request and response directives Corresponds to the JSON property directive

Returns:

  • (String)


1334
1335
1336
# File 'generated/google/apis/container_v1/classes.rb', line 1334

def directive
  @directive
end

#expiresString

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

Returns:

  • (String)


1339
1340
1341
# File 'generated/google/apis/container_v1/classes.rb', line 1339

def expires
  @expires
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1346
1347
1348
1349
1350
# File 'generated/google/apis/container_v1/classes.rb', line 1346

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