/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace tnb { namespace Model { /** *

Lifecycle management operation details on the network instance.

*

Lifecycle management operations are deploy, update, or delete * operations.

See Also:

AWS * API Reference

*/ class LcmOperationInfo { public: AWS_TNB_API LcmOperationInfo(); AWS_TNB_API LcmOperationInfo(Aws::Utils::Json::JsonView jsonValue); AWS_TNB_API LcmOperationInfo& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_TNB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The identifier of the network operation.

*/ inline const Aws::String& GetNsLcmOpOccId() const{ return m_nsLcmOpOccId; } /** *

The identifier of the network operation.

*/ inline bool NsLcmOpOccIdHasBeenSet() const { return m_nsLcmOpOccIdHasBeenSet; } /** *

The identifier of the network operation.

*/ inline void SetNsLcmOpOccId(const Aws::String& value) { m_nsLcmOpOccIdHasBeenSet = true; m_nsLcmOpOccId = value; } /** *

The identifier of the network operation.

*/ inline void SetNsLcmOpOccId(Aws::String&& value) { m_nsLcmOpOccIdHasBeenSet = true; m_nsLcmOpOccId = std::move(value); } /** *

The identifier of the network operation.

*/ inline void SetNsLcmOpOccId(const char* value) { m_nsLcmOpOccIdHasBeenSet = true; m_nsLcmOpOccId.assign(value); } /** *

The identifier of the network operation.

*/ inline LcmOperationInfo& WithNsLcmOpOccId(const Aws::String& value) { SetNsLcmOpOccId(value); return *this;} /** *

The identifier of the network operation.

*/ inline LcmOperationInfo& WithNsLcmOpOccId(Aws::String&& value) { SetNsLcmOpOccId(std::move(value)); return *this;} /** *

The identifier of the network operation.

*/ inline LcmOperationInfo& WithNsLcmOpOccId(const char* value) { SetNsLcmOpOccId(value); return *this;} private: Aws::String m_nsLcmOpOccId; bool m_nsLcmOpOccIdHasBeenSet = false; }; } // namespace Model } // namespace tnb } // namespace Aws