/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace RDS { namespace Model { /** *

See Also:

AWS * API Reference

*/ class ResetDBParameterGroupRequest : public RDSRequest { public: AWS_RDS_API ResetDBParameterGroupRequest(); // 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 "ResetDBParameterGroup"; } AWS_RDS_API Aws::String SerializePayload() const override; protected: AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline const Aws::String& GetDBParameterGroupName() const{ return m_dBParameterGroupName; } /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; } /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline void SetDBParameterGroupName(const Aws::String& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = value; } /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline void SetDBParameterGroupName(Aws::String&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::move(value); } /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline void SetDBParameterGroupName(const char* value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName.assign(value); } /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline ResetDBParameterGroupRequest& WithDBParameterGroupName(const Aws::String& value) { SetDBParameterGroupName(value); return *this;} /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline ResetDBParameterGroupRequest& WithDBParameterGroupName(Aws::String&& value) { SetDBParameterGroupName(std::move(value)); return *this;} /** *

The name of the DB parameter group.

Constraints:

  • Must * match the name of an existing DBParameterGroup.

*/ inline ResetDBParameterGroupRequest& WithDBParameterGroupName(const char* value) { SetDBParameterGroupName(value); return *this;} /** *

A value that indicates whether to reset all parameters in the DB parameter * group to default values. By default, all parameters in the DB parameter group * are reset to default values.

*/ inline bool GetResetAllParameters() const{ return m_resetAllParameters; } /** *

A value that indicates whether to reset all parameters in the DB parameter * group to default values. By default, all parameters in the DB parameter group * are reset to default values.

*/ inline bool ResetAllParametersHasBeenSet() const { return m_resetAllParametersHasBeenSet; } /** *

A value that indicates whether to reset all parameters in the DB parameter * group to default values. By default, all parameters in the DB parameter group * are reset to default values.

*/ inline void SetResetAllParameters(bool value) { m_resetAllParametersHasBeenSet = true; m_resetAllParameters = value; } /** *

A value that indicates whether to reset all parameters in the DB parameter * group to default values. By default, all parameters in the DB parameter group * are reset to default values.

*/ inline ResetDBParameterGroupRequest& WithResetAllParameters(bool value) { SetResetAllParameters(value); return *this;} /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline const Aws::Vector& GetParameters() const{ return m_parameters; } /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline void SetParameters(const Aws::Vector& value) { m_parametersHasBeenSet = true; m_parameters = value; } /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline void SetParameters(Aws::Vector&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); } /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline ResetDBParameterGroupRequest& WithParameters(const Aws::Vector& value) { SetParameters(value); return *this;} /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline ResetDBParameterGroupRequest& WithParameters(Aws::Vector&& value) { SetParameters(std::move(value)); return *this;} /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline ResetDBParameterGroupRequest& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; } /** *

To reset the entire DB parameter group, specify the * DBParameterGroup name and ResetAllParameters * parameters. To reset specific parameters, provide a list of the following: * ParameterName and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

MySQL

*

Valid Values (for Apply method): immediate | * pending-reboot

You can use the immediate value with dynamic * parameters only. You can use the pending-reboot value for both * dynamic and static parameters, and changes are applied when DB instance * reboots.

MariaDB

Valid Values (for Apply method): * immediate | pending-reboot

You can use the * immediate value with dynamic parameters only. You can use the * pending-reboot value for both dynamic and static parameters, and * changes are applied when DB instance reboots.

Oracle

*

Valid Values (for Apply method): pending-reboot

*/ inline ResetDBParameterGroupRequest& AddParameters(Parameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; } private: Aws::String m_dBParameterGroupName; bool m_dBParameterGroupNameHasBeenSet = false; bool m_resetAllParameters; bool m_resetAllParametersHasBeenSet = false; Aws::Vector m_parameters; bool m_parametersHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws