/* * 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.licensemanager.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicense" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateLicenseRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * License name. * </p> */ private String licenseName; /** * <p> * Product name. * </p> */ private String productName; /** * <p> * Product SKU. * </p> */ private String productSKU; /** * <p> * License issuer. * </p> */ private Issuer issuer; /** * <p> * Home Region for the license. * </p> */ private String homeRegion; /** * <p> * Date and time range during which the license is valid, in ISO8601-UTC format. * </p> */ private DatetimeRange validity; /** * <p> * License entitlements. * </p> */ private java.util.List<Entitlement> entitlements; /** * <p> * License beneficiary. * </p> */ private String beneficiary; /** * <p> * Configuration for consumption of the license. Choose a provisional configuration for workloads running with * continuous connectivity. Choose a borrow configuration for workloads with offline usage. * </p> */ private ConsumptionConfiguration consumptionConfiguration; /** * <p> * Information about the license. * </p> */ private java.util.List<Metadata> licenseMetadata; /** * <p> * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * </p> */ private String clientToken; /** * <p> * License name. * </p> * * @param licenseName * License name. */ public void setLicenseName(String licenseName) { this.licenseName = licenseName; } /** * <p> * License name. * </p> * * @return License name. */ public String getLicenseName() { return this.licenseName; } /** * <p> * License name. * </p> * * @param licenseName * License name. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withLicenseName(String licenseName) { setLicenseName(licenseName); return this; } /** * <p> * Product name. * </p> * * @param productName * Product name. */ public void setProductName(String productName) { this.productName = productName; } /** * <p> * Product name. * </p> * * @return Product name. */ public String getProductName() { return this.productName; } /** * <p> * Product name. * </p> * * @param productName * Product name. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withProductName(String productName) { setProductName(productName); return this; } /** * <p> * Product SKU. * </p> * * @param productSKU * Product SKU. */ public void setProductSKU(String productSKU) { this.productSKU = productSKU; } /** * <p> * Product SKU. * </p> * * @return Product SKU. */ public String getProductSKU() { return this.productSKU; } /** * <p> * Product SKU. * </p> * * @param productSKU * Product SKU. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withProductSKU(String productSKU) { setProductSKU(productSKU); return this; } /** * <p> * License issuer. * </p> * * @param issuer * License issuer. */ public void setIssuer(Issuer issuer) { this.issuer = issuer; } /** * <p> * License issuer. * </p> * * @return License issuer. */ public Issuer getIssuer() { return this.issuer; } /** * <p> * License issuer. * </p> * * @param issuer * License issuer. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withIssuer(Issuer issuer) { setIssuer(issuer); return this; } /** * <p> * Home Region for the license. * </p> * * @param homeRegion * Home Region for the license. */ public void setHomeRegion(String homeRegion) { this.homeRegion = homeRegion; } /** * <p> * Home Region for the license. * </p> * * @return Home Region for the license. */ public String getHomeRegion() { return this.homeRegion; } /** * <p> * Home Region for the license. * </p> * * @param homeRegion * Home Region for the license. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withHomeRegion(String homeRegion) { setHomeRegion(homeRegion); return this; } /** * <p> * Date and time range during which the license is valid, in ISO8601-UTC format. * </p> * * @param validity * Date and time range during which the license is valid, in ISO8601-UTC format. */ public void setValidity(DatetimeRange validity) { this.validity = validity; } /** * <p> * Date and time range during which the license is valid, in ISO8601-UTC format. * </p> * * @return Date and time range during which the license is valid, in ISO8601-UTC format. */ public DatetimeRange getValidity() { return this.validity; } /** * <p> * Date and time range during which the license is valid, in ISO8601-UTC format. * </p> * * @param validity * Date and time range during which the license is valid, in ISO8601-UTC format. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withValidity(DatetimeRange validity) { setValidity(validity); return this; } /** * <p> * License entitlements. * </p> * * @return License entitlements. */ public java.util.List<Entitlement> getEntitlements() { return entitlements; } /** * <p> * License entitlements. * </p> * * @param entitlements * License entitlements. */ public void setEntitlements(java.util.Collection<Entitlement> entitlements) { if (entitlements == null) { this.entitlements = null; return; } this.entitlements = new java.util.ArrayList<Entitlement>(entitlements); } /** * <p> * License entitlements. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setEntitlements(java.util.Collection)} or {@link #withEntitlements(java.util.Collection)} if you want to * override the existing values. * </p> * * @param entitlements * License entitlements. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withEntitlements(Entitlement... entitlements) { if (this.entitlements == null) { setEntitlements(new java.util.ArrayList<Entitlement>(entitlements.length)); } for (Entitlement ele : entitlements) { this.entitlements.add(ele); } return this; } /** * <p> * License entitlements. * </p> * * @param entitlements * License entitlements. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withEntitlements(java.util.Collection<Entitlement> entitlements) { setEntitlements(entitlements); return this; } /** * <p> * License beneficiary. * </p> * * @param beneficiary * License beneficiary. */ public void setBeneficiary(String beneficiary) { this.beneficiary = beneficiary; } /** * <p> * License beneficiary. * </p> * * @return License beneficiary. */ public String getBeneficiary() { return this.beneficiary; } /** * <p> * License beneficiary. * </p> * * @param beneficiary * License beneficiary. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withBeneficiary(String beneficiary) { setBeneficiary(beneficiary); return this; } /** * <p> * Configuration for consumption of the license. Choose a provisional configuration for workloads running with * continuous connectivity. Choose a borrow configuration for workloads with offline usage. * </p> * * @param consumptionConfiguration * Configuration for consumption of the license. Choose a provisional configuration for workloads running * with continuous connectivity. Choose a borrow configuration for workloads with offline usage. */ public void setConsumptionConfiguration(ConsumptionConfiguration consumptionConfiguration) { this.consumptionConfiguration = consumptionConfiguration; } /** * <p> * Configuration for consumption of the license. Choose a provisional configuration for workloads running with * continuous connectivity. Choose a borrow configuration for workloads with offline usage. * </p> * * @return Configuration for consumption of the license. Choose a provisional configuration for workloads running * with continuous connectivity. Choose a borrow configuration for workloads with offline usage. */ public ConsumptionConfiguration getConsumptionConfiguration() { return this.consumptionConfiguration; } /** * <p> * Configuration for consumption of the license. Choose a provisional configuration for workloads running with * continuous connectivity. Choose a borrow configuration for workloads with offline usage. * </p> * * @param consumptionConfiguration * Configuration for consumption of the license. Choose a provisional configuration for workloads running * with continuous connectivity. Choose a borrow configuration for workloads with offline usage. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withConsumptionConfiguration(ConsumptionConfiguration consumptionConfiguration) { setConsumptionConfiguration(consumptionConfiguration); return this; } /** * <p> * Information about the license. * </p> * * @return Information about the license. */ public java.util.List<Metadata> getLicenseMetadata() { return licenseMetadata; } /** * <p> * Information about the license. * </p> * * @param licenseMetadata * Information about the license. */ public void setLicenseMetadata(java.util.Collection<Metadata> licenseMetadata) { if (licenseMetadata == null) { this.licenseMetadata = null; return; } this.licenseMetadata = new java.util.ArrayList<Metadata>(licenseMetadata); } /** * <p> * Information about the license. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setLicenseMetadata(java.util.Collection)} or {@link #withLicenseMetadata(java.util.Collection)} if you * want to override the existing values. * </p> * * @param licenseMetadata * Information about the license. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withLicenseMetadata(Metadata... licenseMetadata) { if (this.licenseMetadata == null) { setLicenseMetadata(new java.util.ArrayList<Metadata>(licenseMetadata.length)); } for (Metadata ele : licenseMetadata) { this.licenseMetadata.add(ele); } return this; } /** * <p> * Information about the license. * </p> * * @param licenseMetadata * Information about the license. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withLicenseMetadata(java.util.Collection<Metadata> licenseMetadata) { setLicenseMetadata(licenseMetadata); return this; } /** * <p> * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * </p> * * @param clientToken * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** * <p> * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * </p> * * @return Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. */ public String getClientToken() { return this.clientToken; } /** * <p> * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * </p> * * @param clientToken * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateLicenseRequest withClientToken(String clientToken) { setClientToken(clientToken); 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 (getLicenseName() != null) sb.append("LicenseName: ").append(getLicenseName()).append(","); if (getProductName() != null) sb.append("ProductName: ").append(getProductName()).append(","); if (getProductSKU() != null) sb.append("ProductSKU: ").append(getProductSKU()).append(","); if (getIssuer() != null) sb.append("Issuer: ").append(getIssuer()).append(","); if (getHomeRegion() != null) sb.append("HomeRegion: ").append(getHomeRegion()).append(","); if (getValidity() != null) sb.append("Validity: ").append(getValidity()).append(","); if (getEntitlements() != null) sb.append("Entitlements: ").append(getEntitlements()).append(","); if (getBeneficiary() != null) sb.append("Beneficiary: ").append(getBeneficiary()).append(","); if (getConsumptionConfiguration() != null) sb.append("ConsumptionConfiguration: ").append(getConsumptionConfiguration()).append(","); if (getLicenseMetadata() != null) sb.append("LicenseMetadata: ").append(getLicenseMetadata()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateLicenseRequest == false) return false; CreateLicenseRequest other = (CreateLicenseRequest) obj; if (other.getLicenseName() == null ^ this.getLicenseName() == null) return false; if (other.getLicenseName() != null && other.getLicenseName().equals(this.getLicenseName()) == false) return false; if (other.getProductName() == null ^ this.getProductName() == null) return false; if (other.getProductName() != null && other.getProductName().equals(this.getProductName()) == false) return false; if (other.getProductSKU() == null ^ this.getProductSKU() == null) return false; if (other.getProductSKU() != null && other.getProductSKU().equals(this.getProductSKU()) == false) return false; if (other.getIssuer() == null ^ this.getIssuer() == null) return false; if (other.getIssuer() != null && other.getIssuer().equals(this.getIssuer()) == false) return false; if (other.getHomeRegion() == null ^ this.getHomeRegion() == null) return false; if (other.getHomeRegion() != null && other.getHomeRegion().equals(this.getHomeRegion()) == false) return false; if (other.getValidity() == null ^ this.getValidity() == null) return false; if (other.getValidity() != null && other.getValidity().equals(this.getValidity()) == false) return false; if (other.getEntitlements() == null ^ this.getEntitlements() == null) return false; if (other.getEntitlements() != null && other.getEntitlements().equals(this.getEntitlements()) == false) return false; if (other.getBeneficiary() == null ^ this.getBeneficiary() == null) return false; if (other.getBeneficiary() != null && other.getBeneficiary().equals(this.getBeneficiary()) == false) return false; if (other.getConsumptionConfiguration() == null ^ this.getConsumptionConfiguration() == null) return false; if (other.getConsumptionConfiguration() != null && other.getConsumptionConfiguration().equals(this.getConsumptionConfiguration()) == false) return false; if (other.getLicenseMetadata() == null ^ this.getLicenseMetadata() == null) return false; if (other.getLicenseMetadata() != null && other.getLicenseMetadata().equals(this.getLicenseMetadata()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLicenseName() == null) ? 0 : getLicenseName().hashCode()); hashCode = prime * hashCode + ((getProductName() == null) ? 0 : getProductName().hashCode()); hashCode = prime * hashCode + ((getProductSKU() == null) ? 0 : getProductSKU().hashCode()); hashCode = prime * hashCode + ((getIssuer() == null) ? 0 : getIssuer().hashCode()); hashCode = prime * hashCode + ((getHomeRegion() == null) ? 0 : getHomeRegion().hashCode()); hashCode = prime * hashCode + ((getValidity() == null) ? 0 : getValidity().hashCode()); hashCode = prime * hashCode + ((getEntitlements() == null) ? 0 : getEntitlements().hashCode()); hashCode = prime * hashCode + ((getBeneficiary() == null) ? 0 : getBeneficiary().hashCode()); hashCode = prime * hashCode + ((getConsumptionConfiguration() == null) ? 0 : getConsumptionConfiguration().hashCode()); hashCode = prime * hashCode + ((getLicenseMetadata() == null) ? 0 : getLicenseMetadata().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); return hashCode; } @Override public CreateLicenseRequest clone() { return (CreateLicenseRequest) super.clone(); } }