Class: Google::Apis::ContainerV1beta1::HttpCacheControlResponseHeader

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/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.



4863
4864
4865
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4863

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)


4851
4852
4853
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4851

def age
  @age
end

#directiveString

14.9 request and response directives Corresponds to the JSON property directive

Returns:

  • (String)


4856
4857
4858
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4856

def directive
  @directive
end

#expiresString

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

Returns:

  • (String)


4861
4862
4863
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4861

def expires
  @expires
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4868
4869
4870
4871
4872
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4868

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