/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace APIGateway { namespace Model { /** *

Represents a usage plan than can specify who can assess associated API stages * with specified request limits and quotas.

In a * usage plan, you associate an API by specifying the API's Id and a stage name of * the specified API. You add plan customers by adding API keys to the plan.

*

See Also:

AWS * API Reference

*/ class AWS_APIGATEWAY_API UsagePlan { public: UsagePlan(); UsagePlan(Aws::Utils::Json::JsonView jsonValue); UsagePlan& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The identifier of a UsagePlan resource.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The identifier of a UsagePlan resource.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The identifier of a UsagePlan resource.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The identifier of a UsagePlan resource.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The identifier of a UsagePlan resource.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The identifier of a UsagePlan resource.

*/ inline UsagePlan& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The identifier of a UsagePlan resource.

*/ inline UsagePlan& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The identifier of a UsagePlan resource.

*/ inline UsagePlan& WithId(const char* value) { SetId(value); return *this;} /** *

The name of a usage plan.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of a usage plan.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of a usage plan.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of a usage plan.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of a usage plan.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of a usage plan.

*/ inline UsagePlan& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of a usage plan.

*/ inline UsagePlan& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of a usage plan.

*/ inline UsagePlan& WithName(const char* value) { SetName(value); return *this;} /** *

The description of a usage plan.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of a usage plan.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of a usage plan.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of a usage plan.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of a usage plan.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of a usage plan.

*/ inline UsagePlan& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of a usage plan.

*/ inline UsagePlan& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of a usage plan.

*/ inline UsagePlan& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The associated API stages of a usage plan.

*/ inline const Aws::Vector& GetApiStages() const{ return m_apiStages; } /** *

The associated API stages of a usage plan.

*/ inline bool ApiStagesHasBeenSet() const { return m_apiStagesHasBeenSet; } /** *

The associated API stages of a usage plan.

*/ inline void SetApiStages(const Aws::Vector& value) { m_apiStagesHasBeenSet = true; m_apiStages = value; } /** *

The associated API stages of a usage plan.

*/ inline void SetApiStages(Aws::Vector&& value) { m_apiStagesHasBeenSet = true; m_apiStages = std::move(value); } /** *

The associated API stages of a usage plan.

*/ inline UsagePlan& WithApiStages(const Aws::Vector& value) { SetApiStages(value); return *this;} /** *

The associated API stages of a usage plan.

*/ inline UsagePlan& WithApiStages(Aws::Vector&& value) { SetApiStages(std::move(value)); return *this;} /** *

The associated API stages of a usage plan.

*/ inline UsagePlan& AddApiStages(const ApiStage& value) { m_apiStagesHasBeenSet = true; m_apiStages.push_back(value); return *this; } /** *

The associated API stages of a usage plan.

*/ inline UsagePlan& AddApiStages(ApiStage&& value) { m_apiStagesHasBeenSet = true; m_apiStages.push_back(std::move(value)); return *this; } /** *

The request throttle limits of a usage plan.

*/ inline const ThrottleSettings& GetThrottle() const{ return m_throttle; } /** *

The request throttle limits of a usage plan.

*/ inline bool ThrottleHasBeenSet() const { return m_throttleHasBeenSet; } /** *

The request throttle limits of a usage plan.

*/ inline void SetThrottle(const ThrottleSettings& value) { m_throttleHasBeenSet = true; m_throttle = value; } /** *

The request throttle limits of a usage plan.

*/ inline void SetThrottle(ThrottleSettings&& value) { m_throttleHasBeenSet = true; m_throttle = std::move(value); } /** *

The request throttle limits of a usage plan.

*/ inline UsagePlan& WithThrottle(const ThrottleSettings& value) { SetThrottle(value); return *this;} /** *

The request throttle limits of a usage plan.

*/ inline UsagePlan& WithThrottle(ThrottleSettings&& value) { SetThrottle(std::move(value)); return *this;} /** *

The maximum number of permitted requests per a given unit time interval.

*/ inline const QuotaSettings& GetQuota() const{ return m_quota; } /** *

The maximum number of permitted requests per a given unit time interval.

*/ inline bool QuotaHasBeenSet() const { return m_quotaHasBeenSet; } /** *

The maximum number of permitted requests per a given unit time interval.

*/ inline void SetQuota(const QuotaSettings& value) { m_quotaHasBeenSet = true; m_quota = value; } /** *

The maximum number of permitted requests per a given unit time interval.

*/ inline void SetQuota(QuotaSettings&& value) { m_quotaHasBeenSet = true; m_quota = std::move(value); } /** *

The maximum number of permitted requests per a given unit time interval.

*/ inline UsagePlan& WithQuota(const QuotaSettings& value) { SetQuota(value); return *this;} /** *

The maximum number of permitted requests per a given unit time interval.

*/ inline UsagePlan& WithQuota(QuotaSettings&& value) { SetQuota(std::move(value)); return *this;} /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline const Aws::String& GetProductCode() const{ return m_productCode; } /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline bool ProductCodeHasBeenSet() const { return m_productCodeHasBeenSet; } /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline void SetProductCode(const Aws::String& value) { m_productCodeHasBeenSet = true; m_productCode = value; } /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline void SetProductCode(Aws::String&& value) { m_productCodeHasBeenSet = true; m_productCode = std::move(value); } /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline void SetProductCode(const char* value) { m_productCodeHasBeenSet = true; m_productCode.assign(value); } /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline UsagePlan& WithProductCode(const Aws::String& value) { SetProductCode(value); return *this;} /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline UsagePlan& WithProductCode(Aws::String&& value) { SetProductCode(std::move(value)); return *this;} /** *

The AWS Markeplace product identifier to associate with the usage plan as a * SaaS product on AWS Marketplace.

*/ inline UsagePlan& WithProductCode(const char* value) { SetProductCode(value); return *this;} /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline void SetTags(const Aws::Map& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline void SetTags(Aws::Map&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline UsagePlan& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } private: Aws::String m_id; bool m_idHasBeenSet; Aws::String m_name; bool m_nameHasBeenSet; Aws::String m_description; bool m_descriptionHasBeenSet; Aws::Vector m_apiStages; bool m_apiStagesHasBeenSet; ThrottleSettings m_throttle; bool m_throttleHasBeenSet; QuotaSettings m_quota; bool m_quotaHasBeenSet; Aws::String m_productCode; bool m_productCodeHasBeenSet; Aws::Map m_tags; bool m_tagsHasBeenSet; }; } // namespace Model } // namespace APIGateway } // namespace Aws