AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateWirelessGatewayRequest.h
1
6#pragma once
7#include <aws/iotwireless/IoTWireless_EXPORTS.h>
8#include <aws/iotwireless/IoTWirelessRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoTWireless
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IOTWIRELESS_API UpdateWirelessGatewayRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateWirelessGateway"; }
32
33 AWS_IOTWIRELESS_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetId() const { return m_id; }
41 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
42 template<typename IdT = Aws::String>
43 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
44 template<typename IdT = Aws::String>
45 UpdateWirelessGatewayRequest& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
47
49
53 inline const Aws::String& GetName() const { return m_name; }
54 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
55 template<typename NameT = Aws::String>
56 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
57 template<typename NameT = Aws::String>
58 UpdateWirelessGatewayRequest& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
60
62
65 inline const Aws::String& GetDescription() const { return m_description; }
66 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
67 template<typename DescriptionT = Aws::String>
68 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
69 template<typename DescriptionT = Aws::String>
70 UpdateWirelessGatewayRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
72
74
75 inline const Aws::Vector<Aws::Vector<Aws::String>>& GetJoinEuiFilters() const { return m_joinEuiFilters; }
76 inline bool JoinEuiFiltersHasBeenSet() const { return m_joinEuiFiltersHasBeenSet; }
77 template<typename JoinEuiFiltersT = Aws::Vector<Aws::Vector<Aws::String>>>
78 void SetJoinEuiFilters(JoinEuiFiltersT&& value) { m_joinEuiFiltersHasBeenSet = true; m_joinEuiFilters = std::forward<JoinEuiFiltersT>(value); }
79 template<typename JoinEuiFiltersT = Aws::Vector<Aws::Vector<Aws::String>>>
80 UpdateWirelessGatewayRequest& WithJoinEuiFilters(JoinEuiFiltersT&& value) { SetJoinEuiFilters(std::forward<JoinEuiFiltersT>(value)); return *this;}
81 template<typename JoinEuiFiltersT = Aws::Vector<Aws::String>>
82 UpdateWirelessGatewayRequest& AddJoinEuiFilters(JoinEuiFiltersT&& value) { m_joinEuiFiltersHasBeenSet = true; m_joinEuiFilters.emplace_back(std::forward<JoinEuiFiltersT>(value)); return *this; }
84
86
87 inline const Aws::Vector<Aws::String>& GetNetIdFilters() const { return m_netIdFilters; }
88 inline bool NetIdFiltersHasBeenSet() const { return m_netIdFiltersHasBeenSet; }
89 template<typename NetIdFiltersT = Aws::Vector<Aws::String>>
90 void SetNetIdFilters(NetIdFiltersT&& value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters = std::forward<NetIdFiltersT>(value); }
91 template<typename NetIdFiltersT = Aws::Vector<Aws::String>>
92 UpdateWirelessGatewayRequest& WithNetIdFilters(NetIdFiltersT&& value) { SetNetIdFilters(std::forward<NetIdFiltersT>(value)); return *this;}
93 template<typename NetIdFiltersT = Aws::String>
94 UpdateWirelessGatewayRequest& AddNetIdFilters(NetIdFiltersT&& value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters.emplace_back(std::forward<NetIdFiltersT>(value)); return *this; }
96
98
101 inline double GetMaxEirp() const { return m_maxEirp; }
102 inline bool MaxEirpHasBeenSet() const { return m_maxEirpHasBeenSet; }
103 inline void SetMaxEirp(double value) { m_maxEirpHasBeenSet = true; m_maxEirp = value; }
104 inline UpdateWirelessGatewayRequest& WithMaxEirp(double value) { SetMaxEirp(value); return *this;}
106 private:
107
108 Aws::String m_id;
109 bool m_idHasBeenSet = false;
110
111 Aws::String m_name;
112 bool m_nameHasBeenSet = false;
113
114 Aws::String m_description;
115 bool m_descriptionHasBeenSet = false;
116
117 Aws::Vector<Aws::Vector<Aws::String>> m_joinEuiFilters;
118 bool m_joinEuiFiltersHasBeenSet = false;
119
120 Aws::Vector<Aws::String> m_netIdFilters;
121 bool m_netIdFiltersHasBeenSet = false;
122
123 double m_maxEirp{0.0};
124 bool m_maxEirpHasBeenSet = false;
125 };
126
127} // namespace Model
128} // namespace IoTWireless
129} // namespace Aws
UpdateWirelessGatewayRequest & WithMaxEirp(double value)
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
UpdateWirelessGatewayRequest & AddNetIdFilters(NetIdFiltersT &&value)
UpdateWirelessGatewayRequest & WithName(NameT &&value)
AWS_IOTWIRELESS_API UpdateWirelessGatewayRequest()=default
UpdateWirelessGatewayRequest & WithDescription(DescriptionT &&value)
UpdateWirelessGatewayRequest & AddJoinEuiFilters(JoinEuiFiltersT &&value)
UpdateWirelessGatewayRequest & WithJoinEuiFilters(JoinEuiFiltersT &&value)
const Aws::Vector< Aws::String > & GetNetIdFilters() const
const Aws::Vector< Aws::Vector< Aws::String > > & GetJoinEuiFilters() const
UpdateWirelessGatewayRequest & WithNetIdFilters(NetIdFiltersT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector