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

com.aliyun.sdk.service.cloudapi20160714.models.DescribeGroupLatencyRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DescribeGroupLatencyRequest} extends {@link RequestModel}
 *
 * 

DescribeGroupLatencyRequest

*/ public class DescribeGroupLatencyRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTime") @com.aliyun.core.annotation.Validation(required = true) private String endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("GroupId") @com.aliyun.core.annotation.Validation(required = true) private String groupId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SecurityToken") private String securityToken; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StageName") @com.aliyun.core.annotation.Validation(required = true) private String stageName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTime") @com.aliyun.core.annotation.Validation(required = true) private String startTime; private DescribeGroupLatencyRequest(Builder builder) { super(builder); this.endTime = builder.endTime; this.groupId = builder.groupId; this.securityToken = builder.securityToken; this.stageName = builder.stageName; this.startTime = builder.startTime; } public static Builder builder() { return new Builder(); } public static DescribeGroupLatencyRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return endTime */ public String getEndTime() { return this.endTime; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } /** * @return stageName */ public String getStageName() { return this.stageName; } /** * @return startTime */ public String getStartTime() { return this.startTime; } public static final class Builder extends Request.Builder { private String endTime; private String groupId; private String securityToken; private String stageName; private String startTime; private Builder() { super(); } private Builder(DescribeGroupLatencyRequest request) { super(request); this.endTime = request.endTime; this.groupId = request.groupId; this.securityToken = request.securityToken; this.stageName = request.stageName; this.startTime = request.startTime; } /** *

The end time of the time range to query. The time follows the ISO 8601 standard and UTC time is used. Format: YYYY-MM-DDThh:mm:ssZ.

*

This parameter is required.

* * example: *

2023-04-14T06:26:14Z

*/ public Builder endTime(String endTime) { this.putQueryParameter("EndTime", endTime); this.endTime = endTime; return this; } /** *

The ID of the API group.

*

This parameter is required.

* * example: *

d825094fdd114a869f5adb443d9b7ead

*/ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.putQueryParameter("SecurityToken", securityToken); this.securityToken = securityToken; return this; } /** *

The environment in which you want to perform the query. Valid values:

*
    *
  • RELEASE: the production environment
  • *
  • PRE: the staging environment
  • *
  • TEST: the test environment
  • *
*

This parameter is required.

* * example: *

RELEASE

*/ public Builder stageName(String stageName) { this.putQueryParameter("StageName", stageName); this.stageName = stageName; return this; } /** *

The start time of the time range to query. The time follows the ISO 8601 standard and UTC time is used. Format: YYYY-MM-DDThh:mm:ssZ.

*

This parameter is required.

* * example: *

2023-03-30T16:00:00Z

*/ public Builder startTime(String startTime) { this.putQueryParameter("StartTime", startTime); this.startTime = startTime; return this; } @Override public DescribeGroupLatencyRequest build() { return new DescribeGroupLatencyRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy