/* * Copyright 2018-2023 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. */ package com.amazonaws.services.simplesystemsmanagement.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The inventory item schema definition. Users can use this to compose inventory query filters. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class InventoryItemSchema implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. *

*/ private String typeName; /** *

* The schema version for the inventory item. *

*/ private String version; /** *

* The schema attributes for inventory. This contains data type and attribute name. *

*/ private com.amazonaws.internal.SdkInternalList attributes; /** *

* The alias name of the inventory type. The alias name is used for display purposes. *

*/ private String displayName; /** *

* The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. *

* * @param typeName * The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. */ public void setTypeName(String typeName) { this.typeName = typeName; } /** *

* The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. *

* * @return The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. */ public String getTypeName() { return this.typeName; } /** *

* The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. *

* * @param typeName * The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom * inventory type names will start with Custom. Default inventory item types include the following: * AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, * AWS:Network, and AWS:WindowsUpdate. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryItemSchema withTypeName(String typeName) { setTypeName(typeName); return this; } /** *

* The schema version for the inventory item. *

* * @param version * The schema version for the inventory item. */ public void setVersion(String version) { this.version = version; } /** *

* The schema version for the inventory item. *

* * @return The schema version for the inventory item. */ public String getVersion() { return this.version; } /** *

* The schema version for the inventory item. *

* * @param version * The schema version for the inventory item. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryItemSchema withVersion(String version) { setVersion(version); return this; } /** *

* The schema attributes for inventory. This contains data type and attribute name. *

* * @return The schema attributes for inventory. This contains data type and attribute name. */ public java.util.List getAttributes() { if (attributes == null) { attributes = new com.amazonaws.internal.SdkInternalList(); } return attributes; } /** *

* The schema attributes for inventory. This contains data type and attribute name. *

* * @param attributes * The schema attributes for inventory. This contains data type and attribute name. */ public void setAttributes(java.util.Collection attributes) { if (attributes == null) { this.attributes = null; return; } this.attributes = new com.amazonaws.internal.SdkInternalList(attributes); } /** *

* The schema attributes for inventory. This contains data type and attribute name. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to * override the existing values. *

* * @param attributes * The schema attributes for inventory. This contains data type and attribute name. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryItemSchema withAttributes(InventoryItemAttribute... attributes) { if (this.attributes == null) { setAttributes(new com.amazonaws.internal.SdkInternalList(attributes.length)); } for (InventoryItemAttribute ele : attributes) { this.attributes.add(ele); } return this; } /** *

* The schema attributes for inventory. This contains data type and attribute name. *

* * @param attributes * The schema attributes for inventory. This contains data type and attribute name. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryItemSchema withAttributes(java.util.Collection attributes) { setAttributes(attributes); return this; } /** *

* The alias name of the inventory type. The alias name is used for display purposes. *

* * @param displayName * The alias name of the inventory type. The alias name is used for display purposes. */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** *

* The alias name of the inventory type. The alias name is used for display purposes. *

* * @return The alias name of the inventory type. The alias name is used for display purposes. */ public String getDisplayName() { return this.displayName; } /** *

* The alias name of the inventory type. The alias name is used for display purposes. *

* * @param displayName * The alias name of the inventory type. The alias name is used for display purposes. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryItemSchema withDisplayName(String displayName) { setDisplayName(displayName); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTypeName() != null) sb.append("TypeName: ").append(getTypeName()).append(","); if (getVersion() != null) sb.append("Version: ").append(getVersion()).append(","); if (getAttributes() != null) sb.append("Attributes: ").append(getAttributes()).append(","); if (getDisplayName() != null) sb.append("DisplayName: ").append(getDisplayName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InventoryItemSchema == false) return false; InventoryItemSchema other = (InventoryItemSchema) obj; if (other.getTypeName() == null ^ this.getTypeName() == null) return false; if (other.getTypeName() != null && other.getTypeName().equals(this.getTypeName()) == false) return false; if (other.getVersion() == null ^ this.getVersion() == null) return false; if (other.getVersion() != null && other.getVersion().equals(this.getVersion()) == false) return false; if (other.getAttributes() == null ^ this.getAttributes() == null) return false; if (other.getAttributes() != null && other.getAttributes().equals(this.getAttributes()) == false) return false; if (other.getDisplayName() == null ^ this.getDisplayName() == null) return false; if (other.getDisplayName() != null && other.getDisplayName().equals(this.getDisplayName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTypeName() == null) ? 0 : getTypeName().hashCode()); hashCode = prime * hashCode + ((getVersion() == null) ? 0 : getVersion().hashCode()); hashCode = prime * hashCode + ((getAttributes() == null) ? 0 : getAttributes().hashCode()); hashCode = prime * hashCode + ((getDisplayName() == null) ? 0 : getDisplayName().hashCode()); return hashCode; } @Override public InventoryItemSchema clone() { try { return (InventoryItemSchema) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.simplesystemsmanagement.model.transform.InventoryItemSchemaMarshaller.getInstance().marshall(this, protocolMarshaller); } }