/* * 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 eks-2017-11-01.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.EKS.Model { /// /// Container for the parameters to the DescribeUpdate operation. /// Returns descriptive information about an update against your Amazon EKS cluster or /// associated managed node group or Amazon EKS add-on. /// /// /// /// When the status of the update is Succeeded, the update is complete. If /// an update fails, the status is Failed, and an error detail explains the /// reason for the failure. /// /// public partial class DescribeUpdateRequest : AmazonEKSRequest { private string _addonName; private string _name; private string _nodegroupName; private string _updateId; /// /// Gets and sets the property AddonName. /// /// The name of the add-on. The name must match one of the names returned by /// ListAddons . This parameter is required if the update is an add-on /// update. /// /// public string AddonName { get { return this._addonName; } set { this._addonName = value; } } // Check to see if AddonName property is set internal bool IsSetAddonName() { return this._addonName != null; } /// /// Gets and sets the property Name. /// /// The name of the Amazon EKS cluster associated with the update. /// /// [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// /// Gets and sets the property NodegroupName. /// /// The name of the Amazon EKS node group associated with the update. This parameter is /// required if the update is a node group update. /// /// public string NodegroupName { get { return this._nodegroupName; } set { this._nodegroupName = value; } } // Check to see if NodegroupName property is set internal bool IsSetNodegroupName() { return this._nodegroupName != null; } /// /// Gets and sets the property UpdateId. /// /// The ID of the update to describe. /// /// [AWSProperty(Required=true)] public string UpdateId { get { return this._updateId; } set { this._updateId = value; } } // Check to see if UpdateId property is set internal bool IsSetUpdateId() { return this._updateId != null; } } }