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

com.amazonaws.services.licensemanagerlinuxsubscriptions.model.GetServiceSettingsResult 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;

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

    /**
     * 

* The Region in which License Manager displays the aggregated data for Linux subscriptions. *

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

* Lists if discovery has been enabled for Linux subscriptions. *

*/ private String linuxSubscriptionsDiscovery; /** *

* Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations integration * has been enabled, and which Regions data will be aggregated from. *

*/ private LinuxSubscriptionsDiscoverySettings linuxSubscriptionsDiscoverySettings; /** *

* Indicates the status of Linux subscriptions settings being applied. *

*/ private String status; /** *

* A message which details the Linux subscriptions service settings current status. *

*/ private java.util.Map statusMessage; /** *

* The Region in which License Manager displays the aggregated data for Linux subscriptions. *

* * @return The Region in which License Manager displays the aggregated data for Linux subscriptions. */ public java.util.List getHomeRegions() { return homeRegions; } /** *

* The Region in which License Manager displays the aggregated data for Linux subscriptions. *

* * @param homeRegions * The Region in which License Manager displays the aggregated data for Linux subscriptions. */ public void setHomeRegions(java.util.Collection homeRegions) { if (homeRegions == null) { this.homeRegions = null; return; } this.homeRegions = new java.util.ArrayList(homeRegions); } /** *

* The Region in which License Manager displays the aggregated data for Linux subscriptions. *

*

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

* * @param homeRegions * The Region in which License Manager displays the aggregated data for Linux subscriptions. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceSettingsResult withHomeRegions(String... homeRegions) { if (this.homeRegions == null) { setHomeRegions(new java.util.ArrayList(homeRegions.length)); } for (String ele : homeRegions) { this.homeRegions.add(ele); } return this; } /** *

* The Region in which License Manager displays the aggregated data for Linux subscriptions. *

* * @param homeRegions * The Region in which License Manager displays the aggregated data for Linux subscriptions. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceSettingsResult withHomeRegions(java.util.Collection homeRegions) { setHomeRegions(homeRegions); return this; } /** *

* Lists if discovery has been enabled for Linux subscriptions. *

* * @param linuxSubscriptionsDiscovery * Lists if discovery has been enabled for Linux subscriptions. * @see LinuxSubscriptionsDiscovery */ public void setLinuxSubscriptionsDiscovery(String linuxSubscriptionsDiscovery) { this.linuxSubscriptionsDiscovery = linuxSubscriptionsDiscovery; } /** *

* Lists if discovery has been enabled for Linux subscriptions. *

* * @return Lists if discovery has been enabled for Linux subscriptions. * @see LinuxSubscriptionsDiscovery */ public String getLinuxSubscriptionsDiscovery() { return this.linuxSubscriptionsDiscovery; } /** *

* Lists if discovery has been enabled for Linux subscriptions. *

* * @param linuxSubscriptionsDiscovery * Lists if discovery has been enabled for Linux subscriptions. * @return Returns a reference to this object so that method calls can be chained together. * @see LinuxSubscriptionsDiscovery */ public GetServiceSettingsResult withLinuxSubscriptionsDiscovery(String linuxSubscriptionsDiscovery) { setLinuxSubscriptionsDiscovery(linuxSubscriptionsDiscovery); return this; } /** *

* Lists if discovery has been enabled for Linux subscriptions. *

* * @param linuxSubscriptionsDiscovery * Lists if discovery has been enabled for Linux subscriptions. * @return Returns a reference to this object so that method calls can be chained together. * @see LinuxSubscriptionsDiscovery */ public GetServiceSettingsResult withLinuxSubscriptionsDiscovery(LinuxSubscriptionsDiscovery linuxSubscriptionsDiscovery) { this.linuxSubscriptionsDiscovery = linuxSubscriptionsDiscovery.toString(); return this; } /** *

* Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations integration * has been enabled, and which Regions data will be aggregated from. *

* * @param linuxSubscriptionsDiscoverySettings * Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations * integration has been enabled, and which Regions data will be aggregated from. */ public void setLinuxSubscriptionsDiscoverySettings(LinuxSubscriptionsDiscoverySettings linuxSubscriptionsDiscoverySettings) { this.linuxSubscriptionsDiscoverySettings = linuxSubscriptionsDiscoverySettings; } /** *

* Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations integration * has been enabled, and which Regions data will be aggregated from. *

* * @return Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations * integration has been enabled, and which Regions data will be aggregated from. */ public LinuxSubscriptionsDiscoverySettings getLinuxSubscriptionsDiscoverySettings() { return this.linuxSubscriptionsDiscoverySettings; } /** *

* Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations integration * has been enabled, and which Regions data will be aggregated from. *

* * @param linuxSubscriptionsDiscoverySettings * Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations * integration has been enabled, and which Regions data will be aggregated from. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceSettingsResult withLinuxSubscriptionsDiscoverySettings(LinuxSubscriptionsDiscoverySettings linuxSubscriptionsDiscoverySettings) { setLinuxSubscriptionsDiscoverySettings(linuxSubscriptionsDiscoverySettings); return this; } /** *

* Indicates the status of Linux subscriptions settings being applied. *

* * @param status * Indicates the status of Linux subscriptions settings being applied. * @see Status */ public void setStatus(String status) { this.status = status; } /** *

* Indicates the status of Linux subscriptions settings being applied. *

* * @return Indicates the status of Linux subscriptions settings being applied. * @see Status */ public String getStatus() { return this.status; } /** *

* Indicates the status of Linux subscriptions settings being applied. *

* * @param status * Indicates the status of Linux subscriptions settings being applied. * @return Returns a reference to this object so that method calls can be chained together. * @see Status */ public GetServiceSettingsResult withStatus(String status) { setStatus(status); return this; } /** *

* Indicates the status of Linux subscriptions settings being applied. *

* * @param status * Indicates the status of Linux subscriptions settings being applied. * @return Returns a reference to this object so that method calls can be chained together. * @see Status */ public GetServiceSettingsResult withStatus(Status status) { this.status = status.toString(); return this; } /** *

* A message which details the Linux subscriptions service settings current status. *

* * @return A message which details the Linux subscriptions service settings current status. */ public java.util.Map getStatusMessage() { return statusMessage; } /** *

* A message which details the Linux subscriptions service settings current status. *

* * @param statusMessage * A message which details the Linux subscriptions service settings current status. */ public void setStatusMessage(java.util.Map statusMessage) { this.statusMessage = statusMessage; } /** *

* A message which details the Linux subscriptions service settings current status. *

* * @param statusMessage * A message which details the Linux subscriptions service settings current status. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceSettingsResult withStatusMessage(java.util.Map statusMessage) { setStatusMessage(statusMessage); return this; } /** * Add a single StatusMessage entry * * @see GetServiceSettingsResult#withStatusMessage * @returns a reference to this object so that method calls can be chained together. */ public GetServiceSettingsResult addStatusMessageEntry(String key, String value) { if (null == this.statusMessage) { this.statusMessage = new java.util.HashMap(); } if (this.statusMessage.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.statusMessage.put(key, value); return this; } /** * Removes all the entries added into StatusMessage. * * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceSettingsResult clearStatusMessageEntries() { this.statusMessage = null; 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 (getHomeRegions() != null) sb.append("HomeRegions: ").append(getHomeRegions()).append(","); if (getLinuxSubscriptionsDiscovery() != null) sb.append("LinuxSubscriptionsDiscovery: ").append(getLinuxSubscriptionsDiscovery()).append(","); if (getLinuxSubscriptionsDiscoverySettings() != null) sb.append("LinuxSubscriptionsDiscoverySettings: ").append(getLinuxSubscriptionsDiscoverySettings()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getStatusMessage() != null) sb.append("StatusMessage: ").append(getStatusMessage()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetServiceSettingsResult == false) return false; GetServiceSettingsResult other = (GetServiceSettingsResult) obj; if (other.getHomeRegions() == null ^ this.getHomeRegions() == null) return false; if (other.getHomeRegions() != null && other.getHomeRegions().equals(this.getHomeRegions()) == false) return false; if (other.getLinuxSubscriptionsDiscovery() == null ^ this.getLinuxSubscriptionsDiscovery() == null) return false; if (other.getLinuxSubscriptionsDiscovery() != null && other.getLinuxSubscriptionsDiscovery().equals(this.getLinuxSubscriptionsDiscovery()) == false) return false; if (other.getLinuxSubscriptionsDiscoverySettings() == null ^ this.getLinuxSubscriptionsDiscoverySettings() == null) return false; if (other.getLinuxSubscriptionsDiscoverySettings() != null && other.getLinuxSubscriptionsDiscoverySettings().equals(this.getLinuxSubscriptionsDiscoverySettings()) == 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.getStatusMessage() == null ^ this.getStatusMessage() == null) return false; if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getHomeRegions() == null) ? 0 : getHomeRegions().hashCode()); hashCode = prime * hashCode + ((getLinuxSubscriptionsDiscovery() == null) ? 0 : getLinuxSubscriptionsDiscovery().hashCode()); hashCode = prime * hashCode + ((getLinuxSubscriptionsDiscoverySettings() == null) ? 0 : getLinuxSubscriptionsDiscoverySettings().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode()); return hashCode; } @Override public GetServiceSettingsResult clone() { try { return (GetServiceSettingsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy