189 lines
7.8 KiB
C++
189 lines
7.8 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/ResetDBClusterParameterGroupMessage">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_RDS_API ResetDBClusterParameterGroupRequest : public RDSRequest
|
|
{
|
|
public:
|
|
ResetDBClusterParameterGroupRequest();
|
|
|
|
// 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 "ResetDBClusterParameterGroup"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = value; }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group to reset.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(const char* value) { SetDBClusterParameterGroupName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A value that indicates whether to reset all parameters in the DB cluster
|
|
* parameter group to their default values. You can't use this parameter if there
|
|
* is a list of parameter names specified for the <code>Parameters</code>
|
|
* parameter.</p>
|
|
*/
|
|
inline bool GetResetAllParameters() const{ return m_resetAllParameters; }
|
|
|
|
/**
|
|
* <p>A value that indicates whether to reset all parameters in the DB cluster
|
|
* parameter group to their default values. You can't use this parameter if there
|
|
* is a list of parameter names specified for the <code>Parameters</code>
|
|
* parameter.</p>
|
|
*/
|
|
inline bool ResetAllParametersHasBeenSet() const { return m_resetAllParametersHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A value that indicates whether to reset all parameters in the DB cluster
|
|
* parameter group to their default values. You can't use this parameter if there
|
|
* is a list of parameter names specified for the <code>Parameters</code>
|
|
* parameter.</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 cluster
|
|
* parameter group to their default values. You can't use this parameter if there
|
|
* is a list of parameter names specified for the <code>Parameters</code>
|
|
* parameter.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& WithResetAllParameters(bool value) { SetResetAllParameters(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline const Aws::Vector<Parameter>& GetParameters() const{ return m_parameters; }
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline void SetParameters(const Aws::Vector<Parameter>& value) { m_parametersHasBeenSet = true; m_parameters = value; }
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline void SetParameters(Aws::Vector<Parameter>&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); }
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& WithParameters(const Aws::Vector<Parameter>& value) { SetParameters(value); return *this;}
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& WithParameters(Aws::Vector<Parameter>&& value) { SetParameters(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>A list of parameter names in the DB cluster parameter group to reset to the
|
|
* default values. You can't use this parameter if the
|
|
* <code>ResetAllParameters</code> parameter is enabled.</p>
|
|
*/
|
|
inline ResetDBClusterParameterGroupRequest& AddParameters(Parameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_dBClusterParameterGroupName;
|
|
bool m_dBClusterParameterGroupNameHasBeenSet;
|
|
|
|
bool m_resetAllParameters;
|
|
bool m_resetAllParametersHasBeenSet;
|
|
|
|
Aws::Vector<Parameter> m_parameters;
|
|
bool m_parametersHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RDS
|
|
} // namespace Aws
|