/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the kafka-2018-11-14.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Kafka.Model { /// /// Returns information about a provisioned cluster operation. /// public partial class ClusterOperationV2Provisioned { private List _operationSteps = new List(); private MutableClusterInfo _sourceClusterInfo; private MutableClusterInfo _targetClusterInfo; private VpcConnectionInfo _vpcConnectionInfo; /// /// Gets and sets the property OperationSteps. /// /// Steps completed during the operation. /// /// public List OperationSteps { get { return this._operationSteps; } set { this._operationSteps = value; } } // Check to see if OperationSteps property is set internal bool IsSetOperationSteps() { return this._operationSteps != null && this._operationSteps.Count > 0; } /// /// Gets and sets the property SourceClusterInfo. /// /// Information about cluster attributes before a cluster is updated. /// /// public MutableClusterInfo SourceClusterInfo { get { return this._sourceClusterInfo; } set { this._sourceClusterInfo = value; } } // Check to see if SourceClusterInfo property is set internal bool IsSetSourceClusterInfo() { return this._sourceClusterInfo != null; } /// /// Gets and sets the property TargetClusterInfo. /// /// Information about cluster attributes after a cluster is updated. /// /// public MutableClusterInfo TargetClusterInfo { get { return this._targetClusterInfo; } set { this._targetClusterInfo = value; } } // Check to see if TargetClusterInfo property is set internal bool IsSetTargetClusterInfo() { return this._targetClusterInfo != null; } /// /// Gets and sets the property VpcConnectionInfo. /// /// Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection /// operations. /// /// public VpcConnectionInfo VpcConnectionInfo { get { return this._vpcConnectionInfo; } set { this._vpcConnectionInfo = value; } } // Check to see if VpcConnectionInfo property is set internal bool IsSetVpcConnectionInfo() { return this._vpcConnectionInfo != null; } } }