/* * 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.osis.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UpdatePipelineRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the pipeline to update. *
*/ private String pipelineName; /** ** The minimum pipeline capacity, in Ingestion Compute Units (ICUs). *
*/ private Integer minUnits; /** ** The maximum pipeline capacity, in Ingestion Compute Units (ICUs) *
*/ private Integer maxUnits; /** *
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a
* .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
*
* Key-value pairs to configure log publishing. *
*/ private LogPublishingOptions logPublishingOptions; /** ** The name of the pipeline to update. *
* * @param pipelineName * The name of the pipeline to update. */ public void setPipelineName(String pipelineName) { this.pipelineName = pipelineName; } /** ** The name of the pipeline to update. *
* * @return The name of the pipeline to update. */ public String getPipelineName() { return this.pipelineName; } /** ** The name of the pipeline to update. *
* * @param pipelineName * The name of the pipeline to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePipelineRequest withPipelineName(String pipelineName) { setPipelineName(pipelineName); return this; } /** ** The minimum pipeline capacity, in Ingestion Compute Units (ICUs). *
* * @param minUnits * The minimum pipeline capacity, in Ingestion Compute Units (ICUs). */ public void setMinUnits(Integer minUnits) { this.minUnits = minUnits; } /** ** The minimum pipeline capacity, in Ingestion Compute Units (ICUs). *
* * @return The minimum pipeline capacity, in Ingestion Compute Units (ICUs). */ public Integer getMinUnits() { return this.minUnits; } /** ** The minimum pipeline capacity, in Ingestion Compute Units (ICUs). *
* * @param minUnits * The minimum pipeline capacity, in Ingestion Compute Units (ICUs). * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePipelineRequest withMinUnits(Integer minUnits) { setMinUnits(minUnits); return this; } /** ** The maximum pipeline capacity, in Ingestion Compute Units (ICUs) *
* * @param maxUnits * The maximum pipeline capacity, in Ingestion Compute Units (ICUs) */ public void setMaxUnits(Integer maxUnits) { this.maxUnits = maxUnits; } /** ** The maximum pipeline capacity, in Ingestion Compute Units (ICUs) *
* * @return The maximum pipeline capacity, in Ingestion Compute Units (ICUs) */ public Integer getMaxUnits() { return this.maxUnits; } /** ** The maximum pipeline capacity, in Ingestion Compute Units (ICUs) *
* * @param maxUnits * The maximum pipeline capacity, in Ingestion Compute Units (ICUs) * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePipelineRequest withMaxUnits(Integer maxUnits) { setMaxUnits(maxUnits); return this; } /** *
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a
* .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
*
\n
.
*/
public void setPipelineConfigurationBody(String pipelineConfigurationBody) {
this.pipelineConfigurationBody = pipelineConfigurationBody;
}
/**
*
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a
* .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
*
\n
.
*/
public String getPipelineConfigurationBody() {
return this.pipelineConfigurationBody;
}
/**
*
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a
* .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
*
\n
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdatePipelineRequest withPipelineConfigurationBody(String pipelineConfigurationBody) {
setPipelineConfigurationBody(pipelineConfigurationBody);
return this;
}
/**
* * Key-value pairs to configure log publishing. *
* * @param logPublishingOptions * Key-value pairs to configure log publishing. */ public void setLogPublishingOptions(LogPublishingOptions logPublishingOptions) { this.logPublishingOptions = logPublishingOptions; } /** ** Key-value pairs to configure log publishing. *
* * @return Key-value pairs to configure log publishing. */ public LogPublishingOptions getLogPublishingOptions() { return this.logPublishingOptions; } /** ** Key-value pairs to configure log publishing. *
* * @param logPublishingOptions * Key-value pairs to configure log publishing. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePipelineRequest withLogPublishingOptions(LogPublishingOptions logPublishingOptions) { setLogPublishingOptions(logPublishingOptions); 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 (getPipelineName() != null) sb.append("PipelineName: ").append(getPipelineName()).append(","); if (getMinUnits() != null) sb.append("MinUnits: ").append(getMinUnits()).append(","); if (getMaxUnits() != null) sb.append("MaxUnits: ").append(getMaxUnits()).append(","); if (getPipelineConfigurationBody() != null) sb.append("PipelineConfigurationBody: ").append(getPipelineConfigurationBody()).append(","); if (getLogPublishingOptions() != null) sb.append("LogPublishingOptions: ").append(getLogPublishingOptions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdatePipelineRequest == false) return false; UpdatePipelineRequest other = (UpdatePipelineRequest) obj; if (other.getPipelineName() == null ^ this.getPipelineName() == null) return false; if (other.getPipelineName() != null && other.getPipelineName().equals(this.getPipelineName()) == false) return false; if (other.getMinUnits() == null ^ this.getMinUnits() == null) return false; if (other.getMinUnits() != null && other.getMinUnits().equals(this.getMinUnits()) == false) return false; if (other.getMaxUnits() == null ^ this.getMaxUnits() == null) return false; if (other.getMaxUnits() != null && other.getMaxUnits().equals(this.getMaxUnits()) == false) return false; if (other.getPipelineConfigurationBody() == null ^ this.getPipelineConfigurationBody() == null) return false; if (other.getPipelineConfigurationBody() != null && other.getPipelineConfigurationBody().equals(this.getPipelineConfigurationBody()) == false) return false; if (other.getLogPublishingOptions() == null ^ this.getLogPublishingOptions() == null) return false; if (other.getLogPublishingOptions() != null && other.getLogPublishingOptions().equals(this.getLogPublishingOptions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPipelineName() == null) ? 0 : getPipelineName().hashCode()); hashCode = prime * hashCode + ((getMinUnits() == null) ? 0 : getMinUnits().hashCode()); hashCode = prime * hashCode + ((getMaxUnits() == null) ? 0 : getMaxUnits().hashCode()); hashCode = prime * hashCode + ((getPipelineConfigurationBody() == null) ? 0 : getPipelineConfigurationBody().hashCode()); hashCode = prime * hashCode + ((getLogPublishingOptions() == null) ? 0 : getLogPublishingOptions().hashCode()); return hashCode; } @Override public UpdatePipelineRequest clone() { return (UpdatePipelineRequest) super.clone(); } }