Class: Google::Cloud::SecretManager::V1::Rotation

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/secretmanager/v1/resources.rb

Overview

The rotation time and period for a Secret. At next_rotation_time, Secret Manager will send a Pub/Sub notification to the topics configured on the Secret. Secret.topics must be set to configure rotation.

Instance Attribute Summary collapse

Instance Attribute Details

#next_rotation_time::Google::Protobuf::Timestamp

Returns Optional. Timestamp in UTC at which the Secret is scheduled to rotate.

next_rotation_time MUST be set if rotation_period is set.

Returns:



304
305
306
307
# File 'proto_docs/google/cloud/secretmanager/v1/resources.rb', line 304

class Rotation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#rotation_period::Google::Protobuf::Duration

Returns Input only. The Duration between rotation notifications. Must be in seconds and at least 3600s (1h) and at most 3153600000s (100 years).

If rotation_period is set, next_rotation_time must be set. next_rotation_time will be advanced by this period when the service automatically sends rotation notifications.

Returns:



304
305
306
307
# File 'proto_docs/google/cloud/secretmanager/v1/resources.rb', line 304

class Rotation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end