129 lines
4.7 KiB
C++
129 lines
4.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/codeguruprofiler/CodeGuruProfiler_EXPORTS.h>
|
|
#include <aws/codeguruprofiler/CodeGuruProfilerRequest.h>
|
|
#include <aws/codeguruprofiler/model/AgentOrchestrationConfig.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CodeGuruProfiler
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>The structure representing the updateProfilingGroupRequest.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/codeguruprofiler-2019-07-18/UpdateProfilingGroupRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_CODEGURUPROFILER_API UpdateProfilingGroupRequest : public CodeGuruProfilerRequest
|
|
{
|
|
public:
|
|
UpdateProfilingGroupRequest();
|
|
|
|
// 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 "UpdateProfilingGroup"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p> Specifies whether profiling is enabled or disabled for a profiling group.
|
|
* </p>
|
|
*/
|
|
inline const AgentOrchestrationConfig& GetAgentOrchestrationConfig() const{ return m_agentOrchestrationConfig; }
|
|
|
|
/**
|
|
* <p> Specifies whether profiling is enabled or disabled for a profiling group.
|
|
* </p>
|
|
*/
|
|
inline bool AgentOrchestrationConfigHasBeenSet() const { return m_agentOrchestrationConfigHasBeenSet; }
|
|
|
|
/**
|
|
* <p> Specifies whether profiling is enabled or disabled for a profiling group.
|
|
* </p>
|
|
*/
|
|
inline void SetAgentOrchestrationConfig(const AgentOrchestrationConfig& value) { m_agentOrchestrationConfigHasBeenSet = true; m_agentOrchestrationConfig = value; }
|
|
|
|
/**
|
|
* <p> Specifies whether profiling is enabled or disabled for a profiling group.
|
|
* </p>
|
|
*/
|
|
inline void SetAgentOrchestrationConfig(AgentOrchestrationConfig&& value) { m_agentOrchestrationConfigHasBeenSet = true; m_agentOrchestrationConfig = std::move(value); }
|
|
|
|
/**
|
|
* <p> Specifies whether profiling is enabled or disabled for a profiling group.
|
|
* </p>
|
|
*/
|
|
inline UpdateProfilingGroupRequest& WithAgentOrchestrationConfig(const AgentOrchestrationConfig& value) { SetAgentOrchestrationConfig(value); return *this;}
|
|
|
|
/**
|
|
* <p> Specifies whether profiling is enabled or disabled for a profiling group.
|
|
* </p>
|
|
*/
|
|
inline UpdateProfilingGroupRequest& WithAgentOrchestrationConfig(AgentOrchestrationConfig&& value) { SetAgentOrchestrationConfig(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline const Aws::String& GetProfilingGroupName() const{ return m_profilingGroupName; }
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline bool ProfilingGroupNameHasBeenSet() const { return m_profilingGroupNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline void SetProfilingGroupName(const Aws::String& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = value; }
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline void SetProfilingGroupName(Aws::String&& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline void SetProfilingGroupName(const char* value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline UpdateProfilingGroupRequest& WithProfilingGroupName(const Aws::String& value) { SetProfilingGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline UpdateProfilingGroupRequest& WithProfilingGroupName(Aws::String&& value) { SetProfilingGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the profiling group to update.</p>
|
|
*/
|
|
inline UpdateProfilingGroupRequest& WithProfilingGroupName(const char* value) { SetProfilingGroupName(value); return *this;}
|
|
|
|
private:
|
|
|
|
AgentOrchestrationConfig m_agentOrchestrationConfig;
|
|
bool m_agentOrchestrationConfigHasBeenSet;
|
|
|
|
Aws::String m_profilingGroupName;
|
|
bool m_profilingGroupNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CodeGuruProfiler
|
|
} // namespace Aws
|