Class: Google::Apis::PubsubV1::ExpirationPolicy
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1::ExpirationPolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/pubsub_v1/classes.rb,
lib/google/apis/pubsub_v1/representations.rb,
lib/google/apis/pubsub_v1/representations.rb
Overview
A policy that specifies the conditions for resource expiration (i.e., automatic resource deletion).
Instance Attribute Summary collapse
-
#ttl ⇒ String
Specifies the "time-to-live" duration for an associated resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExpirationPolicy
constructor
A new instance of ExpirationPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExpirationPolicy
Returns a new instance of ExpirationPolicy.
312 313 314 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 312 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ttl ⇒ String
Specifies the "time-to-live" duration for an associated resource. The resource
expires if it is not active for a period of ttl. The definition of "activity"
depends on the type of the associated resource. The minimum and maximum
allowed values for ttl depend on the type of the associated resource, as
well. If ttl is not set, the associated resource never expires.
Corresponds to the JSON property ttl
310 311 312 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 310 def ttl @ttl end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
317 318 319 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 317 def update!(**args) @ttl = args[:ttl] if args.key?(:ttl) end |