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

com.aliyun.cs20151215.models.CleanClusterUserPermissionsRequest Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;

import com.aliyun.tea.*;

public class CleanClusterUserPermissionsRequest extends TeaModel {
    /**
     * 

Specifies whether to forcefully delete the specified kubeconfig files. Valid values:

*
    *
  • false (default): checks the cluster access records within the previous seven days before deleting the kubeconfig files. The kubeconfig files are not deleted if cluster access records are found or fail to be retrieved.
  • *
  • true: forcefully deletes the kubeconfig files without checking cluster access records.
  • *
* * example: *

false

*/ @NameInMap("Force") public Boolean force; public static CleanClusterUserPermissionsRequest build(java.util.Map map) throws Exception { CleanClusterUserPermissionsRequest self = new CleanClusterUserPermissionsRequest(); return TeaModel.build(map, self); } public CleanClusterUserPermissionsRequest setForce(Boolean force) { this.force = force; return this; } public Boolean getForce() { return this.force; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy