Skip to content

Commit be4eedc

Browse files
1 parent 9f12c22 commit be4eedc

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

src/Storagetransfer/TransferCounters.php

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,20 @@ class TransferCounters extends \Google\Model
160160
* @var string
161161
*/
162162
public $objectsFromSourceSkippedBySync;
163+
/**
164+
* Number of unrestored deep archive objects skipped.
165+
*
166+
* @var string
167+
*/
168+
public $unrestoredDeepArchiveObjectsSkippedCount;
169+
/**
170+
* Number of glacier objects skipped, glacier objects are unsupported by
171+
* default regardless of the restore status. Allowlist the project to copy
172+
* glacier objects if needed.
173+
*
174+
* @var string
175+
*/
176+
public $unsupportedS3GlacierObjectsSkippedCount;
163177

164178
/**
165179
* Bytes that are copied to the data sink.
@@ -512,6 +526,40 @@ public function getObjectsFromSourceSkippedBySync()
512526
{
513527
return $this->objectsFromSourceSkippedBySync;
514528
}
529+
/**
530+
* Number of unrestored deep archive objects skipped.
531+
*
532+
* @param string $unrestoredDeepArchiveObjectsSkippedCount
533+
*/
534+
public function setUnrestoredDeepArchiveObjectsSkippedCount($unrestoredDeepArchiveObjectsSkippedCount)
535+
{
536+
$this->unrestoredDeepArchiveObjectsSkippedCount = $unrestoredDeepArchiveObjectsSkippedCount;
537+
}
538+
/**
539+
* @return string
540+
*/
541+
public function getUnrestoredDeepArchiveObjectsSkippedCount()
542+
{
543+
return $this->unrestoredDeepArchiveObjectsSkippedCount;
544+
}
545+
/**
546+
* Number of glacier objects skipped, glacier objects are unsupported by
547+
* default regardless of the restore status. Allowlist the project to copy
548+
* glacier objects if needed.
549+
*
550+
* @param string $unsupportedS3GlacierObjectsSkippedCount
551+
*/
552+
public function setUnsupportedS3GlacierObjectsSkippedCount($unsupportedS3GlacierObjectsSkippedCount)
553+
{
554+
$this->unsupportedS3GlacierObjectsSkippedCount = $unsupportedS3GlacierObjectsSkippedCount;
555+
}
556+
/**
557+
* @return string
558+
*/
559+
public function getUnsupportedS3GlacierObjectsSkippedCount()
560+
{
561+
return $this->unsupportedS3GlacierObjectsSkippedCount;
562+
}
515563
}
516564

517565
// Adding a class alias for backwards compatibility with the previous class name.

0 commit comments

Comments
 (0)