/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::SageMaker::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; ListHubContentsRequest::ListHubContentsRequest() : m_hubNameHasBeenSet(false), m_hubContentType(HubContentType::NOT_SET), m_hubContentTypeHasBeenSet(false), m_nameContainsHasBeenSet(false), m_maxSchemaVersionHasBeenSet(false), m_creationTimeBeforeHasBeenSet(false), m_creationTimeAfterHasBeenSet(false), m_sortBy(HubContentSortBy::NOT_SET), m_sortByHasBeenSet(false), m_sortOrder(SortOrder::NOT_SET), m_sortOrderHasBeenSet(false), m_maxResults(0), m_maxResultsHasBeenSet(false), m_nextTokenHasBeenSet(false) { } Aws::String ListHubContentsRequest::SerializePayload() const { JsonValue payload; if(m_hubNameHasBeenSet) { payload.WithString("HubName", m_hubName); } if(m_hubContentTypeHasBeenSet) { payload.WithString("HubContentType", HubContentTypeMapper::GetNameForHubContentType(m_hubContentType)); } if(m_nameContainsHasBeenSet) { payload.WithString("NameContains", m_nameContains); } if(m_maxSchemaVersionHasBeenSet) { payload.WithString("MaxSchemaVersion", m_maxSchemaVersion); } if(m_creationTimeBeforeHasBeenSet) { payload.WithDouble("CreationTimeBefore", m_creationTimeBefore.SecondsWithMSPrecision()); } if(m_creationTimeAfterHasBeenSet) { payload.WithDouble("CreationTimeAfter", m_creationTimeAfter.SecondsWithMSPrecision()); } if(m_sortByHasBeenSet) { payload.WithString("SortBy", HubContentSortByMapper::GetNameForHubContentSortBy(m_sortBy)); } if(m_sortOrderHasBeenSet) { payload.WithString("SortOrder", SortOrderMapper::GetNameForSortOrder(m_sortOrder)); } if(m_maxResultsHasBeenSet) { payload.WithInteger("MaxResults", m_maxResults); } if(m_nextTokenHasBeenSet) { payload.WithString("NextToken", m_nextToken); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection ListHubContentsRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "SageMaker.ListHubContents")); return headers; }