VMware vSphere Automation SDK for .NET 7.0.0.1
|
Remote stub implementation of the Schedules API service. More...
Inherits vmware::appliance::recovery::backup::Schedules.
Public Member Functions | |
SchedulesStub (vmware.vapi.core.IApiProvider iApiProvider, vmware.vapi.bindings.TypeConverter typeConverter, vmware.vapi.bindings.IStubConfiguration config) | |
SchedulesStub (vmware.vapi.core.IApiProvider iApiProvider, vmware.vapi.bindings.IStubConfiguration config) | |
global::System.Collections.Generic.Dictionary < string, vmware.appliance.recovery.backup.SchedulesTypes.Info > | List () |
Returns a list of existing schedules with details. | |
global::System.Collections.Generic.Dictionary < string, vmware.appliance.recovery.backup.SchedulesTypes.Info > | List (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns a list of existing schedules with details. | |
global::System.Threading.Tasks.Task < global::System.Collections.Generic.Dictionary < string, vmware.appliance.recovery.backup.SchedulesTypes.Info > > | ListAsync () |
Returns a list of existing schedules with details. | |
global::System.Threading.Tasks.Task < global::System.Collections.Generic.Dictionary < string, vmware.appliance.recovery.backup.SchedulesTypes.Info > > | ListAsync (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns a list of existing schedules with details. | |
vmware.appliance.recovery.backup.JobTypes.BackupJobStatus | Run (string schedule, string comment) |
Initiate backup with the specified schedule. | |
vmware.appliance.recovery.backup.JobTypes.BackupJobStatus | Run (string schedule, string comment, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Initiate backup with the specified schedule. | |
global::System.Threading.Tasks.Task < vmware.appliance.recovery.backup.JobTypes.BackupJobStatus > | RunAsync (string schedule, string comment) |
Initiate backup with the specified schedule. | |
global::System.Threading.Tasks.Task < vmware.appliance.recovery.backup.JobTypes.BackupJobStatus > | RunAsync (string schedule, string comment, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Initiate backup with the specified schedule. | |
vmware.appliance.recovery.backup.SchedulesTypes.Info | Get (string schedule) |
Returns an existing schedule information based on id. | |
vmware.appliance.recovery.backup.SchedulesTypes.Info | Get (string schedule, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns an existing schedule information based on id. | |
global::System.Threading.Tasks.Task < vmware.appliance.recovery.backup.SchedulesTypes.Info > | GetAsync (string schedule) |
Returns an existing schedule information based on id. | |
global::System.Threading.Tasks.Task < vmware.appliance.recovery.backup.SchedulesTypes.Info > | GetAsync (string schedule, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Returns an existing schedule information based on id. | |
void | Create (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec spec) |
Creates a schedule. | |
void | Create (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec spec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Creates a schedule. | |
global::System.Threading.Tasks.Task | CreateAsync (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec spec) |
Creates a schedule. | |
global::System.Threading.Tasks.Task | CreateAsync (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec spec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Creates a schedule. | |
void | Update (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec spec) |
Updates a schedule. | |
void | Update (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec spec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Updates a schedule. | |
global::System.Threading.Tasks.Task | UpdateAsync (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec spec) |
Updates a schedule. | |
global::System.Threading.Tasks.Task | UpdateAsync (string schedule, vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec spec, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Updates a schedule. | |
void | Delete (string schedule) |
Deletes an existing schedule. | |
void | Delete (string schedule, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Deletes an existing schedule. | |
global::System.Threading.Tasks.Task | DeleteAsync (string schedule) |
Deletes an existing schedule. | |
global::System.Threading.Tasks.Task | DeleteAsync (string schedule, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig) |
Deletes an existing schedule. |
Remote stub implementation of the Schedules API service.
vmware::appliance::recovery::backup::SchedulesStub::SchedulesStub | ( | vmware.vapi.core.IApiProvider | iApiProvider, |
vmware.vapi.bindings.TypeConverter | typeConverter, | ||
vmware.vapi.bindings.IStubConfiguration | config | ||
) | [inline] |
vmware::appliance::recovery::backup::SchedulesStub::SchedulesStub | ( | vmware.vapi.core.IApiProvider | iApiProvider, |
vmware.vapi.bindings.IStubConfiguration | config | ||
) | [inline] |
void vmware::appliance::recovery::backup::SchedulesStub::Create | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec | spec | ||
) | [inline] |
Creates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.AlreadyExists | if the schedule with the given id already exists. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | CreateSpec Structure |
Implements vmware::appliance::recovery::backup::Schedules.
void vmware::appliance::recovery::backup::SchedulesStub::Create | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec | spec, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Creates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.AlreadyExists | if the schedule with the given id already exists. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | CreateSpec Structure |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task vmware::appliance::recovery::backup::SchedulesStub::CreateAsync | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec | spec, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Creates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.AlreadyExists | if the schedule with the given id already exists. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | CreateSpec Structure |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task vmware::appliance::recovery::backup::SchedulesStub::CreateAsync | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.CreateSpec | spec | ||
) | [inline] |
Creates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.AlreadyExists | if the schedule with the given id already exists. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | CreateSpec Structure |
Implements vmware::appliance::recovery::backup::Schedules.
void vmware::appliance::recovery::backup::SchedulesStub::Delete | ( | string | schedule | ) | [inline] |
Deletes an existing schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
Implements vmware::appliance::recovery::backup::Schedules.
void vmware::appliance::recovery::backup::SchedulesStub::Delete | ( | string | schedule, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Deletes an existing schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task vmware::appliance::recovery::backup::SchedulesStub::DeleteAsync | ( | string | schedule | ) | [inline] |
Deletes an existing schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task vmware::appliance::recovery::backup::SchedulesStub::DeleteAsync | ( | string | schedule, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Deletes an existing schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
vmware.appliance.recovery.backup.SchedulesTypes.Info vmware::appliance::recovery::backup::SchedulesStub::Get | ( | string | schedule, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Returns an existing schedule information based on id.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
vmware.appliance.recovery.backup.SchedulesTypes.Info vmware::appliance::recovery::backup::SchedulesStub::Get | ( | string | schedule | ) | [inline] |
Returns an existing schedule information based on id.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task<vmware.appliance.recovery.backup.SchedulesTypes.Info> vmware::appliance::recovery::backup::SchedulesStub::GetAsync | ( | string | schedule | ) | [inline] |
Returns an existing schedule information based on id.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task<vmware.appliance.recovery.backup.SchedulesTypes.Info> vmware::appliance::recovery::backup::SchedulesStub::GetAsync | ( | string | schedule, |
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Returns an existing schedule information based on id.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Collections.Generic.Dictionary<string, vmware.appliance.recovery.backup.SchedulesTypes.Info> vmware::appliance::recovery::backup::SchedulesStub::List | ( | global::System.Action< vmware.vapi.std.Progress > | _progress, |
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Returns a list of existing schedules with details.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
com.vmware.appliance.recovery.backup.schedule
. Implements vmware::appliance::recovery::backup::Schedules.
global::System.Collections.Generic.Dictionary<string, vmware.appliance.recovery.backup.SchedulesTypes.Info> vmware::appliance::recovery::backup::SchedulesStub::List | ( | ) | [inline] |
Returns a list of existing schedules with details.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
com.vmware.appliance.recovery.backup.schedule
. Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task<global::System.Collections.Generic.Dictionary<string, vmware.appliance.recovery.backup.SchedulesTypes.Info> > vmware::appliance::recovery::backup::SchedulesStub::ListAsync | ( | global::System.Action< vmware.vapi.std.Progress > | _progress, |
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Returns a list of existing schedules with details.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
com.vmware.appliance.recovery.backup.schedule
. Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task<global::System.Collections.Generic.Dictionary<string, vmware.appliance.recovery.backup.SchedulesTypes.Info> > vmware::appliance::recovery::backup::SchedulesStub::ListAsync | ( | ) | [inline] |
Returns a list of existing schedules with details.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
com.vmware.appliance.recovery.backup.schedule
. Implements vmware::appliance::recovery::backup::Schedules.
vmware.appliance.recovery.backup.JobTypes.BackupJobStatus vmware::appliance::recovery::backup::SchedulesStub::Run | ( | string | schedule, |
string | comment | ||
) | [inline] |
Initiate backup with the specified schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.FeatureInUse | if a backup or restore is already in progress. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
comment | field that specifies the description for the backup. If null the backup will have an empty comment. |
Implements vmware::appliance::recovery::backup::Schedules.
vmware.appliance.recovery.backup.JobTypes.BackupJobStatus vmware::appliance::recovery::backup::SchedulesStub::Run | ( | string | schedule, |
string | comment, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Initiate backup with the specified schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.FeatureInUse | if a backup or restore is already in progress. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
comment | field that specifies the description for the backup. If null the backup will have an empty comment. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task<vmware.appliance.recovery.backup.JobTypes.BackupJobStatus> vmware::appliance::recovery::backup::SchedulesStub::RunAsync | ( | string | schedule, |
string | comment | ||
) | [inline] |
Initiate backup with the specified schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.FeatureInUse | if a backup or restore is already in progress. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
comment | field that specifies the description for the backup. If null the backup will have an empty comment. |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task<vmware.appliance.recovery.backup.JobTypes.BackupJobStatus> vmware::appliance::recovery::backup::SchedulesStub::RunAsync | ( | string | schedule, |
string | comment, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Initiate backup with the specified schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.FeatureInUse | if a backup or restore is already in progress. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
comment | field that specifies the description for the backup. If null the backup will have an empty comment. |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
void vmware::appliance::recovery::backup::SchedulesStub::Update | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec | spec | ||
) | [inline] |
Updates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | UpdateSpec Structure |
Implements vmware::appliance::recovery::backup::Schedules.
void vmware::appliance::recovery::backup::SchedulesStub::Update | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec | spec, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Updates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | UpdateSpec Structure |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task vmware::appliance::recovery::backup::SchedulesStub::UpdateAsync | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec | spec, | ||
global::System.Action< vmware.vapi.std.Progress > | _progress, | ||
vmware.vapi.bindings.client.InvocationConfig | _invocationConfig | ||
) | [inline] |
Updates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | UpdateSpec Structure |
_progress | Progress notification call back |
_invocationConfig | Configuration for the method invocation |
Implements vmware::appliance::recovery::backup::Schedules.
global::System.Threading.Tasks.Task vmware::appliance::recovery::backup::SchedulesStub::UpdateAsync | ( | string | schedule, |
vmware.appliance.recovery.backup.SchedulesTypes.UpdateSpec | spec | ||
) | [inline] |
Updates a schedule.
This method was added in vSphere API 6.7.
vmware.vapi.std.errors.InvalidArgument | if provided with invalid schedule specification. |
vmware.vapi.std.errors.NotFound | if schedule associated with id does not exist. |
vmware.vapi.std.errors.Error | if any error occurs during the execution of the operation. |
schedule | Identifier of the schedule The parameter must be an identifier for the resource type: com.vmware.appliance.recovery.backup.schedule . |
spec | UpdateSpec Structure |
Implements vmware::appliance::recovery::backup::Schedules.