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

com.amazonaws.services.xray.model.SamplingTargetDocument Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS X-Ray module holds the client classes that are used for communicating with AWS X-Ray 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.xray.model;

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

/**
 * 

* Temporary changes to a sampling rule configuration. To meet the global sampling target for a rule, X-Ray calculates a * new reservoir for each service based on the recent sampling results of all services that called GetSamplingTargets. *

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

* The name of the sampling rule. *

*/ private String ruleName; /** *

* The percentage of matching requests to instrument, after the reservoir is exhausted. *

*/ private Double fixedRate; /** *

* The number of requests per second that X-Ray allocated for this service. *

*/ private Integer reservoirQuota; /** *

* When the reservoir quota expires. *

*/ private java.util.Date reservoirQuotaTTL; /** *

* The number of seconds for the service to wait before getting sampling targets again. *

*/ private Integer interval; /** *

* The name of the sampling rule. *

* * @param ruleName * The name of the sampling rule. */ public void setRuleName(String ruleName) { this.ruleName = ruleName; } /** *

* The name of the sampling rule. *

* * @return The name of the sampling rule. */ public String getRuleName() { return this.ruleName; } /** *

* The name of the sampling rule. *

* * @param ruleName * The name of the sampling rule. * @return Returns a reference to this object so that method calls can be chained together. */ public SamplingTargetDocument withRuleName(String ruleName) { setRuleName(ruleName); return this; } /** *

* The percentage of matching requests to instrument, after the reservoir is exhausted. *

* * @param fixedRate * The percentage of matching requests to instrument, after the reservoir is exhausted. */ public void setFixedRate(Double fixedRate) { this.fixedRate = fixedRate; } /** *

* The percentage of matching requests to instrument, after the reservoir is exhausted. *

* * @return The percentage of matching requests to instrument, after the reservoir is exhausted. */ public Double getFixedRate() { return this.fixedRate; } /** *

* The percentage of matching requests to instrument, after the reservoir is exhausted. *

* * @param fixedRate * The percentage of matching requests to instrument, after the reservoir is exhausted. * @return Returns a reference to this object so that method calls can be chained together. */ public SamplingTargetDocument withFixedRate(Double fixedRate) { setFixedRate(fixedRate); return this; } /** *

* The number of requests per second that X-Ray allocated for this service. *

* * @param reservoirQuota * The number of requests per second that X-Ray allocated for this service. */ public void setReservoirQuota(Integer reservoirQuota) { this.reservoirQuota = reservoirQuota; } /** *

* The number of requests per second that X-Ray allocated for this service. *

* * @return The number of requests per second that X-Ray allocated for this service. */ public Integer getReservoirQuota() { return this.reservoirQuota; } /** *

* The number of requests per second that X-Ray allocated for this service. *

* * @param reservoirQuota * The number of requests per second that X-Ray allocated for this service. * @return Returns a reference to this object so that method calls can be chained together. */ public SamplingTargetDocument withReservoirQuota(Integer reservoirQuota) { setReservoirQuota(reservoirQuota); return this; } /** *

* When the reservoir quota expires. *

* * @param reservoirQuotaTTL * When the reservoir quota expires. */ public void setReservoirQuotaTTL(java.util.Date reservoirQuotaTTL) { this.reservoirQuotaTTL = reservoirQuotaTTL; } /** *

* When the reservoir quota expires. *

* * @return When the reservoir quota expires. */ public java.util.Date getReservoirQuotaTTL() { return this.reservoirQuotaTTL; } /** *

* When the reservoir quota expires. *

* * @param reservoirQuotaTTL * When the reservoir quota expires. * @return Returns a reference to this object so that method calls can be chained together. */ public SamplingTargetDocument withReservoirQuotaTTL(java.util.Date reservoirQuotaTTL) { setReservoirQuotaTTL(reservoirQuotaTTL); return this; } /** *

* The number of seconds for the service to wait before getting sampling targets again. *

* * @param interval * The number of seconds for the service to wait before getting sampling targets again. */ public void setInterval(Integer interval) { this.interval = interval; } /** *

* The number of seconds for the service to wait before getting sampling targets again. *

* * @return The number of seconds for the service to wait before getting sampling targets again. */ public Integer getInterval() { return this.interval; } /** *

* The number of seconds for the service to wait before getting sampling targets again. *

* * @param interval * The number of seconds for the service to wait before getting sampling targets again. * @return Returns a reference to this object so that method calls can be chained together. */ public SamplingTargetDocument withInterval(Integer interval) { setInterval(interval); 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 (getRuleName() != null) sb.append("RuleName: ").append(getRuleName()).append(","); if (getFixedRate() != null) sb.append("FixedRate: ").append(getFixedRate()).append(","); if (getReservoirQuota() != null) sb.append("ReservoirQuota: ").append(getReservoirQuota()).append(","); if (getReservoirQuotaTTL() != null) sb.append("ReservoirQuotaTTL: ").append(getReservoirQuotaTTL()).append(","); if (getInterval() != null) sb.append("Interval: ").append(getInterval()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SamplingTargetDocument == false) return false; SamplingTargetDocument other = (SamplingTargetDocument) obj; if (other.getRuleName() == null ^ this.getRuleName() == null) return false; if (other.getRuleName() != null && other.getRuleName().equals(this.getRuleName()) == false) return false; if (other.getFixedRate() == null ^ this.getFixedRate() == null) return false; if (other.getFixedRate() != null && other.getFixedRate().equals(this.getFixedRate()) == false) return false; if (other.getReservoirQuota() == null ^ this.getReservoirQuota() == null) return false; if (other.getReservoirQuota() != null && other.getReservoirQuota().equals(this.getReservoirQuota()) == false) return false; if (other.getReservoirQuotaTTL() == null ^ this.getReservoirQuotaTTL() == null) return false; if (other.getReservoirQuotaTTL() != null && other.getReservoirQuotaTTL().equals(this.getReservoirQuotaTTL()) == false) return false; if (other.getInterval() == null ^ this.getInterval() == null) return false; if (other.getInterval() != null && other.getInterval().equals(this.getInterval()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRuleName() == null) ? 0 : getRuleName().hashCode()); hashCode = prime * hashCode + ((getFixedRate() == null) ? 0 : getFixedRate().hashCode()); hashCode = prime * hashCode + ((getReservoirQuota() == null) ? 0 : getReservoirQuota().hashCode()); hashCode = prime * hashCode + ((getReservoirQuotaTTL() == null) ? 0 : getReservoirQuotaTTL().hashCode()); hashCode = prime * hashCode + ((getInterval() == null) ? 0 : getInterval().hashCode()); return hashCode; } @Override public SamplingTargetDocument clone() { try { return (SamplingTargetDocument) 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.xray.model.transform.SamplingTargetDocumentMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy