/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The PATCH request to update a usage plan of a given plan Id.See
* Also:
AWS
* API Reference
The Id of the to-be-updated usage plan.
*/ inline const Aws::String& GetUsagePlanId() const{ return m_usagePlanId; } /** *The Id of the to-be-updated usage plan.
*/ inline bool UsagePlanIdHasBeenSet() const { return m_usagePlanIdHasBeenSet; } /** *The Id of the to-be-updated usage plan.
*/ inline void SetUsagePlanId(const Aws::String& value) { m_usagePlanIdHasBeenSet = true; m_usagePlanId = value; } /** *The Id of the to-be-updated usage plan.
*/ inline void SetUsagePlanId(Aws::String&& value) { m_usagePlanIdHasBeenSet = true; m_usagePlanId = std::move(value); } /** *The Id of the to-be-updated usage plan.
*/ inline void SetUsagePlanId(const char* value) { m_usagePlanIdHasBeenSet = true; m_usagePlanId.assign(value); } /** *The Id of the to-be-updated usage plan.
*/ inline UpdateUsagePlanRequest& WithUsagePlanId(const Aws::String& value) { SetUsagePlanId(value); return *this;} /** *The Id of the to-be-updated usage plan.
*/ inline UpdateUsagePlanRequest& WithUsagePlanId(Aws::String&& value) { SetUsagePlanId(std::move(value)); return *this;} /** *The Id of the to-be-updated usage plan.
*/ inline UpdateUsagePlanRequest& WithUsagePlanId(const char* value) { SetUsagePlanId(value); return *this;} /** *For more information about supported patch operations, see Patch * Operations.
*/ inline const Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline bool PatchOperationsHasBeenSet() const { return m_patchOperationsHasBeenSet; } /** *For more information about supported patch operations, see Patch * Operations.
*/ inline void SetPatchOperations(const Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline void SetPatchOperations(Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline UpdateUsagePlanRequest& WithPatchOperations(const Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline UpdateUsagePlanRequest& WithPatchOperations(Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline UpdateUsagePlanRequest& AddPatchOperations(const PatchOperation& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(value); return *this; } /** *For more information about supported patch operations, see Patch * Operations.
*/ inline UpdateUsagePlanRequest& AddPatchOperations(PatchOperation&& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(std::move(value)); return *this; } private: Aws::String m_usagePlanId; bool m_usagePlanIdHasBeenSet = false; Aws::Vector