Show / Hide Table of Contents

Class DbBackupsWaiters

Contains collection of helper methods to produce Oci.Common.Waiters for different resources of DbBackups.

Inheritance
object
DbBackupsWaiters
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class DbBackupsWaiters

Constructors

DbBackupsWaiters(DbBackupsClient)

Declaration
public DbBackupsWaiters(DbBackupsClient client)
Parameters
Type Name Description
DbBackupsClient client

Methods

ForBackup(GetBackupRequest, WaiterConfiguration, params LifecycleStateEnum[])

Creates a waiter using the provided configuration.

Declaration
public Waiter<GetBackupRequest, GetBackupResponse> ForBackup(GetBackupRequest request, WaiterConfiguration config, params Backup.LifecycleStateEnum[] targetStates)
Parameters
Type Name Description
GetBackupRequest request

Request to send.

WaiterConfiguration config

Wait Configuration

LifecycleStateEnum[] targetStates

Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states

Returns
Type Description
Waiter<GetBackupRequest, GetBackupResponse>

a new Oci.common.Waiter instance

ForBackup(GetBackupRequest, params LifecycleStateEnum[])

Creates a waiter using default wait configuration.

Declaration
public Waiter<GetBackupRequest, GetBackupResponse> ForBackup(GetBackupRequest request, params Backup.LifecycleStateEnum[] targetStates)
Parameters
Type Name Description
GetBackupRequest request

Request to send.

LifecycleStateEnum[] targetStates

Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states

Returns
Type Description
Waiter<GetBackupRequest, GetBackupResponse>

a new Oci.common.Waiter instance

In this article
Back to top