VMware vSphere Automation SDK for .NET 7.0.0.1
|
The Recurrence
enumerated type defines the supported values for how often to run a specific operation for a container registry.
More...
Public Types | |
enum | Values { _UNKNOWN, NONE, DAILY, WEEKLY } |
C# enum whose values can be used in switch statements. More... | |
Public Member Functions | |
bool | IsUnknown () |
Values | GetEnumValue () |
Static Public Member Functions | |
static Recurrence[] | GetValues () |
static Recurrence | ValueOf (string name) |
Static Public Attributes | |
static readonly Recurrence | NONE = new Recurrence("NONE", Values.NONE) |
No operation is scheduled. | |
static readonly Recurrence | DAILY = new Recurrence("DAILY", Values.DAILY) |
An operation occurs on a daily basis. | |
static readonly Recurrence | WEEKLY = new Recurrence("WEEKLY", Values.WEEKLY) |
An operation occurs on a weekly basis. |
The Recurrence
enumerated type defines the supported values for how often to run a specific operation for a container registry.
C# enum whose values can be used in switch statements.
Ordinals have no semantic meaning (your code should not rely on them).
Values vmware::vcenter::content::registries::Recurrence::GetEnumValue | ( | ) | [inline] |
static Recurrence [] vmware::vcenter::content::registries::Recurrence::GetValues | ( | ) | [inline, static] |
bool vmware::vcenter::content::registries::Recurrence::IsUnknown | ( | ) | [inline] |
static Recurrence vmware::vcenter::content::registries::Recurrence::ValueOf | ( | string | name | ) | [inline, static] |
readonly Recurrence vmware::vcenter::content::registries::Recurrence::DAILY = new Recurrence("DAILY", Values.DAILY) [static] |
An operation occurs on a daily basis.
readonly Recurrence vmware::vcenter::content::registries::Recurrence::NONE = new Recurrence("NONE", Values.NONE) [static] |
No operation is scheduled.
readonly Recurrence vmware::vcenter::content::registries::Recurrence::WEEKLY = new Recurrence("WEEKLY", Values.WEEKLY) [static] |
An operation occurs on a weekly basis.