This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-backup/source/model/RecoveryPointByBackupVault.cpp

287 lines
6.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/backup/model/RecoveryPointByBackupVault.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Backup
{
namespace Model
{
RecoveryPointByBackupVault::RecoveryPointByBackupVault() :
m_recoveryPointArnHasBeenSet(false),
m_backupVaultNameHasBeenSet(false),
m_backupVaultArnHasBeenSet(false),
m_resourceArnHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_createdByHasBeenSet(false),
m_iamRoleArnHasBeenSet(false),
m_status(RecoveryPointStatus::NOT_SET),
m_statusHasBeenSet(false),
m_creationDateHasBeenSet(false),
m_completionDateHasBeenSet(false),
m_backupSizeInBytes(0),
m_backupSizeInBytesHasBeenSet(false),
m_calculatedLifecycleHasBeenSet(false),
m_lifecycleHasBeenSet(false),
m_encryptionKeyArnHasBeenSet(false),
m_isEncrypted(false),
m_isEncryptedHasBeenSet(false),
m_lastRestoreTimeHasBeenSet(false)
{
}
RecoveryPointByBackupVault::RecoveryPointByBackupVault(JsonView jsonValue) :
m_recoveryPointArnHasBeenSet(false),
m_backupVaultNameHasBeenSet(false),
m_backupVaultArnHasBeenSet(false),
m_resourceArnHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_createdByHasBeenSet(false),
m_iamRoleArnHasBeenSet(false),
m_status(RecoveryPointStatus::NOT_SET),
m_statusHasBeenSet(false),
m_creationDateHasBeenSet(false),
m_completionDateHasBeenSet(false),
m_backupSizeInBytes(0),
m_backupSizeInBytesHasBeenSet(false),
m_calculatedLifecycleHasBeenSet(false),
m_lifecycleHasBeenSet(false),
m_encryptionKeyArnHasBeenSet(false),
m_isEncrypted(false),
m_isEncryptedHasBeenSet(false),
m_lastRestoreTimeHasBeenSet(false)
{
*this = jsonValue;
}
RecoveryPointByBackupVault& RecoveryPointByBackupVault::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("RecoveryPointArn"))
{
m_recoveryPointArn = jsonValue.GetString("RecoveryPointArn");
m_recoveryPointArnHasBeenSet = true;
}
if(jsonValue.ValueExists("BackupVaultName"))
{
m_backupVaultName = jsonValue.GetString("BackupVaultName");
m_backupVaultNameHasBeenSet = true;
}
if(jsonValue.ValueExists("BackupVaultArn"))
{
m_backupVaultArn = jsonValue.GetString("BackupVaultArn");
m_backupVaultArnHasBeenSet = true;
}
if(jsonValue.ValueExists("ResourceArn"))
{
m_resourceArn = jsonValue.GetString("ResourceArn");
m_resourceArnHasBeenSet = true;
}
if(jsonValue.ValueExists("ResourceType"))
{
m_resourceType = jsonValue.GetString("ResourceType");
m_resourceTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("CreatedBy"))
{
m_createdBy = jsonValue.GetObject("CreatedBy");
m_createdByHasBeenSet = true;
}
if(jsonValue.ValueExists("IamRoleArn"))
{
m_iamRoleArn = jsonValue.GetString("IamRoleArn");
m_iamRoleArnHasBeenSet = true;
}
if(jsonValue.ValueExists("Status"))
{
m_status = RecoveryPointStatusMapper::GetRecoveryPointStatusForName(jsonValue.GetString("Status"));
m_statusHasBeenSet = true;
}
if(jsonValue.ValueExists("CreationDate"))
{
m_creationDate = jsonValue.GetDouble("CreationDate");
m_creationDateHasBeenSet = true;
}
if(jsonValue.ValueExists("CompletionDate"))
{
m_completionDate = jsonValue.GetDouble("CompletionDate");
m_completionDateHasBeenSet = true;
}
if(jsonValue.ValueExists("BackupSizeInBytes"))
{
m_backupSizeInBytes = jsonValue.GetInt64("BackupSizeInBytes");
m_backupSizeInBytesHasBeenSet = true;
}
if(jsonValue.ValueExists("CalculatedLifecycle"))
{
m_calculatedLifecycle = jsonValue.GetObject("CalculatedLifecycle");
m_calculatedLifecycleHasBeenSet = true;
}
if(jsonValue.ValueExists("Lifecycle"))
{
m_lifecycle = jsonValue.GetObject("Lifecycle");
m_lifecycleHasBeenSet = true;
}
if(jsonValue.ValueExists("EncryptionKeyArn"))
{
m_encryptionKeyArn = jsonValue.GetString("EncryptionKeyArn");
m_encryptionKeyArnHasBeenSet = true;
}
if(jsonValue.ValueExists("IsEncrypted"))
{
m_isEncrypted = jsonValue.GetBool("IsEncrypted");
m_isEncryptedHasBeenSet = true;
}
if(jsonValue.ValueExists("LastRestoreTime"))
{
m_lastRestoreTime = jsonValue.GetDouble("LastRestoreTime");
m_lastRestoreTimeHasBeenSet = true;
}
return *this;
}
JsonValue RecoveryPointByBackupVault::Jsonize() const
{
JsonValue payload;
if(m_recoveryPointArnHasBeenSet)
{
payload.WithString("RecoveryPointArn", m_recoveryPointArn);
}
if(m_backupVaultNameHasBeenSet)
{
payload.WithString("BackupVaultName", m_backupVaultName);
}
if(m_backupVaultArnHasBeenSet)
{
payload.WithString("BackupVaultArn", m_backupVaultArn);
}
if(m_resourceArnHasBeenSet)
{
payload.WithString("ResourceArn", m_resourceArn);
}
if(m_resourceTypeHasBeenSet)
{
payload.WithString("ResourceType", m_resourceType);
}
if(m_createdByHasBeenSet)
{
payload.WithObject("CreatedBy", m_createdBy.Jsonize());
}
if(m_iamRoleArnHasBeenSet)
{
payload.WithString("IamRoleArn", m_iamRoleArn);
}
if(m_statusHasBeenSet)
{
payload.WithString("Status", RecoveryPointStatusMapper::GetNameForRecoveryPointStatus(m_status));
}
if(m_creationDateHasBeenSet)
{
payload.WithDouble("CreationDate", m_creationDate.SecondsWithMSPrecision());
}
if(m_completionDateHasBeenSet)
{
payload.WithDouble("CompletionDate", m_completionDate.SecondsWithMSPrecision());
}
if(m_backupSizeInBytesHasBeenSet)
{
payload.WithInt64("BackupSizeInBytes", m_backupSizeInBytes);
}
if(m_calculatedLifecycleHasBeenSet)
{
payload.WithObject("CalculatedLifecycle", m_calculatedLifecycle.Jsonize());
}
if(m_lifecycleHasBeenSet)
{
payload.WithObject("Lifecycle", m_lifecycle.Jsonize());
}
if(m_encryptionKeyArnHasBeenSet)
{
payload.WithString("EncryptionKeyArn", m_encryptionKeyArn);
}
if(m_isEncryptedHasBeenSet)
{
payload.WithBool("IsEncrypted", m_isEncrypted);
}
if(m_lastRestoreTimeHasBeenSet)
{
payload.WithDouble("LastRestoreTime", m_lastRestoreTime.SecondsWithMSPrecision());
}
return payload;
}
} // namespace Model
} // namespace Backup
} // namespace Aws