AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
43 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
44 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
45 inline UpdateWirelessGatewayRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
46 inline UpdateWirelessGatewayRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
47 inline UpdateWirelessGatewayRequest& WithId(const char* value) { SetId(value); return *this;}
49
51
54 inline const Aws::String& GetName() const{ return m_name; }
55 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
56 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
57 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
58 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
59 inline UpdateWirelessGatewayRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
60 inline UpdateWirelessGatewayRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
61 inline UpdateWirelessGatewayRequest& WithName(const char* value) { SetName(value); return *this;}
63
65
68 inline const Aws::String& GetDescription() const{ return m_description; }
69 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
70 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
71 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
72 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
73 inline UpdateWirelessGatewayRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
74 inline UpdateWirelessGatewayRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
75 inline UpdateWirelessGatewayRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
77
79
80 inline const Aws::Vector<Aws::Vector<Aws::String>>& GetJoinEuiFilters() const{ return m_joinEuiFilters; }
81 inline bool JoinEuiFiltersHasBeenSet() const { return m_joinEuiFiltersHasBeenSet; }
82 inline void SetJoinEuiFilters(const Aws::Vector<Aws::Vector<Aws::String>>& value) { m_joinEuiFiltersHasBeenSet = true; m_joinEuiFilters = value; }
83 inline void SetJoinEuiFilters(Aws::Vector<Aws::Vector<Aws::String>>&& value) { m_joinEuiFiltersHasBeenSet = true; m_joinEuiFilters = std::move(value); }
86 inline UpdateWirelessGatewayRequest& AddJoinEuiFilters(const Aws::Vector<Aws::String>& value) { m_joinEuiFiltersHasBeenSet = true; m_joinEuiFilters.push_back(value); return *this; }
87 inline UpdateWirelessGatewayRequest& AddJoinEuiFilters(Aws::Vector<Aws::String>&& value) { m_joinEuiFiltersHasBeenSet = true; m_joinEuiFilters.push_back(std::move(value)); return *this; }
89
91
92 inline const Aws::Vector<Aws::String>& GetNetIdFilters() const{ return m_netIdFilters; }
93 inline bool NetIdFiltersHasBeenSet() const { return m_netIdFiltersHasBeenSet; }
94 inline void SetNetIdFilters(const Aws::Vector<Aws::String>& value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters = value; }
95 inline void SetNetIdFilters(Aws::Vector<Aws::String>&& value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters = std::move(value); }
98 inline UpdateWirelessGatewayRequest& AddNetIdFilters(const Aws::String& value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters.push_back(value); return *this; }
99 inline UpdateWirelessGatewayRequest& AddNetIdFilters(Aws::String&& value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters.push_back(std::move(value)); return *this; }
100 inline UpdateWirelessGatewayRequest& AddNetIdFilters(const char* value) { m_netIdFiltersHasBeenSet = true; m_netIdFilters.push_back(value); return *this; }
102
104
107 inline double GetMaxEirp() const{ return m_maxEirp; }
108 inline bool MaxEirpHasBeenSet() const { return m_maxEirpHasBeenSet; }
109 inline void SetMaxEirp(double value) { m_maxEirpHasBeenSet = true; m_maxEirp = value; }
110 inline UpdateWirelessGatewayRequest& WithMaxEirp(double value) { SetMaxEirp(value); return *this;}
112 private:
113
114 Aws::String m_id;
115 bool m_idHasBeenSet = false;
116
117 Aws::String m_name;
118 bool m_nameHasBeenSet = false;
119
120 Aws::String m_description;
121 bool m_descriptionHasBeenSet = false;
122
123 Aws::Vector<Aws::Vector<Aws::String>> m_joinEuiFilters;
124 bool m_joinEuiFiltersHasBeenSet = false;
125
126 Aws::Vector<Aws::String> m_netIdFilters;
127 bool m_netIdFiltersHasBeenSet = false;
128
129 double m_maxEirp;
130 bool m_maxEirpHasBeenSet = false;
131 };
132
133} // namespace Model
134} // namespace IoTWireless
135} // namespace Aws
UpdateWirelessGatewayRequest & WithMaxEirp(double value)
UpdateWirelessGatewayRequest & WithJoinEuiFilters(Aws::Vector< Aws::Vector< Aws::String > > &&value)
UpdateWirelessGatewayRequest & AddJoinEuiFilters(Aws::Vector< Aws::String > &&value)
UpdateWirelessGatewayRequest & WithNetIdFilters(Aws::Vector< Aws::String > &&value)
UpdateWirelessGatewayRequest & WithNetIdFilters(const Aws::Vector< Aws::String > &value)
UpdateWirelessGatewayRequest & WithName(const Aws::String &value)
UpdateWirelessGatewayRequest & AddNetIdFilters(Aws::String &&value)
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
UpdateWirelessGatewayRequest & AddNetIdFilters(const Aws::String &value)
UpdateWirelessGatewayRequest & WithDescription(Aws::String &&value)
UpdateWirelessGatewayRequest & WithDescription(const Aws::String &value)
void SetJoinEuiFilters(const Aws::Vector< Aws::Vector< Aws::String > > &value)
UpdateWirelessGatewayRequest & WithName(const char *value)
void SetNetIdFilters(const Aws::Vector< Aws::String > &value)
UpdateWirelessGatewayRequest & AddJoinEuiFilters(const Aws::Vector< Aws::String > &value)
UpdateWirelessGatewayRequest & WithDescription(const char *value)
UpdateWirelessGatewayRequest & WithName(Aws::String &&value)
void SetJoinEuiFilters(Aws::Vector< Aws::Vector< Aws::String > > &&value)
UpdateWirelessGatewayRequest & WithId(const Aws::String &value)
const Aws::Vector< Aws::String > & GetNetIdFilters() const
UpdateWirelessGatewayRequest & AddNetIdFilters(const char *value)
const Aws::Vector< Aws::Vector< Aws::String > > & GetJoinEuiFilters() const
UpdateWirelessGatewayRequest & WithId(Aws::String &&value)
UpdateWirelessGatewayRequest & WithId(const char *value)
UpdateWirelessGatewayRequest & WithJoinEuiFilters(const Aws::Vector< Aws::Vector< Aws::String > > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector