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

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

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

import com.aliyun.tea.*;

public class ListPodRiskRequest extends TeaModel {
    /**
     * 

The name of the application.

*/ @NameInMap("AppName") public String appName; /** *

The ID of the container cluster.

*
*

> You can call the [DescribeGroupedContainerInstances](~~182997~~) operation to query the IDs of container clusters.

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

The number of the page to return.

*/ @NameInMap("CurrentPage") public Long currentPage; /** *

The namespace of the Kubernetes cluster.

*/ @NameInMap("Namespace") public String namespace; /** *

The number of entries to return on each page. Default value: 20.

*/ @NameInMap("PageSize") public Long pageSize; /** *

The name of the pod.

*/ @NameInMap("PodName") public String podName; public static ListPodRiskRequest build(java.util.Map map) throws Exception { ListPodRiskRequest self = new ListPodRiskRequest(); return TeaModel.build(map, self); } public ListPodRiskRequest setAppName(String appName) { this.appName = appName; return this; } public String getAppName() { return this.appName; } public ListPodRiskRequest setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } public ListPodRiskRequest setCurrentPage(Long currentPage) { this.currentPage = currentPage; return this; } public Long getCurrentPage() { return this.currentPage; } public ListPodRiskRequest setNamespace(String namespace) { this.namespace = namespace; return this; } public String getNamespace() { return this.namespace; } public ListPodRiskRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public ListPodRiskRequest setPodName(String podName) { this.podName = podName; return this; } public String getPodName() { return this.podName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy