aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/MetadataEntry.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/MetadataEntry.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/MetadataEntry.h')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/MetadataEntry.h72
1 files changed, 36 insertions, 36 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/MetadataEntry.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/MetadataEntry.h
index 3d2875f4a1..b6d876e918 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/MetadataEntry.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/MetadataEntry.h
@@ -37,85 +37,85 @@ namespace Model
void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
- /**
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline const Aws::String& GetName() const{ return m_name; }
- /**
+ /**
* <p>Name of the Object.</p>
- */
- inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
-
- /**
+ */
+ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
+
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
- /**
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
- /**
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
- /**
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline MetadataEntry& WithName(const Aws::String& value) { SetName(value); return *this;}
- /**
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline MetadataEntry& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
- /**
+ /**
* <p>Name of the Object.</p>
- */
+ */
inline MetadataEntry& WithName(const char* value) { SetName(value); return *this;}
- /**
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline const Aws::String& GetValue() const{ return m_value; }
- /**
+ /**
* <p>Value of the Object.</p>
- */
- inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
-
- /**
+ */
+ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
+
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
- /**
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
- /**
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
- /**
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline MetadataEntry& WithValue(const Aws::String& value) { SetValue(value); return *this;}
- /**
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline MetadataEntry& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
- /**
+ /**
* <p>Value of the Object.</p>
- */
+ */
inline MetadataEntry& WithValue(const char* value) { SetValue(value); return *this;}
private: