class Google::Apis::SecretmanagerV1::ReplicationStatus
The replication status of a SecretVersion
.
Attributes
automatic[RW]
The replication status of a SecretVersion
using automatic replication. Only populated if the parent Secret
has an automatic replication policy. Corresponds to the JSON property `automatic` @return [Google::Apis::SecretmanagerV1::AutomaticStatus]
user_managed[RW]
The replication status of a SecretVersion
using user-managed replication. Only populated if the parent Secret
has a user-managed replication policy. Corresponds to the JSON property `userManaged` @return [Google::Apis::SecretmanagerV1::UserManagedStatus]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/secretmanager_v1/classes.rb, line 756 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/secretmanager_v1/classes.rb, line 761 def update!(**args) @automatic = args[:automatic] if args.key?(:automatic) @user_managed = args[:user_managed] if args.key?(:user_managed) end