/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ #include "CloudGemDynamicContent_precompiled.h" #include "ManifestTableKeys.h" namespace DynamicContent { const char* KEY_FILES_SECTION = "Files"; const char* KEY_PAKS_SECTION = "Paks"; const char* KEY_PLATFORMS_SECTION = "Platforms"; const char* KEY_PAKSTATUS_SECTION = "PakStatus"; const char* KEY_BUCKET_PREFIX = "bucketPrefix"; const char* KEY_CACHE_ROOT = "cacheRoot"; const char* KEY_HASH = "hash"; const char* KEY_IS_MANIFEST = "isManifest"; const char* KEY_KEY_NAME = "keyName"; const char* KEY_LOCAL_FOLDER = "localFolder"; const char* KEY_OUTPUT_ROOT = "outputRoot"; const char* KEY_PAK_FILE = "pakFile"; const char* KEY_PLATFORM_TYPE = "platformType"; const char* KEY_NEW = "new"; const char* KEY_OUTDATED = "outdated"; const char* KEY_MATCH = "match"; const char* KEY_FILE_NAME = "fileName"; const char* KEY_MESSAGE = "message"; const char* KEY_KEY_EXISTS = "keyExists"; const char* KEY_PUBLIC_KEY_FILE = "publicKeyFile"; const char* ARGS_REQUEST_ID = "request_id"; const char* ARGS_NEW_FILE_NAME = "new_file_name"; const char* ARGS_MANIFEST_PATH = "manifest_path"; const char* ARGS_SECTION = "section"; const char* ARGS_FILE_LIST = "file_list"; const char* ARGS_PAK_FILE = "pak_file"; const char* ARGS_PLATFORM_TYPE = "platform_type"; const char* ARGS_FILE_DATA = "file_data"; const char* ARGS_GUI = "gui"; const char* ARGS_SIGNING = "signing"; const char* ARGS_PLATFORM_LIST = "platform_list"; const char* MIME_TYPE_TEXT = "application/vnd.text.list"; }