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

com.aliyun.sas20181203.models.GetAppNetworkRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetAppNetworkRequest extends TeaModel {
    /**
     * 

The ID of the cluster to which the container belongs.

*
*

You can call the DescribeGroupedContainerInstances operation to query the IDs of container clusters.

*
* * example: *

cf77xxx

*/ @NameInMap("ClusterId") public String clusterId; /** *

The end timestamp of the query. Unit: milliseconds.

*
*

The days between the start timestamp and the end timestamp cannot exceed seven days.

*
* * example: *

1650470399999

*/ @NameInMap("EndTime") public Long endTime; /** *

The start timestamp of the query. Unit: milliseconds.

*
*

The days between the start timestamp and the end timestamp cannot exceed seven days.

*
* * example: *

1649260800000

*/ @NameInMap("StartTime") public Long startTime; public static GetAppNetworkRequest build(java.util.Map map) throws Exception { GetAppNetworkRequest self = new GetAppNetworkRequest(); return TeaModel.build(map, self); } public GetAppNetworkRequest setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } public GetAppNetworkRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public GetAppNetworkRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy