All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.licensemanagerlinuxsubscriptions.model.Instance Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS License Manager Linux Subscriptions module holds the client classes that are used for communicating with AWS License Manager Linux Subscriptions Service

The newest version!
/*
 * Copyright 2019-2024 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.licensemanagerlinuxsubscriptions.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Details discovered information about a running instance using Linux subscriptions. *

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

* The account ID which owns the instance. *

*/ private String accountID; /** *

* The AMI ID used to launch the instance. *

*/ private String amiId; /** *

* Indicates that you have two different license subscriptions for the same software on your instance. *

*/ private String dualSubscription; /** *

* The instance ID of the resource. *

*/ private String instanceID; /** *

* The instance type of the resource. *

*/ private String instanceType; /** *

* The time in which the last discovery updated the instance details. *

*/ private String lastUpdatedTime; /** *

* The operating system software version that runs on your instance. *

*/ private String osVersion; /** *

* The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . *

*/ private java.util.List productCode; /** *

* The Region the instance is running in. *

*/ private String region; /** *

* Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription provider that * you've registered with License Manager. *

*/ private String registeredWithSubscriptionProvider; /** *

* The status of the instance. *

*/ private String status; /** *

* The name of the license subscription that the instance uses. *

*/ private String subscriptionName; /** *

* The timestamp when you registered the third-party Linux subscription provider for the subscription that the * instance uses. *

*/ private String subscriptionProviderCreateTime; /** *

* The timestamp from the last time that the instance synced with the registered third-party Linux subscription * provider. *

*/ private String subscriptionProviderUpdateTime; /** *

* The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. *

*/ private String usageOperation; /** *

* The account ID which owns the instance. *

* * @param accountID * The account ID which owns the instance. */ public void setAccountID(String accountID) { this.accountID = accountID; } /** *

* The account ID which owns the instance. *

* * @return The account ID which owns the instance. */ public String getAccountID() { return this.accountID; } /** *

* The account ID which owns the instance. *

* * @param accountID * The account ID which owns the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withAccountID(String accountID) { setAccountID(accountID); return this; } /** *

* The AMI ID used to launch the instance. *

* * @param amiId * The AMI ID used to launch the instance. */ public void setAmiId(String amiId) { this.amiId = amiId; } /** *

* The AMI ID used to launch the instance. *

* * @return The AMI ID used to launch the instance. */ public String getAmiId() { return this.amiId; } /** *

* The AMI ID used to launch the instance. *

* * @param amiId * The AMI ID used to launch the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withAmiId(String amiId) { setAmiId(amiId); return this; } /** *

* Indicates that you have two different license subscriptions for the same software on your instance. *

* * @param dualSubscription * Indicates that you have two different license subscriptions for the same software on your instance. */ public void setDualSubscription(String dualSubscription) { this.dualSubscription = dualSubscription; } /** *

* Indicates that you have two different license subscriptions for the same software on your instance. *

* * @return Indicates that you have two different license subscriptions for the same software on your instance. */ public String getDualSubscription() { return this.dualSubscription; } /** *

* Indicates that you have two different license subscriptions for the same software on your instance. *

* * @param dualSubscription * Indicates that you have two different license subscriptions for the same software on your instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withDualSubscription(String dualSubscription) { setDualSubscription(dualSubscription); return this; } /** *

* The instance ID of the resource. *

* * @param instanceID * The instance ID of the resource. */ public void setInstanceID(String instanceID) { this.instanceID = instanceID; } /** *

* The instance ID of the resource. *

* * @return The instance ID of the resource. */ public String getInstanceID() { return this.instanceID; } /** *

* The instance ID of the resource. *

* * @param instanceID * The instance ID of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withInstanceID(String instanceID) { setInstanceID(instanceID); return this; } /** *

* The instance type of the resource. *

* * @param instanceType * The instance type of the resource. */ public void setInstanceType(String instanceType) { this.instanceType = instanceType; } /** *

* The instance type of the resource. *

* * @return The instance type of the resource. */ public String getInstanceType() { return this.instanceType; } /** *

* The instance type of the resource. *

* * @param instanceType * The instance type of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withInstanceType(String instanceType) { setInstanceType(instanceType); return this; } /** *

* The time in which the last discovery updated the instance details. *

* * @param lastUpdatedTime * The time in which the last discovery updated the instance details. */ public void setLastUpdatedTime(String lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } /** *

* The time in which the last discovery updated the instance details. *

* * @return The time in which the last discovery updated the instance details. */ public String getLastUpdatedTime() { return this.lastUpdatedTime; } /** *

* The time in which the last discovery updated the instance details. *

* * @param lastUpdatedTime * The time in which the last discovery updated the instance details. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withLastUpdatedTime(String lastUpdatedTime) { setLastUpdatedTime(lastUpdatedTime); return this; } /** *

* The operating system software version that runs on your instance. *

* * @param osVersion * The operating system software version that runs on your instance. */ public void setOsVersion(String osVersion) { this.osVersion = osVersion; } /** *

* The operating system software version that runs on your instance. *

* * @return The operating system software version that runs on your instance. */ public String getOsVersion() { return this.osVersion; } /** *

* The operating system software version that runs on your instance. *

* * @param osVersion * The operating system software version that runs on your instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withOsVersion(String osVersion) { setOsVersion(osVersion); return this; } /** *

* The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . *

* * @return The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . */ public java.util.List getProductCode() { return productCode; } /** *

* The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . *

* * @param productCode * The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . */ public void setProductCode(java.util.Collection productCode) { if (productCode == null) { this.productCode = null; return; } this.productCode = new java.util.ArrayList(productCode); } /** *

* The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . *

*

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

* * @param productCode * The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withProductCode(String... productCode) { if (this.productCode == null) { setProductCode(new java.util.ArrayList(productCode.length)); } for (String ele : productCode) { this.productCode.add(ele); } return this; } /** *

* The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . *

* * @param productCode * The product code for the instance. For more information, see Usage operation values in the License Manager User Guide . * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withProductCode(java.util.Collection productCode) { setProductCode(productCode); return this; } /** *

* The Region the instance is running in. *

* * @param region * The Region the instance is running in. */ public void setRegion(String region) { this.region = region; } /** *

* The Region the instance is running in. *

* * @return The Region the instance is running in. */ public String getRegion() { return this.region; } /** *

* The Region the instance is running in. *

* * @param region * The Region the instance is running in. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withRegion(String region) { setRegion(region); return this; } /** *

* Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription provider that * you've registered with License Manager. *

* * @param registeredWithSubscriptionProvider * Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription * provider that you've registered with License Manager. */ public void setRegisteredWithSubscriptionProvider(String registeredWithSubscriptionProvider) { this.registeredWithSubscriptionProvider = registeredWithSubscriptionProvider; } /** *

* Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription provider that * you've registered with License Manager. *

* * @return Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription * provider that you've registered with License Manager. */ public String getRegisteredWithSubscriptionProvider() { return this.registeredWithSubscriptionProvider; } /** *

* Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription provider that * you've registered with License Manager. *

* * @param registeredWithSubscriptionProvider * Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription * provider that you've registered with License Manager. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withRegisteredWithSubscriptionProvider(String registeredWithSubscriptionProvider) { setRegisteredWithSubscriptionProvider(registeredWithSubscriptionProvider); return this; } /** *

* The status of the instance. *

* * @param status * The status of the instance. */ public void setStatus(String status) { this.status = status; } /** *

* The status of the instance. *

* * @return The status of the instance. */ public String getStatus() { return this.status; } /** *

* The status of the instance. *

* * @param status * The status of the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withStatus(String status) { setStatus(status); return this; } /** *

* The name of the license subscription that the instance uses. *

* * @param subscriptionName * The name of the license subscription that the instance uses. */ public void setSubscriptionName(String subscriptionName) { this.subscriptionName = subscriptionName; } /** *

* The name of the license subscription that the instance uses. *

* * @return The name of the license subscription that the instance uses. */ public String getSubscriptionName() { return this.subscriptionName; } /** *

* The name of the license subscription that the instance uses. *

* * @param subscriptionName * The name of the license subscription that the instance uses. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withSubscriptionName(String subscriptionName) { setSubscriptionName(subscriptionName); return this; } /** *

* The timestamp when you registered the third-party Linux subscription provider for the subscription that the * instance uses. *

* * @param subscriptionProviderCreateTime * The timestamp when you registered the third-party Linux subscription provider for the subscription that * the instance uses. */ public void setSubscriptionProviderCreateTime(String subscriptionProviderCreateTime) { this.subscriptionProviderCreateTime = subscriptionProviderCreateTime; } /** *

* The timestamp when you registered the third-party Linux subscription provider for the subscription that the * instance uses. *

* * @return The timestamp when you registered the third-party Linux subscription provider for the subscription that * the instance uses. */ public String getSubscriptionProviderCreateTime() { return this.subscriptionProviderCreateTime; } /** *

* The timestamp when you registered the third-party Linux subscription provider for the subscription that the * instance uses. *

* * @param subscriptionProviderCreateTime * The timestamp when you registered the third-party Linux subscription provider for the subscription that * the instance uses. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withSubscriptionProviderCreateTime(String subscriptionProviderCreateTime) { setSubscriptionProviderCreateTime(subscriptionProviderCreateTime); return this; } /** *

* The timestamp from the last time that the instance synced with the registered third-party Linux subscription * provider. *

* * @param subscriptionProviderUpdateTime * The timestamp from the last time that the instance synced with the registered third-party Linux * subscription provider. */ public void setSubscriptionProviderUpdateTime(String subscriptionProviderUpdateTime) { this.subscriptionProviderUpdateTime = subscriptionProviderUpdateTime; } /** *

* The timestamp from the last time that the instance synced with the registered third-party Linux subscription * provider. *

* * @return The timestamp from the last time that the instance synced with the registered third-party Linux * subscription provider. */ public String getSubscriptionProviderUpdateTime() { return this.subscriptionProviderUpdateTime; } /** *

* The timestamp from the last time that the instance synced with the registered third-party Linux subscription * provider. *

* * @param subscriptionProviderUpdateTime * The timestamp from the last time that the instance synced with the registered third-party Linux * subscription provider. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withSubscriptionProviderUpdateTime(String subscriptionProviderUpdateTime) { setSubscriptionProviderUpdateTime(subscriptionProviderUpdateTime); return this; } /** *

* The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. *

* * @param usageOperation * The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. */ public void setUsageOperation(String usageOperation) { this.usageOperation = usageOperation; } /** *

* The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. *

* * @return The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. */ public String getUsageOperation() { return this.usageOperation; } /** *

* The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. *

* * @param usageOperation * The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public Instance withUsageOperation(String usageOperation) { setUsageOperation(usageOperation); 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 (getAccountID() != null) sb.append("AccountID: ").append(getAccountID()).append(","); if (getAmiId() != null) sb.append("AmiId: ").append(getAmiId()).append(","); if (getDualSubscription() != null) sb.append("DualSubscription: ").append(getDualSubscription()).append(","); if (getInstanceID() != null) sb.append("InstanceID: ").append(getInstanceID()).append(","); if (getInstanceType() != null) sb.append("InstanceType: ").append(getInstanceType()).append(","); if (getLastUpdatedTime() != null) sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()).append(","); if (getOsVersion() != null) sb.append("OsVersion: ").append(getOsVersion()).append(","); if (getProductCode() != null) sb.append("ProductCode: ").append(getProductCode()).append(","); if (getRegion() != null) sb.append("Region: ").append(getRegion()).append(","); if (getRegisteredWithSubscriptionProvider() != null) sb.append("RegisteredWithSubscriptionProvider: ").append(getRegisteredWithSubscriptionProvider()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getSubscriptionName() != null) sb.append("SubscriptionName: ").append(getSubscriptionName()).append(","); if (getSubscriptionProviderCreateTime() != null) sb.append("SubscriptionProviderCreateTime: ").append(getSubscriptionProviderCreateTime()).append(","); if (getSubscriptionProviderUpdateTime() != null) sb.append("SubscriptionProviderUpdateTime: ").append(getSubscriptionProviderUpdateTime()).append(","); if (getUsageOperation() != null) sb.append("UsageOperation: ").append(getUsageOperation()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Instance == false) return false; Instance other = (Instance) obj; if (other.getAccountID() == null ^ this.getAccountID() == null) return false; if (other.getAccountID() != null && other.getAccountID().equals(this.getAccountID()) == false) return false; if (other.getAmiId() == null ^ this.getAmiId() == null) return false; if (other.getAmiId() != null && other.getAmiId().equals(this.getAmiId()) == false) return false; if (other.getDualSubscription() == null ^ this.getDualSubscription() == null) return false; if (other.getDualSubscription() != null && other.getDualSubscription().equals(this.getDualSubscription()) == false) return false; if (other.getInstanceID() == null ^ this.getInstanceID() == null) return false; if (other.getInstanceID() != null && other.getInstanceID().equals(this.getInstanceID()) == false) return false; if (other.getInstanceType() == null ^ this.getInstanceType() == null) return false; if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false) return false; if (other.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null) return false; if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == false) return false; if (other.getOsVersion() == null ^ this.getOsVersion() == null) return false; if (other.getOsVersion() != null && other.getOsVersion().equals(this.getOsVersion()) == false) return false; if (other.getProductCode() == null ^ this.getProductCode() == null) return false; if (other.getProductCode() != null && other.getProductCode().equals(this.getProductCode()) == false) return false; if (other.getRegion() == null ^ this.getRegion() == null) return false; if (other.getRegion() != null && other.getRegion().equals(this.getRegion()) == false) return false; if (other.getRegisteredWithSubscriptionProvider() == null ^ this.getRegisteredWithSubscriptionProvider() == null) return false; if (other.getRegisteredWithSubscriptionProvider() != null && other.getRegisteredWithSubscriptionProvider().equals(this.getRegisteredWithSubscriptionProvider()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getSubscriptionName() == null ^ this.getSubscriptionName() == null) return false; if (other.getSubscriptionName() != null && other.getSubscriptionName().equals(this.getSubscriptionName()) == false) return false; if (other.getSubscriptionProviderCreateTime() == null ^ this.getSubscriptionProviderCreateTime() == null) return false; if (other.getSubscriptionProviderCreateTime() != null && other.getSubscriptionProviderCreateTime().equals(this.getSubscriptionProviderCreateTime()) == false) return false; if (other.getSubscriptionProviderUpdateTime() == null ^ this.getSubscriptionProviderUpdateTime() == null) return false; if (other.getSubscriptionProviderUpdateTime() != null && other.getSubscriptionProviderUpdateTime().equals(this.getSubscriptionProviderUpdateTime()) == false) return false; if (other.getUsageOperation() == null ^ this.getUsageOperation() == null) return false; if (other.getUsageOperation() != null && other.getUsageOperation().equals(this.getUsageOperation()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccountID() == null) ? 0 : getAccountID().hashCode()); hashCode = prime * hashCode + ((getAmiId() == null) ? 0 : getAmiId().hashCode()); hashCode = prime * hashCode + ((getDualSubscription() == null) ? 0 : getDualSubscription().hashCode()); hashCode = prime * hashCode + ((getInstanceID() == null) ? 0 : getInstanceID().hashCode()); hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode()); hashCode = prime * hashCode + ((getOsVersion() == null) ? 0 : getOsVersion().hashCode()); hashCode = prime * hashCode + ((getProductCode() == null) ? 0 : getProductCode().hashCode()); hashCode = prime * hashCode + ((getRegion() == null) ? 0 : getRegion().hashCode()); hashCode = prime * hashCode + ((getRegisteredWithSubscriptionProvider() == null) ? 0 : getRegisteredWithSubscriptionProvider().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getSubscriptionName() == null) ? 0 : getSubscriptionName().hashCode()); hashCode = prime * hashCode + ((getSubscriptionProviderCreateTime() == null) ? 0 : getSubscriptionProviderCreateTime().hashCode()); hashCode = prime * hashCode + ((getSubscriptionProviderUpdateTime() == null) ? 0 : getSubscriptionProviderUpdateTime().hashCode()); hashCode = prime * hashCode + ((getUsageOperation() == null) ? 0 : getUsageOperation().hashCode()); return hashCode; } @Override public Instance clone() { try { return (Instance) 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.licensemanagerlinuxsubscriptions.model.transform.InstanceMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy