/sdk/cosmos/mgmt-v2020_03_01/src/main/java/com/microsoft/azure/management/cosmosdb/v2020_03_01/MongoDBCollectionGetPropertiesResource.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 144 lines · 48 code · 18 blank · 78 comment · 0 complexity · aebd025d9c46f33c7f00c2119ee6caf3 MD5 · raw file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.management.cosmosdb.v2020_03_01;
  9. import java.util.Map;
  10. import java.util.List;
  11. import com.fasterxml.jackson.annotation.JsonProperty;
  12. /**
  13. * The MongoDBCollectionGetPropertiesResource model.
  14. */
  15. public class MongoDBCollectionGetPropertiesResource {
  16. /**
  17. * Name of the Cosmos DB MongoDB collection.
  18. */
  19. @JsonProperty(value = "id", required = true)
  20. private String id;
  21. /**
  22. * A key-value pair of shard keys to be applied for the request.
  23. */
  24. @JsonProperty(value = "shardKey")
  25. private Map<String, String> shardKey;
  26. /**
  27. * List of index keys.
  28. */
  29. @JsonProperty(value = "indexes")
  30. private List<MongoIndex> indexes;
  31. /**
  32. * A system generated property. A unique identifier.
  33. */
  34. @JsonProperty(value = "_rid", access = JsonProperty.Access.WRITE_ONLY)
  35. private String _rid;
  36. /**
  37. * A system generated property that denotes the last updated timestamp of
  38. * the resource.
  39. */
  40. @JsonProperty(value = "_ts", access = JsonProperty.Access.WRITE_ONLY)
  41. private Object _ts;
  42. /**
  43. * A system generated property representing the resource etag required for
  44. * optimistic concurrency control.
  45. */
  46. @JsonProperty(value = "_etag", access = JsonProperty.Access.WRITE_ONLY)
  47. private String _etag;
  48. /**
  49. * Get name of the Cosmos DB MongoDB collection.
  50. *
  51. * @return the id value
  52. */
  53. public String id() {
  54. return this.id;
  55. }
  56. /**
  57. * Set name of the Cosmos DB MongoDB collection.
  58. *
  59. * @param id the id value to set
  60. * @return the MongoDBCollectionGetPropertiesResource object itself.
  61. */
  62. public MongoDBCollectionGetPropertiesResource withId(String id) {
  63. this.id = id;
  64. return this;
  65. }
  66. /**
  67. * Get a key-value pair of shard keys to be applied for the request.
  68. *
  69. * @return the shardKey value
  70. */
  71. public Map<String, String> shardKey() {
  72. return this.shardKey;
  73. }
  74. /**
  75. * Set a key-value pair of shard keys to be applied for the request.
  76. *
  77. * @param shardKey the shardKey value to set
  78. * @return the MongoDBCollectionGetPropertiesResource object itself.
  79. */
  80. public MongoDBCollectionGetPropertiesResource withShardKey(Map<String, String> shardKey) {
  81. this.shardKey = shardKey;
  82. return this;
  83. }
  84. /**
  85. * Get list of index keys.
  86. *
  87. * @return the indexes value
  88. */
  89. public List<MongoIndex> indexes() {
  90. return this.indexes;
  91. }
  92. /**
  93. * Set list of index keys.
  94. *
  95. * @param indexes the indexes value to set
  96. * @return the MongoDBCollectionGetPropertiesResource object itself.
  97. */
  98. public MongoDBCollectionGetPropertiesResource withIndexes(List<MongoIndex> indexes) {
  99. this.indexes = indexes;
  100. return this;
  101. }
  102. /**
  103. * Get a system generated property. A unique identifier.
  104. *
  105. * @return the _rid value
  106. */
  107. public String _rid() {
  108. return this._rid;
  109. }
  110. /**
  111. * Get a system generated property that denotes the last updated timestamp of the resource.
  112. *
  113. * @return the _ts value
  114. */
  115. public Object _ts() {
  116. return this._ts;
  117. }
  118. /**
  119. * Get a system generated property representing the resource etag required for optimistic concurrency control.
  120. *
  121. * @return the _etag value
  122. */
  123. public String _etag() {
  124. return this._etag;
  125. }
  126. }