![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.mdc.v20200828.models.DescribeStreamLinkFlowLogsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.tencentcloudapi.mdc.v20200828.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeStreamLinkFlowLogsRequest extends AbstractModel {
/**
* The flow ID.
*/
@SerializedName("FlowId")
@Expose
private String FlowId;
/**
* The start time for query, which is 1 hour ago by default. You can query statistics in the last 7 days.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
*/
@SerializedName("StartTime")
@Expose
private String StartTime;
/**
* The end time for query, which is 1 hour after the start time by default. The longest time range allowed for query is 24 hours.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
*/
@SerializedName("EndTime")
@Expose
private String EndTime;
/**
* Whether to query the inputs or outputs. Valid values: input, output.
*/
@SerializedName("Type")
@Expose
private String [] Type;
/**
* Whether to query the primary or backup pipeline. Valid values: 0, 1.
*/
@SerializedName("Pipeline")
@Expose
private String [] Pipeline;
/**
* The page size. Value range: [1, 1000]. Default: 100.
*/
@SerializedName("PageSize")
@Expose
private Long PageSize;
/**
* Whether to sort the records by timestamp in descending or ascending order. Valid values: desc (default), asc.
*/
@SerializedName("SortType")
@Expose
private String SortType;
/**
* The page number. Value range: [1, 1000]. Default: 1.
*/
@SerializedName("PageNum")
@Expose
private Long PageNum;
/**
* Get The flow ID.
* @return FlowId The flow ID.
*/
public String getFlowId() {
return this.FlowId;
}
/**
* Set The flow ID.
* @param FlowId The flow ID.
*/
public void setFlowId(String FlowId) {
this.FlowId = FlowId;
}
/**
* Get The start time for query, which is 1 hour ago by default. You can query statistics in the last 7 days.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
* @return StartTime The start time for query, which is 1 hour ago by default. You can query statistics in the last 7 days.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
*/
public String getStartTime() {
return this.StartTime;
}
/**
* Set The start time for query, which is 1 hour ago by default. You can query statistics in the last 7 days.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
* @param StartTime The start time for query, which is 1 hour ago by default. You can query statistics in the last 7 days.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
*/
public void setStartTime(String StartTime) {
this.StartTime = StartTime;
}
/**
* Get The end time for query, which is 1 hour after the start time by default. The longest time range allowed for query is 24 hours.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
* @return EndTime The end time for query, which is 1 hour after the start time by default. The longest time range allowed for query is 24 hours.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
*/
public String getEndTime() {
return this.EndTime;
}
/**
* Set The end time for query, which is 1 hour after the start time by default. The longest time range allowed for query is 24 hours.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
* @param EndTime The end time for query, which is 1 hour after the start time by default. The longest time range allowed for query is 24 hours.
It must be in UTC format, such as `2020-01-01T12:00:00Z`.
*/
public void setEndTime(String EndTime) {
this.EndTime = EndTime;
}
/**
* Get Whether to query the inputs or outputs. Valid values: input, output.
* @return Type Whether to query the inputs or outputs. Valid values: input, output.
*/
public String [] getType() {
return this.Type;
}
/**
* Set Whether to query the inputs or outputs. Valid values: input, output.
* @param Type Whether to query the inputs or outputs. Valid values: input, output.
*/
public void setType(String [] Type) {
this.Type = Type;
}
/**
* Get Whether to query the primary or backup pipeline. Valid values: 0, 1.
* @return Pipeline Whether to query the primary or backup pipeline. Valid values: 0, 1.
*/
public String [] getPipeline() {
return this.Pipeline;
}
/**
* Set Whether to query the primary or backup pipeline. Valid values: 0, 1.
* @param Pipeline Whether to query the primary or backup pipeline. Valid values: 0, 1.
*/
public void setPipeline(String [] Pipeline) {
this.Pipeline = Pipeline;
}
/**
* Get The page size. Value range: [1, 1000]. Default: 100.
* @return PageSize The page size. Value range: [1, 1000]. Default: 100.
*/
public Long getPageSize() {
return this.PageSize;
}
/**
* Set The page size. Value range: [1, 1000]. Default: 100.
* @param PageSize The page size. Value range: [1, 1000]. Default: 100.
*/
public void setPageSize(Long PageSize) {
this.PageSize = PageSize;
}
/**
* Get Whether to sort the records by timestamp in descending or ascending order. Valid values: desc (default), asc.
* @return SortType Whether to sort the records by timestamp in descending or ascending order. Valid values: desc (default), asc.
*/
public String getSortType() {
return this.SortType;
}
/**
* Set Whether to sort the records by timestamp in descending or ascending order. Valid values: desc (default), asc.
* @param SortType Whether to sort the records by timestamp in descending or ascending order. Valid values: desc (default), asc.
*/
public void setSortType(String SortType) {
this.SortType = SortType;
}
/**
* Get The page number. Value range: [1, 1000]. Default: 1.
* @return PageNum The page number. Value range: [1, 1000]. Default: 1.
*/
public Long getPageNum() {
return this.PageNum;
}
/**
* Set The page number. Value range: [1, 1000]. Default: 1.
* @param PageNum The page number. Value range: [1, 1000]. Default: 1.
*/
public void setPageNum(Long PageNum) {
this.PageNum = PageNum;
}
public DescribeStreamLinkFlowLogsRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeStreamLinkFlowLogsRequest(DescribeStreamLinkFlowLogsRequest source) {
if (source.FlowId != null) {
this.FlowId = new String(source.FlowId);
}
if (source.StartTime != null) {
this.StartTime = new String(source.StartTime);
}
if (source.EndTime != null) {
this.EndTime = new String(source.EndTime);
}
if (source.Type != null) {
this.Type = new String[source.Type.length];
for (int i = 0; i < source.Type.length; i++) {
this.Type[i] = new String(source.Type[i]);
}
}
if (source.Pipeline != null) {
this.Pipeline = new String[source.Pipeline.length];
for (int i = 0; i < source.Pipeline.length; i++) {
this.Pipeline[i] = new String(source.Pipeline[i]);
}
}
if (source.PageSize != null) {
this.PageSize = new Long(source.PageSize);
}
if (source.SortType != null) {
this.SortType = new String(source.SortType);
}
if (source.PageNum != null) {
this.PageNum = new Long(source.PageNum);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "FlowId", this.FlowId);
this.setParamSimple(map, prefix + "StartTime", this.StartTime);
this.setParamSimple(map, prefix + "EndTime", this.EndTime);
this.setParamArraySimple(map, prefix + "Type.", this.Type);
this.setParamArraySimple(map, prefix + "Pipeline.", this.Pipeline);
this.setParamSimple(map, prefix + "PageSize", this.PageSize);
this.setParamSimple(map, prefix + "SortType", this.SortType);
this.setParamSimple(map, prefix + "PageNum", this.PageNum);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy