/* * 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 workdocs-2016-05-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.WorkDocs.Model { /// /// Container for the parameters to the DeleteLabels operation. /// Deletes the specified list of labels from a resource. /// public partial class DeleteLabelsRequest : AmazonWorkDocsRequest { private string _authenticationToken; private bool? _deleteAll; private List _labels = new List(); private string _resourceId; /// /// Gets and sets the property AuthenticationToken. /// /// Amazon WorkDocs authentication token. Not required when using Amazon Web Services /// administrator credentials to access the API. /// /// [AWSProperty(Sensitive=true, Min=1, Max=8199)] public string AuthenticationToken { get { return this._authenticationToken; } set { this._authenticationToken = value; } } // Check to see if AuthenticationToken property is set internal bool IsSetAuthenticationToken() { return this._authenticationToken != null; } /// /// Gets and sets the property DeleteAll. /// /// Flag to request removal of all labels from the specified resource. /// /// public bool DeleteAll { get { return this._deleteAll.GetValueOrDefault(); } set { this._deleteAll = value; } } // Check to see if DeleteAll property is set internal bool IsSetDeleteAll() { return this._deleteAll.HasValue; } /// /// Gets and sets the property Labels. /// /// List of labels to delete from the resource. /// /// [AWSProperty(Max=20)] public List Labels { get { return this._labels; } set { this._labels = value; } } // Check to see if Labels property is set internal bool IsSetLabels() { return this._labels != null && this._labels.Count > 0; } /// /// Gets and sets the property ResourceId. /// /// The ID of the resource. /// /// [AWSProperty(Required=true, Min=1, Max=128)] public string ResourceId { get { return this._resourceId; } set { this._resourceId = value; } } // Check to see if ResourceId property is set internal bool IsSetResourceId() { return this._resourceId != null; } } }