AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
UpdatePermissionsRequest.h
1
6#pragma once
7#include <aws/grafana/ManagedGrafana_EXPORTS.h>
8#include <aws/grafana/ManagedGrafanaRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/grafana/model/UpdateInstruction.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ManagedGrafana
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_MANAGEDGRAFANA_API UpdatePermissionsRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdatePermissions"; }
33
34 AWS_MANAGEDGRAFANA_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::Vector<UpdateInstruction>& GetUpdateInstructionBatch() const { return m_updateInstructionBatch; }
42 inline bool UpdateInstructionBatchHasBeenSet() const { return m_updateInstructionBatchHasBeenSet; }
43 template<typename UpdateInstructionBatchT = Aws::Vector<UpdateInstruction>>
44 void SetUpdateInstructionBatch(UpdateInstructionBatchT&& value) { m_updateInstructionBatchHasBeenSet = true; m_updateInstructionBatch = std::forward<UpdateInstructionBatchT>(value); }
45 template<typename UpdateInstructionBatchT = Aws::Vector<UpdateInstruction>>
46 UpdatePermissionsRequest& WithUpdateInstructionBatch(UpdateInstructionBatchT&& value) { SetUpdateInstructionBatch(std::forward<UpdateInstructionBatchT>(value)); return *this;}
47 template<typename UpdateInstructionBatchT = UpdateInstruction>
48 UpdatePermissionsRequest& AddUpdateInstructionBatch(UpdateInstructionBatchT&& value) { m_updateInstructionBatchHasBeenSet = true; m_updateInstructionBatch.emplace_back(std::forward<UpdateInstructionBatchT>(value)); return *this; }
50
52
55 inline const Aws::String& GetWorkspaceId() const { return m_workspaceId; }
56 inline bool WorkspaceIdHasBeenSet() const { return m_workspaceIdHasBeenSet; }
57 template<typename WorkspaceIdT = Aws::String>
58 void SetWorkspaceId(WorkspaceIdT&& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = std::forward<WorkspaceIdT>(value); }
59 template<typename WorkspaceIdT = Aws::String>
60 UpdatePermissionsRequest& WithWorkspaceId(WorkspaceIdT&& value) { SetWorkspaceId(std::forward<WorkspaceIdT>(value)); return *this;}
62 private:
63
64 Aws::Vector<UpdateInstruction> m_updateInstructionBatch;
65 bool m_updateInstructionBatchHasBeenSet = false;
66
67 Aws::String m_workspaceId;
68 bool m_workspaceIdHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace ManagedGrafana
73} // namespace Aws
UpdatePermissionsRequest & WithUpdateInstructionBatch(UpdateInstructionBatchT &&value)
AWS_MANAGEDGRAFANA_API Aws::String SerializePayload() const override
UpdatePermissionsRequest & WithWorkspaceId(WorkspaceIdT &&value)
void SetUpdateInstructionBatch(UpdateInstructionBatchT &&value)
AWS_MANAGEDGRAFANA_API UpdatePermissionsRequest()=default
virtual const char * GetServiceRequestName() const override
const Aws::Vector< UpdateInstruction > & GetUpdateInstructionBatch() const
UpdatePermissionsRequest & AddUpdateInstructionBatch(UpdateInstructionBatchT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector