Class LifetimeAction
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.LifetimeAction
-
public class LifetimeAction extends Object
Action and its trigger that will be performed by Key Vault over the lifetime of a certificate.
-
-
Constructor Summary
Constructors Constructor Description LifetimeAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Action
action()
Get the action value.Trigger
trigger()
Get the trigger value.LifetimeAction
withAction(Action action)
Set the action value.LifetimeAction
withTrigger(Trigger trigger)
Set the trigger value.
-
-
-
Method Detail
-
trigger
public Trigger trigger()
Get the trigger value.- Returns:
- the trigger value
-
withTrigger
public LifetimeAction withTrigger(Trigger trigger)
Set the trigger value.- Parameters:
trigger
- the trigger value to set- Returns:
- the LifetimeAction object itself.
-
action
public Action action()
Get the action value.- Returns:
- the action value
-
withAction
public LifetimeAction withAction(Action action)
Set the action value.- Parameters:
action
- the action value to set- Returns:
- the LifetimeAction object itself.
-
-