aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.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
commit11ae9eca250d0188b7962459cbc6706719e7dca9 (patch)
tree4b7d6755091980d33210de19b2eb35a401a761ea /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h
parent9c914f41ba5e9f9365f404e892197553ac23809e (diff)
downloadydb-11ae9eca250d0188b7962459cbc6706719e7dca9.tar.gz
Restoring authorship annotation for <unril@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h
index c40ac3062a..0031293961 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/Delete.h
@@ -23,11 +23,11 @@ namespace S3
namespace Model
{
- /**
+ /**
* <p>Container for the objects to delete.</p><p><h3>See Also:</h3> <a
- * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Delete">AWS API
- * Reference</a></p>
- */
+ * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Delete">AWS API
+ * Reference</a></p>
+ */
class AWS_S3_API Delete
{
public:
@@ -38,44 +38,44 @@ namespace Model
void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
- /**
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline const Aws::Vector<ObjectIdentifier>& GetObjects() const{ return m_objects; }
- /**
+ /**
* <p>The objects to delete.</p>
- */
- inline bool ObjectsHasBeenSet() const { return m_objectsHasBeenSet; }
-
- /**
+ */
+ inline bool ObjectsHasBeenSet() const { return m_objectsHasBeenSet; }
+
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline void SetObjects(const Aws::Vector<ObjectIdentifier>& value) { m_objectsHasBeenSet = true; m_objects = value; }
- /**
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline void SetObjects(Aws::Vector<ObjectIdentifier>&& value) { m_objectsHasBeenSet = true; m_objects = std::move(value); }
- /**
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline Delete& WithObjects(const Aws::Vector<ObjectIdentifier>& value) { SetObjects(value); return *this;}
- /**
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline Delete& WithObjects(Aws::Vector<ObjectIdentifier>&& value) { SetObjects(std::move(value)); return *this;}
- /**
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline Delete& AddObjects(const ObjectIdentifier& value) { m_objectsHasBeenSet = true; m_objects.push_back(value); return *this; }
- /**
+ /**
* <p>The objects to delete.</p>
- */
+ */
inline Delete& AddObjects(ObjectIdentifier&& value) { m_objectsHasBeenSet = true; m_objects.push_back(std::move(value)); return *this; }
@@ -89,12 +89,12 @@ namespace Model
* <p>Element to enable quiet mode for the request. When you add this element, you
* must set its value to true.</p>
*/
- inline bool QuietHasBeenSet() const { return m_quietHasBeenSet; }
-
- /**
- * <p>Element to enable quiet mode for the request. When you add this element, you
- * must set its value to true.</p>
- */
+ inline bool QuietHasBeenSet() const { return m_quietHasBeenSet; }
+
+ /**
+ * <p>Element to enable quiet mode for the request. When you add this element, you
+ * must set its value to true.</p>
+ */
inline void SetQuiet(bool value) { m_quietHasBeenSet = true; m_quiet = value; }
/**