AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateSolNetworkPackageRequest.h
1
6#pragma once
7#include <aws/tnb/Tnb_EXPORTS.h>
8#include <aws/tnb/TnbRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/tnb/model/NsdOperationalState.h>
11#include <utility>
12
13namespace Aws
14{
15namespace tnb
16{
17namespace Model
18{
19
23 {
24 public:
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 "UpdateSolNetworkPackage"; }
32
33 AWS_TNB_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetNsdInfoId() const{ return m_nsdInfoId; }
41 inline bool NsdInfoIdHasBeenSet() const { return m_nsdInfoIdHasBeenSet; }
42 inline void SetNsdInfoId(const Aws::String& value) { m_nsdInfoIdHasBeenSet = true; m_nsdInfoId = value; }
43 inline void SetNsdInfoId(Aws::String&& value) { m_nsdInfoIdHasBeenSet = true; m_nsdInfoId = std::move(value); }
44 inline void SetNsdInfoId(const char* value) { m_nsdInfoIdHasBeenSet = true; m_nsdInfoId.assign(value); }
45 inline UpdateSolNetworkPackageRequest& WithNsdInfoId(const Aws::String& value) { SetNsdInfoId(value); return *this;}
46 inline UpdateSolNetworkPackageRequest& WithNsdInfoId(Aws::String&& value) { SetNsdInfoId(std::move(value)); return *this;}
47 inline UpdateSolNetworkPackageRequest& WithNsdInfoId(const char* value) { SetNsdInfoId(value); return *this;}
49
51
55 inline const NsdOperationalState& GetNsdOperationalState() const{ return m_nsdOperationalState; }
56 inline bool NsdOperationalStateHasBeenSet() const { return m_nsdOperationalStateHasBeenSet; }
57 inline void SetNsdOperationalState(const NsdOperationalState& value) { m_nsdOperationalStateHasBeenSet = true; m_nsdOperationalState = value; }
58 inline void SetNsdOperationalState(NsdOperationalState&& value) { m_nsdOperationalStateHasBeenSet = true; m_nsdOperationalState = std::move(value); }
62 private:
63
64 Aws::String m_nsdInfoId;
65 bool m_nsdInfoIdHasBeenSet = false;
66
67 NsdOperationalState m_nsdOperationalState;
68 bool m_nsdOperationalStateHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace tnb
73} // namespace Aws
UpdateSolNetworkPackageRequest & WithNsdInfoId(const char *value)
UpdateSolNetworkPackageRequest & WithNsdOperationalState(NsdOperationalState &&value)
virtual const char * GetServiceRequestName() const override
UpdateSolNetworkPackageRequest & WithNsdOperationalState(const NsdOperationalState &value)
AWS_TNB_API Aws::String SerializePayload() const override
UpdateSolNetworkPackageRequest & WithNsdInfoId(const Aws::String &value)
void SetNsdOperationalState(const NsdOperationalState &value)
UpdateSolNetworkPackageRequest & WithNsdInfoId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String