VMware vSphere Automation SDK for .NET 7.0.0.1
vmware::vcenter::content::registries::Recurrence Class Reference

The Recurrence enumerated type defines the supported values for how often to run a specific operation for a container registry. More...

List of all members.

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.

Detailed Description

The Recurrence enumerated type defines the supported values for how often to run a specific operation for a container registry.


Member Enumeration Documentation

C# enum whose values can be used in switch statements.

Ordinals have no semantic meaning (your code should not rely on them).

Enumerator:
_UNKNOWN 

Special enumeration constant which is used to represent constants that do not exist in the current enum binding.

For example if a client sends a new constant to an older server, the server code will see this special constant, because its enum binding lacks the new constant.

NONE 

No operation is scheduled.

DAILY 

An operation occurs on a daily basis.

WEEKLY 

An operation occurs on a weekly basis.


Member Function Documentation

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]

Member Data Documentation

readonly Recurrence vmware::vcenter::content::registries::Recurrence::DAILY = new Recurrence("DAILY", Values.DAILY) [static]

An operation occurs on a daily basis.

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.


The documentation for this class was generated from the following file: