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

com.aliyun.ros20190910.models.GetFeatureDetailsRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetFeatureDetailsRequest extends TeaModel {
    /**
     * 

The one or more features that you want to query. Valid values:

*
    *
  • Terraform: the Terraform hosting feature.
  • *
  • ResourceCleaner: the resource cleaner feature. You can use ALIYUN::ROS::ResourceCleaner to create a resource cleaner.
  • *
  • TemplateScratch: the scenario feature.
  • *
  • All: all features that are supported by ROS.
  • *
*

This parameter is required.

* * example: *

Terraform

*/ @NameInMap("Feature") public String feature; /** *

The region ID of the stack. You can call the DescribeRegions operation to query the most recent region list.

*

This parameter is required.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; public static GetFeatureDetailsRequest build(java.util.Map map) throws Exception { GetFeatureDetailsRequest self = new GetFeatureDetailsRequest(); return TeaModel.build(map, self); } public GetFeatureDetailsRequest setFeature(String feature) { this.feature = feature; return this; } public String getFeature() { return this.feature; } public GetFeatureDetailsRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy