/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace GlueDataBrew { namespace Model { Job::Job() : m_accountIdHasBeenSet(false), m_createdByHasBeenSet(false), m_createDateHasBeenSet(false), m_datasetNameHasBeenSet(false), m_encryptionKeyArnHasBeenSet(false), m_encryptionMode(EncryptionMode::NOT_SET), m_encryptionModeHasBeenSet(false), m_nameHasBeenSet(false), m_type(JobType::NOT_SET), m_typeHasBeenSet(false), m_lastModifiedByHasBeenSet(false), m_lastModifiedDateHasBeenSet(false), m_logSubscription(LogSubscription::NOT_SET), m_logSubscriptionHasBeenSet(false), m_maxCapacity(0), m_maxCapacityHasBeenSet(false), m_maxRetries(0), m_maxRetriesHasBeenSet(false), m_outputsHasBeenSet(false), m_dataCatalogOutputsHasBeenSet(false), m_databaseOutputsHasBeenSet(false), m_projectNameHasBeenSet(false), m_recipeReferenceHasBeenSet(false), m_resourceArnHasBeenSet(false), m_roleArnHasBeenSet(false), m_timeout(0), m_timeoutHasBeenSet(false), m_tagsHasBeenSet(false), m_jobSampleHasBeenSet(false), m_validationConfigurationsHasBeenSet(false) { } Job::Job(JsonView jsonValue) : m_accountIdHasBeenSet(false), m_createdByHasBeenSet(false), m_createDateHasBeenSet(false), m_datasetNameHasBeenSet(false), m_encryptionKeyArnHasBeenSet(false), m_encryptionMode(EncryptionMode::NOT_SET), m_encryptionModeHasBeenSet(false), m_nameHasBeenSet(false), m_type(JobType::NOT_SET), m_typeHasBeenSet(false), m_lastModifiedByHasBeenSet(false), m_lastModifiedDateHasBeenSet(false), m_logSubscription(LogSubscription::NOT_SET), m_logSubscriptionHasBeenSet(false), m_maxCapacity(0), m_maxCapacityHasBeenSet(false), m_maxRetries(0), m_maxRetriesHasBeenSet(false), m_outputsHasBeenSet(false), m_dataCatalogOutputsHasBeenSet(false), m_databaseOutputsHasBeenSet(false), m_projectNameHasBeenSet(false), m_recipeReferenceHasBeenSet(false), m_resourceArnHasBeenSet(false), m_roleArnHasBeenSet(false), m_timeout(0), m_timeoutHasBeenSet(false), m_tagsHasBeenSet(false), m_jobSampleHasBeenSet(false), m_validationConfigurationsHasBeenSet(false) { *this = jsonValue; } Job& Job::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("AccountId")) { m_accountId = jsonValue.GetString("AccountId"); m_accountIdHasBeenSet = true; } if(jsonValue.ValueExists("CreatedBy")) { m_createdBy = jsonValue.GetString("CreatedBy"); m_createdByHasBeenSet = true; } if(jsonValue.ValueExists("CreateDate")) { m_createDate = jsonValue.GetDouble("CreateDate"); m_createDateHasBeenSet = true; } if(jsonValue.ValueExists("DatasetName")) { m_datasetName = jsonValue.GetString("DatasetName"); m_datasetNameHasBeenSet = true; } if(jsonValue.ValueExists("EncryptionKeyArn")) { m_encryptionKeyArn = jsonValue.GetString("EncryptionKeyArn"); m_encryptionKeyArnHasBeenSet = true; } if(jsonValue.ValueExists("EncryptionMode")) { m_encryptionMode = EncryptionModeMapper::GetEncryptionModeForName(jsonValue.GetString("EncryptionMode")); m_encryptionModeHasBeenSet = true; } if(jsonValue.ValueExists("Name")) { m_name = jsonValue.GetString("Name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("Type")) { m_type = JobTypeMapper::GetJobTypeForName(jsonValue.GetString("Type")); m_typeHasBeenSet = true; } if(jsonValue.ValueExists("LastModifiedBy")) { m_lastModifiedBy = jsonValue.GetString("LastModifiedBy"); m_lastModifiedByHasBeenSet = true; } if(jsonValue.ValueExists("LastModifiedDate")) { m_lastModifiedDate = jsonValue.GetDouble("LastModifiedDate"); m_lastModifiedDateHasBeenSet = true; } if(jsonValue.ValueExists("LogSubscription")) { m_logSubscription = LogSubscriptionMapper::GetLogSubscriptionForName(jsonValue.GetString("LogSubscription")); m_logSubscriptionHasBeenSet = true; } if(jsonValue.ValueExists("MaxCapacity")) { m_maxCapacity = jsonValue.GetInteger("MaxCapacity"); m_maxCapacityHasBeenSet = true; } if(jsonValue.ValueExists("MaxRetries")) { m_maxRetries = jsonValue.GetInteger("MaxRetries"); m_maxRetriesHasBeenSet = true; } if(jsonValue.ValueExists("Outputs")) { Aws::Utils::Array outputsJsonList = jsonValue.GetArray("Outputs"); for(unsigned outputsIndex = 0; outputsIndex < outputsJsonList.GetLength(); ++outputsIndex) { m_outputs.push_back(outputsJsonList[outputsIndex].AsObject()); } m_outputsHasBeenSet = true; } if(jsonValue.ValueExists("DataCatalogOutputs")) { Aws::Utils::Array dataCatalogOutputsJsonList = jsonValue.GetArray("DataCatalogOutputs"); for(unsigned dataCatalogOutputsIndex = 0; dataCatalogOutputsIndex < dataCatalogOutputsJsonList.GetLength(); ++dataCatalogOutputsIndex) { m_dataCatalogOutputs.push_back(dataCatalogOutputsJsonList[dataCatalogOutputsIndex].AsObject()); } m_dataCatalogOutputsHasBeenSet = true; } if(jsonValue.ValueExists("DatabaseOutputs")) { Aws::Utils::Array databaseOutputsJsonList = jsonValue.GetArray("DatabaseOutputs"); for(unsigned databaseOutputsIndex = 0; databaseOutputsIndex < databaseOutputsJsonList.GetLength(); ++databaseOutputsIndex) { m_databaseOutputs.push_back(databaseOutputsJsonList[databaseOutputsIndex].AsObject()); } m_databaseOutputsHasBeenSet = true; } if(jsonValue.ValueExists("ProjectName")) { m_projectName = jsonValue.GetString("ProjectName"); m_projectNameHasBeenSet = true; } if(jsonValue.ValueExists("RecipeReference")) { m_recipeReference = jsonValue.GetObject("RecipeReference"); m_recipeReferenceHasBeenSet = true; } if(jsonValue.ValueExists("ResourceArn")) { m_resourceArn = jsonValue.GetString("ResourceArn"); m_resourceArnHasBeenSet = true; } if(jsonValue.ValueExists("RoleArn")) { m_roleArn = jsonValue.GetString("RoleArn"); m_roleArnHasBeenSet = true; } if(jsonValue.ValueExists("Timeout")) { m_timeout = jsonValue.GetInteger("Timeout"); m_timeoutHasBeenSet = true; } if(jsonValue.ValueExists("Tags")) { Aws::Map tagsJsonMap = jsonValue.GetObject("Tags").GetAllObjects(); for(auto& tagsItem : tagsJsonMap) { m_tags[tagsItem.first] = tagsItem.second.AsString(); } m_tagsHasBeenSet = true; } if(jsonValue.ValueExists("JobSample")) { m_jobSample = jsonValue.GetObject("JobSample"); m_jobSampleHasBeenSet = true; } if(jsonValue.ValueExists("ValidationConfigurations")) { Aws::Utils::Array validationConfigurationsJsonList = jsonValue.GetArray("ValidationConfigurations"); for(unsigned validationConfigurationsIndex = 0; validationConfigurationsIndex < validationConfigurationsJsonList.GetLength(); ++validationConfigurationsIndex) { m_validationConfigurations.push_back(validationConfigurationsJsonList[validationConfigurationsIndex].AsObject()); } m_validationConfigurationsHasBeenSet = true; } return *this; } JsonValue Job::Jsonize() const { JsonValue payload; if(m_accountIdHasBeenSet) { payload.WithString("AccountId", m_accountId); } if(m_createdByHasBeenSet) { payload.WithString("CreatedBy", m_createdBy); } if(m_createDateHasBeenSet) { payload.WithDouble("CreateDate", m_createDate.SecondsWithMSPrecision()); } if(m_datasetNameHasBeenSet) { payload.WithString("DatasetName", m_datasetName); } if(m_encryptionKeyArnHasBeenSet) { payload.WithString("EncryptionKeyArn", m_encryptionKeyArn); } if(m_encryptionModeHasBeenSet) { payload.WithString("EncryptionMode", EncryptionModeMapper::GetNameForEncryptionMode(m_encryptionMode)); } if(m_nameHasBeenSet) { payload.WithString("Name", m_name); } if(m_typeHasBeenSet) { payload.WithString("Type", JobTypeMapper::GetNameForJobType(m_type)); } if(m_lastModifiedByHasBeenSet) { payload.WithString("LastModifiedBy", m_lastModifiedBy); } if(m_lastModifiedDateHasBeenSet) { payload.WithDouble("LastModifiedDate", m_lastModifiedDate.SecondsWithMSPrecision()); } if(m_logSubscriptionHasBeenSet) { payload.WithString("LogSubscription", LogSubscriptionMapper::GetNameForLogSubscription(m_logSubscription)); } if(m_maxCapacityHasBeenSet) { payload.WithInteger("MaxCapacity", m_maxCapacity); } if(m_maxRetriesHasBeenSet) { payload.WithInteger("MaxRetries", m_maxRetries); } if(m_outputsHasBeenSet) { Aws::Utils::Array outputsJsonList(m_outputs.size()); for(unsigned outputsIndex = 0; outputsIndex < outputsJsonList.GetLength(); ++outputsIndex) { outputsJsonList[outputsIndex].AsObject(m_outputs[outputsIndex].Jsonize()); } payload.WithArray("Outputs", std::move(outputsJsonList)); } if(m_dataCatalogOutputsHasBeenSet) { Aws::Utils::Array dataCatalogOutputsJsonList(m_dataCatalogOutputs.size()); for(unsigned dataCatalogOutputsIndex = 0; dataCatalogOutputsIndex < dataCatalogOutputsJsonList.GetLength(); ++dataCatalogOutputsIndex) { dataCatalogOutputsJsonList[dataCatalogOutputsIndex].AsObject(m_dataCatalogOutputs[dataCatalogOutputsIndex].Jsonize()); } payload.WithArray("DataCatalogOutputs", std::move(dataCatalogOutputsJsonList)); } if(m_databaseOutputsHasBeenSet) { Aws::Utils::Array databaseOutputsJsonList(m_databaseOutputs.size()); for(unsigned databaseOutputsIndex = 0; databaseOutputsIndex < databaseOutputsJsonList.GetLength(); ++databaseOutputsIndex) { databaseOutputsJsonList[databaseOutputsIndex].AsObject(m_databaseOutputs[databaseOutputsIndex].Jsonize()); } payload.WithArray("DatabaseOutputs", std::move(databaseOutputsJsonList)); } if(m_projectNameHasBeenSet) { payload.WithString("ProjectName", m_projectName); } if(m_recipeReferenceHasBeenSet) { payload.WithObject("RecipeReference", m_recipeReference.Jsonize()); } if(m_resourceArnHasBeenSet) { payload.WithString("ResourceArn", m_resourceArn); } if(m_roleArnHasBeenSet) { payload.WithString("RoleArn", m_roleArn); } if(m_timeoutHasBeenSet) { payload.WithInteger("Timeout", m_timeout); } if(m_tagsHasBeenSet) { JsonValue tagsJsonMap; for(auto& tagsItem : m_tags) { tagsJsonMap.WithString(tagsItem.first, tagsItem.second); } payload.WithObject("Tags", std::move(tagsJsonMap)); } if(m_jobSampleHasBeenSet) { payload.WithObject("JobSample", m_jobSample.Jsonize()); } if(m_validationConfigurationsHasBeenSet) { Aws::Utils::Array validationConfigurationsJsonList(m_validationConfigurations.size()); for(unsigned validationConfigurationsIndex = 0; validationConfigurationsIndex < validationConfigurationsJsonList.GetLength(); ++validationConfigurationsIndex) { validationConfigurationsJsonList[validationConfigurationsIndex].AsObject(m_validationConfigurations[validationConfigurationsIndex].Jsonize()); } payload.WithArray("ValidationConfigurations", std::move(validationConfigurationsJsonList)); } return payload; } } // namespace Model } // namespace GlueDataBrew } // namespace Aws