289 lines
16 KiB
C
289 lines
16 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/rds/RDS_EXPORTS.h>
|
|||
|
|
#include <aws/rds/RDSRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/rds/model/Parameter.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace RDS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p/><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBParameterGroupMessage">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_RDS_API ResetDBParameterGroupRequest : public RDSRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
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::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
protected:
|
|||
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetDBParameterGroupName() const{ return m_dBParameterGroupName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetDBParameterGroupName(const Aws::String& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetDBParameterGroupName(Aws::String&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline void SetDBParameterGroupName(const char* value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& WithDBParameterGroupName(const Aws::String& value) { SetDBParameterGroupName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& WithDBParameterGroupName(Aws::String&& value) { SetDBParameterGroupName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the DB parameter group.</p> <p>Constraints:</p> <ul> <li> <p>Must
|
|||
|
|
* match the name of an existing <code>DBParameterGroup</code>.</p> </li> </ul>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& WithDBParameterGroupName(const char* value) { SetDBParameterGroupName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> 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. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool GetResetAllParameters() const{ return m_resetAllParameters; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> 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. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool ResetAllParametersHasBeenSet() const { return m_resetAllParametersHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> 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. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResetAllParameters(bool value) { m_resetAllParametersHasBeenSet = true; m_resetAllParameters = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> 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. </p>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& WithResetAllParameters(bool value) { SetResetAllParameters(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Parameter>& GetParameters() const{ return m_parameters; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetParameters(const Aws::Vector<Parameter>& value) { m_parametersHasBeenSet = true; m_parameters = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetParameters(Aws::Vector<Parameter>&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& WithParameters(const Aws::Vector<Parameter>& value) { SetParameters(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& WithParameters(Aws::Vector<Parameter>&& value) { SetParameters(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
inline ResetDBParameterGroupRequest& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>To reset the entire DB parameter group, specify the
|
|||
|
|
* <code>DBParameterGroup</code> name and <code>ResetAllParameters</code>
|
|||
|
|
* parameters. To reset specific parameters, provide a list of the following:
|
|||
|
|
* <code>ParameterName</code> and <code>ApplyMethod</code>. A maximum of 20
|
|||
|
|
* parameters can be modified in a single request.</p> <p> <b>MySQL</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>immediate</code> |
|
|||
|
|
* <code>pending-reboot</code> </p> <p>You can use the immediate value with dynamic
|
|||
|
|
* parameters only. You can use the <code>pending-reboot</code> value for both
|
|||
|
|
* dynamic and static parameters, and changes are applied when DB instance
|
|||
|
|
* reboots.</p> <p> <b>MariaDB</b> </p> <p>Valid Values (for Apply method):
|
|||
|
|
* <code>immediate</code> | <code>pending-reboot</code> </p> <p>You can use the
|
|||
|
|
* immediate value with dynamic parameters only. You can use the
|
|||
|
|
* <code>pending-reboot</code> value for both dynamic and static parameters, and
|
|||
|
|
* changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p>
|
|||
|
|
* <p>Valid Values (for Apply method): <code>pending-reboot</code> </p>
|
|||
|
|
*/
|
|||
|
|
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;
|
|||
|
|
|
|||
|
|
bool m_resetAllParameters;
|
|||
|
|
bool m_resetAllParametersHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<Parameter> m_parameters;
|
|||
|
|
bool m_parametersHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace RDS
|
|||
|
|
} // namespace Aws
|