Home
last modified time | relevance | path

Searched refs:rejectedPatchesJsonList (Results 1 – 5 of 5) sorted by relevance

/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-ssm/source/model/
H A DBaselineOverride.cpp98 Array<JsonView> rejectedPatchesJsonList = jsonValue.GetArray("RejectedPatches"); in operator =() local
99 …for(unsigned rejectedPatchesIndex = 0; rejectedPatchesIndex < rejectedPatchesJsonList.GetLength();… in operator =()
101 m_rejectedPatches.push_back(rejectedPatchesJsonList[rejectedPatchesIndex].AsString()); in operator =()
172 Array<JsonValue> rejectedPatchesJsonList(m_rejectedPatches.size()); in Jsonize() local
173 …for(unsigned rejectedPatchesIndex = 0; rejectedPatchesIndex < rejectedPatchesJsonList.GetLength();… in Jsonize()
175rejectedPatchesJsonList[rejectedPatchesIndex].AsString(m_rejectedPatches[rejectedPatchesIndex]); in Jsonize()
177 payload.WithArray("RejectedPatches", std::move(rejectedPatchesJsonList)); in Jsonize()
H A DUpdatePatchBaselineRequest.cpp87 Array<JsonValue> rejectedPatchesJsonList(m_rejectedPatches.size()); in SerializePayload() local
88 …for(unsigned rejectedPatchesIndex = 0; rejectedPatchesIndex < rejectedPatchesJsonList.GetLength();… in SerializePayload()
90rejectedPatchesJsonList[rejectedPatchesIndex].AsString(m_rejectedPatches[rejectedPatchesIndex]); in SerializePayload()
92 payload.WithArray("RejectedPatches", std::move(rejectedPatchesJsonList)); in SerializePayload()
H A DCreatePatchBaselineRequest.cpp88 Array<JsonValue> rejectedPatchesJsonList(m_rejectedPatches.size()); in SerializePayload() local
89 …for(unsigned rejectedPatchesIndex = 0; rejectedPatchesIndex < rejectedPatchesJsonList.GetLength();… in SerializePayload()
91rejectedPatchesJsonList[rejectedPatchesIndex].AsString(m_rejectedPatches[rejectedPatchesIndex]); in SerializePayload()
93 payload.WithArray("RejectedPatches", std::move(rejectedPatchesJsonList)); in SerializePayload()
H A DUpdatePatchBaselineResult.cpp92 Array<JsonView> rejectedPatchesJsonList = jsonValue.GetArray("RejectedPatches"); in operator =() local
93 …for(unsigned rejectedPatchesIndex = 0; rejectedPatchesIndex < rejectedPatchesJsonList.GetLength();… in operator =()
95 m_rejectedPatches.push_back(rejectedPatchesJsonList[rejectedPatchesIndex].AsString()); in operator =()
H A DGetPatchBaselineResult.cpp92 Array<JsonView> rejectedPatchesJsonList = jsonValue.GetArray("RejectedPatches"); in operator =() local
93 …for(unsigned rejectedPatchesIndex = 0; rejectedPatchesIndex < rejectedPatchesJsonList.GetLength();… in operator =()
95 m_rejectedPatches.push_back(rejectedPatchesJsonList[rejectedPatchesIndex].AsString()); in operator =()