/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ECRPublic { namespace Model { /** */ class SetRepositoryPolicyRequest : public ECRPublicRequest { public: AWS_ECRPUBLIC_API SetRepositoryPolicyRequest(); // 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 "SetRepositoryPolicy"; } AWS_ECRPUBLIC_API Aws::String SerializePayload() const override; AWS_ECRPUBLIC_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Web Services account ID that's associated with the registry that * contains the repository. 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 that's associated with the registry that * contains the repository. 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 that's associated with the registry that * contains the repository. 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 that's associated with the registry that * contains the repository. 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 that's associated with the registry that * contains the repository. 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 that's associated with the registry that * contains the repository. If you do not specify a registry, the default public * registry is assumed.

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

The Amazon Web Services account ID that's associated with the registry that * contains the repository. If you do not specify a registry, the default public * registry is assumed.

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

The Amazon Web Services account ID that's associated with the registry that * contains the repository. If you do not specify a registry, the default public * registry is assumed.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The name of the repository to receive the policy.

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

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline const Aws::String& GetPolicyText() const{ return m_policyText; } /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline bool PolicyTextHasBeenSet() const { return m_policyTextHasBeenSet; } /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline void SetPolicyText(const Aws::String& value) { m_policyTextHasBeenSet = true; m_policyText = value; } /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline void SetPolicyText(Aws::String&& value) { m_policyTextHasBeenSet = true; m_policyText = std::move(value); } /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline void SetPolicyText(const char* value) { m_policyTextHasBeenSet = true; m_policyText.assign(value); } /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline SetRepositoryPolicyRequest& WithPolicyText(const Aws::String& value) { SetPolicyText(value); return *this;} /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline SetRepositoryPolicyRequest& WithPolicyText(Aws::String&& value) { SetPolicyText(std::move(value)); return *this;} /** *

The JSON repository policy text to apply to the repository. For more * information, see Amazon * ECR Repository Policies in the Amazon Elastic Container Registry User * Guide.

*/ inline SetRepositoryPolicyRequest& WithPolicyText(const char* value) { SetPolicyText(value); return *this;} /** *

If the policy that you want to set on a repository policy would prevent you * from setting another policy in the future, you must force the * SetRepositoryPolicy operation. This prevents accidental repository * lockouts.

*/ inline bool GetForce() const{ return m_force; } /** *

If the policy that you want to set on a repository policy would prevent you * from setting another policy in the future, you must force the * SetRepositoryPolicy operation. This prevents accidental repository * lockouts.

*/ inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; } /** *

If the policy that you want to set on a repository policy would prevent you * from setting another policy in the future, you must force the * SetRepositoryPolicy operation. This prevents accidental repository * lockouts.

*/ inline void SetForce(bool value) { m_forceHasBeenSet = true; m_force = value; } /** *

If the policy that you want to set on a repository policy would prevent you * from setting another policy in the future, you must force the * SetRepositoryPolicy operation. This prevents accidental repository * lockouts.

*/ inline SetRepositoryPolicyRequest& WithForce(bool value) { SetForce(value); return *this;} private: Aws::String m_registryId; bool m_registryIdHasBeenSet = false; Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::String m_policyText; bool m_policyTextHasBeenSet = false; bool m_force; bool m_forceHasBeenSet = false; }; } // namespace Model } // namespace ECRPublic } // namespace Aws