aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h
diff options
context:
space:
mode:
authorunril <unril@yandex-team.ru>2022-02-10 16:46:05 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:05 +0300
commit3b241dd57cf58f20bbbd63fa6a0a758dbec09b68 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h
parent11ae9eca250d0188b7962459cbc6706719e7dca9 (diff)
downloadydb-3b241dd57cf58f20bbbd63fa6a0a758dbec09b68.tar.gz
Restoring authorship annotation for <unril@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h
index 9880ac9d4a..6b83d534f1 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Part.h
@@ -23,11 +23,11 @@ namespace S3
namespace Model
{
- /**
+ /**
* <p>Container for elements related to a part.</p><p><h3>See Also:</h3> <a
- * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Part">AWS API
- * Reference</a></p>
- */
+ * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Part">AWS API
+ * Reference</a></p>
+ */
class AWS_S3_API Part
{
public:
@@ -48,12 +48,12 @@ namespace Model
* <p>Part number identifying the part. This is a positive integer between 1 and
* 10,000.</p>
*/
- inline bool PartNumberHasBeenSet() const { return m_partNumberHasBeenSet; }
-
- /**
- * <p>Part number identifying the part. This is a positive integer between 1 and
- * 10,000.</p>
- */
+ inline bool PartNumberHasBeenSet() const { return m_partNumberHasBeenSet; }
+
+ /**
+ * <p>Part number identifying the part. This is a positive integer between 1 and
+ * 10,000.</p>
+ */
inline void SetPartNumber(int value) { m_partNumberHasBeenSet = true; m_partNumber = value; }
/**
@@ -71,11 +71,11 @@ namespace Model
/**
* <p>Date and time at which the part was uploaded.</p>
*/
- inline bool LastModifiedHasBeenSet() const { return m_lastModifiedHasBeenSet; }
-
- /**
- * <p>Date and time at which the part was uploaded.</p>
- */
+ inline bool LastModifiedHasBeenSet() const { return m_lastModifiedHasBeenSet; }
+
+ /**
+ * <p>Date and time at which the part was uploaded.</p>
+ */
inline void SetLastModified(const Aws::Utils::DateTime& value) { m_lastModifiedHasBeenSet = true; m_lastModified = value; }
/**
@@ -102,11 +102,11 @@ namespace Model
/**
* <p>Entity tag returned when the part was uploaded.</p>
*/
- inline bool ETagHasBeenSet() const { return m_eTagHasBeenSet; }
-
- /**
- * <p>Entity tag returned when the part was uploaded.</p>
- */
+ inline bool ETagHasBeenSet() const { return m_eTagHasBeenSet; }
+
+ /**
+ * <p>Entity tag returned when the part was uploaded.</p>
+ */
inline void SetETag(const Aws::String& value) { m_eTagHasBeenSet = true; m_eTag = value; }
/**
@@ -136,22 +136,22 @@ namespace Model
/**
- * <p>Size in bytes of the uploaded part data.</p>
+ * <p>Size in bytes of the uploaded part data.</p>
*/
inline long long GetSize() const{ return m_size; }
/**
- * <p>Size in bytes of the uploaded part data.</p>
+ * <p>Size in bytes of the uploaded part data.</p>
+ */
+ inline bool SizeHasBeenSet() const { return m_sizeHasBeenSet; }
+
+ /**
+ * <p>Size in bytes of the uploaded part data.</p>
*/
- inline bool SizeHasBeenSet() const { return m_sizeHasBeenSet; }
-
- /**
- * <p>Size in bytes of the uploaded part data.</p>
- */
inline void SetSize(long long value) { m_sizeHasBeenSet = true; m_size = value; }
/**
- * <p>Size in bytes of the uploaded part data.</p>
+ * <p>Size in bytes of the uploaded part data.</p>
*/
inline Part& WithSize(long long value) { SetSize(value); return *this;}