
com.amazonaws.services.appconfig.model.ConfigurationProfileSummary Maven / Gradle / Ivy
/*
* 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.appconfig.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A summary of a configuration profile.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ConfigurationProfileSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The application ID.
*
*/
private String applicationId;
/**
*
* The ID of the configuration profile.
*
*/
private String id;
/**
*
* The name of the configuration profile.
*
*/
private String name;
/**
*
* The URI location of the configuration.
*
*/
private String locationUri;
/**
*
* The types of validators in the configuration profile.
*
*/
private java.util.List validatorTypes;
/**
*
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
*
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
*
*/
private String type;
/**
*
* The application ID.
*
*
* @param applicationId
* The application ID.
*/
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
/**
*
* The application ID.
*
*
* @return The application ID.
*/
public String getApplicationId() {
return this.applicationId;
}
/**
*
* The application ID.
*
*
* @param applicationId
* The application ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConfigurationProfileSummary withApplicationId(String applicationId) {
setApplicationId(applicationId);
return this;
}
/**
*
* The ID of the configuration profile.
*
*
* @param id
* The ID of the configuration profile.
*/
public void setId(String id) {
this.id = id;
}
/**
*
* The ID of the configuration profile.
*
*
* @return The ID of the configuration profile.
*/
public String getId() {
return this.id;
}
/**
*
* The ID of the configuration profile.
*
*
* @param id
* The ID of the configuration profile.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConfigurationProfileSummary withId(String id) {
setId(id);
return this;
}
/**
*
* The name of the configuration profile.
*
*
* @param name
* The name of the configuration profile.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the configuration profile.
*
*
* @return The name of the configuration profile.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the configuration profile.
*
*
* @param name
* The name of the configuration profile.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConfigurationProfileSummary withName(String name) {
setName(name);
return this;
}
/**
*
* The URI location of the configuration.
*
*
* @param locationUri
* The URI location of the configuration.
*/
public void setLocationUri(String locationUri) {
this.locationUri = locationUri;
}
/**
*
* The URI location of the configuration.
*
*
* @return The URI location of the configuration.
*/
public String getLocationUri() {
return this.locationUri;
}
/**
*
* The URI location of the configuration.
*
*
* @param locationUri
* The URI location of the configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConfigurationProfileSummary withLocationUri(String locationUri) {
setLocationUri(locationUri);
return this;
}
/**
*
* The types of validators in the configuration profile.
*
*
* @return The types of validators in the configuration profile.
* @see ValidatorType
*/
public java.util.List getValidatorTypes() {
return validatorTypes;
}
/**
*
* The types of validators in the configuration profile.
*
*
* @param validatorTypes
* The types of validators in the configuration profile.
* @see ValidatorType
*/
public void setValidatorTypes(java.util.Collection validatorTypes) {
if (validatorTypes == null) {
this.validatorTypes = null;
return;
}
this.validatorTypes = new java.util.ArrayList(validatorTypes);
}
/**
*
* The types of validators in the configuration profile.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setValidatorTypes(java.util.Collection)} or {@link #withValidatorTypes(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param validatorTypes
* The types of validators in the configuration profile.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ValidatorType
*/
public ConfigurationProfileSummary withValidatorTypes(String... validatorTypes) {
if (this.validatorTypes == null) {
setValidatorTypes(new java.util.ArrayList(validatorTypes.length));
}
for (String ele : validatorTypes) {
this.validatorTypes.add(ele);
}
return this;
}
/**
*
* The types of validators in the configuration profile.
*
*
* @param validatorTypes
* The types of validators in the configuration profile.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ValidatorType
*/
public ConfigurationProfileSummary withValidatorTypes(java.util.Collection validatorTypes) {
setValidatorTypes(validatorTypes);
return this;
}
/**
*
* The types of validators in the configuration profile.
*
*
* @param validatorTypes
* The types of validators in the configuration profile.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ValidatorType
*/
public ConfigurationProfileSummary withValidatorTypes(ValidatorType... validatorTypes) {
java.util.ArrayList validatorTypesCopy = new java.util.ArrayList(validatorTypes.length);
for (ValidatorType value : validatorTypes) {
validatorTypesCopy.add(value.toString());
}
if (getValidatorTypes() == null) {
setValidatorTypes(validatorTypesCopy);
} else {
getValidatorTypes().addAll(validatorTypesCopy);
}
return this;
}
/**
*
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
*
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
*
*
* @param type
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or
* disable new features and freeform configurations to distribute configurations to an application. When
* calling this API, enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
*
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
*
*
* @return The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or
* disable new features and freeform configurations to distribute configurations to an application. When
* calling this API, enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
*/
public String getType() {
return this.type;
}
/**
*
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
*
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
*
*
* @param type
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or
* disable new features and freeform configurations to distribute configurations to an application. When
* calling this API, enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
*
* AWS.Freeform
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConfigurationProfileSummary withType(String type) {
setType(type);
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 (getApplicationId() != null)
sb.append("ApplicationId: ").append(getApplicationId()).append(",");
if (getId() != null)
sb.append("Id: ").append(getId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getLocationUri() != null)
sb.append("LocationUri: ").append(getLocationUri()).append(",");
if (getValidatorTypes() != null)
sb.append("ValidatorTypes: ").append(getValidatorTypes()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ConfigurationProfileSummary == false)
return false;
ConfigurationProfileSummary other = (ConfigurationProfileSummary) obj;
if (other.getApplicationId() == null ^ this.getApplicationId() == null)
return false;
if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false)
return false;
if (other.getId() == null ^ this.getId() == null)
return false;
if (other.getId() != null && other.getId().equals(this.getId()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getLocationUri() == null ^ this.getLocationUri() == null)
return false;
if (other.getLocationUri() != null && other.getLocationUri().equals(this.getLocationUri()) == false)
return false;
if (other.getValidatorTypes() == null ^ this.getValidatorTypes() == null)
return false;
if (other.getValidatorTypes() != null && other.getValidatorTypes().equals(this.getValidatorTypes()) == false)
return false;
if (other.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode());
hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getLocationUri() == null) ? 0 : getLocationUri().hashCode());
hashCode = prime * hashCode + ((getValidatorTypes() == null) ? 0 : getValidatorTypes().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
return hashCode;
}
@Override
public ConfigurationProfileSummary clone() {
try {
return (ConfigurationProfileSummary) 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.appconfig.model.transform.ConfigurationProfileSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}