DeleteShardSnapshotRequest constructor
DeleteShardSnapshotRequest(
{ - String? collectionName,
- int? shardId,
- String? snapshotName,
})
Implementation
factory DeleteShardSnapshotRequest({
$core.String? collectionName,
$core.int? shardId,
$core.String? snapshotName,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (shardId != null) {
$result.shardId = shardId;
}
if (snapshotName != null) {
$result.snapshotName = snapshotName;
}
return $result;
}