-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
502 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
...ava-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/ListVccFlowInfosRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
* 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.aliyuncs.eflo.model.v20220530; | ||
|
||
import com.aliyuncs.RpcAcsRequest; | ||
import com.aliyuncs.http.MethodType; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class ListVccFlowInfosRequest extends RpcAcsRequest<ListVccFlowInfosResponse> { | ||
|
||
|
||
private Long from; | ||
|
||
private Long to; | ||
|
||
private String vccId; | ||
|
||
private String metricName; | ||
|
||
private String direction; | ||
public ListVccFlowInfosRequest() { | ||
super("eflo", "2022-05-30", "ListVccFlowInfos", "eflo"); | ||
setMethod(MethodType.POST); | ||
} | ||
|
||
public Long getFrom() { | ||
return this.from; | ||
} | ||
|
||
public void setFrom(Long from) { | ||
this.from = from; | ||
if(from != null){ | ||
putBodyParameter("From", from.toString()); | ||
} | ||
} | ||
|
||
public Long getTo() { | ||
return this.to; | ||
} | ||
|
||
public void setTo(Long to) { | ||
this.to = to; | ||
if(to != null){ | ||
putBodyParameter("To", to.toString()); | ||
} | ||
} | ||
|
||
public String getVccId() { | ||
return this.vccId; | ||
} | ||
|
||
public void setVccId(String vccId) { | ||
this.vccId = vccId; | ||
if(vccId != null){ | ||
putBodyParameter("VccId", vccId); | ||
} | ||
} | ||
|
||
public String getMetricName() { | ||
return this.metricName; | ||
} | ||
|
||
public void setMetricName(String metricName) { | ||
this.metricName = metricName; | ||
if(metricName != null){ | ||
putBodyParameter("MetricName", metricName); | ||
} | ||
} | ||
|
||
public String getDirection() { | ||
return this.direction; | ||
} | ||
|
||
public void setDirection(String direction) { | ||
this.direction = direction; | ||
if(direction != null){ | ||
putBodyParameter("Direction", direction); | ||
} | ||
} | ||
|
||
@Override | ||
public Class<ListVccFlowInfosResponse> getResponseClass() { | ||
return ListVccFlowInfosResponse.class; | ||
} | ||
|
||
} |
Oops, something went wrong.