215 lines
7.5 KiB
C++
215 lines
7.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/robomaker/RoboMaker_EXPORTS.h>
|
|
#include <aws/robomaker/RoboMakerRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/robomaker/model/RobotSoftwareSuite.h>
|
|
#include <aws/robomaker/model/SourceConfig.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace RoboMaker
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_ROBOMAKER_API UpdateRobotApplicationRequest : public RoboMakerRequest
|
|
{
|
|
public:
|
|
UpdateRobotApplicationRequest();
|
|
|
|
// 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 "UpdateRobotApplication"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline const Aws::String& GetApplication() const{ return m_application; }
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline bool ApplicationHasBeenSet() const { return m_applicationHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline void SetApplication(const Aws::String& value) { m_applicationHasBeenSet = true; m_application = value; }
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline void SetApplication(Aws::String&& value) { m_applicationHasBeenSet = true; m_application = std::move(value); }
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline void SetApplication(const char* value) { m_applicationHasBeenSet = true; m_application.assign(value); }
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithApplication(const Aws::String& value) { SetApplication(value); return *this;}
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithApplication(Aws::String&& value) { SetApplication(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The application information for the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithApplication(const char* value) { SetApplication(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline const Aws::Vector<SourceConfig>& GetSources() const{ return m_sources; }
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline bool SourcesHasBeenSet() const { return m_sourcesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline void SetSources(const Aws::Vector<SourceConfig>& value) { m_sourcesHasBeenSet = true; m_sources = value; }
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline void SetSources(Aws::Vector<SourceConfig>&& value) { m_sourcesHasBeenSet = true; m_sources = std::move(value); }
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithSources(const Aws::Vector<SourceConfig>& value) { SetSources(value); return *this;}
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithSources(Aws::Vector<SourceConfig>&& value) { SetSources(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& AddSources(const SourceConfig& value) { m_sourcesHasBeenSet = true; m_sources.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The sources of the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& AddSources(SourceConfig&& value) { m_sourcesHasBeenSet = true; m_sources.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The robot software suite (ROS distribution) used by the robot
|
|
* application.</p>
|
|
*/
|
|
inline const RobotSoftwareSuite& GetRobotSoftwareSuite() const{ return m_robotSoftwareSuite; }
|
|
|
|
/**
|
|
* <p>The robot software suite (ROS distribution) used by the robot
|
|
* application.</p>
|
|
*/
|
|
inline bool RobotSoftwareSuiteHasBeenSet() const { return m_robotSoftwareSuiteHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The robot software suite (ROS distribution) used by the robot
|
|
* application.</p>
|
|
*/
|
|
inline void SetRobotSoftwareSuite(const RobotSoftwareSuite& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = value; }
|
|
|
|
/**
|
|
* <p>The robot software suite (ROS distribution) used by the robot
|
|
* application.</p>
|
|
*/
|
|
inline void SetRobotSoftwareSuite(RobotSoftwareSuite&& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = std::move(value); }
|
|
|
|
/**
|
|
* <p>The robot software suite (ROS distribution) used by the robot
|
|
* application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithRobotSoftwareSuite(const RobotSoftwareSuite& value) { SetRobotSoftwareSuite(value); return *this;}
|
|
|
|
/**
|
|
* <p>The robot software suite (ROS distribution) used by the robot
|
|
* application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithRobotSoftwareSuite(RobotSoftwareSuite&& value) { SetRobotSoftwareSuite(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline const Aws::String& GetCurrentRevisionId() const{ return m_currentRevisionId; }
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline bool CurrentRevisionIdHasBeenSet() const { return m_currentRevisionIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline void SetCurrentRevisionId(const Aws::String& value) { m_currentRevisionIdHasBeenSet = true; m_currentRevisionId = value; }
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline void SetCurrentRevisionId(Aws::String&& value) { m_currentRevisionIdHasBeenSet = true; m_currentRevisionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline void SetCurrentRevisionId(const char* value) { m_currentRevisionIdHasBeenSet = true; m_currentRevisionId.assign(value); }
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithCurrentRevisionId(const Aws::String& value) { SetCurrentRevisionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithCurrentRevisionId(Aws::String&& value) { SetCurrentRevisionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The revision id for the robot application.</p>
|
|
*/
|
|
inline UpdateRobotApplicationRequest& WithCurrentRevisionId(const char* value) { SetCurrentRevisionId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_application;
|
|
bool m_applicationHasBeenSet;
|
|
|
|
Aws::Vector<SourceConfig> m_sources;
|
|
bool m_sourcesHasBeenSet;
|
|
|
|
RobotSoftwareSuite m_robotSoftwareSuite;
|
|
bool m_robotSoftwareSuiteHasBeenSet;
|
|
|
|
Aws::String m_currentRevisionId;
|
|
bool m_currentRevisionIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RoboMaker
|
|
} // namespace Aws
|