/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ECRPublic { namespace Model { /** */ class CompleteLayerUploadRequest : public ECRPublicRequest { public: AWS_ECRPUBLIC_API CompleteLayerUploadRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CompleteLayerUpload"; } AWS_ECRPUBLIC_API Aws::String SerializePayload() const override; AWS_ECRPUBLIC_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline const Aws::String& GetRegistryId() const{ return m_registryId; } /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline bool RegistryIdHasBeenSet() const { return m_registryIdHasBeenSet; } /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline void SetRegistryId(const Aws::String& value) { m_registryIdHasBeenSet = true; m_registryId = value; } /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline void SetRegistryId(Aws::String&& value) { m_registryIdHasBeenSet = true; m_registryId = std::move(value); } /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline void SetRegistryId(const char* value) { m_registryIdHasBeenSet = true; m_registryId.assign(value); } /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline CompleteLayerUploadRequest& WithRegistryId(const Aws::String& value) { SetRegistryId(value); return *this;} /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline CompleteLayerUploadRequest& WithRegistryId(Aws::String&& value) { SetRegistryId(std::move(value)); return *this;} /** *

The Amazon Web Services account ID, or registry alias, associated with the * registry where layers are uploaded. If you do not specify a registry, the * default public registry is assumed.

*/ inline CompleteLayerUploadRequest& WithRegistryId(const char* value) { SetRegistryId(value); return *this;} /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; } /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; } /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; } /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); } /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); } /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline CompleteLayerUploadRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;} /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline CompleteLayerUploadRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;} /** *

The name of the repository in a public registry to associate with the image * layer.

*/ inline CompleteLayerUploadRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;} /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline const Aws::String& GetUploadId() const{ return m_uploadId; } /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline bool UploadIdHasBeenSet() const { return m_uploadIdHasBeenSet; } /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline void SetUploadId(const Aws::String& value) { m_uploadIdHasBeenSet = true; m_uploadId = value; } /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline void SetUploadId(Aws::String&& value) { m_uploadIdHasBeenSet = true; m_uploadId = std::move(value); } /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline void SetUploadId(const char* value) { m_uploadIdHasBeenSet = true; m_uploadId.assign(value); } /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline CompleteLayerUploadRequest& WithUploadId(const Aws::String& value) { SetUploadId(value); return *this;} /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline CompleteLayerUploadRequest& WithUploadId(Aws::String&& value) { SetUploadId(std::move(value)); return *this;} /** *

The upload ID from a previous InitiateLayerUpload operation to * associate with the image layer.

*/ inline CompleteLayerUploadRequest& WithUploadId(const char* value) { SetUploadId(value); return *this;} /** *

The sha256 digest of the image layer.

*/ inline const Aws::Vector& GetLayerDigests() const{ return m_layerDigests; } /** *

The sha256 digest of the image layer.

*/ inline bool LayerDigestsHasBeenSet() const { return m_layerDigestsHasBeenSet; } /** *

The sha256 digest of the image layer.

*/ inline void SetLayerDigests(const Aws::Vector& value) { m_layerDigestsHasBeenSet = true; m_layerDigests = value; } /** *

The sha256 digest of the image layer.

*/ inline void SetLayerDigests(Aws::Vector&& value) { m_layerDigestsHasBeenSet = true; m_layerDigests = std::move(value); } /** *

The sha256 digest of the image layer.

*/ inline CompleteLayerUploadRequest& WithLayerDigests(const Aws::Vector& value) { SetLayerDigests(value); return *this;} /** *

The sha256 digest of the image layer.

*/ inline CompleteLayerUploadRequest& WithLayerDigests(Aws::Vector&& value) { SetLayerDigests(std::move(value)); return *this;} /** *

The sha256 digest of the image layer.

*/ inline CompleteLayerUploadRequest& AddLayerDigests(const Aws::String& value) { m_layerDigestsHasBeenSet = true; m_layerDigests.push_back(value); return *this; } /** *

The sha256 digest of the image layer.

*/ inline CompleteLayerUploadRequest& AddLayerDigests(Aws::String&& value) { m_layerDigestsHasBeenSet = true; m_layerDigests.push_back(std::move(value)); return *this; } /** *

The sha256 digest of the image layer.

*/ inline CompleteLayerUploadRequest& AddLayerDigests(const char* value) { m_layerDigestsHasBeenSet = true; m_layerDigests.push_back(value); return *this; } private: Aws::String m_registryId; bool m_registryIdHasBeenSet = false; Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::String m_uploadId; bool m_uploadIdHasBeenSet = false; Aws::Vector m_layerDigests; bool m_layerDigestsHasBeenSet = false; }; } // namespace Model } // namespace ECRPublic } // namespace Aws