AWS SDK for C++

AWS SDK for C++ Version 1.11.883

Loading...
Searching...
No Matches
UpdatedDescriptorsFields.h
1
6#pragma once
7#include <aws/agent-registry-control/AgentRegistryControl_EXPORTS.h>
8#include <aws/agent-registry-control/model/UpdatedA2aAgentCardDescriptor.h>
9#include <aws/agent-registry-control/model/UpdatedAgUiDescriptor.h>
10#include <aws/agent-registry-control/model/UpdatedAgentSkillsDefinitionDescriptor.h>
11#include <aws/agent-registry-control/model/UpdatedCustomDescriptor.h>
12#include <aws/agent-registry-control/model/UpdatedHttpDescriptor.h>
13#include <aws/agent-registry-control/model/UpdatedMcpServerDescriptor.h>
14
15#include <utility>
16
17namespace Aws {
18namespace Utils {
19namespace Json {
20class JsonValue;
21class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace AgentRegistryControl {
25namespace Model {
26
34 public:
35 AWS_AGENTREGISTRYCONTROL_API UpdatedDescriptorsFields() = default;
36 AWS_AGENTREGISTRYCONTROL_API UpdatedDescriptorsFields(Aws::Utils::Json::JsonView jsonValue);
37 AWS_AGENTREGISTRYCONTROL_API UpdatedDescriptorsFields& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_AGENTREGISTRYCONTROL_API Aws::Utils::Json::JsonValue Jsonize() const;
39
41
44 inline const UpdatedMcpServerDescriptor& GetMcpServer() const { return m_mcpServer; }
45 inline bool McpServerHasBeenSet() const { return m_mcpServerHasBeenSet; }
46 template <typename McpServerT = UpdatedMcpServerDescriptor>
47 void SetMcpServer(McpServerT&& value) {
48 m_mcpServerHasBeenSet = true;
49 m_mcpServer = std::forward<McpServerT>(value);
50 }
51 template <typename McpServerT = UpdatedMcpServerDescriptor>
53 SetMcpServer(std::forward<McpServerT>(value));
54 return *this;
55 }
57
59
62 inline const UpdatedA2aAgentCardDescriptor& GetA2aAgentCard() const { return m_a2aAgentCard; }
63 inline bool A2aAgentCardHasBeenSet() const { return m_a2aAgentCardHasBeenSet; }
64 template <typename A2aAgentCardT = UpdatedA2aAgentCardDescriptor>
65 void SetA2aAgentCard(A2aAgentCardT&& value) {
66 m_a2aAgentCardHasBeenSet = true;
67 m_a2aAgentCard = std::forward<A2aAgentCardT>(value);
68 }
69 template <typename A2aAgentCardT = UpdatedA2aAgentCardDescriptor>
71 SetA2aAgentCard(std::forward<A2aAgentCardT>(value));
72 return *this;
73 }
75
77
80 inline const UpdatedAgentSkillsDefinitionDescriptor& GetAgentSkillsDefinition() const { return m_agentSkillsDefinition; }
81 inline bool AgentSkillsDefinitionHasBeenSet() const { return m_agentSkillsDefinitionHasBeenSet; }
82 template <typename AgentSkillsDefinitionT = UpdatedAgentSkillsDefinitionDescriptor>
83 void SetAgentSkillsDefinition(AgentSkillsDefinitionT&& value) {
84 m_agentSkillsDefinitionHasBeenSet = true;
85 m_agentSkillsDefinition = std::forward<AgentSkillsDefinitionT>(value);
86 }
87 template <typename AgentSkillsDefinitionT = UpdatedAgentSkillsDefinitionDescriptor>
88 UpdatedDescriptorsFields& WithAgentSkillsDefinition(AgentSkillsDefinitionT&& value) {
89 SetAgentSkillsDefinition(std::forward<AgentSkillsDefinitionT>(value));
90 return *this;
91 }
93
95
98 inline const UpdatedCustomDescriptor& GetCustom() const { return m_custom; }
99 inline bool CustomHasBeenSet() const { return m_customHasBeenSet; }
100 template <typename CustomT = UpdatedCustomDescriptor>
101 void SetCustom(CustomT&& value) {
102 m_customHasBeenSet = true;
103 m_custom = std::forward<CustomT>(value);
104 }
105 template <typename CustomT = UpdatedCustomDescriptor>
107 SetCustom(std::forward<CustomT>(value));
108 return *this;
109 }
111
113
116 inline const UpdatedHttpDescriptor& GetHttp() const { return m_http; }
117 inline bool HttpHasBeenSet() const { return m_httpHasBeenSet; }
118 template <typename HttpT = UpdatedHttpDescriptor>
119 void SetHttp(HttpT&& value) {
120 m_httpHasBeenSet = true;
121 m_http = std::forward<HttpT>(value);
122 }
123 template <typename HttpT = UpdatedHttpDescriptor>
125 SetHttp(std::forward<HttpT>(value));
126 return *this;
127 }
129
131
134 inline const UpdatedAgUiDescriptor& GetAgui() const { return m_agui; }
135 inline bool AguiHasBeenSet() const { return m_aguiHasBeenSet; }
136 template <typename AguiT = UpdatedAgUiDescriptor>
137 void SetAgui(AguiT&& value) {
138 m_aguiHasBeenSet = true;
139 m_agui = std::forward<AguiT>(value);
140 }
141 template <typename AguiT = UpdatedAgUiDescriptor>
143 SetAgui(std::forward<AguiT>(value));
144 return *this;
145 }
147 private:
148 UpdatedMcpServerDescriptor m_mcpServer;
149
150 UpdatedA2aAgentCardDescriptor m_a2aAgentCard;
151
152 UpdatedAgentSkillsDefinitionDescriptor m_agentSkillsDefinition;
153
155
157
159 bool m_mcpServerHasBeenSet = false;
160 bool m_a2aAgentCardHasBeenSet = false;
161 bool m_agentSkillsDefinitionHasBeenSet = false;
162 bool m_customHasBeenSet = false;
163 bool m_httpHasBeenSet = false;
164 bool m_aguiHasBeenSet = false;
165};
166
167} // namespace Model
168} // namespace AgentRegistryControl
169} // namespace Aws
const UpdatedA2aAgentCardDescriptor & GetA2aAgentCard() const
AWS_AGENTREGISTRYCONTROL_API Aws::Utils::Json::JsonValue Jsonize() const
const UpdatedAgentSkillsDefinitionDescriptor & GetAgentSkillsDefinition() const
UpdatedDescriptorsFields & WithMcpServer(McpServerT &&value)
AWS_AGENTREGISTRYCONTROL_API UpdatedDescriptorsFields(Aws::Utils::Json::JsonView jsonValue)
AWS_AGENTREGISTRYCONTROL_API UpdatedDescriptorsFields()=default
UpdatedDescriptorsFields & WithA2aAgentCard(A2aAgentCardT &&value)
AWS_AGENTREGISTRYCONTROL_API UpdatedDescriptorsFields & operator=(Aws::Utils::Json::JsonView jsonValue)
UpdatedDescriptorsFields & WithAgentSkillsDefinition(AgentSkillsDefinitionT &&value)
Aws::Utils::Json::JsonValue JsonValue