AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetUpdateInstructionBatch(const Aws::Vector<UpdateInstruction>& value) { m_updateInstructionBatchHasBeenSet = true; m_updateInstructionBatch = value; }
44 inline void SetUpdateInstructionBatch(Aws::Vector<UpdateInstruction>&& value) { m_updateInstructionBatchHasBeenSet = true; m_updateInstructionBatch = std::move(value); }
47 inline UpdatePermissionsRequest& AddUpdateInstructionBatch(const UpdateInstruction& value) { m_updateInstructionBatchHasBeenSet = true; m_updateInstructionBatch.push_back(value); return *this; }
48 inline UpdatePermissionsRequest& AddUpdateInstructionBatch(UpdateInstruction&& value) { m_updateInstructionBatchHasBeenSet = true; m_updateInstructionBatch.push_back(std::move(value)); return *this; }
50
52
55 inline const Aws::String& GetWorkspaceId() const{ return m_workspaceId; }
56 inline bool WorkspaceIdHasBeenSet() const { return m_workspaceIdHasBeenSet; }
57 inline void SetWorkspaceId(const Aws::String& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = value; }
58 inline void SetWorkspaceId(Aws::String&& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = std::move(value); }
59 inline void SetWorkspaceId(const char* value) { m_workspaceIdHasBeenSet = true; m_workspaceId.assign(value); }
60 inline UpdatePermissionsRequest& WithWorkspaceId(const Aws::String& value) { SetWorkspaceId(value); return *this;}
61 inline UpdatePermissionsRequest& WithWorkspaceId(Aws::String&& value) { SetWorkspaceId(std::move(value)); return *this;}
62 inline UpdatePermissionsRequest& WithWorkspaceId(const char* value) { SetWorkspaceId(value); return *this;}
64 private:
65
66 Aws::Vector<UpdateInstruction> m_updateInstructionBatch;
67 bool m_updateInstructionBatchHasBeenSet = false;
68
69 Aws::String m_workspaceId;
70 bool m_workspaceIdHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace ManagedGrafana
75} // namespace Aws
UpdatePermissionsRequest & WithWorkspaceId(const Aws::String &value)
UpdatePermissionsRequest & WithUpdateInstructionBatch(const Aws::Vector< UpdateInstruction > &value)
UpdatePermissionsRequest & WithWorkspaceId(Aws::String &&value)
void SetUpdateInstructionBatch(Aws::Vector< UpdateInstruction > &&value)
void SetUpdateInstructionBatch(const Aws::Vector< UpdateInstruction > &value)
AWS_MANAGEDGRAFANA_API Aws::String SerializePayload() const override
UpdatePermissionsRequest & AddUpdateInstructionBatch(UpdateInstruction &&value)
UpdatePermissionsRequest & AddUpdateInstructionBatch(const UpdateInstruction &value)
UpdatePermissionsRequest & WithWorkspaceId(const char *value)
UpdatePermissionsRequest & WithUpdateInstructionBatch(Aws::Vector< UpdateInstruction > &&value)
virtual const char * GetServiceRequestName() const override
const Aws::Vector< UpdateInstruction > & GetUpdateInstructionBatch() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector