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

com.aliyun.cs20151215.models.CheckServiceRoleRequest 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 CheckServiceRoleRequest extends TeaModel {
    /**
     * 

The service roles that you want to check.

*

This parameter is required.

*/ @NameInMap("roles") public java.util.List roles; public static CheckServiceRoleRequest build(java.util.Map map) throws Exception { CheckServiceRoleRequest self = new CheckServiceRoleRequest(); return TeaModel.build(map, self); } public CheckServiceRoleRequest setRoles(java.util.List roles) { this.roles = roles; return this; } public java.util.List getRoles() { return this.roles; } public static class CheckServiceRoleRequestRoles extends TeaModel { /** *

The service role name.

*

This parameter is required.

* * example: *

AliyunCSManagedAutoScalerRole

*/ @NameInMap("name") public String name; public static CheckServiceRoleRequestRoles build(java.util.Map map) throws Exception { CheckServiceRoleRequestRoles self = new CheckServiceRoleRequestRoles(); return TeaModel.build(map, self); } public CheckServiceRoleRequestRoles setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy