AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
25 AWS_TNB_API UpdateSolNetworkPackageRequest() = 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 "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 template<typename NsdInfoIdT = Aws::String>
43 void SetNsdInfoId(NsdInfoIdT&& value) { m_nsdInfoIdHasBeenSet = true; m_nsdInfoId = std::forward<NsdInfoIdT>(value); }
44 template<typename NsdInfoIdT = Aws::String>
45 UpdateSolNetworkPackageRequest& WithNsdInfoId(NsdInfoIdT&& value) { SetNsdInfoId(std::forward<NsdInfoIdT>(value)); return *this;}
47
49
53 inline NsdOperationalState GetNsdOperationalState() const { return m_nsdOperationalState; }
54 inline bool NsdOperationalStateHasBeenSet() const { return m_nsdOperationalStateHasBeenSet; }
55 inline void SetNsdOperationalState(NsdOperationalState value) { m_nsdOperationalStateHasBeenSet = true; m_nsdOperationalState = value; }
58 private:
59
60 Aws::String m_nsdInfoId;
61 bool m_nsdInfoIdHasBeenSet = false;
62
64 bool m_nsdOperationalStateHasBeenSet = false;
65 };
66
67} // namespace Model
68} // namespace tnb
69} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_TNB_API Aws::String SerializePayload() const override
UpdateSolNetworkPackageRequest & WithNsdOperationalState(NsdOperationalState value)
UpdateSolNetworkPackageRequest & WithNsdInfoId(NsdInfoIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String