128 lines
3.9 KiB
C++
128 lines
3.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iotsitewise/IoTSiteWise_EXPORTS.h>
|
|
#include <aws/iotsitewise/IoTSiteWiseRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IoTSiteWise
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_IOTSITEWISE_API UpdateGatewayRequest : public IoTSiteWiseRequest
|
|
{
|
|
public:
|
|
UpdateGatewayRequest();
|
|
|
|
// 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 "UpdateGateway"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline const Aws::String& GetGatewayId() const{ return m_gatewayId; }
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline void SetGatewayId(const Aws::String& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline void SetGatewayId(Aws::String&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline void SetGatewayId(const char* value) { m_gatewayIdHasBeenSet = true; m_gatewayId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline UpdateGatewayRequest& WithGatewayId(const Aws::String& value) { SetGatewayId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline UpdateGatewayRequest& WithGatewayId(Aws::String&& value) { SetGatewayId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the gateway to update.</p>
|
|
*/
|
|
inline UpdateGatewayRequest& WithGatewayId(const char* value) { SetGatewayId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline const Aws::String& GetGatewayName() const{ return m_gatewayName; }
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline bool GatewayNameHasBeenSet() const { return m_gatewayNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline void SetGatewayName(const Aws::String& value) { m_gatewayNameHasBeenSet = true; m_gatewayName = value; }
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline void SetGatewayName(Aws::String&& value) { m_gatewayNameHasBeenSet = true; m_gatewayName = std::move(value); }
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline void SetGatewayName(const char* value) { m_gatewayNameHasBeenSet = true; m_gatewayName.assign(value); }
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline UpdateGatewayRequest& WithGatewayName(const Aws::String& value) { SetGatewayName(value); return *this;}
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline UpdateGatewayRequest& WithGatewayName(Aws::String&& value) { SetGatewayName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A unique, friendly name for the gateway.</p>
|
|
*/
|
|
inline UpdateGatewayRequest& WithGatewayName(const char* value) { SetGatewayName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_gatewayId;
|
|
bool m_gatewayIdHasBeenSet;
|
|
|
|
Aws::String m_gatewayName;
|
|
bool m_gatewayNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IoTSiteWise
|
|
} // namespace Aws
|