/src/main/java/com/tencentcloudapi/mongodb/v20180408/models/TerminateDBInstanceRequest.java

https://github.com/TencentCloud/tencentcloud-sdk-java · Java · 56 lines · 19 code · 8 blank · 29 comment · 0 complexity · f1f3edb5cbac7507cb29d765bb00b65d MD5 · raw file

  1. /*
  2. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.tencentcloudapi.mongodb.v20180408.models;
  17. import com.tencentcloudapi.common.AbstractModel;
  18. import com.google.gson.annotations.SerializedName;
  19. import com.google.gson.annotations.Expose;
  20. import java.util.HashMap;
  21. public class TerminateDBInstanceRequest extends AbstractModel{
  22. /**
  23. * 实例ID,格式如:cmgo-p8vnipr5。
  24. */
  25. @SerializedName("InstanceId")
  26. @Expose
  27. private String InstanceId;
  28. /**
  29. * Get 实例ID,格式如:cmgo-p8vnipr5。
  30. * @return InstanceId 实例ID,格式如:cmgo-p8vnipr5。
  31. */
  32. public String getInstanceId() {
  33. return this.InstanceId;
  34. }
  35. /**
  36. * Set 实例ID,格式如:cmgo-p8vnipr5。
  37. * @param InstanceId 实例ID,格式如:cmgo-p8vnipr5。
  38. */
  39. public void setInstanceId(String InstanceId) {
  40. this.InstanceId = InstanceId;
  41. }
  42. /**
  43. * Internal implementation, normal users should not use it.
  44. */
  45. public void toMap(HashMap<String, String> map, String prefix) {
  46. this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
  47. }
  48. }