import { _CreateReplicaAction, _UnmarshalledCreateReplicaAction } from './_CreateReplicaAction'; import { _DeleteReplicaAction, _UnmarshalledDeleteReplicaAction } from './_DeleteReplicaAction'; /** *

Represents one of the following:

*/ export interface _ReplicaUpdate { /** *

The parameters required for creating a replica on an existing global table.

*/ Create?: _CreateReplicaAction; /** *

The name of the existing replica to be removed.

*/ Delete?: _DeleteReplicaAction; } export interface _UnmarshalledReplicaUpdate extends _ReplicaUpdate { /** *

The parameters required for creating a replica on an existing global table.

*/ Create?: _UnmarshalledCreateReplicaAction; /** *

The name of the existing replica to be removed.

*/ Delete?: _UnmarshalledDeleteReplicaAction; }